-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
82 lines (82 loc) · 2.66 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
{
"name": "webpack-exnext-cli",
"version": "0.0.1",
"description": "support multiple entries、exnext and es5 output、split chunk freely",
"main": "index.js",
"scripts": {
"prebuild:test": "sh bin/clean-public.sh",
"prebuild:prod": "sh bin/clean-public.sh",
"dev": "cross-env NODE_ENV=development MOCK=false node webpack/dev.config.js $*",
"dev:mock": "cross-env NODE_ENV=development MOCK=true node webpack/dev.config.js $*",
"build:test": "cross-env NODE_ENV=test node webpack/test.config.js",
"build:prod": "cross-env NODE_ENV=production node webpack/prod.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smallcatcat-joe/webpack-esnext-cli.git"
},
"keywords": [
"webpack",
"node",
"exnext",
"es5"
],
"author": "joe <smallcatcat.joe@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/smallcatcat-joe/webpack-esnext-cli/issues"
},
"homepage": "https://github.com/smallcatcat-joe/webpack-esnext-cli#readme",
"devDependencies": {
"autoprefixer": "^9.1.2",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"chokidar": "^2.0.4",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs-extra": "^7.0.0",
"glob": "^7.1.2",
"happypack": "^5.0.0",
"html-webpack-include-assets-plugin": "^1.0.4",
"html-webpack-plugin": "^3.2.0",
"md5": "^2.2.1",
"mini-css-extract-plugin": "^0.4.2",
"mockjs": "^1.0.1-beta3",
"node-notifier": "^5.2.1",
"node-sass": "^4.9.3",
"nunjucks": "^3.0.1",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"path-to-regexp": "^2.3.0",
"postcss-aspect-ratio-mini": "0.0.2",
"postcss-auto-set-imageset": "0.0.4",
"postcss-loader": "^3.0.0",
"postcss-px-to-viewport": "0.0.3",
"postcss-write-svg": "^3.0.1",
"progress-bar-webpack-plugin": "^1.11.0",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^1.3.3",
"style-loader": "^0.22.1",
"url-loader": "^1.1.1",
"vue-loader": "^15.4.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-deep-scope-plugin": "^1.5.3",
"webpack-dev-server": "^2.11.2",
"webpack-manifest-plugin": "^2.0.3",
"webpack-merge": "^4.1.4",
"webpack-parallel-uglify-plugin": "^1.1.0",
"write-file-webpack-plugin": "^4.3.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"vue": "2.5.17",
"vue-router": "^3.0.1"
}
}