-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "deadlands-classic",
"version": "0.1.0",
"scripts": {
"lint:eslint:check": "npx eslint **/*.mjs",
"lint:prettier:check": "npx prettier . --check --ignore-unknown",
"lint:prettier:write": "npx prettier . --write --ignore-unknown",
"build:styles": "",
"build": "npx npm-run-all --parallel build:*",
"globalsExtract": "npx ts-node foundry/globalsExtractor/index.ts",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^20.4.3",
"@types/semver": "^7.5.0",
"eslint": "~8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.6.2",
"semver": "^7.5.4",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.mjs": [
"npm run lint:eslint:check --"
],
"**/*": [
"npm run lint:prettier:check --"
]
}
}