-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "hapi-18-boilerplate",
"version": "1.0.0",
"description": "Hapi 18 Boilerplate",
"main": "server.js",
"scripts": {
"start": "npm run start:local",
"start:local": "cross-env NODE_ENV=default nodemon server.js",
"start:dev": "cross-env NODE_ENV=development node server.js --development",
"start:prod": "cross-env NODE_ENV=production node server.js --prod",
"seed:local": "cross-env NODE_ENV=default md-seed run",
"seed:dev": "cross-env NODE_ENV=development md-seed run --development",
"seed:prod": "cross-env NODE_ENV=production md-seed run --prod",
"test": "jest --coverage",
"precommit": "lint-staged",
"md-seed": "md-seed",
"lint": "eslint --fix './**/*.js' ./"
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">=8.10.0",
"npm": ">=3.8.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patelmayankce/hapi-18-boilerplate.git"
},
"keywords": [
"hapi",
"hapi18",
"boilerplate",
"starter-kit",
"hapi-boilerplate"
],
"author": "Mayank Patel <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/patelmayankce/hapi-18-boilerplate/issues"
},
"homepage": "https://github.com/patelmayankce/hapi-18-boilerplate#readme",
"dependencies": {
"@hapi/basic": "^6.0.0",
"@hapi/boom": "^9.1.0",
"@hapi/glue": "^7.0.0",
"@hapi/good": "^9.0.0",
"@hapi/good-console": "^9.0.0",
"@hapi/good-squeeze": "^6.0.0",
"@hapi/hapi": "^19.1.1",
"@hapi/inert": "^6.0.1",
"@hapi/joi": "^17.1.1",
"@hapi/vision": "^6.0.0",
"apollo-server-hapi": "^2.11.0",
"bcrypt": "^4.0.1",
"bluebird": "^3.7.2",
"config": "^3.3.1",
"glob": "^7.1.6",
"hapi-auth-jwt2": "^10.0.0",
"hapi-dev-errors": "^4.0.0",
"hapi-swagger": "^12.1.3",
"jsonwebtoken": "^8.5.1",
"luxon": "^1.23.0",
"module-alias": "^2.2.2",
"mongoose": "^5.9.7",
"mongoose-data-seed": "^2.1.6",
"mongoose-deep-populate": "^3.1.1",
"mrhorse": "^6.0.0",
"satelize": "^0.2.0",
"schmervice": "^1.5.0",
"uuid": "^7.0.3",
"zxcvbn": "^4.4.2"
},
"_moduleAliases": {
"root": ".",
"models": "server/models",
"plugins": "server/plugins",
"routes": "server/routes",
"utilities": "server/utilities",
"policies": "server/policies",
"services": "server/services",
"api": "server/api"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"jest": "^25.2.7",
"lint-staged": "^10.1.1",
"nodemon": "^2.0.2",
"prettier": "^2.0.2",
"rewire": "^5.0.0"
}
}