-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"name": "@demo/basic-ballpit",
"version": "1.0.0",
"description": "Physics simulation using cannon.",
"homepage": "https://codesandbox.io/s/0fqow2",
"keywords": [
"physics",
"cannon"
],
"dependencies": {
"@react-three/cannon": "^6.6.0",
"@react-three/fiber": "^8.17.5",
"@react-three/postprocessing": "^2.16.2",
"nice-color-palettes": "^3.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"three": "^0.165.0"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.165.0",
"@vitejs/plugin-react": "^4.3.1",
"typescript": "^5.5.4",
"vite": "^5.4.0"
},
"scripts": {
"dev": "vite --host",
"dev3": "e2e-dev $npm_package_name",
"build": "tsc && vite build",
"build2": "tsc && e2e-build $npm_package_name",
"preview": "vite preview",
"test": "e2e-test $npm_package_name"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/pmndrs/examples/tree/main/demos/basic-ballpit"
}
}