-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.45 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
{
"scripts": {
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"lint": "eslint app migrations config test",
"lint-diff": "git diff --name-only --cached --relative | grep \\\\.js$ | xargs ./node_modules/eslint/bin/eslint.js",
"lint-fix": "eslint app migrations config test --fix",
"start": "node app.js",
"test": "NODE_ENV=test mocha test/main.js --timeout 20000 --recursive --exit"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.0",
"express-fileupload": "^1.1.3-alpha.1",
"express-healthcheck": "^0.1.0",
"express-validator": "^5.3.1",
"factory-girl": "^5.0.4",
"mockgoose": "^8.0.2",
"moment": "^2.22.2",
"mongoose": "^5.5.10",
"morgan": "^1.9.1",
"nock": "^9.6.1",
"prom-client": "^11.5.0"
},
"devDependencies": {
"assert": "^2.0.0",
"babel": "6.23.0",
"babel-core": "6.26.0",
"babel-eslint": "^8.2.2",
"babel-preset-es2015": "6.24.1",
"chai": "^4.1.2",
"chai-http": "^4.2.0",
"dotenv": "^5.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-config-prettier": "^2.3.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-prettier": "^2.1.1",
"lodash": "^4.17.11",
"mocha": "^5.0.1",
"mocha-lcov-reporter": "^1.2.0",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"prettier": "^1.8.2",
"prettier-eslint": "^8.2.1",
"supertest": "^4.0.2"
}
}