-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
{
"name": "threejs-starter",
"version": "1.0.0",
"description": "THREE.js Starter Kit",
"main": "app/index.js",
"aliasify": "./aliasifyConfig.js",
"scripts": {
"start": "npm run dev",
"dev": "budo app/scripts/index.js:build/main.js --dir ./public --live --open -- -t babelify -g glslify | node-sass -w app/styles/main.scss -o public/build/",
"build": "browserify -t babelify -t stripify -g glslify app/scripts/index.js | uglifyjs -o public/build/main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/JordanMachado/threejs-starter.git"
},
"author": "Jordan Machado (http://jojo.ninja)",
"license": "MIT",
"dependencies": {
"@superguigui/wagner": "^0.1.2",
"component-emitter": "^1.2.1",
"dat-gui": "*",
"domready": "^1.0.8",
"fast-url-parser": "^1.1.3",
"gsap": "*",
"hex-rgb": "^1.0.0",
"konami-js": "0.0.2",
"querystringparser": "^0.1.1",
"raf": "*",
"resource-loader": "^2.0.1",
"sono": "^0.1.82",
"three": "*",
"three-obj-loader": "^1.0.2",
"three-orbit-controls": "^72.0.0",
"ua-device-type": "0.0.4"
},
"devDependencies": {
"aliasify": "^2.0.0",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-es2015-modules-commonjs": "*",
"babel-preset-es2015": "*",
"babelify": "*",
"browserify": "*",
"budo": "*",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^4.3.0",
"glslify": "*",
"node-sass": "^3.10.1",
"stripify": "*",
"uglifyjs": "*"
}
}