-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 973 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 973 Bytes
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
{
"name": "heroes-api",
"version": "1.0.0",
"description": "",
"main": "src/api.js",
"scripts": {
"preinstall": "npm i -g pm2",
"postinstall": "cross-env NODE_ENV=prod npm run test",
"prod": "cross-env NODE_ENV=prod pm2-runtime api.js",
"start": "nodemon api.js",
"test": "npx nyc --reporter=html mocha --timeout 10000 __TEST__/*.test.js --exit"
},
"keywords": [],
"author": "JNCJcoder",
"license": "MIT",
"dependencies": {
"@hapi/boom": "^10.0.0",
"@hapi/hapi": "^20.2.2",
"@hapi/inert": "^6.0.5",
"@hapi/vision": "^6.1.0",
"bcrypt": "^5.0.1",
"cross-env": "^5.2.1",
"dotenv": "^6.2.0",
"hapi-auth-jwt2": "^10.2.0",
"hapi-swagger": "^14.5.5",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.3.11",
"pg": "^7.4.3",
"pg-hstore": "^2.3.4",
"sequelize": "^4.38.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"mocha": "^5.2.0",
"nyc": "^13.1.0"
}
}