-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.09 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
68
69
70
{
"name": "NodeAuthAPi",
"version": "1.0.0",
"description": "A bootcamp MERN Stack",
"main": "index.js",
"scripts": {
"server-dev": "cross-env NODE_ENV=prod nodemon server/index.js",
"client-dev": "npm start --prefix client",
"start-dev": "concurrently \"npm run server-dev\" \"npm run client-dev\"",
"test": "cross-env NODE_ENV=test mocha --timeout 5000 __tests__/server/**/*.test.js",
"report": "cross-env NODE_ENV=test nyc --reporter=lcov mocha --timeout 5000 __tests__/server/**/*.test.js",
"text-report": "cross-env NODE_ENV=test nyc --reporter=text-summary mocha --timeout 5000 __tests__/server/**/*.test.js",
"nyc": "cross-env NODE_ENV=test nyc mocha --timeout 5000 __tests__/server/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clio19/NodeAuthAPi.git"
},
"keywords": [],
"author": "htrix",
"license": "ISC",
"bugs": {
"url": "https://github.com/clio19/NodeAuthAPi/issues"
},
"homepage": "https://github.com/clio19/NodeAuthAPi#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-promise-router": "^4.0.1",
"joi": "^17.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.25",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-facebook-token": "^4.0.0",
"passport-google-plus-token": "^2.1.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"concurrently": "^5.2.0",
"faker": "^4.1.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
},
"nyc": {
"exclude": [
"server/app.js",
"server/configuration/index.js",
"server/passport.js",
"server/models/**/*.js",
"server/helpers/**/*.js",
"__tests__",
"node_modules"
],
"cache": false,
"report-dir": "./__tests__/report"
}
}