forked from eXtremeXR/APIAuthenticationWithNode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.8 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
{
"name": "apiauthentication",
"version": "1.0.0",
"description": "",
"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"
},
"author": "CodeWorkr",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"concurrently": "^4.1.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"express-promise-router": "^3.0.3",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-facebook-token": "^3.3.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.2.1",
"faker": "^4.1.0",
"mocha": "^6.1.1",
"nodemon": "^1.18.10",
"nyc": "^14.1.1",
"rewire": "^4.0.1",
"sinon": "^7.3.1",
"sinon-chai": "^3.3.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"
}
}