-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "three-glslify-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"license": "MIT",
"dependencies": {
"bluebird": "*",
"dat-gui": "^0.5.0",
"garnish": "^3.2.0",
"glsl-checker": "^1.0.1",
"glsl-easings": "^1.0.0",
"glsl-halftone": "^1.0.4",
"glsl-hash-blur": "^1.0.2",
"glslify": "^2.1.1",
"isomorphic-fetch": "^2.2.1",
"jquery": "*",
"js-midi": "0.0.1",
"lodash": "^4.12.0",
"query-string": "^4.1.0",
"recordrtc": "^5.3.6",
"signals": "^1.0.0",
"socket.io-client": "^1.4.6",
"three": "^0.73.0",
"three-orbit-viewer": "^69.3.0",
"tween.js": "*"
},
"devDependencies": {
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^11.1.0",
"budo": "^5.1.5",
"garnish": "^3.2.1",
"glslify": "^2.3.1",
"maximize.js": "^1.1.1",
"uglify-js": "^2.4.21"
},
"scripts": {
"start": "budo index.js:bundle.js --host 0.0.0.0 --live | garnish -t [babelify --stage 1 ]",
"build": "browserify index.js | uglifyjs -cm > bundle.js"
},
"private": true,
"browserify": {
"transform": [
"babelify",
"glslify"
]
}
}