-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.65 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.65 KB
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
{
"name": "hapi-template",
"version": "5.2.0",
"description": "Hapi template",
"type": "module",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yauri-io/hapi-template.git"
},
"keywords": [
"hapijs"
],
"author": "yio",
"license": "MIT",
"bugs": {
"url": "https://github.com/yauri-io/hapi-template/issues"
},
"lint-staged": {
"*.js": [
"standard --fix",
"prettier --write"
]
},
"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.4.3",
"@hapi/hoek": "^11.0.7",
"bluebird": "^3.7.2",
"dotenv": "^17.2.3",
"hapi-pino": "^13.0.0",
"joi": "^18.0.1",
"pino-pretty": "^13.1.2"
},
"devDependencies": {
"@hapi/code": "^9.0.3",
"@hapi/lab": "^26.0.0",
"@types/node": "^24.8.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.4",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"standard": "^17.1.2",
"typescript": "^5.9.3"
},
"standard": {
"ignore": [
"node_modules/",
"dist/",
"coverage/",
"types/"
]
}
}