-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 1.87 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "HALAHLaboratoryPlatform",
"version": "1.2.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "DEBUG=app:* nodemon src/index",
"start": "NODE_ENV=production node src/index",
"test": "mocha --exit",
"cover": "nyc npm run test",
"report": "nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyfi06/platzi-master-end-game-backend.git"
},
"keywords": [
"health"
],
"contributors": [{
"name": "Alexis Araujo",
"email": "ala1289@gmail.com"
},
{
"name": "Hector Olvera",
"email": "hector.olvera@ciencias.unam.mx"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hyfi06/platzi-master-end-game-backend/issues"
},
"homepage": "https://github.com/hyfi06/platzi-master-end-game-backend#readme",
"dependencies": {
"@hapi/boom": "^9.1.0",
"@hyfi06/html2pdf": "^1.2.0",
"@sendgrid/mail": "^7.1.1",
"@sentry/node": "^5.15.5",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"date-fns": "^2.14.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.7",
"mongoose": "^5.9.12",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"mocha": "^7.1.2",
"nodemon": "^2.0.3",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"proxyquire": "^2.1.3",
"sinon": "^9.0.2",
"supertest": "^4.0.2"
},
"nyc": {
"all": true,
"include": [
"components",
"lib",
"utils"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}