This repository has been archived by the owner on Nov 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.83 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
{
"name": "webpack-mpa-builder",
"version": "0.7.0",
"description": "Standalone multi-page app builder using Webpack",
"bin": {
"webpack-mpa-builder": "./index.js",
"wmb": "./index.js"
},
"author": "Andrew Wei <andrewscwei@gmail.com>",
"files": [
"config",
"tasks",
"utils",
"index.js"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andrewscwei/webpack-mpa-builder.git"
},
"scripts": {
"test": "mocha --recursive --reporter spec tests",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"autoprefixer": "^7.1.4",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"chalk": "^2.1.0",
"commander": "^2.11.0",
"compression-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.1.0",
"css-loader": "^0.28.7",
"del": "^3.0.0",
"eslint": "^4.8.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.4",
"html-webpack-plugin": "^2.30.1",
"i18n": "^0.8.3",
"imagemin-webpack-plugin": "^1.5.2",
"mocha": "^3.5.3",
"node-sass": "^4.5.3",
"opn": "^5.1.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-loader": "^2.0.6",
"pug": "^2.0.0-rc.4",
"pug-loader": "^2.3.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1",
"webpack-merge": "^4.1.0"
},
"keywords": [
"webpack",
"mpa",
"multi-page",
"multiple-page",
"app",
"jade",
"pug",
"sass",
"scss",
"i18n"
]
}