-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "trashapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node app.js",
"start-dev": "nodemon ./app.js",
"start-prod": "pm2 start app.js -i 4",
"stop-prod": "pm2 stop all",
"test": "find ./tests -name '*.test.js' | xargs mocha -R spec --timeout 20000",
"eslint": "eslint api/**/*.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "*",
"chai-things": "*",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-loopback": "^4.0.0",
"eslint-plugin-import": "^2.11.0",
"husky": ">=1",
"lint-staged": ">=8",
"mocha": "*",
"nsp": "^2.1.0",
"supertest": "*"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"compression": "^1.7.0",
"cors": "^2.8.4",
"cron": "^1.3.0",
"csv-parse": "^1.2.1",
"dateformat": "^3.0.3",
"datejs": "^1.0.0-rc3",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-brute": "^1.0.1",
"express-brute-pg": "^1.0.2",
"express-jwt": "^5.3.0",
"express-promise-router": "^2.0.0",
"express-validation": "^1.0.2",
"global": "^4.3.2",
"helmet": "^3.8.1",
"joi": "^10.6.0",
"jsonwebtoken": "^7.4.1",
"moment": "2.21.0",
"node-cache": "^4.1.1",
"pg": "^7.3.0",
"request": "^2.88.0",
"swagger-ui-express": "^2.0.4",
"to-boolean": "^1.0.0",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}