-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.45 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.45 KB
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
{
"name": "react-three-vite",
"version": "1.0.1",
"description": "A simple React Three Fiber + Vite + Typescript starter with an import-ready CodeSandbox config.",
"keywords": [
"r3f",
"react",
"three",
"vite",
"starter",
"react three fiber",
"sandbox",
"codesandbox",
"typescript"
],
"author": "Cosmitar (https://github.com/cosmitar)",
"repository": "github:cosmitar/react-three-vite-typescript",
"license": "MIT",
"dependencies": {
"@react-three/drei": "^9.111.1",
"@react-three/fiber": "8.15.14",
"react": "18.2.0",
"react-dom": "18.2.0",
"state-composer": "^0.1.0",
"three": "0.160.1",
"three-custom-shader-material": "^5.4.0"
},
"devDependencies": {
"@gltf-transform/core": "3.5.1",
"@gltf-transform/extensions": "3.5.1",
"@types/node": "20.1.5",
"@types/react-dom": "18.0.11",
"@types/three": "0.150.0",
"@vitejs/plugin-react": "3.1.0",
"sass": "^1.77.6",
"typescript": "5.0.3",
"vite": "^5.4.0",
"vite-plugin-glsl": "1.1.2",
"vite-plugin-gltf": "3.1.0"
},
"scripts": {
"dev": "vite --host",
"sandbox": "APP_ENV=sandbox vite",
"build": "vite build",
"postbuild": "rm dist/images/*.*~",
"preview": "vite preview",
"check_circular": "npx madge --circular ./src/App.tsx",
"check_typescript": "tsc --noEmit --skipLibCheck"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}