-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.37 KB
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
{
"name": "as_cli",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"analyz": "webpack-bundle-analyzer --port 8888 ./dist/stats.json",
"dll": "webpack --config build/webpack.dll.conf.js",
"build": "node build/build.js",
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"add-asset-html-webpack-plugin": "^3.1.3",
"babel-loader": "^8.1.0",
"babel-plugin-component": "^1.1.1",
"blade-loader": "^0.0.2",
"chalk": "^4.1.0",
"compression-webpack-plugin": "^1.1.12",
"copy-webpack-plugin": "^6.0.3",
"core-js": "^3.6.5",
"css-loader": "^4.2.1",
"eslint": "^7.6.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^6.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"less-loader": "^6.2.0",
"mini-css-extract-plugin": "^0.9.0",
"mockjs": "^1.1.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"ora": "^4.1.0",
"portfinder": "^1.0.28",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"rimraf": "^3.0.2",
"sass-loader": "^9.0.3",
"style-loader": "^1.2.1",
"stylus-loader": "^3.0.2",
"thread-loader": "^2.1.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.0",
"vue-loader": "^15.9.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.5.1",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3",
"webpack-merge": "^5.1.1",
"workbox-webpack-plugin": "^5.1.3"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"element-ui": "^2.15.0",
"vue": "^2.6.11",
"vue-router": "^3.4.1"
},
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 8-11"
],
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
}
}