-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.86 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "clean-fiber-vite",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"immer": "^10.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"wouter": "^2.11.0",
"zustand": "^4.3.8",
"three": "0.153.0",
"@react-three/drei": "^9.70.3",
"@react-three/fiber": "^8.13.0",
"@react-spring/three": "^9.7.2",
"leva": "^0.9.34",
"@use-gesture/react": "^10.2.27",
"@mordv/utils": "^0.0.21"
},
"devDependencies": {
"tailwindcss": "^3.3.2",
"postcss": "^8.4.24",
"autoprefixer": "^10.4.14",
"@vitejs/plugin-react": "^4.0.0",
"vitest": "^0.31.4",
"@types/three": "^0.152.1",
"@types/node": "^20.2.5",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vitejs/plugin-react-refresh": "^1.3.6",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^3.2.0"
},
"eslintConfig": {
"extends": ["react-app"]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}