-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.63 KB
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
{
"name": "api_authentication",
"version": "1.0.0",
"description": "an app to authenticate users in various ways",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node index.js",
"dev": "cross-env NODE_ENV=development nodemon index.js",
"test": "cross-env NODE_ENV=test mocha --timeout 50000 __tests__/server/**/*.test.js",
"report": "cross-env NODE_ENV=test nyc --reporter=lcov mocha --timeout 20000 __tests__/server/**/*.test.js",
"text-report": "cross-env NODE_ENV=test nyc --reporter=text-summary mocha --timeout 20000 __tests__/server/**/*.test.js",
"nyc": "cross-env NODE_ENV=test nyc mocha --timeout 20000 __tests__/server/**/*.test.js"
},
"author": "ademola sobaki",
"license": "MIT",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-promise-router": "^4.0.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.15",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-facebook-token": "^4.0.0",
"passport-google-oauth20": "^2.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",
"faker": "^4.1.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
},
"nyc": {
"exclude": [
"__tests__",
"node_modules"
],
"cache": "false",
"report-dir": "./__test__/report"
}
}