forked from FormidableLabs/github-2049
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.27 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.27 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
{
"name": "github-2049",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:base": "esbuild src/index.jsx --bundle --outfile=dist/out.js --loader:.glb=file --loader:.ttf=file",
"build:dev": "yarn build:base --sourcemap --define:process.env.NODE_ENV=\"'development'\" --serve",
"build:prod": "yarn build:base --sourcemap --define:process.env.NODE_ENV=\"'production'\" --minify",
"dev": "concurrently 'yarn build:dev' 'yarn serve'",
"serve": "serve-index --dir=\"./dist\" --template=\"./src/index.html\"",
"serve:prod": "serve-index --dir=\"./dist\" --template=\"./dist/index.html\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^5.3.0",
"esbuild": "^0.8.17",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"serve-index-cli": "^1.2.1"
},
"dependencies": {
"@react-three/flex": "^0.5.2",
"@react-three/postprocessing": "^1.5.0",
"drei": "^2.2.10",
"lodash-es": "^4.17.15",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-spring": "^8.0.27",
"react-three-fiber": "^5.3.7",
"three": "^0.123.0",
"three.meshline": "^1.3.0",
"troika-three-text": "^0.36.1",
"victory": "^35.4.4"
}
}