-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 997 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 997 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
33
34
35
36
37
38
39
40
41
{
"name": "zodex-workspace",
"author": "Gregor Weber<mail@watwa.re>",
"license": "MIT",
"type": "module",
"scripts": {
"prepare": "husky",
"check-style": "prettier --check .",
"lint": "eslint --no-warn-ignored ."
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@eslint/js": "^9.28.0",
"eslint": "9.28.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.2.0",
"husky": "9.1.7",
"lint-staged": "16.1.0",
"prettier": "3.5.3",
"typescript": "5.8.3",
"typescript-eslint": "8.34.0"
},
"packageManager": "pnpm@10.14.0",
"pnpm": {
"updateConfig": {
"ignoreDependencies": [
"prettier"
]
},
"ignoredBuiltDependencies": [
"esbuild"
]
},
"lint-staged": {
"*.ts": "eslint --cache --fix .",
"*.{ts,js,json,md}": "prettier --write"
}
}