forked from changfuguo/webpack4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.44 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "webpack4_demo",
"version": "1.0.0",
"description": "webpack4 demo",
"service": {
"version": "1.0.0",
"name": "risk_sw",
"scope": "/risk_m/"
},
"main": "index.js",
"sideEffects":false,
"scripts": {
"start": "BUILD_ENV=dev node build/dev-server.js",
"build": "cross-env BUILD_ENV=prod NODE_ENV=production node build/build.js",
"qa": "cross-env BUILD_ENV=qa NODE_ENV=production node build/build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/changfuguo/webpack4.git"
},
"keywords": [
"vue",
"vue-router",
"vuex"
],
"author": "febody",
"license": "ISC",
"dependencies": {
"lodash-es": "^4.17.11",
"vue": "^2.5.16",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"engines": {
"node": "> 8.10.1",
"npm": "> 3.0.0"
},
"devDependencies": {
"workbox-webpack-plugin": "^3.6.2",
"assets-webpack-plugin": "^3.9.7",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-async-to-module-method": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"chalk": "^2.4.1",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"cross-spawn": "^6.0.5",
"css-loader": "^0.28.7",
"ejs": "^2.5.7",
"eslint": "^5.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.2",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"glob": "^7.1.3",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.18.0",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.3",
"opn": "^5.3.0",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"ora": "^2.1.0",
"postcss": "^7.0.2",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^3.0.0",
"raf": "^3.4.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"scp2": "^0.5.0",
"semver": "^5.5.0",
"shelljs": "^0.8.2",
"style-loader": "^0.23.0",
"transfer-webpack-plugin": "^0.1.4",
"url-loader": "^1.0.1",
"vue-loader": "^15.4.1",
"vue-popup": "^0.2.14",
"vue-resource": "^1.5.1",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.17.2",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-hot-middleware": "^2.22.2",
"webpack-merge": "^4.1.1",
"yargs": "^12.0.2"
}
}