forked from hughsk/moire-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 935 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 935 Bytes
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
{
"name": "mic-visualizer",
"scripts": {
"start": "budo index.js:public/js/bundle.js -d public --ssl --cors",
"genkey": "openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem",
"bundle": "browserify index.js -o public/js/bundle.js",
"deploy": "node ./deploy.js"
},
"dependencies": {
"browserify": "^16.2.3",
"canvas-fit": "^1.2.0",
"canvas-orbit-camera": "^1.0.0",
"express": "^4.16.4",
"gl-buffer": "^2.0.9",
"gl-context": "^0.1.0",
"gl-matrix": "^2.1.0",
"gl-shader": "^4.0.6",
"gl-texture2d": "git://github.com/stackgl/gl-texture2d.git#fix-dim-check",
"gl-vao": "^1.2.0",
"glsl-hsv2rgb": "^1.0.0",
"glslify": "^7.0.0",
"ndarray": "^1.0.15",
"web-audio-analyser": "^2.0.1"
},
"browserify": {
"transform": [
"glslify"
]
},
"devDependencies": {
"budo": "^11.5.0",
"gh-pages": "^2.0.1"
}
}