-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "nodejs-iniciantes",
"version": "1.0.0",
"description": "Curso NodeBR",
"main": "index.js",
"repository": "https://github.com/IagooCesaar/cursonodebr-nodejsiniciantes.git",
"author": "Iago César Fernandes Nogueira <iagocesar.sgs@gmail.com>",
"license": "MIT",
"dependencies": {
"bcrypt": "^4.0.1",
"boom": "^7.3.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"hapi": "^18.1.0",
"hapi-auth-jwt2": "^10.1.0",
"hapi-swagger": "9.1.3",
"inert": "^5.1.3",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.7",
"pg": "7.4.3",
"pg-hstore": "^2.3.3",
"pm2": "^4.2.3",
"sequelize": "^5.21.6",
"vision": "^5.4.4"
},
"scripts": {
"preinstall": "yarn global add pm2",
"postinstall": "yarn test:prod",
"test": "nyc --reporter=html mocha --timeout 10000 --exit ./src/tests/*.test.js",
"test:prod": "cross-env NODE_ENV=prod yarn test",
"test:watch": "mocha ./src/tests/*.test.js -w",
"dev": "nodemon ./src/api",
"prod": "cross-env NODE_ENV=prod pm2-runtime start ecosystem.config.js --env production"
},
"devDependencies": {
"mocha": "^7.1.1",
"nodemon": "^2.0.3",
"nyc": "^15.0.1"
}
}