-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.06 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
{
"name": "Starter",
"version": "1.0.0",
"description": "starter with webpack2 / es6 / stylus",
"homepage": "https://github.com/Makio64/starter2",
"repository": {
"type": "git",
"url": "https://github.com/Makio64/starter2"
},
"bugs": {
"url": "https://github.com/Makio64/starter2/issues"
},
"keywords": [
"starter2",
"webpack2",
"webpack",
"stylus",
"es6"
],
"authors": [
"david.ronai <[email protected]>"
],
"license": "MIT",
"engines": {
"node": "*",
"npm": "*"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babili-webpack-plugin": "0.1.2",
"browser-sync": "^2.18.12",
"browser-sync-webpack-plugin": "^1.2.0",
"del-cli": "^1.1.0",
"gsap": "^1.20.2",
"ismobilejs": "^0.4.1",
"mkdirp": "^0.5.1",
"nib": "^1.1.2",
"npm-run-all": "^4.0.2",
"optimize-js-plugin": "0.0.4",
"page": "^1.7.1",
"run-p": "0.0.0",
"shader-loader": "^1.3.0",
"signals": "^1.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"three": "^0.86.0",
"three-orbit-controls": "^82.1.0",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1",
"websocket": "^1.0.24"
},
"scripts": {
"start": "run-p js:dev-classic css:dev",
"dist": "del-cli app/bin && del-cli app/css && mkdirp app/css && npm run css:dist && npm run js:prod",
"js:dev": "webpack-dev-server",
"js:dev-classic": "webpack --progress -d -w",
"js:prod": "webpack --progress --env.compress --display-modules --display-reasons",
"js:prod-extra": "webpack --progress --display-modules --display-reasons --display-exclude='vue' -p",
"css:dev": "mkdirp app/css && stylus ./src/stylus/main.styl -o app/css/main.css -u nib --sourcemap -w",
"css:dist": "stylus src/stylus/main.styl -o app/css -u nib -c"
},
"dependencies": {
"gsap": "^1.20.2",
"three.meshline": "^1.0.3"
}
}