-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 917 Bytes
/
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
{
"name": "keep-alive-demo",
"version": "1.0.0",
"description": "",
"main": "index.mjs",
"type": "module",
"scripts": {
"prepare": "husky",
"start": "node index.mjs",
"start:dev": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ",
"lint:fix": "eslint --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "4.21.2"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.0",
"@eslint/js": "9.21.0",
"eslint": "9.21.0",
"eslint-config-prettier": "10.0.2",
"eslint-plugin-prettier": "5.2.3",
"globals": "16.0.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"nodemon": "3.1.9",
"prettier": "3.5.2"
},
"lint-staged": {
"*.{mjs,cjs,js}": "eslint --cache --fix --cache-location ./node_modules/.cache/.eslintcache",
"*.{yml,yaml,json,md}": "prettier -w"
}
}