-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.23 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
{
"name": "express-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "cross-env NODE_ENV=test jest --setupFiles dotenv/config --watchAll --runInBand --detectOpenHandles --verbose --coverage",
"start-local-test": "cross-env NODE_ENV=test nodemon -r dotenv/config index.js",
"start-local-dev": "cross-env NODE_ENV=development nodemon -r dotenv/config index.js",
"start-local-prod": "cross-env NODE_ENV=production node -r dotenv/config index.js"
},
"engines": {
"node": "12.16.1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^4.0.1",
"compression": "^1.7.4",
"config": "^3.3.1",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"fawn": "^2.1.5",
"helmet": "^3.22.0",
"joi": "^14.3.1",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mongoose": "^5.9.7",
"morgan": "^1.10.0",
"pug": "^2.0.4",
"winston": "^3.2.1",
"winston-mongodb": "^5.0.1"
},
"devDependencies": {
"dotenv": "^8.2.0",
"jest": "^25.2.4",
"jest-cli": "^25.2.4",
"supertest": "^4.0.2"
}
}