-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathpackage.json
47 lines (47 loc) · 1.5 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
{
"name": "webpack-vue-multiple",
"version": "1.0.0",
"description": "A Vue.js project",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --mode development",
"build": "cross-env NODE_ENV=production webpack --mode production",
"dll": "webpack --config webpack.dll.config.js"
},
"author": "fangxw",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"autodll-webpack-plugin": "^0.4.2",
"babel-loader": "^8.0.0",
"clean-webpack-plugin": "^1.0.0",
"cross-env": "^5.1.3",
"css-loader": "^0.28.11",
"glob": "^7.0.3",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"terser-webpack-plugin": "^1.2.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^1.1.2",
"vue-hot-reload-api": "^2.3.1",
"vue-html-loader": "^1.2.4",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"axios": "^0.18.0",
"normalize.css": "^8.0.1",
"vue": "^2.5.17"
},
"license": "ISC"
}