-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
37 lines (37 loc) · 911 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": "zodex-workspace",
"author": "Gregor Weber<[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"prepare": "husky",
"check-style": "prettier --check .",
"lint": "eslint --no-warn-ignored ."
},
"devDependencies": {
"@commitlint/cli": "19.4.1",
"@commitlint/config-conventional": "19.4.1",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"husky": "9.1.5",
"lint-staged": "15.2.10",
"prettier": "2.8.8",
"typescript": "5.5.4",
"typescript-eslint": "8.4.0"
},
"packageManager": "[email protected]",
"pnpm": {
"updateConfig": {
"ignoreDependencies": [
"prettier"
]
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix .",
"*.{ts,js,json,md}": "prettier --write"
}
}