-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "my-first-react-three-fiber-app",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier ./src --ignore-unknown --write",
"format:check": "prettier ./src --ignore-unknown --check",
"lint": "npm run lint:check -- --fix",
"lint:check": "eslint ./src --ext .ts,.tsx"
},
"dependencies": {
"@react-three/drei": "^9.41.2",
"@react-three/fiber": "^8.0.11",
"leva": "^0.9.25",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"three": "^0.139.2"
},
"devDependencies": {
"@types/react": "^18.0.2",
"@types/react-dom": "^18.0.0",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@vitejs/plugin-react": "^1.3.0",
"autoprefixer": "^10.4.4",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.10",
"postcss": "^8.4.12",
"prettier": "^2.7.1",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3",
"vite": "^2.9.1"
}
}