-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "react-three-basketball",
"version": "1.0.0",
"description": "An experimental basketball game using React Three Fiber and Cannon physics.",
"keywords": [
"three",
"react",
"react-three-fiber",
"physics",
"cannon",
"basketball",
"game",
"prototype"
],
"author": "Benjamin Miles <[email protected]> (https://github.com/benjaminmiles)",
"repository": "github:benjaminmiles/react-three-basketball",
"license": "MIT",
"dependencies": {
"@react-three/cannon": "6.5.0",
"@react-three/drei": "9.45.0",
"@react-three/fiber": "8.9.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"short-uuid": "4.2.2",
"three": "0.146.0",
"zustand": "4.1.4"
},
"devDependencies": {
"@vitejs/plugin-react": "^2.2.0",
"vite": "^3.2.4"
},
"scripts": {
"dev": "vite --host",
"sandbox": "APP_ENV=sandbox vite",
"build": "vite build",
"preview": "vite preview"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}