This repository has been archived by the owner on Apr 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "webvr-musical-forest",
"version": "0.0.1",
"description": "",
"authors": [],
"scripts": {
"start": "npm run build-css && npm run budo",
"build": "browserify js/index.js | derequire > build/main.js",
"buildmin": "browserify -g uglifyify js/index.js | derequire > build/main.js",
"build-css": "node-sass --include-path scss style/splash.scss build/style.css",
"budo": "budo js/index.js:build/main.js --live --verbose --port 3000",
"appengine": "~/bin/google_appengine/dev_appserver.py app.yaml",
"appengine_watch": "parallelshell 'npm run appengine' 'npm run watch'",
"watch": "watchify js/index.js -v -d -o build/main.js",
"discify": "browserify --full-paths js/index.js | derequire | discify --open"
},
"repository": {
"type": "git",
"url": "https://github.com/googlecreativelab/webvr-musicalforest"
},
"dependencies": {
"aframe": "^0.5.0",
"bufferutil": "^1.2.1",
"domready": "^1.0.8",
"envify": "^4.0.0",
"image-promise": "^4.0.1",
"startaudiocontext": "^1.2.0",
"tone": "^0.9.0",
"uglifyify": "^3.0.4",
"underscore": "^1.8.3",
"url-parse": "^1.1.6",
"webvr-polyfill": "aframevr/webvr-polyfill",
"webvr-ui": "^0.9.4"
},
"devDependencies": {
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-2": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^14.0.0",
"budo": "^9.4.7",
"derequire": "^2.0.3",
"discify": "^1.6.0",
"node-sass": "^4.5.2",
"parallelshell": "^2.0.0",
"utf-8-validate": "^1.2.1",
"watchify": "^3.7.0"
},
"keywords": [
"vr",
"webvr"
],
"license": "Apache-2.0",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}