-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
{
"name": "three-js-starter-kit",
"version": "1.0.0",
"description": "Experiment starter kit using Three.js, Wagner, TweenMax & Webpack.",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --progress --colors --hot --inline --config webpack.config.js",
"build": "webpack --progress --colors --config webpack.prod.config.js"
},
"author": {
"name": "Arnaud Rocca",
"url": "http://arnaudrocca.fr",
"mail": "arnaud.rocca@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ArnaudRocca/three-js-starter-kit.git"
},
"homepage": "https://github.com/ArnaudRocca/three-js-starter-kit",
"dependencies": {
"@superguigui/wagner": "^0.1.21",
"glslify": "^5.0.2",
"glslify-fancy-imports": "^1.0.1",
"glslify-hex": "^2.0.1",
"gsap": "^1.18.4",
"lodash.bindall": "^4.4.0",
"orbit-controls-es6": "^1.0.8",
"stats.js": "^0.17.0",
"three": "^0.76.1"
},
"devDependencies": {
"autoprefixer": "^6.5.4",
"babel-cli": "^6.18.0",
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.4",
"babel-preset-es2015": "^6.6.0",
"clean-webpack-plugin": "^0.1.9",
"copy-webpack-plugin": "^2.1.3",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.16.1",
"ify-loader": "^1.0.3",
"json-loader": "^0.5.4",
"postcss-loader": "^1.2.1",
"precss": "^1.4.0",
"raw-loader": "^0.5.1",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.4.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"glslify": {
"transform": [
"glslify-fancy-imports",
"glslify-hex"
]
}
}