-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.51 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
{
"name": "hapi-template",
"version": "3.3.0",
"description": "Hapi template",
"type": "commonjs",
"main": "index.js",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "lab test -v",
"lint": "standard --fix ./",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yauri-io/hapi-template.git"
},
"keywords": [
"hapijs"
],
"author": "yauri-io",
"license": "MIT",
"bugs": {
"url": "https://github.com/yauri-io/hapi-next/issues"
},
"lint-staged": {
"*.js": [
"standard --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"homepage": "https://github.com/yauri-io/hapi-next#readme",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/glue": "^9.0.1",
"@hapi/good": "^9.0.1",
"@hapi/good-console": "^9.0.1",
"@hapi/good-squeeze": "^6.0.0",
"@hapi/hapi": "^21.3.9",
"@hapi/hoek": "^11.0.4",
"bluebird": "^3.7.2",
"dotenv": "^16.4.5",
"hapi-pino": "^12.1.0",
"joi": "^17.13.1",
"pino-pretty": "^10.3.1"
},
"devDependencies": {
"@hapi/code": "^9.0.3",
"@hapi/lab": "^25.2.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"standard": "^17.1.0"
}
}