-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
45 lines (45 loc) · 994 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
38
39
40
41
42
43
44
45
{
"name": "root",
"private": true,
"engines": {
"node": ">=20",
"pnpm": ">=9.0.0",
"npm": ">=99"
},
"scripts": {
"prepare": "husky"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"pyright": "1.1.369",
"typescript": "~5.5.4",
"typescript-eslint": "^7.5.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,css,scss}": [
"prettier --write"
],
"**/*.py": [
".venv/bin/pipenv run isort",
".venv/bin/pipenv run black"
]
},
"pnpm": {
"overrides": {
"typescript-json-schema>@types/node": "*"
},
"patchedDependencies": {
"@react-three/fiber": "patches/@react-three__fiber.patch"
}
},
"overrides": {
"react-error-overlay": "6.0.9"
}
}