forked from lumalabs/luma-web-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "three",
"version": "1.0.0",
"description": "",
"main": "src/index.tsx",
"scripts": {
"build": "npx esbuild src/index.tsx --bundle --outdir=dist --sourcemap --preserve-symlinks --loader:.md=text --minify",
"dev": "npx esbuild src/index.tsx --bundle --outdir=dist --sourcemap --preserve-symlinks --watch --serve=localhost:3002 --servedir=. --loader:.md=text",
"start": "npm run dev",
"deploy": "./misc/deploy.sh"
},
"author": "",
"license": "ISC",
"dependencies": {
"@lumaai/luma-web": "^0.2.1",
"@react-three/drei": "^9.88.17",
"@react-three/fiber": "^8.15.11",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"@types/react-syntax-highlighter": "^15.5.10",
"lil-gui": "^0.19.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"three": "^0.157.0"
},
"devDependencies": {
"@types/three": "^0.157.2",
"esbuild": "^0.19.5",
"typescript": "^5.3.2"
}
}