| 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
106
107
108
109
110
111
112
113
114
115
116
117
118
 | | { |  |   "name": "@vue/cli-service", |  |   "version": "4.4.6", |  |   "description": "local service for vue-cli projects", |  |   "main": "lib/Service.js", |  |   "typings": "types/index.d.ts", |  |   "bin": { |  |     "vue-cli-service": "bin/vue-cli-service.js" |  |   }, |  |   "repository": { |  |     "type": "git", |  |     "url": "git+https://github.com/vuejs/vue-cli.git", |  |     "directory": "packages/@vue/cli-service" |  |   }, |  |   "keywords": [ |  |     "vue", |  |     "cli" |  |   ], |  |   "author": "Evan You", |  |   "license": "MIT", |  |   "bugs": { |  |     "url": "https://github.com/vuejs/vue-cli/issues" |  |   }, |  |   "homepage": "https://cli.vuejs.org/", |  |   "dependencies": { |  |     "@intervolga/optimize-cssnano-plugin": "^1.0.5", |  |     "@soda/friendly-errors-webpack-plugin": "^1.7.1", |  |     "@soda/get-current-script": "^1.0.0", |  |     "@vue/cli-overlay": "^4.4.6", |  |     "@vue/cli-plugin-router": "^4.4.6", |  |     "@vue/cli-plugin-vuex": "^4.4.6", |  |     "@vue/cli-shared-utils": "^4.4.6", |  |     "@vue/component-compiler-utils": "^3.1.2", |  |     "@vue/preload-webpack-plugin": "^1.1.0", |  |     "@vue/web-component-wrapper": "^1.2.0", |  |     "acorn": "^7.2.0", |  |     "acorn-walk": "^7.1.1", |  |     "address": "^1.1.2", |  |     "autoprefixer": "^9.8.0", |  |     "browserslist": "^4.12.0", |  |     "cache-loader": "^4.1.0", |  |     "case-sensitive-paths-webpack-plugin": "^2.3.0", |  |     "cli-highlight": "^2.1.4", |  |     "clipboardy": "^2.3.0", |  |     "cliui": "^6.0.0", |  |     "copy-webpack-plugin": "^5.1.1", |  |     "css-loader": "^3.5.3", |  |     "cssnano": "^4.1.10", |  |     "debug": "^4.1.1", |  |     "default-gateway": "^5.0.5", |  |     "dotenv": "^8.2.0", |  |     "dotenv-expand": "^5.1.0", |  |     "file-loader": "^4.2.0", |  |     "fs-extra": "^7.0.1", |  |     "globby": "^9.2.0", |  |     "hash-sum": "^2.0.0", |  |     "html-webpack-plugin": "^3.2.0", |  |     "launch-editor-middleware": "^2.2.1", |  |     "lodash.defaultsdeep": "^4.6.1", |  |     "lodash.mapvalues": "^4.6.0", |  |     "lodash.transform": "^4.6.0", |  |     "mini-css-extract-plugin": "^0.9.0", |  |     "minimist": "^1.2.5", |  |     "pnp-webpack-plugin": "^1.6.4", |  |     "portfinder": "^1.0.26", |  |     "postcss-loader": "^3.0.0", |  |     "ssri": "^7.1.0", |  |     "terser-webpack-plugin": "^2.3.6", |  |     "thread-loader": "^2.1.3", |  |     "url-loader": "^2.2.0", |  |     "vue-loader": "^15.9.2", |  |     "vue-style-loader": "^4.1.2", |  |     "webpack": "^4.0.0", |  |     "webpack-bundle-analyzer": "^3.8.0", |  |     "webpack-chain": "^6.4.0", |  |     "webpack-dev-server": "^3.11.0", |  |     "webpack-merge": "^4.2.2" |  |   }, |  |   "peerDependencies": { |  |     "vue-template-compiler": "^2.0.0" |  |   }, |  |   "peerDependenciesMeta": { |  |     "less-loader": { |  |       "optional": true |  |     }, |  |     "pug-plain-loader": { |  |       "optional": true |  |     }, |  |     "raw-loader": { |  |       "optional": true |  |     }, |  |     "sass-loader": { |  |       "optional": true |  |     }, |  |     "stylus-loader": { |  |       "optional": true |  |     }, |  |     "vue-template-compiler": { |  |       "optional": true |  |     } |  |   }, |  |   "devDependencies": { |  |     "fibers": ">= 3.1.1 <5.0.0", |  |     "sass": "^1.26.5", |  |     "sass-loader": "^8.0.2", |  |     "vue": "^2.6.11", |  |     "vue-router": "^3.2.0", |  |     "vue-template-compiler": "^2.6.11", |  |     "vuex": "^3.4.0" |  |   }, |  |   "publishConfig": { |  |     "access": "public" |  |   }, |  |   "engines": { |  |     "node": ">=8" |  |   }, |  |   "gitHead": "e311b062cb388f4d6230ea45cdc3bd3512b88b61" |  | } | 
 |