-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.57 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
54
55
56
57
58
59
60
61
62
{
"name": "backendnodejs",
"version": "1.0.0",
"description": "Backend Node.js",
"main": "index.js",
"scripts": {
"dev": "DEBUG=app:* nodemon index",
"devWind": "cross-env DEBUG=app:* nodemon index",
"start": "NODE_ENV=production node index",
"startWind": "cross-env NODE_ENV=production node index",
"test": "mocha --exit",
"cover": "nyc yarn test",
"report": "nyc report --reporter=html && start coverage/index.html",
"lint": "standard --fix"
},
"standard": {
"parser": "babel-eslint"
},
"keywords": [],
"author": "John Serrano <jandreys15@gmail.com> (https://twitter.com/Jandrey15)",
"license": "ISC",
"dependencies": {
"@hapi/boom": "^9.0.0",
"@hapi/joi": "^17.1.0",
"bcrypt": "^3.0.7",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.2",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"chalk": "^3.0.0",
"cross-env": "^6.0.3",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.0.0",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"proxyquire": "^2.1.3",
"sinon": "^8.1.1",
"standard": "^14.3.1",
"supertest": "^4.0.2"
},
"nyc": {
"all": true,
"include": [
"routes",
"services",
"lib",
"utils"
]
}
}