-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "express-api-project",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "NODE_ENV=test mocha --timeout 5000 __tests__/server/**/*.test.js",
"report": "NODE_ENV=test nyc --reporter=lcov mocha --timeout 5000 __tests__/server/**/*.test.js",
"text-report": "NODE_ENV=test nyc --reporter=text-summary mocha --timeout 5000 __tests__/server/**/*.test.js",
"nyc": "NODE_ENV=test nyc mocha --timeout 5000 __tests__/server/**/*.test.js",
"start": "NODE_ENV=prod nodemon index.js"
},
"repository": {
"type": "git",
"url": "git@github-personal:shayanhusaini/express-learning.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "1.18.3",
"express": "4.16.3",
"express-promise-router": "^3.0.3",
"joi": "^13.5.2",
"jsonwebtoken": "^8.3.0",
"mongoose": "5.2.6",
"morgan": "1.9.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"faker": "^4.1.0",
"mocha": "^5.2.0",
"nodemon": "1.18.3",
"nyc": "^12.0.2",
"rewire": "^4.0.1",
"sinon": "^6.1.4",
"sinon-chai": "^3.2.0"
},
"nyc": {
"exclude": [
"__tests__",
"node_modules"
],
"cache": false,
"report-dir": "./__tests__/report"
}
}