-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.38 KB
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
{
"name": "node-ts-server",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node ./dist/bin/www",
"debug": "DEBUG=server:* nodemon ./dist/bin/www & tsc -w",
"predebug": "node_modules/.bin/tsc",
"prestart": "node_modules/.bin/tsc"
},
"dependencies": {
"axios": "^0.17.1",
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.15.5",
"express-session": "^1.15.6",
"jade": "~1.11.0",
"moment": "^2.20.1",
"moment-timezone": "^0.5.14",
"morgan": "~1.9.0",
"multer": "^1.3.0",
"ramda": "^0.25.0",
"raven": "^2.6.3",
"serve-favicon": "~2.4.5",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cookie-parser": "^1.4.1",
"@types/debug": "0.0.30",
"@types/express": "^4.11.0",
"@types/jade": "0.0.30",
"@types/moment": "^2.13.0",
"@types/moment-timezone": "^0.5.3",
"@types/morgan": "^1.7.35",
"@types/multer": "^1.3.6",
"@types/node": "^8.5.7",
"@types/ramda": "^0.25.13",
"@types/serve-favicon": "^2.2.30",
"@types/winston": "^2.3.7",
"cz-conventional-changelog": "^2.1.0",
"nodemon": "^1.14.3",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}