-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 905 Bytes
/
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
{
"name": "roulette-api",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "tsc",
"start": "npm run build && node ./build/bin/www.js",
"dev": "export DEBUG=bdb:* && nodemon --watch src -e ts,js --exec npm start"
},
"dependencies": {
"@types/bluebird": "^3.5.29",
"@types/cookie-parser": "~1.4.1",
"@types/debug": "~4.1.4",
"@types/express": "~4.17.0",
"@types/ioredis": "^4.16.3",
"@types/morgan": "~1.7.36",
"@types/node": "^12.12.3",
"@types/uuid": "^8.0.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-validator": "^6.5.0",
"http-errors": "~1.6.3",
"ioredis": "^4.17.3",
"log4js": "^6.3.0",
"morgan": "~1.9.1",
"pug": "2.0.0-beta11",
"typescript": "^3.9.3",
"uuid": "^8.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"nodemon": "~1.19.1"
}
}