-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.51 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "3js-webpack",
"version": "1.0.0",
"description": "A boilerplate for three.js using Webpack",
"main": "src/main.js",
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && npm run build:webpack && open .",
"build:webpack": "NODE_ENV=production webpack --config webpack/webpack.config.production.babel.js --progress --colors -p",
"dev": "NODE_ENV=development node -r babel-register webpack/server.js",
"start": "npm run dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amorino/luster.git"
},
"keywords": [
"three.js",
"webpack",
"stylus"
],
"author": "Erick Bazán",
"license": "MIT",
"bugs": {
"url": "https://github.com/amorino/luster/issues"
},
"homepage": "https://github.com/amorino/luster#readme",
"dependencies": {
"orbit-controls": "^1.1.2",
"signals": "^1.0.0",
"three": "^0.137.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.5.2",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.5.0",
"connect-history-api-fallback": "^1.1.0",
"css-loader": "^0.26.1",
"defined": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.13.0",
"eventsource-polyfill": "^0.9.6",
"exports-loader": "^0.6.3",
"express": "^4.13.4",
"file-loader": "^1.1.11",
"flow-bin": "^0.76.0",
"glsl-hash-blur": "^1.0.3",
"glsl-inject-defines": "^1.0.3",
"glslify-loader": "^1.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"imports-loader": "^0.7.0",
"ismobilejs": "^0.4.1",
"json-loader": "^0.5.4",
"lost": "^8.0.0",
"mini-css-extract-plugin": "^0.4.1",
"object-assign": "^4.0.1",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"postcss-focus": "^1.0.0",
"poststylus": "^0.2.3",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"rucksack-css": "^0.9.1",
"rupture": "^0.6.1",
"sanitize.css": "^5.0.0",
"style-loader": "^0.16.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"three-effectcomposer-es6": "^0.0.4",
"three-orbit-viewer": "^69.3.1",
"url-loader": "^0.5.8",
"webpack": "^4.16.0",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.7.1"
}
}