forked from songkai2012/webpack_multiPage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.42 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
{
"name": "webpack_grow",
"version": "1.0.0",
"description": "a simple webpack project grow to stronger",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "set NODE_ENV=production&&webpack --config ./webpack.config.product.js --color --progress",
"start": "set NODE_ENV=env&&webpack-dev-server --config ./webpack.config.js --open --hot --progress",
"dev": "set NODE_ENV=env&&webpack-dev-server --config ./webpack.config.product.js --open --hot --progress",
"dll": "webpack --config ./webpack-config/webpack.dll.js",
"dash": "set NODE_ENV=server&&webpack-dashboard -- node server.js",
"server": "set NODE_ENV=server&&node server.js --open",
"app": "node server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/songkai2012/webpack.git"
},
"keywords": [
"webpack",
"multiPage"
],
"author": "ivank",
"license": "ISC",
"devDependencies": {
"add-asset-html-webpack-plugin": "^2.1.2",
"autoprefixer": "^7.1.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^2.1.2",
"fs": "0.0.1-security",
"glob": "^7.1.2",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"path": "^0.12.7",
"postcss-loader": "^2.0.8",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"scss-loader": "0.0.1",
"style-loader": "^0.19.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"uglifyjs-webpack-plugin": "^1.0.1",
"vue": "^2.5.3",
"vue-loader": "^13.5.0",
"webpack": "^3.8.1",
"webpack-dashboard": "^1.0.2",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^2.9.3",
"webpack-hot-middleware": "^2.20.0",
"webpack-visualizer-plugin": "^0.1.11"
},
"dependencies": {
"axios": "^0.17.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"express": "^4.16.2",
"file-loader": "^1.1.5",
"jquery": "^3.2.1",
"node-sass": "^4.6.0",
"url-loader": "^0.6.2",
"vue-template-compiler": "^2.5.3"
},
"bugs": {
"url": "https://github.com/songkai2012/webpack/issues"
},
"homepage": "https://github.com/songkai2012/webpack#readme"
}