-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.41 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.41 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
{
"name": "api_event5",
"version": "1.0.0",
"description": "Backend for Event5",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "NODE_ENV=production node index.js",
"test": "mocha --recursive --exit",
"cover": "nyc npm run test",
"report": "npm run cover && nyc report --reporter=html && open coverage/index.html"
},
"keywords": [],
"author": "Jose Luis Chavez <josephsiul15@gmai.com>",
"license": "MIT",
"dependencies": {
"@hapi/boom": "^9.1.0",
"@sendgrid/mail": "^7.2.4",
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"bull": "^3.18.0",
"cloudinary": "^1.23.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"ms": "^2.1.2",
"multer": "^1.4.2",
"node-schedule": "^1.3.2",
"nodemailer": "^6.4.11",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0",
"redis": "^3.0.2"
},
"devDependencies": {
"chalk": "^4.1.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"proxyquire": "^2.1.3",
"supertest": "^4.0.2"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"nyc": {
"all": true,
"include": [
"routes",
"services"
]
}
}