-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "generous-common-server",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"test": "mocha dist/test/**.spec.js",
"build": "tsc --outDir dist",
"start": "node ./dist/index.js",
"start:docker": "docker container rm --force common-server; docker build -t common-server . && docker container run -d -p 1226:1226 --name common-server common-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seungwoohong/generous-common-server.git"
},
"author": "SeungwooHong",
"license": "ISC",
"bugs": {
"url": "https://github.com/seungwoohong/generous-common-server/issues"
},
"homepage": "https://github.com/seungwoohong/generous-common-server#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/express": "^4.16.0",
"@types/jasmine": "^2.8.8",
"@types/mocha": "^5.2.3",
"@types/mysql": "^2.15.5",
"@types/node": "^10.3.4",
"@types/supertest": "^2.0.4",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"npm-run-all": "^4.1.3",
"supertest": "^3.1.0",
"ts-loader": "^4.4.1",
"typescript": "^2.9.2",
"webpack": "^4.12.0"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"fs": "0.0.1-security",
"mysql": "^2.15.0",
"source-map-support": "^0.5.6"
}
}