-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 951 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 951 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
{
"name": "app",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "pm2 start pm2_configs/config.json",
"dev": "pm2-dev start pm2_configs/config.json",
"start-docker": "pm2-docker start pm2_configs/config.json",
"lint": "./node_modules/eslint/bin/eslint.js . --ext .js --fix --ignore-pattern node_modules",
"test": "./node_modules/mocha/bin/mocha './test/**/*.spec.js'"
},
"dependencies": {
"bluebird": "^3.5.4",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-boom": "^3.0.0",
"kue": "^0.11.6",
"lodash": "^4.17.11",
"morgan": "~1.9.1",
"multer": "^1.4.1",
"redis": "^2.8.0",
"sharp": "^0.22.1",
"uuidv4": "^4.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.13.0",
"mocha": "^6.1.4",
"sinon": "^7.3.2",
"supertest": "^4.0.2"
}
}