generated from kekkorider/threejs-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
23 lines (23 loc) · 799 Bytes
/
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
{
"name": "threejs-starter",
"version": "1.1.0",
"main": "src/index.js",
"author": "Francesco Michelini <[email protected]>",
"license": "MIT",
"scripts": {
"copy-draco-files": "rsync node_modules/three/examples/js/libs/draco/draco_decoder.wasm node_modules/three/examples/js/libs/draco/draco_wasm_wrapper.js dist",
"dev": "rm -rf dist && yarn copy-draco-files && parcel ./src/index.html",
"build": "rm -rf dist && yarn copy-draco-files && parcel build ./src/index.html --no-source-maps"
},
"devDependencies": {
"glslify-bundle": "^5.1.1",
"glslify-deps": "^1.3.2",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.0",
"sass": "^1.30.0"
},
"dependencies": {
"three": "^0.123.0",
"tweakpane": "^1.5.7"
}
}