-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.66 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
{
"name": "project-movies-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "set DEBUG=app:* && set NODE_ENV=development && nodemon index",
"debug": "DEBUG=express:*,app:* npm run start",
"start": "SET NODE_ENV=production & node ./index.js",
"test": "mocha --exit",
"cover": "nyc npm run test",
"report": "nyc report --reporter=html && cd coverage && index.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/boom": "^9.1.2",
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.9",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"chalk": "^3.0.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"prettier": "^2.3.0",
"proxyquire": "^2.1.3",
"sinon": "^11.1.1",
"supertest": "^6.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"nyc": {
"all": true,
"include": [
"routes",
"services",
"lib",
"utils"
]
}
}