-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1 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
{
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsdoc": "^39.8.0",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.2",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"type": "module",
"engines": {
"node": ">=0.16"
},
"engineStrict": true,
"private": true,
"scripts": {
"build": "node render.js",
"build-watch": "mode=dev nodemon render.js -i build -e js,json,html,css,html.inc",
"lint": "prettier --ignore-path .gitignore --check . && eslint --ignore-path .gitignore . && tsc --noEmit",
"format": "prettier --ignore-path .gitignore --write .",
"postinstall": "husky install",
"precommit": "lint-staged && tsc --noEmit"
},
"lint-staged": {
"*": [
"prettier --check"
],
"*.js": [
"eslint"
]
}
}