-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.26 KB
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
{
"name": "threejs-starter",
"version": "1.0.0",
"description": "THREE.js Starter Kit",
"main": "app/index.js",
"scripts": {
"start": "npm run dev",
"dev": "budo app/index.js:build/main.js --dir ./public --live --open -- -t babelify -g glslify",
"build": "browserify -t babelify -t stripify -g glslify app/index.js | uglifyjs -o public/build/main.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:vdaguenet/threejs-starter-kit.git"
},
"author": "Valentin Daguenet <valentin.daguenet@gmail.com> (http://vdaguenet.fr)",
"license": "MIT",
"dependencies": {
"@superguigui/wagner": "^0.1.15",
"dat-gui": "*",
"domready": "^1.0.8",
"event-emitter": "^0.3.4",
"glsl-noise": "0.0.0",
"glslify": "^5.0.2",
"gsap": "*",
"ios-safe-audio-context": "^1.0.1",
"raf": "*",
"three": "^0.73.2",
"web-audio-analyser": "^2.0.1",
"web-audio-player": "^1.1.1"
},
"devDependencies": {
"aliasify": "^1.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "*",
"babel-preset-es2015": "*",
"babelify": "*",
"browserify": "^13.0.0",
"budo": "*",
"glslify": "*",
"stringify": "^3.2.0",
"stripify": "*",
"ua-device-type": "0.0.4",
"uglifyjs": "*"
}
}