-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 882 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
24
25
26
27
28
29
{
"name": "threejs-starter",
"version": "1.0.0",
"description": "THREE.js Starter Kit",
"main": "build/main.js",
"scripts": {
"start": "npm run dev:script & npm run dev:server",
"dev:script": "watchify -t babelify app/index.js -o build/main.js",
"dev:server": "browser-sync start --server --files './' --port 3000 --no-ui",
"build": "browserify -t babelify -t stripify app/index.js | uglifyjs -o build/main.js"
},
"author": "Valentin Daguenet <[email protected]> (http://vdaguenet.fr)",
"license": "ISC",
"dependencies": {
"dat-gui": "^0.5.0",
"domready": "^1.0.8",
"gsap": "^1.17.0",
"raf": "^3.0.0",
"three": "^0.71.0"
},
"devDependencies": {
"babelify": "^6.1.2",
"browser-sync": "^2.7.5",
"browserify": "^10.2.1",
"stripify": "^3.0.0",
"uglifyjs": "^2.4.10",
"watchify": "^3.2.1"
}
}