-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.31 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
{
"name": "placepuppy",
"version": "0.0.0",
"private": true,
"scripts": {
"start:m": "DEBUG=app:* NODE_ENV=development MAINTENANCE=true nodemon ./bin/www",
"start:s": "DEBUG=app:* NODE_ENV=development SUNSET=true nodemon ./bin/www",
"start": "DEBUG=app:* NODE_ENV=development nodemon ./bin/www",
"start:no-cache": "DEBUG=app:* NODE_ENV=development CACHE=OFF nodemon ./bin/www",
"start:nolog": "NODE_ENV=development nodemon ./bin/www",
"prod": "NODE_ENV=production DEBUG=app:* node ./bin/www",
"prod:m": "NODE_ENV=production MAINTENANCE=true DEBUG=app:* node ./bin/www",
"prod:s": "NODE_ENV=production SUNSET=true DEBUG=app:* node ./bin/www",
"test": "mocha",
"test:watch": "DEBUG=app:* mocha -w",
"test:watch:nolog": "mocha -w"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"dayjs": "^1.11.7",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"express-winston": "^4.2.0",
"helmet": "^6.0.1",
"morgan": "^1.9.1",
"pug": "~3.0.1",
"sharp": "^0.32.1",
"winston": "^3.7.2"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^10.2.0",
"mock-fs": "^4.10.1",
"mock-req-res": "^1.1.1",
"nock": "^10.0.6",
"nodemon": "^2.0.4",
"rewire": "^6.0.0",
"sinon": "^6.3.5"
}
}