-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.58 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
{
"private": true,
"name": "express-starter",
"version": "1.0.0",
"description": "Express, starter project",
"scripts": {
"lint": "eslint lib test",
"test": "npm run lint && npm run test:cover && npm run test:check-coverage",
"start": "if [[ $NODE_ENV == \"development\" ]]; then nodemon -L -w lib -w server.js server.js; else node server; fi",
"test:single": "env NODE_ENV=test mocha --require test/index --recursive --exit",
"test:watch": "npm run test:single -- --watch --reporter min --growl",
"test:cover": "env NODE_ENV=test nyc --reporter=text --reporter=html mocha --require test/index --recursive --exit",
"test:check-coverage": "nyc check-coverage --statements 100 --functions 100 --branches 100 --lines 100"
},
"license": "MIT",
"dependencies": {
"axios": "^0.17.0",
"basic-auth": "^2.0.0",
"bcrypt": "^2.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"express-asyncify": "^1.0.0",
"express-jwt": "^5.3.1",
"express-jwt-authz": "^1.0.0",
"http-errors": "^1.6.2",
"jsonwebtoken": "^8.1.0",
"moment": "^2.22.1",
"morgan": "^1.9.0",
"namespaced-console-logger": "^1.1.0",
"pg": "^7.3.0",
"pg-error-constants": "^1.0.0"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"eslint": "^4.9.0",
"mocha": "^4.0.1",
"nodemon": "^1.17.5",
"nyc": "^11.2.1",
"proxyquire": "^1.8.0",
"require-directory": "^2.1.1",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0"
}
}