-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.27 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
{
"name": "streaming-video-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "DEBUG=express:*,app:* nodemon index",
"debug": "DEBUG=express:*,app:* npm run start",
"inspect": "DEBUG=express:*,app:* nodemon --inspect index",
"start": "NODE_ENV=production node index",
"test": "mocha --exit",
"cover": "nyc npm run test",
"report": "nyc report --reporter=html && open coverage/index.html"
},
"author": "@edgarlr",
"license": "ISC",
"dependencies": {
"@hapi/boom": "^9.1.0",
"@hapi/joi": "^17.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongodb": "^3.6.0"
},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^8.1.1",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"proxyquire": "^2.1.3",
"sinon": "^9.0.2",
"supertest": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"git add"
]
},
"nyc": {
"all": true,
"include": [
"routes",
"services",
"lib",
"utils"
]
}
}