-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.43 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
{
"name": "movies-api",
"version": "1.0.0",
"description": "REST API platzi-video",
"main": "index.js",
"author": "Ruben Padilla <[email protected]>",
"license": "MIT",
"scripts": {
"test": "mocha --exit",
"cover": "nyc npm test",
"report": "nyc report --reporter=html && xdg-open coverage/index.html",
"dev": "DEBUG=app:* nodemon index",
"start": "NODE_ENV=production node index"
},
"dependencies": {
"@hapi/boom": "8.0.1",
"@hapi/joi": "16.1.8",
"bcrypt": "5.0.0",
"compression": "1.7.4",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"helmet": "3.21.2",
"jsonwebtoken": "8.5.1",
"mongodb": "3.3.5",
"passport": "0.4.1",
"passport-http": "0.3.0",
"passport-jwt": "4.0.0"
},
"devDependencies": {
"chalk": "3.0.0",
"crypto": "1.0.1",
"debug": "4.1.1",
"eslint": "6.7.1",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-prettier": "3.1.1",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"mocha": "6.2.2",
"nodemon": "2.0.1",
"nyc": "14.1.1",
"prettier": "1.19.1",
"proxyquire": "2.1.3",
"sinon": "7.5.0",
"supertest": "4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"nyc": {
"all": true,
"include": [
"routes",
"services",
"lib",
"utils"
]
}
}