-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.52 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
{
"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": {
"array-flatten": "^2.1.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"browser-sync": "^2.21.0",
"browser-sync-webpack-plugin": "^1.2.0",
"css-hot-loader": "^1.3.5",
"css-loader": "^0.28.7",
"del-cli": "^1.1.0",
"detect-browser": "^2.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-loader": "^0.5.1",
"ismobilejs": "^0.4.1",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"nib": "^1.1.2",
"npm": "^5.6.0",
"npm-run-all": "^4.1.2",
"optimize-js-plugin": "0.0.4",
"page": "^1.7.1",
"raw-loader": "^1.0.0-beta.0",
"run-p": "0.0.0",
"shader-loader": "^1.3.1",
"style-loader": "^0.19.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"three": "^0.89.0",
"three-orbit-controls": "^82.1.0",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-dev-server": "^2.9.7",
"websocket": "^1.0.25"
},
"scripts": {
"start": "run-p js:dev css:dev",
"ss": "run-p start autosave",
"autosave": "node src/js/mnf/save/SaveNodeServer.js",
"copymnf": "del-cli src/js/mnf && mkdirp src/js/mnf && ncp ../starter2017/src/js/mnf/ src/js/mnf/",
"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"
}
}