-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·70 lines (70 loc) · 1.9 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
{
"name": "nodejs-hapijs-monolith",
"author": "Felipe Kautzmann <[email protected]>",
"version": "0.1.0",
"license": "UNLICENSED",
"homepage": "https://github.com/felipekm/nodejs-hapijs-monolith",
"description": "nodejs-hapijs-monolith",
"readmeFilename": "README.md",
"scripts": {
"debug": "NODE_ENV=development node_modules/.bin/nodemon --inspect ./server.js",
"test": "node_modules/.bin/cross-env ENGINE=webapi NODE_ENV=test jest --env=./app/core/tests/config-test.js",
"lint-staged": "node_modules/.bin/lint-staged",
"lint": "node_modules/.bin/eslint .",
"start": "node server.js",
"dev": "node_modules/.bin/nodemon server.js",
"start-api": "sudo pm2 start ecosystem.config.js --only api -c \"0 0 * * *\""
},
"pre-commit": [
"lint-staged",
"test"
],
"lint-staged": {
"*.js": [
"eslint"
]
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.2.0",
"del": "~2.2.2",
"eslint": "^4.11.0",
"eslint-plugin-jest": "^21.15.1",
"jest": "^22.4.3",
"jest-environment-node": "^22.4.3",
"lint-staged": "^7.2.2",
"nodemon": "^1.18.2",
"pm2": "^2.10.4",
"pre-commit": "^1.2.2"
},
"dependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.2",
"boom": "^5.2.0",
"currency.js": "^1.1.4",
"dotenv": "^6.0.0",
"hapi": "^17.8.1",
"hapi-auth-jwt2": "^8.2.0",
"joi": "^14.3.0",
"jsonwebtoken": "^8.4.0",
"mongodb": "^2.2.36",
"walk": "^2.3.13"
},
"directories": {
"test": "test"
},
"repository": {
"url": "https://github.com/felipekm/nodejs-hapijs-monolith",
"type": "git"
},
"bugs": {
"url": "https://github.com/felipekm/nodejs-hapijs-monolith/issues"
},
"engines": {
"npm": ">= 6.4.1",
"node": ">= 10.12.0"
}
}