-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.32 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
57
58
59
{
"name": "@demo/clouds",
"version": "0.1.0",
"homepage": "https://codesandbox.io/s/mbfzf",
"private": true,
"dependencies": {
"@react-three/drei": "^9.109.5",
"@react-three/fiber": "^8.17.5",
"leva": "^0.9.35",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"three": "^0.165.0",
"uuid": "^9.0.1"
},
"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"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"clouds",
"drei"
],
"description": "Trying out drei's new cloud component.",
"type": "module",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/pmndrs/examples/tree/main/demos/clouds"
}
}