-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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
{
"name": "node-ts-server",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node ./dist/bin/www",
"debug": "DEBUG=server:* nodemon ./dist/bin/www",
"predebug": "node_modules/.bin/tsc",
"prestart": "node_modules/.bin/tsc"
},
"dependencies": {
"axios": "^0.17.1",
"body-parser": "~1.18.2",
"connect-redis": "^3.3.3",
"cookie-parser": "~1.4.3",
"crypto-js": "^3.1.9-1",
"debug": "~2.6.9",
"express": "~4.15.5",
"express-session": "^1.15.6",
"ioredis": "^3.2.2",
"jade": "~1.11.0",
"knex": "^0.14.2",
"moment": "^2.20.1",
"moment-timezone": "^0.5.14",
"morgan": "~1.9.0",
"multer": "^1.3.0",
"mysql": "^2.15.0",
"ramda": "^0.25.0",
"serve-favicon": "~2.4.5",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/connect-redis": "^0.0.7",
"@types/cookie-parser": "^1.4.1",
"@types/crypto-js": "^3.1.38",
"@types/debug": "0.0.30",
"@types/express": "^4.11.0",
"@types/express-session": "^1.15.6",
"@types/ioredis": "^3.2.5",
"@types/jade": "0.0.30",
"@types/knex": "^0.14.0",
"@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",
"nodemon": "^1.14.3",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
}
}