-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 944 Bytes
/
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
{
"name": "modulo05-multidatabase",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"preinstall": "npm i -g pm2",
"postinstall": "cross-env NODE_ENV=prod npm t",
"test": "nyc --reporter=html mocha --timeout 10000 --exit tests/*.test.js",
"test:prod": "cross-env NODE_ENV=prod npm t",
"prod": "cross-env NODE_ENV=prod pm2-runtime api.js"
},
"author": "erickwendel",
"license": "ISC",
"devDependencies": {
"mocha": "^5.2.0",
"nyc": "^13.3.0"
},
"dependencies": {
"bcrypt": "^3.0.2",
"boom": "^7.2.2",
"cross-env": "^5.2.0",
"dotenv": "^6.2.0",
"hapi": "^17.7.0",
"hapi-auth-jwt2": "^8.1.0",
"hapi-swagger": "^9.1.3",
"inert": "^5.1.2",
"joi": "^14.1.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.11",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"pm2": "^3.3.1",
"sequelize": "^4.38.0",
"vision": "^5.4.3"
}
}