-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 734 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 734 Bytes
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
{
"name": "nodejs-basic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo",
"lint": "eslint .",
"lint-fix": "eslint --fix --ext .js,.jsx .",
"format": "prettier --write .",
"prepare": "husky install",
"start": "node ./hapi-web-server/server.js"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/hapi": "^21.3.2",
"lodash": "^4.17.21",
"moment": "^2.29.4"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "3.1.1"
}
}