-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "cuban-engineer",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development WINSTON_LOG_LEVEL=verbose node -r dotenv/config index.js",
"test": "cross-env NODE_ENV=test mocha -r dotenv/config -r test/hooks/hooks.js --timeout 5000",
"prod": "pm2 start index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-handlebars": "^7.0.7",
"express-validator": "^7.0.1",
"hbs": "^4.2.0",
"helmet": "^7.0.0",
"http-errors": "^2.0.0",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.3.1",
"mongoose-type-url": "^2.1.0",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"winston": "^3.9.0"
},
"devDependencies": {
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"nyc": "^15.1.0",
"supertest": "^6.3.3"
}
}