-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.07 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "willson-server",
"version": "1.0.0",
"description": "appjam for sopt",
"main": "index.js",
"scripts": {
"build:dev": "webpack --mode development --config ./config/webpack.config.js",
"local": "nodemon --watch src --delay 1 --exec ts-node src/www.ts",
"test": "mocha -r ts-node/register --exit './src/test/**/*.test.ts'",
"start": "pm2 start --name willson ./config/dist/bundle.js",
"soyeon": "yarn build:dev && yarn local"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willson-appjam/WillSon-Server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/willson-appjam/WillSon-Server/issues"
},
"homepage": "https://github.com/willson-appjam/WillSon-Server#readme",
"dependencies": {
"@types/jsonwebtoken": "^8.3.2",
"body-parser": "^1.19.0",
"crypto-module": "^1.3.12",
"crypto-promise": "^2.1.0",
"express": "^4.17.1",
"helmet": "^3.18.0",
"http-errors": "^1.7.3",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.17.1",
"lodash": "^4.17.11",
"mecab-ffi": "^0.2.0",
"mecab-ya": "^0.1.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.26",
"morgan": "^1.9.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"request-promise-native": "^1.0.7",
"response-time": "^2.3.2",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/express": "^4.17.0",
"@types/helmet": "0.0.43",
"@types/http-errors": "^1.6.1",
"@types/is-empty": "^1.2.0",
"@types/lodash": "^4.14.135",
"@types/mocha": "^5.2.7",
"@types/morgan": "^1.7.35",
"@types/node": "^12.0.10",
"@types/response-time": "^2.3.3",
"@types/supertest": "^2.0.7",
"chai": "^4.2.0",
"eslint": "^6.0.1",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"supertest": "^4.0.2",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
}
}