-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 963 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 963 Bytes
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
{
"name": "nodepop",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cross-env DEBUG=nodepop:* node ./node_modules/pm2/bin/pm2 start",
"log": "node ./node_modules/pm2/bin/pm2 log",
"stop": "node ./node_modules/pm2/bin/pm2 stop all",
"prod": "node ./node_modules/pm2/bin/pm2 start --env production",
"initdb": "node install_db.js",
"test": "mocha **/*.e2e.js --exit"
},
"dependencies": {
"bcrypt": "^3.0.5",
"cookie-parser": "~1.4.3",
"cote": "^0.19.1",
"debug": "~2.6.9",
"dotenv": "^7.0.0",
"ejs": "~2.5.7",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"i18n": "^0.8.3",
"jimp": "^0.6.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.4.3",
"morgan": "~1.9.0",
"multer": "^1.4.1",
"pm2": "^3.4.1",
"rimraf": "^2.6.3"
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^5.12.1",
"mocha": "^6.2.0",
"supertest": "^4.0.2"
}
}