diff options
-rw-r--r-- | package.json | 26 | ||||
-rw-r--r-- | src/App.vue | 10 | ||||
-rw-r--r-- | src/components/ConnectivityChecker.vue | 2 | ||||
-rw-r--r-- | src/components/Navbar.vue | 2 | ||||
-rw-r--r-- | src/components/SearchInput.vue | 8 | ||||
-rw-r--r-- | src/components/Service.vue | 2 | ||||
-rw-r--r-- | src/components/SettingToggle.vue | 7 | ||||
-rw-r--r-- | yarn.lock | 2195 |
8 files changed, 1264 insertions, 988 deletions
diff --git a/package.json b/package.json index 87fdf5b..f4a03b9 100644 --- a/package.json +++ b/package.json | |||
@@ -9,27 +9,27 @@ | |||
9 | }, | 9 | }, |
10 | "dependencies": { | 10 | "dependencies": { |
11 | "@fortawesome/fontawesome-free": "^5.15.1", | 11 | "@fortawesome/fontawesome-free": "^5.15.1", |
12 | "bulma": "^0.9.0", | 12 | "bulma": "^0.9.1", |
13 | "core-js": "^3.6.4", | 13 | "core-js": "^3.6.4", |
14 | "js-yaml": "^3.14.0", | 14 | "js-yaml": "^3.14.0", |
15 | "lodash.merge": "^4.6.2", | 15 | "lodash.merge": "^4.6.2", |
16 | "register-service-worker": "^1.7.1", | 16 | "register-service-worker": "^1.7.1", |
17 | "vue": "^2.6.11" | 17 | "vue": "^2.6.12" |
18 | }, | 18 | }, |
19 | "devDependencies": { | 19 | "devDependencies": { |
20 | "@vue/cli-plugin-babel": "~4.4.6", | 20 | "@vue/cli-plugin-babel": "~4.5.8", |
21 | "@vue/cli-plugin-eslint": "~4.4.6", | 21 | "@vue/cli-plugin-eslint": "~4.5.8", |
22 | "@vue/cli-plugin-pwa": "~4.4.6", | 22 | "@vue/cli-plugin-pwa": "~4.5.8", |
23 | "@vue/cli-service": "~4.4.6", | 23 | "@vue/cli-service": "~4.5.8", |
24 | "@vue/eslint-config-prettier": "^6.0.0", | 24 | "@vue/eslint-config-prettier": "^6.0.0", |
25 | "babel-eslint": "^10.1.0", | 25 | "babel-eslint": "^10.1.0", |
26 | "eslint": "^7.4.0", | 26 | "eslint": "^7.11.0", |
27 | "eslint-plugin-prettier": "^3.1.4", | 27 | "eslint-plugin-prettier": "^3.1.4", |
28 | "eslint-plugin-vue": "^6.2.2", | 28 | "eslint-plugin-vue": "^7.1.0", |
29 | "prettier": "^2.0.5", | 29 | "prettier": "^2.1.2", |
30 | "raw-loader": "^4.0.1", | 30 | "raw-loader": "^4.0.2", |
31 | "sass": "^1.26.10", | 31 | "sass": "^1.27.0", |
32 | "sass-loader": "^9.0.2", | 32 | "sass-loader": "^10.0.4", |
33 | "vue-template-compiler": "^2.6.11" | 33 | "vue-template-compiler": "^2.6.12" |
34 | } | 34 | } |
35 | } | 35 | } |
diff --git a/src/App.vue b/src/App.vue index c47b5a9..d97df0c 100644 --- a/src/App.vue +++ b/src/App.vue | |||
@@ -26,7 +26,7 @@ | |||
26 | <Navbar | 26 | <Navbar |
27 | :open="showMenu" | 27 | :open="showMenu" |
28 | :links="config.links" | 28 | :links="config.links" |
29 | @navbar:toggle="showMenu = !showMenu" | 29 | @navbar-toggle="showMenu = !showMenu" |
30 | > | 30 | > |
31 | <DarkMode @updated="isDark = $event" /> | 31 | <DarkMode @updated="isDark = $event" /> |
32 | 32 | ||
@@ -40,9 +40,9 @@ | |||
40 | <SearchInput | 40 | <SearchInput |
41 | class="navbar-item is-inline-block-mobile" | 41 | class="navbar-item is-inline-block-mobile" |
42 | @input="filterServices" | 42 | @input="filterServices" |
43 | @search:focus="showMenu = true" | 43 | @search-focus="showMenu = true" |
44 | @search:open="navigateToFirstService" | 44 | @search-open="navigateToFirstService" |
45 | @search:cancel="filterServices" | 45 | @search-cancel="filterServices" |
46 | /> | 46 | /> |
47 | </Navbar> | 47 | </Navbar> |
48 | </div> | 48 | </div> |
@@ -51,7 +51,7 @@ | |||
51 | <div v-cloak class="container"> | 51 | <div v-cloak class="container"> |
52 | <ConnectivityChecker | 52 | <ConnectivityChecker |
53 | v-if="config.connectivityCheck" | 53 | v-if="config.connectivityCheck" |
54 | @network:status-update="offline = $event" | 54 | @network-status-update="offline = $event" |
55 | /> | 55 | /> |
56 | <div v-if="!offline"> | 56 | <div v-if="!offline"> |
57 | <!-- Optional messages --> | 57 | <!-- Optional messages --> |
diff --git a/src/components/ConnectivityChecker.vue b/src/components/ConnectivityChecker.vue index a91a809..d5f8f80 100644 --- a/src/components/ConnectivityChecker.vue +++ b/src/components/ConnectivityChecker.vue | |||
@@ -44,7 +44,7 @@ export default { | |||
44 | that.offline = true; | 44 | that.offline = true; |
45 | }) | 45 | }) |
46 | .finally(function () { | 46 | .finally(function () { |
47 | that.$emit("network:status-update", that.offline); | 47 | that.$emit("network-status-update", that.offline); |
48 | }); | 48 | }); |
49 | }, | 49 | }, |
50 | }, | 50 | }, |
diff --git a/src/components/Navbar.vue b/src/components/Navbar.vue index ae84166..dea7049 100644 --- a/src/components/Navbar.vue +++ b/src/components/Navbar.vue | |||
@@ -9,7 +9,7 @@ | |||
9 | aria-expanded="false" | 9 | aria-expanded="false" |
10 | class="navbar-burger" | 10 | class="navbar-burger" |
11 | :class="{ 'is-active': showMenu }" | 11 | :class="{ 'is-active': showMenu }" |
12 | v-on:click="$emit('navbar:toggle')" | 12 | v-on:click="$emit('navbar-toggle')" |
13 | > | 13 | > |
14 | <span aria-hidden="true"></span> | 14 | <span aria-hidden="true"></span> |
15 | <span aria-hidden="true"></span> | 15 | <span aria-hidden="true"></span> |
diff --git a/src/components/SearchInput.vue b/src/components/SearchInput.vue index 22b5eef..9419db3 100644 --- a/src/components/SearchInput.vue +++ b/src/components/SearchInput.vue | |||
@@ -6,8 +6,8 @@ | |||
6 | ref="search" | 6 | ref="search" |
7 | :value="value" | 7 | :value="value" |
8 | @input="$emit('input', $event.target.value.toLowerCase())" | 8 | @input="$emit('input', $event.target.value.toLowerCase())" |
9 | @keyup.enter.exact="$emit('search:open')" | 9 | @keyup.enter.exact="$emit('search-open')" |
10 | @keyup.alt.enter="$emit('search:open', '_blank')" | 10 | @keyup.alt.enter="$emit('search-open', '_blank')" |
11 | /> | 11 | /> |
12 | </div> | 12 | </div> |
13 | </template> | 13 | </template> |
@@ -20,7 +20,7 @@ export default { | |||
20 | this._keyListener = function (event) { | 20 | this._keyListener = function (event) { |
21 | if (event.key === "/") { | 21 | if (event.key === "/") { |
22 | event.preventDefault(); | 22 | event.preventDefault(); |
23 | this.$emit("search:focus"); | 23 | this.$emit("search-focus"); |
24 | this.$nextTick(() => { | 24 | this.$nextTick(() => { |
25 | this.$refs.search.focus(); | 25 | this.$refs.search.focus(); |
26 | }); | 26 | }); |
@@ -28,7 +28,7 @@ export default { | |||
28 | if (event.key === "Escape") { | 28 | if (event.key === "Escape") { |
29 | this.$refs.search.value = ""; | 29 | this.$refs.search.value = ""; |
30 | this.$refs.search.blur(); | 30 | this.$refs.search.blur(); |
31 | this.$emit("search:cancel"); | 31 | this.$emit("search-cancel"); |
32 | } | 32 | } |
33 | }; | 33 | }; |
34 | document.addEventListener("keydown", this._keyListener.bind(this)); | 34 | document.addEventListener("keydown", this._keyListener.bind(this)); |
diff --git a/src/components/Service.vue b/src/components/Service.vue index 81ad8a2..4d3702b 100644 --- a/src/components/Service.vue +++ b/src/components/Service.vue | |||
@@ -11,7 +11,7 @@ | |||
11 | </div> | 11 | </div> |
12 | <div v-if="item.icon" class="media-left"> | 12 | <div v-if="item.icon" class="media-left"> |
13 | <figure class="image is-48x48"> | 13 | <figure class="image is-48x48"> |
14 | <i style="font-size: 35px;" :class="['fa-fw', item.icon]"></i> | 14 | <i style="font-size: 35px" :class="['fa-fw', item.icon]"></i> |
15 | </figure> | 15 | </figure> |
16 | </div> | 16 | </div> |
17 | <div class="media-content"> | 17 | <div class="media-content"> |
diff --git a/src/components/SettingToggle.vue b/src/components/SettingToggle.vue index ffc91a1..985ca84 100644 --- a/src/components/SettingToggle.vue +++ b/src/components/SettingToggle.vue | |||
@@ -1,6 +1,6 @@ | |||
1 | <template> | 1 | <template> |
2 | <a v-on:click="toggleSetting()" class="navbar-item is-inline-block-mobile"> | 2 | <a v-on:click="toggleSetting()" class="navbar-item is-inline-block-mobile"> |
3 | <span><i :class="['fas', 'fa-fw', value ? icon : iconAlt]"></i></span> | 3 | <span><i :class="['fas', 'fa-fw', value ? icon : secondaryIcon]"></i></span> |
4 | <slot></slot> | 4 | <slot></slot> |
5 | </a> | 5 | </a> |
6 | </template> | 6 | </template> |
@@ -15,13 +15,12 @@ export default { | |||
15 | }, | 15 | }, |
16 | data: function () { | 16 | data: function () { |
17 | return { | 17 | return { |
18 | secondaryIcon: null, | ||
18 | value: true, | 19 | value: true, |
19 | }; | 20 | }; |
20 | }, | 21 | }, |
21 | created: function () { | 22 | created: function () { |
22 | if (!this.iconAlt) { | 23 | this.secondaryIcon = this.iconAlt || this.icon; |
23 | this.iconAlt = this.icon; | ||
24 | } | ||
25 | 24 | ||
26 | if (this.name in localStorage) { | 25 | if (this.name in localStorage) { |
27 | this.value = JSON.parse(localStorage[this.name]); | 26 | this.value = JSON.parse(localStorage[this.name]); |
@@ -9,45 +9,40 @@ | |||
9 | dependencies: | 9 | dependencies: |
10 | "@babel/highlight" "^7.10.4" | 10 | "@babel/highlight" "^7.10.4" |
11 | 11 | ||
12 | "@babel/compat-data@^7.10.4": | 12 | "@babel/compat-data@^7.12.1": |
13 | version "7.10.4" | 13 | version "7.12.1" |
14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.10.4.tgz#706a6484ee6f910b719b696a9194f8da7d7ac241" | 14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.1.tgz#d7386a689aa0ddf06255005b4b991988021101a0" |
15 | integrity sha512-t+rjExOrSVvjQQXNp5zAIYDp00KjdvGl/TpDX5REPr0S9IAIPQMTilcfG6q8c0QFmj9lSTVySV2VTsyggvtNIw== | 15 | integrity sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ== |
16 | dependencies: | ||
17 | browserslist "^4.12.0" | ||
18 | invariant "^2.2.4" | ||
19 | semver "^5.5.0" | ||
20 | 16 | ||
21 | "@babel/core@^7.9.6": | 17 | "@babel/core@^7.11.0": |
22 | version "7.10.4" | 18 | version "7.12.3" |
23 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.4.tgz#780e8b83e496152f8dd7df63892b2e052bf1d51d" | 19 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.3.tgz#1b436884e1e3bff6fb1328dc02b208759de92ad8" |
24 | integrity sha512-3A0tS0HWpy4XujGc7QtOIHTeNwUgWaZc/WuS5YQrfhU67jnVmsD6OGPc1AKHH0LJHQICGncy3+YUjIhVlfDdcA== | 20 | integrity sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g== |
25 | dependencies: | 21 | dependencies: |
26 | "@babel/code-frame" "^7.10.4" | 22 | "@babel/code-frame" "^7.10.4" |
27 | "@babel/generator" "^7.10.4" | 23 | "@babel/generator" "^7.12.1" |
28 | "@babel/helper-module-transforms" "^7.10.4" | 24 | "@babel/helper-module-transforms" "^7.12.1" |
29 | "@babel/helpers" "^7.10.4" | 25 | "@babel/helpers" "^7.12.1" |
30 | "@babel/parser" "^7.10.4" | 26 | "@babel/parser" "^7.12.3" |
31 | "@babel/template" "^7.10.4" | 27 | "@babel/template" "^7.10.4" |
32 | "@babel/traverse" "^7.10.4" | 28 | "@babel/traverse" "^7.12.1" |
33 | "@babel/types" "^7.10.4" | 29 | "@babel/types" "^7.12.1" |
34 | convert-source-map "^1.7.0" | 30 | convert-source-map "^1.7.0" |
35 | debug "^4.1.0" | 31 | debug "^4.1.0" |
36 | gensync "^1.0.0-beta.1" | 32 | gensync "^1.0.0-beta.1" |
37 | json5 "^2.1.2" | 33 | json5 "^2.1.2" |
38 | lodash "^4.17.13" | 34 | lodash "^4.17.19" |
39 | resolve "^1.3.2" | 35 | resolve "^1.3.2" |
40 | semver "^5.4.1" | 36 | semver "^5.4.1" |
41 | source-map "^0.5.0" | 37 | source-map "^0.5.0" |
42 | 38 | ||
43 | "@babel/generator@^7.10.4": | 39 | "@babel/generator@^7.12.1": |
44 | version "7.10.4" | 40 | version "7.12.1" |
45 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.4.tgz#e49eeed9fe114b62fa5b181856a43a5e32f5f243" | 41 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.1.tgz#0d70be32bdaa03d7c51c8597dda76e0df1f15468" |
46 | integrity sha512-toLIHUIAgcQygFZRAQcsLQV3CBuX6yOIru1kJk/qqqvcRmZrYe6WavZTSG+bB8MxhnL9YPf+pKQfuiP161q7ng== | 42 | integrity sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg== |
47 | dependencies: | 43 | dependencies: |
48 | "@babel/types" "^7.10.4" | 44 | "@babel/types" "^7.12.1" |
49 | jsesc "^2.5.1" | 45 | jsesc "^2.5.1" |
50 | lodash "^4.17.13" | ||
51 | source-map "^0.5.0" | 46 | source-map "^0.5.0" |
52 | 47 | ||
53 | "@babel/helper-annotate-as-pure@^7.10.4": | 48 | "@babel/helper-annotate-as-pure@^7.10.4": |
@@ -65,54 +60,51 @@ | |||
65 | "@babel/helper-explode-assignable-expression" "^7.10.4" | 60 | "@babel/helper-explode-assignable-expression" "^7.10.4" |
66 | "@babel/types" "^7.10.4" | 61 | "@babel/types" "^7.10.4" |
67 | 62 | ||
68 | "@babel/helper-compilation-targets@^7.10.4", "@babel/helper-compilation-targets@^7.9.6": | 63 | "@babel/helper-compilation-targets@^7.12.1", "@babel/helper-compilation-targets@^7.9.6": |
69 | version "7.10.4" | 64 | version "7.12.1" |
70 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz#804ae8e3f04376607cc791b9d47d540276332bd2" | 65 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.1.tgz#310e352888fbdbdd8577be8dfdd2afb9e7adcf50" |
71 | integrity sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ== | 66 | integrity sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g== |
72 | dependencies: | 67 | dependencies: |
73 | "@babel/compat-data" "^7.10.4" | 68 | "@babel/compat-data" "^7.12.1" |
69 | "@babel/helper-validator-option" "^7.12.1" | ||
74 | browserslist "^4.12.0" | 70 | browserslist "^4.12.0" |
75 | invariant "^2.2.4" | ||
76 | levenary "^1.1.1" | ||
77 | semver "^5.5.0" | 71 | semver "^5.5.0" |
78 | 72 | ||
79 | "@babel/helper-create-class-features-plugin@^7.10.4": | 73 | "@babel/helper-create-class-features-plugin@^7.12.1": |
80 | version "7.10.4" | 74 | version "7.12.1" |
81 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.4.tgz#2d4015d0136bd314103a70d84a7183e4b344a355" | 75 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz#3c45998f431edd4a9214c5f1d3ad1448a6137f6e" |
82 | integrity sha512-9raUiOsXPxzzLjCXeosApJItoMnX3uyT4QdM2UldffuGApNrF8e938MwNpDCK9CPoyxrEoCgT+hObJc3mZa6lQ== | 76 | integrity sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w== |
83 | dependencies: | 77 | dependencies: |
84 | "@babel/helper-function-name" "^7.10.4" | 78 | "@babel/helper-function-name" "^7.10.4" |
85 | "@babel/helper-member-expression-to-functions" "^7.10.4" | 79 | "@babel/helper-member-expression-to-functions" "^7.12.1" |
86 | "@babel/helper-optimise-call-expression" "^7.10.4" | 80 | "@babel/helper-optimise-call-expression" "^7.10.4" |
87 | "@babel/helper-plugin-utils" "^7.10.4" | 81 | "@babel/helper-replace-supers" "^7.12.1" |
88 | "@babel/helper-replace-supers" "^7.10.4" | ||
89 | "@babel/helper-split-export-declaration" "^7.10.4" | 82 | "@babel/helper-split-export-declaration" "^7.10.4" |
90 | 83 | ||
91 | "@babel/helper-create-regexp-features-plugin@^7.10.4": | 84 | "@babel/helper-create-regexp-features-plugin@^7.12.1": |
92 | version "7.10.4" | 85 | version "7.12.1" |
93 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz#fdd60d88524659a0b6959c0579925e425714f3b8" | 86 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz#18b1302d4677f9dc4740fe8c9ed96680e29d37e8" |
94 | integrity sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g== | 87 | integrity sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA== |
95 | dependencies: | 88 | dependencies: |
96 | "@babel/helper-annotate-as-pure" "^7.10.4" | 89 | "@babel/helper-annotate-as-pure" "^7.10.4" |
97 | "@babel/helper-regex" "^7.10.4" | 90 | "@babel/helper-regex" "^7.10.4" |
98 | regexpu-core "^4.7.0" | 91 | regexpu-core "^4.7.1" |
99 | 92 | ||
100 | "@babel/helper-define-map@^7.10.4": | 93 | "@babel/helper-define-map@^7.10.4": |
101 | version "7.10.4" | 94 | version "7.10.5" |
102 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.4.tgz#f037ad794264f729eda1889f4ee210b870999092" | 95 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30" |
103 | integrity sha512-nIij0oKErfCnLUCWaCaHW0Bmtl2RO9cN7+u2QT8yqTywgALKlyUVOvHDElh+b5DwVC6YB1FOYFOTWcN/+41EDA== | 96 | integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ== |
104 | dependencies: | 97 | dependencies: |
105 | "@babel/helper-function-name" "^7.10.4" | 98 | "@babel/helper-function-name" "^7.10.4" |
106 | "@babel/types" "^7.10.4" | 99 | "@babel/types" "^7.10.5" |
107 | lodash "^4.17.13" | 100 | lodash "^4.17.19" |
108 | 101 | ||
109 | "@babel/helper-explode-assignable-expression@^7.10.4": | 102 | "@babel/helper-explode-assignable-expression@^7.10.4": |
110 | version "7.10.4" | 103 | version "7.12.1" |
111 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz#40a1cd917bff1288f699a94a75b37a1a2dbd8c7c" | 104 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz#8006a466695c4ad86a2a5f2fb15b5f2c31ad5633" |
112 | integrity sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A== | 105 | integrity sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA== |
113 | dependencies: | 106 | dependencies: |
114 | "@babel/traverse" "^7.10.4" | 107 | "@babel/types" "^7.12.1" |
115 | "@babel/types" "^7.10.4" | ||
116 | 108 | ||
117 | "@babel/helper-function-name@^7.10.4": | 109 | "@babel/helper-function-name@^7.10.4": |
118 | version "7.10.4" | 110 | version "7.10.4" |
@@ -137,32 +129,34 @@ | |||
137 | dependencies: | 129 | dependencies: |
138 | "@babel/types" "^7.10.4" | 130 | "@babel/types" "^7.10.4" |
139 | 131 | ||
140 | "@babel/helper-member-expression-to-functions@^7.10.4": | 132 | "@babel/helper-member-expression-to-functions@^7.12.1": |
141 | version "7.10.4" | 133 | version "7.12.1" |
142 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.4.tgz#7cd04b57dfcf82fce9aeae7d4e4452fa31b8c7c4" | 134 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz#fba0f2fcff3fba00e6ecb664bb5e6e26e2d6165c" |
143 | integrity sha512-m5j85pK/KZhuSdM/8cHUABQTAslV47OjfIB9Cc7P+PvlAoBzdb79BGNfw8RhT5Mq3p+xGd0ZfAKixbrUZx0C7A== | 135 | integrity sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ== |
144 | dependencies: | 136 | dependencies: |
145 | "@babel/types" "^7.10.4" | 137 | "@babel/types" "^7.12.1" |
146 | 138 | ||
147 | "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.8.3": | 139 | "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.8.3": |
148 | version "7.10.4" | 140 | version "7.12.1" |
149 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620" | 141 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz#1644c01591a15a2f084dd6d092d9430eb1d1216c" |
150 | integrity sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw== | 142 | integrity sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA== |
151 | dependencies: | 143 | dependencies: |
152 | "@babel/types" "^7.10.4" | 144 | "@babel/types" "^7.12.1" |
153 | 145 | ||
154 | "@babel/helper-module-transforms@^7.10.4": | 146 | "@babel/helper-module-transforms@^7.12.1": |
155 | version "7.10.4" | 147 | version "7.12.1" |
156 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.4.tgz#ca1f01fdb84e48c24d7506bb818c961f1da8805d" | 148 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz#7954fec71f5b32c48e4b303b437c34453fd7247c" |
157 | integrity sha512-Er2FQX0oa3nV7eM1o0tNCTx7izmQtwAQsIiaLRWtavAAEcskb0XJ5OjJbVrYXWOTr8om921Scabn4/tzlx7j1Q== | 149 | integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w== |
158 | dependencies: | 150 | dependencies: |
159 | "@babel/helper-module-imports" "^7.10.4" | 151 | "@babel/helper-module-imports" "^7.12.1" |
160 | "@babel/helper-replace-supers" "^7.10.4" | 152 | "@babel/helper-replace-supers" "^7.12.1" |
161 | "@babel/helper-simple-access" "^7.10.4" | 153 | "@babel/helper-simple-access" "^7.12.1" |
162 | "@babel/helper-split-export-declaration" "^7.10.4" | 154 | "@babel/helper-split-export-declaration" "^7.11.0" |
155 | "@babel/helper-validator-identifier" "^7.10.4" | ||
163 | "@babel/template" "^7.10.4" | 156 | "@babel/template" "^7.10.4" |
164 | "@babel/types" "^7.10.4" | 157 | "@babel/traverse" "^7.12.1" |
165 | lodash "^4.17.13" | 158 | "@babel/types" "^7.12.1" |
159 | lodash "^4.17.19" | ||
166 | 160 | ||
167 | "@babel/helper-optimise-call-expression@^7.10.4": | 161 | "@babel/helper-optimise-call-expression@^7.10.4": |
168 | version "7.10.4" | 162 | version "7.10.4" |
@@ -171,77 +165,86 @@ | |||
171 | dependencies: | 165 | dependencies: |
172 | "@babel/types" "^7.10.4" | 166 | "@babel/types" "^7.10.4" |
173 | 167 | ||
174 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0": | 168 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": |
175 | version "7.10.4" | 169 | version "7.10.4" |
176 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" | 170 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" |
177 | integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== | 171 | integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== |
178 | 172 | ||
179 | "@babel/helper-regex@^7.10.4": | 173 | "@babel/helper-regex@^7.10.4": |
180 | version "7.10.4" | 174 | version "7.10.5" |
181 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.4.tgz#59b373daaf3458e5747dece71bbaf45f9676af6d" | 175 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0" |
182 | integrity sha512-inWpnHGgtg5NOF0eyHlC0/74/VkdRITY9dtTpB2PrxKKn+AkVMRiZz/Adrx+Ssg+MLDesi2zohBW6MVq6b4pOQ== | 176 | integrity sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg== |
183 | dependencies: | 177 | dependencies: |
184 | lodash "^4.17.13" | 178 | lodash "^4.17.19" |
185 | 179 | ||
186 | "@babel/helper-remap-async-to-generator@^7.10.4": | 180 | "@babel/helper-remap-async-to-generator@^7.12.1": |
187 | version "7.10.4" | 181 | version "7.12.1" |
188 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.4.tgz#fce8bea4e9690bbe923056ded21e54b4e8b68ed5" | 182 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz#8c4dbbf916314f6047dc05e6a2217074238347fd" |
189 | integrity sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg== | 183 | integrity sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A== |
190 | dependencies: | 184 | dependencies: |
191 | "@babel/helper-annotate-as-pure" "^7.10.4" | 185 | "@babel/helper-annotate-as-pure" "^7.10.4" |
192 | "@babel/helper-wrap-function" "^7.10.4" | 186 | "@babel/helper-wrap-function" "^7.10.4" |
193 | "@babel/template" "^7.10.4" | 187 | "@babel/types" "^7.12.1" |
194 | "@babel/traverse" "^7.10.4" | ||
195 | "@babel/types" "^7.10.4" | ||
196 | 188 | ||
197 | "@babel/helper-replace-supers@^7.10.4": | 189 | "@babel/helper-replace-supers@^7.12.1": |
198 | version "7.10.4" | 190 | version "7.12.1" |
199 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf" | 191 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz#f15c9cc897439281891e11d5ce12562ac0cf3fa9" |
200 | integrity sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A== | 192 | integrity sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw== |
201 | dependencies: | 193 | dependencies: |
202 | "@babel/helper-member-expression-to-functions" "^7.10.4" | 194 | "@babel/helper-member-expression-to-functions" "^7.12.1" |
203 | "@babel/helper-optimise-call-expression" "^7.10.4" | 195 | "@babel/helper-optimise-call-expression" "^7.10.4" |
204 | "@babel/traverse" "^7.10.4" | 196 | "@babel/traverse" "^7.12.1" |
205 | "@babel/types" "^7.10.4" | 197 | "@babel/types" "^7.12.1" |
206 | 198 | ||
207 | "@babel/helper-simple-access@^7.10.4": | 199 | "@babel/helper-simple-access@^7.12.1": |
208 | version "7.10.4" | 200 | version "7.12.1" |
209 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461" | 201 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz#32427e5aa61547d38eb1e6eaf5fd1426fdad9136" |
210 | integrity sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw== | 202 | integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA== |
211 | dependencies: | 203 | dependencies: |
212 | "@babel/template" "^7.10.4" | 204 | "@babel/types" "^7.12.1" |
213 | "@babel/types" "^7.10.4" | ||
214 | 205 | ||
215 | "@babel/helper-split-export-declaration@^7.10.4": | 206 | "@babel/helper-skip-transparent-expression-wrappers@^7.12.1": |
216 | version "7.10.4" | 207 | version "7.12.1" |
217 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz#2c70576eaa3b5609b24cb99db2888cc3fc4251d1" | 208 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf" |
218 | integrity sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg== | 209 | integrity sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA== |
219 | dependencies: | 210 | dependencies: |
220 | "@babel/types" "^7.10.4" | 211 | "@babel/types" "^7.12.1" |
212 | |||
213 | "@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0": | ||
214 | version "7.11.0" | ||
215 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" | ||
216 | integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== | ||
217 | dependencies: | ||
218 | "@babel/types" "^7.11.0" | ||
221 | 219 | ||
222 | "@babel/helper-validator-identifier@^7.10.4": | 220 | "@babel/helper-validator-identifier@^7.10.4": |
223 | version "7.10.4" | 221 | version "7.10.4" |
224 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" | 222 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" |
225 | integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== | 223 | integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== |
226 | 224 | ||
225 | "@babel/helper-validator-option@^7.12.1": | ||
226 | version "7.12.1" | ||
227 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz#175567380c3e77d60ff98a54bb015fe78f2178d9" | ||
228 | integrity sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A== | ||
229 | |||
227 | "@babel/helper-wrap-function@^7.10.4": | 230 | "@babel/helper-wrap-function@^7.10.4": |
228 | version "7.10.4" | 231 | version "7.12.3" |
229 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz#8a6f701eab0ff39f765b5a1cfef409990e624b87" | 232 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz#3332339fc4d1fbbf1c27d7958c27d34708e990d9" |
230 | integrity sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug== | 233 | integrity sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow== |
231 | dependencies: | 234 | dependencies: |
232 | "@babel/helper-function-name" "^7.10.4" | 235 | "@babel/helper-function-name" "^7.10.4" |
233 | "@babel/template" "^7.10.4" | 236 | "@babel/template" "^7.10.4" |
234 | "@babel/traverse" "^7.10.4" | 237 | "@babel/traverse" "^7.10.4" |
235 | "@babel/types" "^7.10.4" | 238 | "@babel/types" "^7.10.4" |
236 | 239 | ||
237 | "@babel/helpers@^7.10.4": | 240 | "@babel/helpers@^7.12.1": |
238 | version "7.10.4" | 241 | version "7.12.1" |
239 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044" | 242 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.1.tgz#8a8261c1d438ec18cb890434df4ec768734c1e79" |
240 | integrity sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA== | 243 | integrity sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g== |
241 | dependencies: | 244 | dependencies: |
242 | "@babel/template" "^7.10.4" | 245 | "@babel/template" "^7.10.4" |
243 | "@babel/traverse" "^7.10.4" | 246 | "@babel/traverse" "^7.12.1" |
244 | "@babel/types" "^7.10.4" | 247 | "@babel/types" "^7.12.1" |
245 | 248 | ||
246 | "@babel/highlight@^7.10.4": | 249 | "@babel/highlight@^7.10.4": |
247 | version "7.10.4" | 250 | version "7.10.4" |
@@ -252,108 +255,125 @@ | |||
252 | chalk "^2.0.0" | 255 | chalk "^2.0.0" |
253 | js-tokens "^4.0.0" | 256 | js-tokens "^4.0.0" |
254 | 257 | ||
255 | "@babel/parser@^7.10.4", "@babel/parser@^7.7.0": | 258 | "@babel/parser@^7.10.4", "@babel/parser@^7.12.1", "@babel/parser@^7.12.3", "@babel/parser@^7.7.0": |
256 | version "7.10.4" | 259 | version "7.12.3" |
257 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.4.tgz#9eedf27e1998d87739fb5028a5120557c06a1a64" | 260 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.3.tgz#a305415ebe7a6c7023b40b5122a0662d928334cd" |
258 | integrity sha512-8jHII4hf+YVDsskTF6WuMB3X4Eh+PsUkC2ljq22so5rHvH+T8BzyL94VOdyFLNR8tBSVXOTbNHOKpR4TfRxVtA== | 261 | integrity sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw== |
259 | 262 | ||
260 | "@babel/plugin-proposal-async-generator-functions@^7.10.4": | 263 | "@babel/plugin-proposal-async-generator-functions@^7.12.1": |
261 | version "7.10.4" | 264 | version "7.12.1" |
262 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.4.tgz#4b65abb3d9bacc6c657aaa413e56696f9f170fc6" | 265 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz#dc6c1170e27d8aca99ff65f4925bd06b1c90550e" |
263 | integrity sha512-MJbxGSmejEFVOANAezdO39SObkURO5o/8b6fSH6D1pi9RZQt+ldppKPXfqgUWpSQ9asM6xaSaSJIaeWMDRP0Zg== | 266 | integrity sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A== |
264 | dependencies: | 267 | dependencies: |
265 | "@babel/helper-plugin-utils" "^7.10.4" | 268 | "@babel/helper-plugin-utils" "^7.10.4" |
266 | "@babel/helper-remap-async-to-generator" "^7.10.4" | 269 | "@babel/helper-remap-async-to-generator" "^7.12.1" |
267 | "@babel/plugin-syntax-async-generators" "^7.8.0" | 270 | "@babel/plugin-syntax-async-generators" "^7.8.0" |
268 | 271 | ||
269 | "@babel/plugin-proposal-class-properties@^7.10.4", "@babel/plugin-proposal-class-properties@^7.8.3": | 272 | "@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.8.3": |
270 | version "7.10.4" | 273 | version "7.12.1" |
271 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz#a33bf632da390a59c7a8c570045d1115cd778807" | 274 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz#a082ff541f2a29a4821065b8add9346c0c16e5de" |
272 | integrity sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg== | 275 | integrity sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w== |
273 | dependencies: | 276 | dependencies: |
274 | "@babel/helper-create-class-features-plugin" "^7.10.4" | 277 | "@babel/helper-create-class-features-plugin" "^7.12.1" |
275 | "@babel/helper-plugin-utils" "^7.10.4" | 278 | "@babel/helper-plugin-utils" "^7.10.4" |
276 | 279 | ||
277 | "@babel/plugin-proposal-decorators@^7.8.3": | 280 | "@babel/plugin-proposal-decorators@^7.8.3": |
278 | version "7.10.4" | 281 | version "7.12.1" |
279 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.10.4.tgz#fe20ef10cc73f386f70910fca48798041cd357c7" | 282 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz#59271439fed4145456c41067450543aee332d15f" |
280 | integrity sha512-JHTWjQngOPv+ZQQqOGv2x6sCCr4IYWy7S1/VH6BE9ZfkoLrdQ2GpEP3tfb5M++G9PwvqjhY8VC/C3tXm+/eHvA== | 283 | integrity sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ== |
281 | dependencies: | 284 | dependencies: |
282 | "@babel/helper-create-class-features-plugin" "^7.10.4" | 285 | "@babel/helper-create-class-features-plugin" "^7.12.1" |
283 | "@babel/helper-plugin-utils" "^7.10.4" | 286 | "@babel/helper-plugin-utils" "^7.10.4" |
284 | "@babel/plugin-syntax-decorators" "^7.10.4" | 287 | "@babel/plugin-syntax-decorators" "^7.12.1" |
285 | 288 | ||
286 | "@babel/plugin-proposal-dynamic-import@^7.10.4": | 289 | "@babel/plugin-proposal-dynamic-import@^7.12.1": |
287 | version "7.10.4" | 290 | version "7.12.1" |
288 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz#ba57a26cb98b37741e9d5bca1b8b0ddf8291f17e" | 291 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz#43eb5c2a3487ecd98c5c8ea8b5fdb69a2749b2dc" |
289 | integrity sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ== | 292 | integrity sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ== |
290 | dependencies: | 293 | dependencies: |
291 | "@babel/helper-plugin-utils" "^7.10.4" | 294 | "@babel/helper-plugin-utils" "^7.10.4" |
292 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" | 295 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" |
293 | 296 | ||
294 | "@babel/plugin-proposal-json-strings@^7.10.4": | 297 | "@babel/plugin-proposal-export-namespace-from@^7.12.1": |
295 | version "7.10.4" | 298 | version "7.12.1" |
296 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz#593e59c63528160233bd321b1aebe0820c2341db" | 299 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz#8b9b8f376b2d88f5dd774e4d24a5cc2e3679b6d4" |
297 | integrity sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw== | 300 | integrity sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw== |
301 | dependencies: | ||
302 | "@babel/helper-plugin-utils" "^7.10.4" | ||
303 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" | ||
304 | |||
305 | "@babel/plugin-proposal-json-strings@^7.12.1": | ||
306 | version "7.12.1" | ||
307 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz#d45423b517714eedd5621a9dfdc03fa9f4eb241c" | ||
308 | integrity sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw== | ||
298 | dependencies: | 309 | dependencies: |
299 | "@babel/helper-plugin-utils" "^7.10.4" | 310 | "@babel/helper-plugin-utils" "^7.10.4" |
300 | "@babel/plugin-syntax-json-strings" "^7.8.0" | 311 | "@babel/plugin-syntax-json-strings" "^7.8.0" |
301 | 312 | ||
302 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.10.4": | 313 | "@babel/plugin-proposal-logical-assignment-operators@^7.12.1": |
303 | version "7.10.4" | 314 | version "7.12.1" |
304 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a" | 315 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz#f2c490d36e1b3c9659241034a5d2cd50263a2751" |
305 | integrity sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw== | 316 | integrity sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA== |
317 | dependencies: | ||
318 | "@babel/helper-plugin-utils" "^7.10.4" | ||
319 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" | ||
320 | |||
321 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1": | ||
322 | version "7.12.1" | ||
323 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz#3ed4fff31c015e7f3f1467f190dbe545cd7b046c" | ||
324 | integrity sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg== | ||
306 | dependencies: | 325 | dependencies: |
307 | "@babel/helper-plugin-utils" "^7.10.4" | 326 | "@babel/helper-plugin-utils" "^7.10.4" |
308 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" | 327 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" |
309 | 328 | ||
310 | "@babel/plugin-proposal-numeric-separator@^7.10.4": | 329 | "@babel/plugin-proposal-numeric-separator@^7.12.1": |
311 | version "7.10.4" | 330 | version "7.12.1" |
312 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz#ce1590ff0a65ad12970a609d78855e9a4c1aef06" | 331 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz#0e2c6774c4ce48be412119b4d693ac777f7685a6" |
313 | integrity sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA== | 332 | integrity sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA== |
314 | dependencies: | 333 | dependencies: |
315 | "@babel/helper-plugin-utils" "^7.10.4" | 334 | "@babel/helper-plugin-utils" "^7.10.4" |
316 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" | 335 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" |
317 | 336 | ||
318 | "@babel/plugin-proposal-object-rest-spread@^7.10.4": | 337 | "@babel/plugin-proposal-object-rest-spread@^7.12.1": |
319 | version "7.10.4" | 338 | version "7.12.1" |
320 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.4.tgz#50129ac216b9a6a55b3853fdd923e74bf553a4c0" | 339 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069" |
321 | integrity sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA== | 340 | integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== |
322 | dependencies: | 341 | dependencies: |
323 | "@babel/helper-plugin-utils" "^7.10.4" | 342 | "@babel/helper-plugin-utils" "^7.10.4" |
324 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" | 343 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" |
325 | "@babel/plugin-transform-parameters" "^7.10.4" | 344 | "@babel/plugin-transform-parameters" "^7.12.1" |
326 | 345 | ||
327 | "@babel/plugin-proposal-optional-catch-binding@^7.10.4": | 346 | "@babel/plugin-proposal-optional-catch-binding@^7.12.1": |
328 | version "7.10.4" | 347 | version "7.12.1" |
329 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz#31c938309d24a78a49d68fdabffaa863758554dd" | 348 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz#ccc2421af64d3aae50b558a71cede929a5ab2942" |
330 | integrity sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== | 349 | integrity sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g== |
331 | dependencies: | 350 | dependencies: |
332 | "@babel/helper-plugin-utils" "^7.10.4" | 351 | "@babel/helper-plugin-utils" "^7.10.4" |
333 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" | 352 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" |
334 | 353 | ||
335 | "@babel/plugin-proposal-optional-chaining@^7.10.4": | 354 | "@babel/plugin-proposal-optional-chaining@^7.12.1": |
336 | version "7.10.4" | 355 | version "7.12.1" |
337 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.10.4.tgz#750f1255e930a1f82d8cdde45031f81a0d0adff7" | 356 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz#cce122203fc8a32794296fc377c6dedaf4363797" |
338 | integrity sha512-ZIhQIEeavTgouyMSdZRap4VPPHqJJ3NEs2cuHs5p0erH+iz6khB0qfgU8g7UuJkG88+fBMy23ZiU+nuHvekJeQ== | 357 | integrity sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw== |
339 | dependencies: | 358 | dependencies: |
340 | "@babel/helper-plugin-utils" "^7.10.4" | 359 | "@babel/helper-plugin-utils" "^7.10.4" |
360 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" | ||
341 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" | 361 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" |
342 | 362 | ||
343 | "@babel/plugin-proposal-private-methods@^7.10.4": | 363 | "@babel/plugin-proposal-private-methods@^7.12.1": |
344 | version "7.10.4" | 364 | version "7.12.1" |
345 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz#b160d972b8fdba5c7d111a145fc8c421fc2a6909" | 365 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz#86814f6e7a21374c980c10d38b4493e703f4a389" |
346 | integrity sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== | 366 | integrity sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w== |
347 | dependencies: | 367 | dependencies: |
348 | "@babel/helper-create-class-features-plugin" "^7.10.4" | 368 | "@babel/helper-create-class-features-plugin" "^7.12.1" |
349 | "@babel/helper-plugin-utils" "^7.10.4" | 369 | "@babel/helper-plugin-utils" "^7.10.4" |
350 | 370 | ||
351 | "@babel/plugin-proposal-unicode-property-regex@^7.10.4", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": | 371 | "@babel/plugin-proposal-unicode-property-regex@^7.12.1", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": |
352 | version "7.10.4" | 372 | version "7.12.1" |
353 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz#4483cda53041ce3413b7fe2f00022665ddfaa75d" | 373 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz#2a183958d417765b9eae334f47758e5d6a82e072" |
354 | integrity sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== | 374 | integrity sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w== |
355 | dependencies: | 375 | dependencies: |
356 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" | 376 | "@babel/helper-create-regexp-features-plugin" "^7.12.1" |
357 | "@babel/helper-plugin-utils" "^7.10.4" | 377 | "@babel/helper-plugin-utils" "^7.10.4" |
358 | 378 | ||
359 | "@babel/plugin-syntax-async-generators@^7.8.0": | 379 | "@babel/plugin-syntax-async-generators@^7.8.0": |
@@ -363,17 +383,17 @@ | |||
363 | dependencies: | 383 | dependencies: |
364 | "@babel/helper-plugin-utils" "^7.8.0" | 384 | "@babel/helper-plugin-utils" "^7.8.0" |
365 | 385 | ||
366 | "@babel/plugin-syntax-class-properties@^7.10.4": | 386 | "@babel/plugin-syntax-class-properties@^7.12.1": |
367 | version "7.10.4" | 387 | version "7.12.1" |
368 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c" | 388 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz#bcb297c5366e79bebadef509549cd93b04f19978" |
369 | integrity sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== | 389 | integrity sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA== |
370 | dependencies: | 390 | dependencies: |
371 | "@babel/helper-plugin-utils" "^7.10.4" | 391 | "@babel/helper-plugin-utils" "^7.10.4" |
372 | 392 | ||
373 | "@babel/plugin-syntax-decorators@^7.10.4": | 393 | "@babel/plugin-syntax-decorators@^7.12.1": |
374 | version "7.10.4" | 394 | version "7.12.1" |
375 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.10.4.tgz#6853085b2c429f9d322d02f5a635018cdeb2360c" | 395 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.1.tgz#81a8b535b284476c41be6de06853a8802b98c5dd" |
376 | integrity sha512-2NaoC6fAk2VMdhY1eerkfHV+lVYC1u8b+jmRJISqANCJlTxYy19HGdIkkQtix2UtkcPuPu+IlDgrVseZnU03bw== | 396 | integrity sha512-ir9YW5daRrTYiy9UJ2TzdNIJEZu8KclVzDcfSt4iEmOtwQ4llPtWInNKJyKnVXp1vE4bbVd5S31M/im3mYMO1w== |
377 | dependencies: | 397 | dependencies: |
378 | "@babel/helper-plugin-utils" "^7.10.4" | 398 | "@babel/helper-plugin-utils" "^7.10.4" |
379 | 399 | ||
@@ -384,6 +404,13 @@ | |||
384 | dependencies: | 404 | dependencies: |
385 | "@babel/helper-plugin-utils" "^7.8.0" | 405 | "@babel/helper-plugin-utils" "^7.8.0" |
386 | 406 | ||
407 | "@babel/plugin-syntax-export-namespace-from@^7.8.3": | ||
408 | version "7.8.3" | ||
409 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" | ||
410 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== | ||
411 | dependencies: | ||
412 | "@babel/helper-plugin-utils" "^7.8.3" | ||
413 | |||
387 | "@babel/plugin-syntax-json-strings@^7.8.0": | 414 | "@babel/plugin-syntax-json-strings@^7.8.0": |
388 | version "7.8.3" | 415 | version "7.8.3" |
389 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" | 416 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" |
@@ -391,10 +418,17 @@ | |||
391 | dependencies: | 418 | dependencies: |
392 | "@babel/helper-plugin-utils" "^7.8.0" | 419 | "@babel/helper-plugin-utils" "^7.8.0" |
393 | 420 | ||
394 | "@babel/plugin-syntax-jsx@^7.2.0", "@babel/plugin-syntax-jsx@^7.8.3": | 421 | "@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.2.0", "@babel/plugin-syntax-jsx@^7.8.3": |
422 | version "7.12.1" | ||
423 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926" | ||
424 | integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== | ||
425 | dependencies: | ||
426 | "@babel/helper-plugin-utils" "^7.10.4" | ||
427 | |||
428 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": | ||
395 | version "7.10.4" | 429 | version "7.10.4" |
396 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz#39abaae3cbf710c4373d8429484e6ba21340166c" | 430 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" |
397 | integrity sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== | 431 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== |
398 | dependencies: | 432 | dependencies: |
399 | "@babel/helper-plugin-utils" "^7.10.4" | 433 | "@babel/helper-plugin-utils" "^7.10.4" |
400 | 434 | ||
@@ -433,348 +467,349 @@ | |||
433 | dependencies: | 467 | dependencies: |
434 | "@babel/helper-plugin-utils" "^7.8.0" | 468 | "@babel/helper-plugin-utils" "^7.8.0" |
435 | 469 | ||
436 | "@babel/plugin-syntax-top-level-await@^7.10.4": | 470 | "@babel/plugin-syntax-top-level-await@^7.12.1": |
437 | version "7.10.4" | 471 | version "7.12.1" |
438 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz#4bbeb8917b54fcf768364e0a81f560e33a3ef57d" | 472 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz#dd6c0b357ac1bb142d98537450a319625d13d2a0" |
439 | integrity sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== | 473 | integrity sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A== |
440 | dependencies: | 474 | dependencies: |
441 | "@babel/helper-plugin-utils" "^7.10.4" | 475 | "@babel/helper-plugin-utils" "^7.10.4" |
442 | 476 | ||
443 | "@babel/plugin-transform-arrow-functions@^7.10.4": | 477 | "@babel/plugin-transform-arrow-functions@^7.12.1": |
444 | version "7.10.4" | 478 | version "7.12.1" |
445 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz#e22960d77e697c74f41c501d44d73dbf8a6a64cd" | 479 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz#8083ffc86ac8e777fbe24b5967c4b2521f3cb2b3" |
446 | integrity sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== | 480 | integrity sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A== |
447 | dependencies: | 481 | dependencies: |
448 | "@babel/helper-plugin-utils" "^7.10.4" | 482 | "@babel/helper-plugin-utils" "^7.10.4" |
449 | 483 | ||
450 | "@babel/plugin-transform-async-to-generator@^7.10.4": | 484 | "@babel/plugin-transform-async-to-generator@^7.12.1": |
451 | version "7.10.4" | 485 | version "7.12.1" |
452 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz#41a5017e49eb6f3cda9392a51eef29405b245a37" | 486 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz#3849a49cc2a22e9743cbd6b52926d30337229af1" |
453 | integrity sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== | 487 | integrity sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A== |
454 | dependencies: | 488 | dependencies: |
455 | "@babel/helper-module-imports" "^7.10.4" | 489 | "@babel/helper-module-imports" "^7.12.1" |
456 | "@babel/helper-plugin-utils" "^7.10.4" | 490 | "@babel/helper-plugin-utils" "^7.10.4" |
457 | "@babel/helper-remap-async-to-generator" "^7.10.4" | 491 | "@babel/helper-remap-async-to-generator" "^7.12.1" |
458 | 492 | ||
459 | "@babel/plugin-transform-block-scoped-functions@^7.10.4": | 493 | "@babel/plugin-transform-block-scoped-functions@^7.12.1": |
460 | version "7.10.4" | 494 | version "7.12.1" |
461 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz#1afa595744f75e43a91af73b0d998ecfe4ebc2e8" | 495 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz#f2a1a365bde2b7112e0a6ded9067fdd7c07905d9" |
462 | integrity sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== | 496 | integrity sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA== |
463 | dependencies: | 497 | dependencies: |
464 | "@babel/helper-plugin-utils" "^7.10.4" | 498 | "@babel/helper-plugin-utils" "^7.10.4" |
465 | 499 | ||
466 | "@babel/plugin-transform-block-scoping@^7.10.4": | 500 | "@babel/plugin-transform-block-scoping@^7.12.1": |
467 | version "7.10.4" | 501 | version "7.12.1" |
468 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.4.tgz#a670d1364bb5019a621b9ea2001482876d734787" | 502 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz#f0ee727874b42a208a48a586b84c3d222c2bbef1" |
469 | integrity sha512-J3b5CluMg3hPUii2onJDRiaVbPtKFPLEaV5dOPY5OeAbDi1iU/UbbFFTgwb7WnanaDy7bjU35kc26W3eM5Qa0A== | 503 | integrity sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w== |
470 | dependencies: | 504 | dependencies: |
471 | "@babel/helper-plugin-utils" "^7.10.4" | 505 | "@babel/helper-plugin-utils" "^7.10.4" |
472 | lodash "^4.17.13" | ||
473 | 506 | ||
474 | "@babel/plugin-transform-classes@^7.10.4": | 507 | "@babel/plugin-transform-classes@^7.12.1": |
475 | version "7.10.4" | 508 | version "7.12.1" |
476 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz#405136af2b3e218bc4a1926228bc917ab1a0adc7" | 509 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz#65e650fcaddd3d88ddce67c0f834a3d436a32db6" |
477 | integrity sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== | 510 | integrity sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog== |
478 | dependencies: | 511 | dependencies: |
479 | "@babel/helper-annotate-as-pure" "^7.10.4" | 512 | "@babel/helper-annotate-as-pure" "^7.10.4" |
480 | "@babel/helper-define-map" "^7.10.4" | 513 | "@babel/helper-define-map" "^7.10.4" |
481 | "@babel/helper-function-name" "^7.10.4" | 514 | "@babel/helper-function-name" "^7.10.4" |
482 | "@babel/helper-optimise-call-expression" "^7.10.4" | 515 | "@babel/helper-optimise-call-expression" "^7.10.4" |
483 | "@babel/helper-plugin-utils" "^7.10.4" | 516 | "@babel/helper-plugin-utils" "^7.10.4" |
484 | "@babel/helper-replace-supers" "^7.10.4" | 517 | "@babel/helper-replace-supers" "^7.12.1" |
485 | "@babel/helper-split-export-declaration" "^7.10.4" | 518 | "@babel/helper-split-export-declaration" "^7.10.4" |
486 | globals "^11.1.0" | 519 | globals "^11.1.0" |
487 | 520 | ||
488 | "@babel/plugin-transform-computed-properties@^7.10.4": | 521 | "@babel/plugin-transform-computed-properties@^7.12.1": |
489 | version "7.10.4" | 522 | version "7.12.1" |
490 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz#9ded83a816e82ded28d52d4b4ecbdd810cdfc0eb" | 523 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz#d68cf6c9b7f838a8a4144badbe97541ea0904852" |
491 | integrity sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== | 524 | integrity sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg== |
492 | dependencies: | 525 | dependencies: |
493 | "@babel/helper-plugin-utils" "^7.10.4" | 526 | "@babel/helper-plugin-utils" "^7.10.4" |
494 | 527 | ||
495 | "@babel/plugin-transform-destructuring@^7.10.4": | 528 | "@babel/plugin-transform-destructuring@^7.12.1": |
496 | version "7.10.4" | 529 | version "7.12.1" |
497 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz#70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5" | 530 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz#b9a570fe0d0a8d460116413cb4f97e8e08b2f847" |
498 | integrity sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== | 531 | integrity sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw== |
499 | dependencies: | 532 | dependencies: |
500 | "@babel/helper-plugin-utils" "^7.10.4" | 533 | "@babel/helper-plugin-utils" "^7.10.4" |
501 | 534 | ||
502 | "@babel/plugin-transform-dotall-regex@^7.10.4", "@babel/plugin-transform-dotall-regex@^7.4.4": | 535 | "@babel/plugin-transform-dotall-regex@^7.12.1", "@babel/plugin-transform-dotall-regex@^7.4.4": |
503 | version "7.10.4" | 536 | version "7.12.1" |
504 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz#469c2062105c1eb6a040eaf4fac4b488078395ee" | 537 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz#a1d16c14862817b6409c0a678d6f9373ca9cd975" |
505 | integrity sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== | 538 | integrity sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA== |
506 | dependencies: | 539 | dependencies: |
507 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" | 540 | "@babel/helper-create-regexp-features-plugin" "^7.12.1" |
508 | "@babel/helper-plugin-utils" "^7.10.4" | 541 | "@babel/helper-plugin-utils" "^7.10.4" |
509 | 542 | ||
510 | "@babel/plugin-transform-duplicate-keys@^7.10.4": | 543 | "@babel/plugin-transform-duplicate-keys@^7.12.1": |
511 | version "7.10.4" | 544 | version "7.12.1" |
512 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz#697e50c9fee14380fe843d1f306b295617431e47" | 545 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz#745661baba295ac06e686822797a69fbaa2ca228" |
513 | integrity sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== | 546 | integrity sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw== |
514 | dependencies: | 547 | dependencies: |
515 | "@babel/helper-plugin-utils" "^7.10.4" | 548 | "@babel/helper-plugin-utils" "^7.10.4" |
516 | 549 | ||
517 | "@babel/plugin-transform-exponentiation-operator@^7.10.4": | 550 | "@babel/plugin-transform-exponentiation-operator@^7.12.1": |
518 | version "7.10.4" | 551 | version "7.12.1" |
519 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz#5ae338c57f8cf4001bdb35607ae66b92d665af2e" | 552 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz#b0f2ed356ba1be1428ecaf128ff8a24f02830ae0" |
520 | integrity sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== | 553 | integrity sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug== |
521 | dependencies: | 554 | dependencies: |
522 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" | 555 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" |
523 | "@babel/helper-plugin-utils" "^7.10.4" | 556 | "@babel/helper-plugin-utils" "^7.10.4" |
524 | 557 | ||
525 | "@babel/plugin-transform-for-of@^7.10.4": | 558 | "@babel/plugin-transform-for-of@^7.12.1": |
526 | version "7.10.4" | 559 | version "7.12.1" |
527 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz#c08892e8819d3a5db29031b115af511dbbfebae9" | 560 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz#07640f28867ed16f9511c99c888291f560921cfa" |
528 | integrity sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== | 561 | integrity sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg== |
529 | dependencies: | 562 | dependencies: |
530 | "@babel/helper-plugin-utils" "^7.10.4" | 563 | "@babel/helper-plugin-utils" "^7.10.4" |
531 | 564 | ||
532 | "@babel/plugin-transform-function-name@^7.10.4": | 565 | "@babel/plugin-transform-function-name@^7.12.1": |
533 | version "7.10.4" | 566 | version "7.12.1" |
534 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz#6a467880e0fc9638514ba369111811ddbe2644b7" | 567 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz#2ec76258c70fe08c6d7da154003a480620eba667" |
535 | integrity sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== | 568 | integrity sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw== |
536 | dependencies: | 569 | dependencies: |
537 | "@babel/helper-function-name" "^7.10.4" | 570 | "@babel/helper-function-name" "^7.10.4" |
538 | "@babel/helper-plugin-utils" "^7.10.4" | 571 | "@babel/helper-plugin-utils" "^7.10.4" |
539 | 572 | ||
540 | "@babel/plugin-transform-literals@^7.10.4": | 573 | "@babel/plugin-transform-literals@^7.12.1": |
541 | version "7.10.4" | 574 | version "7.12.1" |
542 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz#9f42ba0841100a135f22712d0e391c462f571f3c" | 575 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz#d73b803a26b37017ddf9d3bb8f4dc58bfb806f57" |
543 | integrity sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== | 576 | integrity sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ== |
544 | dependencies: | 577 | dependencies: |
545 | "@babel/helper-plugin-utils" "^7.10.4" | 578 | "@babel/helper-plugin-utils" "^7.10.4" |
546 | 579 | ||
547 | "@babel/plugin-transform-member-expression-literals@^7.10.4": | 580 | "@babel/plugin-transform-member-expression-literals@^7.12.1": |
548 | version "7.10.4" | 581 | version "7.12.1" |
549 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz#b1ec44fcf195afcb8db2c62cd8e551c881baf8b7" | 582 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz#496038602daf1514a64d43d8e17cbb2755e0c3ad" |
550 | integrity sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== | 583 | integrity sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg== |
551 | dependencies: | 584 | dependencies: |
552 | "@babel/helper-plugin-utils" "^7.10.4" | 585 | "@babel/helper-plugin-utils" "^7.10.4" |
553 | 586 | ||
554 | "@babel/plugin-transform-modules-amd@^7.10.4": | 587 | "@babel/plugin-transform-modules-amd@^7.12.1": |
555 | version "7.10.4" | 588 | version "7.12.1" |
556 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.4.tgz#cb407c68b862e4c1d13a2fc738c7ec5ed75fc520" | 589 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz#3154300b026185666eebb0c0ed7f8415fefcf6f9" |
557 | integrity sha512-3Fw+H3WLUrTlzi3zMiZWp3AR4xadAEMv6XRCYnd5jAlLM61Rn+CRJaZMaNvIpcJpQ3vs1kyifYvEVPFfoSkKOA== | 590 | integrity sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ== |
558 | dependencies: | 591 | dependencies: |
559 | "@babel/helper-module-transforms" "^7.10.4" | 592 | "@babel/helper-module-transforms" "^7.12.1" |
560 | "@babel/helper-plugin-utils" "^7.10.4" | 593 | "@babel/helper-plugin-utils" "^7.10.4" |
561 | babel-plugin-dynamic-import-node "^2.3.3" | 594 | babel-plugin-dynamic-import-node "^2.3.3" |
562 | 595 | ||
563 | "@babel/plugin-transform-modules-commonjs@^7.10.4": | 596 | "@babel/plugin-transform-modules-commonjs@^7.12.1": |
564 | version "7.10.4" | 597 | version "7.12.1" |
565 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz#66667c3eeda1ebf7896d41f1f16b17105a2fbca0" | 598 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz#fa403124542636c786cf9b460a0ffbb48a86e648" |
566 | integrity sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== | 599 | integrity sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag== |
567 | dependencies: | 600 | dependencies: |
568 | "@babel/helper-module-transforms" "^7.10.4" | 601 | "@babel/helper-module-transforms" "^7.12.1" |
569 | "@babel/helper-plugin-utils" "^7.10.4" | 602 | "@babel/helper-plugin-utils" "^7.10.4" |
570 | "@babel/helper-simple-access" "^7.10.4" | 603 | "@babel/helper-simple-access" "^7.12.1" |
571 | babel-plugin-dynamic-import-node "^2.3.3" | 604 | babel-plugin-dynamic-import-node "^2.3.3" |
572 | 605 | ||
573 | "@babel/plugin-transform-modules-systemjs@^7.10.4": | 606 | "@babel/plugin-transform-modules-systemjs@^7.12.1": |
574 | version "7.10.4" | 607 | version "7.12.1" |
575 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.4.tgz#8f576afd943ac2f789b35ded0a6312f929c633f9" | 608 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz#663fea620d593c93f214a464cd399bf6dc683086" |
576 | integrity sha512-Tb28LlfxrTiOTGtZFsvkjpyjCl9IoaRI52AEU/VIwOwvDQWtbNJsAqTXzh+5R7i74e/OZHH2c2w2fsOqAfnQYQ== | 609 | integrity sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q== |
577 | dependencies: | 610 | dependencies: |
578 | "@babel/helper-hoist-variables" "^7.10.4" | 611 | "@babel/helper-hoist-variables" "^7.10.4" |
579 | "@babel/helper-module-transforms" "^7.10.4" | 612 | "@babel/helper-module-transforms" "^7.12.1" |
580 | "@babel/helper-plugin-utils" "^7.10.4" | 613 | "@babel/helper-plugin-utils" "^7.10.4" |
614 | "@babel/helper-validator-identifier" "^7.10.4" | ||
581 | babel-plugin-dynamic-import-node "^2.3.3" | 615 | babel-plugin-dynamic-import-node "^2.3.3" |
582 | 616 | ||
583 | "@babel/plugin-transform-modules-umd@^7.10.4": | 617 | "@babel/plugin-transform-modules-umd@^7.12.1": |
584 | version "7.10.4" | 618 | version "7.12.1" |
585 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz#9a8481fe81b824654b3a0b65da3df89f3d21839e" | 619 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz#eb5a218d6b1c68f3d6217b8fa2cc82fec6547902" |
586 | integrity sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== | 620 | integrity sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q== |
587 | dependencies: | 621 | dependencies: |
588 | "@babel/helper-module-transforms" "^7.10.4" | 622 | "@babel/helper-module-transforms" "^7.12.1" |
589 | "@babel/helper-plugin-utils" "^7.10.4" | 623 | "@babel/helper-plugin-utils" "^7.10.4" |
590 | 624 | ||
591 | "@babel/plugin-transform-named-capturing-groups-regex@^7.10.4": | 625 | "@babel/plugin-transform-named-capturing-groups-regex@^7.12.1": |
592 | version "7.10.4" | 626 | version "7.12.1" |
593 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz#78b4d978810b6f3bcf03f9e318f2fc0ed41aecb6" | 627 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz#b407f5c96be0d9f5f88467497fa82b30ac3e8753" |
594 | integrity sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== | 628 | integrity sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q== |
595 | dependencies: | 629 | dependencies: |
596 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" | 630 | "@babel/helper-create-regexp-features-plugin" "^7.12.1" |
597 | 631 | ||
598 | "@babel/plugin-transform-new-target@^7.10.4": | 632 | "@babel/plugin-transform-new-target@^7.12.1": |
599 | version "7.10.4" | 633 | version "7.12.1" |
600 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz#9097d753cb7b024cb7381a3b2e52e9513a9c6888" | 634 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz#80073f02ee1bb2d365c3416490e085c95759dec0" |
601 | integrity sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== | 635 | integrity sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw== |
602 | dependencies: | 636 | dependencies: |
603 | "@babel/helper-plugin-utils" "^7.10.4" | 637 | "@babel/helper-plugin-utils" "^7.10.4" |
604 | 638 | ||
605 | "@babel/plugin-transform-object-super@^7.10.4": | 639 | "@babel/plugin-transform-object-super@^7.12.1": |
606 | version "7.10.4" | 640 | version "7.12.1" |
607 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz#d7146c4d139433e7a6526f888c667e314a093894" | 641 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz#4ea08696b8d2e65841d0c7706482b048bed1066e" |
608 | integrity sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== | 642 | integrity sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw== |
609 | dependencies: | 643 | dependencies: |
610 | "@babel/helper-plugin-utils" "^7.10.4" | 644 | "@babel/helper-plugin-utils" "^7.10.4" |
611 | "@babel/helper-replace-supers" "^7.10.4" | 645 | "@babel/helper-replace-supers" "^7.12.1" |
612 | 646 | ||
613 | "@babel/plugin-transform-parameters@^7.10.4": | 647 | "@babel/plugin-transform-parameters@^7.12.1": |
614 | version "7.10.4" | 648 | version "7.12.1" |
615 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.4.tgz#7b4d137c87ea7adc2a0f3ebf53266871daa6fced" | 649 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz#d2e963b038771650c922eff593799c96d853255d" |
616 | integrity sha512-RurVtZ/D5nYfEg0iVERXYKEgDFeesHrHfx8RT05Sq57ucj2eOYAP6eu5fynL4Adju4I/mP/I6SO0DqNWAXjfLQ== | 650 | integrity sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg== |
617 | dependencies: | 651 | dependencies: |
618 | "@babel/helper-get-function-arity" "^7.10.4" | ||
619 | "@babel/helper-plugin-utils" "^7.10.4" | 652 | "@babel/helper-plugin-utils" "^7.10.4" |
620 | 653 | ||
621 | "@babel/plugin-transform-property-literals@^7.10.4": | 654 | "@babel/plugin-transform-property-literals@^7.12.1": |
622 | version "7.10.4" | 655 | version "7.12.1" |
623 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz#f6fe54b6590352298785b83edd815d214c42e3c0" | 656 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz#41bc81200d730abb4456ab8b3fbd5537b59adecd" |
624 | integrity sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== | 657 | integrity sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ== |
625 | dependencies: | 658 | dependencies: |
626 | "@babel/helper-plugin-utils" "^7.10.4" | 659 | "@babel/helper-plugin-utils" "^7.10.4" |
627 | 660 | ||
628 | "@babel/plugin-transform-regenerator@^7.10.4": | 661 | "@babel/plugin-transform-regenerator@^7.12.1": |
629 | version "7.10.4" | 662 | version "7.12.1" |
630 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz#2015e59d839074e76838de2159db421966fd8b63" | 663 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz#5f0a28d842f6462281f06a964e88ba8d7ab49753" |
631 | integrity sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== | 664 | integrity sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng== |
632 | dependencies: | 665 | dependencies: |
633 | regenerator-transform "^0.14.2" | 666 | regenerator-transform "^0.14.2" |
634 | 667 | ||
635 | "@babel/plugin-transform-reserved-words@^7.10.4": | 668 | "@babel/plugin-transform-reserved-words@^7.12.1": |
636 | version "7.10.4" | 669 | version "7.12.1" |
637 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz#8f2682bcdcef9ed327e1b0861585d7013f8a54dd" | 670 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz#6fdfc8cc7edcc42b36a7c12188c6787c873adcd8" |
638 | integrity sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== | 671 | integrity sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A== |
639 | dependencies: | 672 | dependencies: |
640 | "@babel/helper-plugin-utils" "^7.10.4" | 673 | "@babel/helper-plugin-utils" "^7.10.4" |
641 | 674 | ||
642 | "@babel/plugin-transform-runtime@^7.9.6": | 675 | "@babel/plugin-transform-runtime@^7.11.0": |
643 | version "7.10.4" | 676 | version "7.12.1" |
644 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.10.4.tgz#594fb53453ea1b6f0779cceb48ce0718a447feb7" | 677 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz#04b792057eb460389ff6a4198e377614ea1e7ba5" |
645 | integrity sha512-8ULlGv8p+Vuxu+kz2Y1dk6MYS2b/Dki+NO6/0ZlfSj5tMalfDL7jI/o/2a+rrWLqSXvnadEqc2WguB4gdQIxZw== | 678 | integrity sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg== |
646 | dependencies: | 679 | dependencies: |
647 | "@babel/helper-module-imports" "^7.10.4" | 680 | "@babel/helper-module-imports" "^7.12.1" |
648 | "@babel/helper-plugin-utils" "^7.10.4" | 681 | "@babel/helper-plugin-utils" "^7.10.4" |
649 | resolve "^1.8.1" | 682 | resolve "^1.8.1" |
650 | semver "^5.5.1" | 683 | semver "^5.5.1" |
651 | 684 | ||
652 | "@babel/plugin-transform-shorthand-properties@^7.10.4": | 685 | "@babel/plugin-transform-shorthand-properties@^7.12.1": |
653 | version "7.10.4" | 686 | version "7.12.1" |
654 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz#9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6" | 687 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz#0bf9cac5550fce0cfdf043420f661d645fdc75e3" |
655 | integrity sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== | 688 | integrity sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw== |
656 | dependencies: | 689 | dependencies: |
657 | "@babel/helper-plugin-utils" "^7.10.4" | 690 | "@babel/helper-plugin-utils" "^7.10.4" |
658 | 691 | ||
659 | "@babel/plugin-transform-spread@^7.10.4": | 692 | "@babel/plugin-transform-spread@^7.12.1": |
660 | version "7.10.4" | 693 | version "7.12.1" |
661 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.10.4.tgz#4e2c85ea0d6abaee1b24dcfbbae426fe8d674cff" | 694 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz#527f9f311be4ec7fdc2b79bb89f7bf884b3e1e1e" |
662 | integrity sha512-1e/51G/Ni+7uH5gktbWv+eCED9pP8ZpRhZB3jOaI3mmzfvJTWHkuyYTv0Z5PYtyM+Tr2Ccr9kUdQxn60fI5WuQ== | 695 | integrity sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng== |
663 | dependencies: | 696 | dependencies: |
664 | "@babel/helper-plugin-utils" "^7.10.4" | 697 | "@babel/helper-plugin-utils" "^7.10.4" |
698 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" | ||
665 | 699 | ||
666 | "@babel/plugin-transform-sticky-regex@^7.10.4": | 700 | "@babel/plugin-transform-sticky-regex@^7.12.1": |
667 | version "7.10.4" | 701 | version "7.12.1" |
668 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz#8f3889ee8657581130a29d9cc91d7c73b7c4a28d" | 702 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz#5c24cf50de396d30e99afc8d1c700e8bce0f5caf" |
669 | integrity sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== | 703 | integrity sha512-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ== |
670 | dependencies: | 704 | dependencies: |
671 | "@babel/helper-plugin-utils" "^7.10.4" | 705 | "@babel/helper-plugin-utils" "^7.10.4" |
672 | "@babel/helper-regex" "^7.10.4" | 706 | "@babel/helper-regex" "^7.10.4" |
673 | 707 | ||
674 | "@babel/plugin-transform-template-literals@^7.10.4": | 708 | "@babel/plugin-transform-template-literals@^7.12.1": |
675 | version "7.10.4" | 709 | version "7.12.1" |
676 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.4.tgz#e6375407b30fcb7fcfdbba3bb98ef3e9d36df7bc" | 710 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz#b43ece6ed9a79c0c71119f576d299ef09d942843" |
677 | integrity sha512-4NErciJkAYe+xI5cqfS8pV/0ntlY5N5Ske/4ImxAVX7mk9Rxt2bwDTGv1Msc2BRJvWQcmYEC+yoMLdX22aE4VQ== | 711 | integrity sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw== |
678 | dependencies: | 712 | dependencies: |
679 | "@babel/helper-annotate-as-pure" "^7.10.4" | ||
680 | "@babel/helper-plugin-utils" "^7.10.4" | 713 | "@babel/helper-plugin-utils" "^7.10.4" |
681 | 714 | ||
682 | "@babel/plugin-transform-typeof-symbol@^7.10.4": | 715 | "@babel/plugin-transform-typeof-symbol@^7.12.1": |
683 | version "7.10.4" | 716 | version "7.12.1" |
684 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz#9509f1a7eec31c4edbffe137c16cc33ff0bc5bfc" | 717 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz#9ca6be343d42512fbc2e68236a82ae64bc7af78a" |
685 | integrity sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== | 718 | integrity sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q== |
686 | dependencies: | 719 | dependencies: |
687 | "@babel/helper-plugin-utils" "^7.10.4" | 720 | "@babel/helper-plugin-utils" "^7.10.4" |
688 | 721 | ||
689 | "@babel/plugin-transform-unicode-escapes@^7.10.4": | 722 | "@babel/plugin-transform-unicode-escapes@^7.12.1": |
690 | version "7.10.4" | 723 | version "7.12.1" |
691 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz#feae523391c7651ddac115dae0a9d06857892007" | 724 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz#5232b9f81ccb07070b7c3c36c67a1b78f1845709" |
692 | integrity sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg== | 725 | integrity sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q== |
693 | dependencies: | 726 | dependencies: |
694 | "@babel/helper-plugin-utils" "^7.10.4" | 727 | "@babel/helper-plugin-utils" "^7.10.4" |
695 | 728 | ||
696 | "@babel/plugin-transform-unicode-regex@^7.10.4": | 729 | "@babel/plugin-transform-unicode-regex@^7.12.1": |
697 | version "7.10.4" | 730 | version "7.12.1" |
698 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz#e56d71f9282fac6db09c82742055576d5e6d80a8" | 731 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz#cc9661f61390db5c65e3febaccefd5c6ac3faecb" |
699 | integrity sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== | 732 | integrity sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg== |
700 | dependencies: | 733 | dependencies: |
701 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" | 734 | "@babel/helper-create-regexp-features-plugin" "^7.12.1" |
702 | "@babel/helper-plugin-utils" "^7.10.4" | 735 | "@babel/helper-plugin-utils" "^7.10.4" |
703 | 736 | ||
704 | "@babel/preset-env@^7.9.6": | 737 | "@babel/preset-env@^7.11.0": |
705 | version "7.10.4" | 738 | version "7.12.1" |
706 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.10.4.tgz#fbf57f9a803afd97f4f32e4f798bb62e4b2bef5f" | 739 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.1.tgz#9c7e5ca82a19efc865384bb4989148d2ee5d7ac2" |
707 | integrity sha512-tcmuQ6vupfMZPrLrc38d0sF2OjLT3/bZ0dry5HchNCQbrokoQi4reXqclvkkAT5b+gWc23meVWpve5P/7+w/zw== | 740 | integrity sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg== |
708 | dependencies: | 741 | dependencies: |
709 | "@babel/compat-data" "^7.10.4" | 742 | "@babel/compat-data" "^7.12.1" |
710 | "@babel/helper-compilation-targets" "^7.10.4" | 743 | "@babel/helper-compilation-targets" "^7.12.1" |
711 | "@babel/helper-module-imports" "^7.10.4" | 744 | "@babel/helper-module-imports" "^7.12.1" |
712 | "@babel/helper-plugin-utils" "^7.10.4" | 745 | "@babel/helper-plugin-utils" "^7.10.4" |
713 | "@babel/plugin-proposal-async-generator-functions" "^7.10.4" | 746 | "@babel/helper-validator-option" "^7.12.1" |
714 | "@babel/plugin-proposal-class-properties" "^7.10.4" | 747 | "@babel/plugin-proposal-async-generator-functions" "^7.12.1" |
715 | "@babel/plugin-proposal-dynamic-import" "^7.10.4" | 748 | "@babel/plugin-proposal-class-properties" "^7.12.1" |
716 | "@babel/plugin-proposal-json-strings" "^7.10.4" | 749 | "@babel/plugin-proposal-dynamic-import" "^7.12.1" |
717 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.4" | 750 | "@babel/plugin-proposal-export-namespace-from" "^7.12.1" |
718 | "@babel/plugin-proposal-numeric-separator" "^7.10.4" | 751 | "@babel/plugin-proposal-json-strings" "^7.12.1" |
719 | "@babel/plugin-proposal-object-rest-spread" "^7.10.4" | 752 | "@babel/plugin-proposal-logical-assignment-operators" "^7.12.1" |
720 | "@babel/plugin-proposal-optional-catch-binding" "^7.10.4" | 753 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1" |
721 | "@babel/plugin-proposal-optional-chaining" "^7.10.4" | 754 | "@babel/plugin-proposal-numeric-separator" "^7.12.1" |
722 | "@babel/plugin-proposal-private-methods" "^7.10.4" | 755 | "@babel/plugin-proposal-object-rest-spread" "^7.12.1" |
723 | "@babel/plugin-proposal-unicode-property-regex" "^7.10.4" | 756 | "@babel/plugin-proposal-optional-catch-binding" "^7.12.1" |
757 | "@babel/plugin-proposal-optional-chaining" "^7.12.1" | ||
758 | "@babel/plugin-proposal-private-methods" "^7.12.1" | ||
759 | "@babel/plugin-proposal-unicode-property-regex" "^7.12.1" | ||
724 | "@babel/plugin-syntax-async-generators" "^7.8.0" | 760 | "@babel/plugin-syntax-async-generators" "^7.8.0" |
725 | "@babel/plugin-syntax-class-properties" "^7.10.4" | 761 | "@babel/plugin-syntax-class-properties" "^7.12.1" |
726 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" | 762 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" |
763 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" | ||
727 | "@babel/plugin-syntax-json-strings" "^7.8.0" | 764 | "@babel/plugin-syntax-json-strings" "^7.8.0" |
765 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" | ||
728 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" | 766 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" |
729 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" | 767 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" |
730 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" | 768 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" |
731 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" | 769 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" |
732 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" | 770 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" |
733 | "@babel/plugin-syntax-top-level-await" "^7.10.4" | 771 | "@babel/plugin-syntax-top-level-await" "^7.12.1" |
734 | "@babel/plugin-transform-arrow-functions" "^7.10.4" | 772 | "@babel/plugin-transform-arrow-functions" "^7.12.1" |
735 | "@babel/plugin-transform-async-to-generator" "^7.10.4" | 773 | "@babel/plugin-transform-async-to-generator" "^7.12.1" |
736 | "@babel/plugin-transform-block-scoped-functions" "^7.10.4" | 774 | "@babel/plugin-transform-block-scoped-functions" "^7.12.1" |
737 | "@babel/plugin-transform-block-scoping" "^7.10.4" | 775 | "@babel/plugin-transform-block-scoping" "^7.12.1" |
738 | "@babel/plugin-transform-classes" "^7.10.4" | 776 | "@babel/plugin-transform-classes" "^7.12.1" |
739 | "@babel/plugin-transform-computed-properties" "^7.10.4" | 777 | "@babel/plugin-transform-computed-properties" "^7.12.1" |
740 | "@babel/plugin-transform-destructuring" "^7.10.4" | 778 | "@babel/plugin-transform-destructuring" "^7.12.1" |
741 | "@babel/plugin-transform-dotall-regex" "^7.10.4" | 779 | "@babel/plugin-transform-dotall-regex" "^7.12.1" |
742 | "@babel/plugin-transform-duplicate-keys" "^7.10.4" | 780 | "@babel/plugin-transform-duplicate-keys" "^7.12.1" |
743 | "@babel/plugin-transform-exponentiation-operator" "^7.10.4" | 781 | "@babel/plugin-transform-exponentiation-operator" "^7.12.1" |
744 | "@babel/plugin-transform-for-of" "^7.10.4" | 782 | "@babel/plugin-transform-for-of" "^7.12.1" |
745 | "@babel/plugin-transform-function-name" "^7.10.4" | 783 | "@babel/plugin-transform-function-name" "^7.12.1" |
746 | "@babel/plugin-transform-literals" "^7.10.4" | 784 | "@babel/plugin-transform-literals" "^7.12.1" |
747 | "@babel/plugin-transform-member-expression-literals" "^7.10.4" | 785 | "@babel/plugin-transform-member-expression-literals" "^7.12.1" |
748 | "@babel/plugin-transform-modules-amd" "^7.10.4" | 786 | "@babel/plugin-transform-modules-amd" "^7.12.1" |
749 | "@babel/plugin-transform-modules-commonjs" "^7.10.4" | 787 | "@babel/plugin-transform-modules-commonjs" "^7.12.1" |
750 | "@babel/plugin-transform-modules-systemjs" "^7.10.4" | 788 | "@babel/plugin-transform-modules-systemjs" "^7.12.1" |
751 | "@babel/plugin-transform-modules-umd" "^7.10.4" | 789 | "@babel/plugin-transform-modules-umd" "^7.12.1" |
752 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.10.4" | 790 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.1" |
753 | "@babel/plugin-transform-new-target" "^7.10.4" | 791 | "@babel/plugin-transform-new-target" "^7.12.1" |
754 | "@babel/plugin-transform-object-super" "^7.10.4" | 792 | "@babel/plugin-transform-object-super" "^7.12.1" |
755 | "@babel/plugin-transform-parameters" "^7.10.4" | 793 | "@babel/plugin-transform-parameters" "^7.12.1" |
756 | "@babel/plugin-transform-property-literals" "^7.10.4" | 794 | "@babel/plugin-transform-property-literals" "^7.12.1" |
757 | "@babel/plugin-transform-regenerator" "^7.10.4" | 795 | "@babel/plugin-transform-regenerator" "^7.12.1" |
758 | "@babel/plugin-transform-reserved-words" "^7.10.4" | 796 | "@babel/plugin-transform-reserved-words" "^7.12.1" |
759 | "@babel/plugin-transform-shorthand-properties" "^7.10.4" | 797 | "@babel/plugin-transform-shorthand-properties" "^7.12.1" |
760 | "@babel/plugin-transform-spread" "^7.10.4" | 798 | "@babel/plugin-transform-spread" "^7.12.1" |
761 | "@babel/plugin-transform-sticky-regex" "^7.10.4" | 799 | "@babel/plugin-transform-sticky-regex" "^7.12.1" |
762 | "@babel/plugin-transform-template-literals" "^7.10.4" | 800 | "@babel/plugin-transform-template-literals" "^7.12.1" |
763 | "@babel/plugin-transform-typeof-symbol" "^7.10.4" | 801 | "@babel/plugin-transform-typeof-symbol" "^7.12.1" |
764 | "@babel/plugin-transform-unicode-escapes" "^7.10.4" | 802 | "@babel/plugin-transform-unicode-escapes" "^7.12.1" |
765 | "@babel/plugin-transform-unicode-regex" "^7.10.4" | 803 | "@babel/plugin-transform-unicode-regex" "^7.12.1" |
766 | "@babel/preset-modules" "^0.1.3" | 804 | "@babel/preset-modules" "^0.1.3" |
767 | "@babel/types" "^7.10.4" | 805 | "@babel/types" "^7.12.1" |
768 | browserslist "^4.12.0" | ||
769 | core-js-compat "^3.6.2" | 806 | core-js-compat "^3.6.2" |
770 | invariant "^2.2.2" | ||
771 | levenary "^1.1.1" | ||
772 | semver "^5.5.0" | 807 | semver "^5.5.0" |
773 | 808 | ||
774 | "@babel/preset-modules@^0.1.3": | 809 | "@babel/preset-modules@^0.1.3": |
775 | version "0.1.3" | 810 | version "0.1.4" |
776 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72" | 811 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" |
777 | integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== | 812 | integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== |
778 | dependencies: | 813 | dependencies: |
779 | "@babel/helper-plugin-utils" "^7.0.0" | 814 | "@babel/helper-plugin-utils" "^7.0.0" |
780 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" | 815 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" |
@@ -782,10 +817,10 @@ | |||
782 | "@babel/types" "^7.4.4" | 817 | "@babel/types" "^7.4.4" |
783 | esutils "^2.0.2" | 818 | esutils "^2.0.2" |
784 | 819 | ||
785 | "@babel/runtime@^7.0.0", "@babel/runtime@^7.3.4", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.6": | 820 | "@babel/runtime@^7.0.0", "@babel/runtime@^7.11.0", "@babel/runtime@^7.3.4", "@babel/runtime@^7.8.4": |
786 | version "7.10.4" | 821 | version "7.12.1" |
787 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.4.tgz#a6724f1a6b8d2f6ea5236dbfe58c7d7ea9c5eb99" | 822 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.1.tgz#b4116a6b6711d010b2dad3b7b6e43bf1b9954740" |
788 | integrity sha512-UpTN5yUJr9b4EX2CnGNWIvER7Ab83ibv0pcvvHc4UOdrBI5jb8bj+32cCwPX6xu0mt2daFNjYhoi+X7beH0RSw== | 823 | integrity sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA== |
789 | dependencies: | 824 | dependencies: |
790 | regenerator-runtime "^0.13.4" | 825 | regenerator-runtime "^0.13.4" |
791 | 826 | ||
@@ -798,30 +833,46 @@ | |||
798 | "@babel/parser" "^7.10.4" | 833 | "@babel/parser" "^7.10.4" |
799 | "@babel/types" "^7.10.4" | 834 | "@babel/types" "^7.10.4" |
800 | 835 | ||
801 | "@babel/traverse@^7.10.4", "@babel/traverse@^7.7.0": | 836 | "@babel/traverse@^7.0.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.7.0": |
802 | version "7.10.4" | 837 | version "7.12.1" |
803 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.4.tgz#e642e5395a3b09cc95c8e74a27432b484b697818" | 838 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.1.tgz#941395e0c5cc86d5d3e75caa095d3924526f0c1e" |
804 | integrity sha512-aSy7p5THgSYm4YyxNGz6jZpXf+Ok40QF3aA2LyIONkDHpAcJzDUqlCKXv6peqYUs2gmic849C/t2HKw2a2K20Q== | 839 | integrity sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw== |
805 | dependencies: | 840 | dependencies: |
806 | "@babel/code-frame" "^7.10.4" | 841 | "@babel/code-frame" "^7.10.4" |
807 | "@babel/generator" "^7.10.4" | 842 | "@babel/generator" "^7.12.1" |
808 | "@babel/helper-function-name" "^7.10.4" | 843 | "@babel/helper-function-name" "^7.10.4" |
809 | "@babel/helper-split-export-declaration" "^7.10.4" | 844 | "@babel/helper-split-export-declaration" "^7.11.0" |
810 | "@babel/parser" "^7.10.4" | 845 | "@babel/parser" "^7.12.1" |
811 | "@babel/types" "^7.10.4" | 846 | "@babel/types" "^7.12.1" |
812 | debug "^4.1.0" | 847 | debug "^4.1.0" |
813 | globals "^11.1.0" | 848 | globals "^11.1.0" |
814 | lodash "^4.17.13" | 849 | lodash "^4.17.19" |
815 | 850 | ||
816 | "@babel/types@^7.10.4", "@babel/types@^7.4.4", "@babel/types@^7.7.0": | 851 | "@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.4.4", "@babel/types@^7.7.0": |
817 | version "7.10.4" | 852 | version "7.12.1" |
818 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.4.tgz#369517188352e18219981efd156bfdb199fff1ee" | 853 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.1.tgz#e109d9ab99a8de735be287ee3d6a9947a190c4ae" |
819 | integrity sha512-UTCFOxC3FsFHb7lkRMVvgLzaRVamXuAs2Tz4wajva4WxtVY82eZeaUBtC2Zt95FU9TiznuC0Zk35tsim8jeVpg== | 854 | integrity sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA== |
820 | dependencies: | 855 | dependencies: |
821 | "@babel/helper-validator-identifier" "^7.10.4" | 856 | "@babel/helper-validator-identifier" "^7.10.4" |
822 | lodash "^4.17.13" | 857 | lodash "^4.17.19" |
823 | to-fast-properties "^2.0.0" | 858 | to-fast-properties "^2.0.0" |
824 | 859 | ||
860 | "@eslint/eslintrc@^0.1.3": | ||
861 | version "0.1.3" | ||
862 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.1.3.tgz#7d1a2b2358552cc04834c0979bd4275362e37085" | ||
863 | integrity sha512-4YVwPkANLeNtRjMekzux1ci8hIaH5eGKktGqR0d3LWsKNn5B2X/1Z6Trxy7jQXl9EBGE6Yj02O+t09FMeRllaA== | ||
864 | dependencies: | ||
865 | ajv "^6.12.4" | ||
866 | debug "^4.1.1" | ||
867 | espree "^7.3.0" | ||
868 | globals "^12.1.0" | ||
869 | ignore "^4.0.6" | ||
870 | import-fresh "^3.2.1" | ||
871 | js-yaml "^3.13.1" | ||
872 | lodash "^4.17.19" | ||
873 | minimatch "^3.0.4" | ||
874 | strip-json-comments "^3.1.1" | ||
875 | |||
825 | "@fortawesome/fontawesome-free@^5.15.1": | 876 | "@fortawesome/fontawesome-free@^5.15.1": |
826 | version "5.15.1" | 877 | version "5.15.1" |
827 | resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.1.tgz#ccfef6ddbe59f8fe8f694783e1d3eb88902dc5eb" | 878 | resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.1.tgz#ccfef6ddbe59f8fe8f694783e1d3eb88902dc5eb" |
@@ -895,10 +946,52 @@ | |||
895 | resolved "https://registry.yarnpkg.com/@soda/get-current-script/-/get-current-script-1.0.2.tgz#a53515db25d8038374381b73af20bb4f2e508d87" | 946 | resolved "https://registry.yarnpkg.com/@soda/get-current-script/-/get-current-script-1.0.2.tgz#a53515db25d8038374381b73af20bb4f2e508d87" |
896 | integrity sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w== | 947 | integrity sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w== |
897 | 948 | ||
898 | "@types/color-name@^1.1.1": | 949 | "@types/anymatch@*": |
899 | version "1.1.1" | 950 | version "1.3.1" |
900 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" | 951 | resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a" |
901 | integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== | 952 | integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA== |
953 | |||
954 | "@types/body-parser@*": | ||
955 | version "1.19.0" | ||
956 | resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.0.tgz#0685b3c47eb3006ffed117cdd55164b61f80538f" | ||
957 | integrity sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ== | ||
958 | dependencies: | ||
959 | "@types/connect" "*" | ||
960 | "@types/node" "*" | ||
961 | |||
962 | "@types/connect-history-api-fallback@*": | ||
963 | version "1.3.3" | ||
964 | resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.3.tgz#4772b79b8b53185f0f4c9deab09236baf76ee3b4" | ||
965 | integrity sha512-7SxFCd+FLlxCfwVwbyPxbR4khL9aNikJhrorw8nUIOqeuooc9gifBuDQOJw5kzN7i6i3vLn9G8Wde/4QDihpYw== | ||
966 | dependencies: | ||
967 | "@types/express-serve-static-core" "*" | ||
968 | "@types/node" "*" | ||
969 | |||
970 | "@types/connect@*": | ||
971 | version "3.4.33" | ||
972 | resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.33.tgz#31610c901eca573b8713c3330abc6e6b9f588546" | ||
973 | integrity sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A== | ||
974 | dependencies: | ||
975 | "@types/node" "*" | ||
976 | |||
977 | "@types/express-serve-static-core@*": | ||
978 | version "4.17.13" | ||
979 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.13.tgz#d9af025e925fc8b089be37423b8d1eac781be084" | ||
980 | integrity sha512-RgDi5a4nuzam073lRGKTUIaL3eF2+H7LJvJ8eUnCI0wA6SNjXc44DCmWNiTLs/AZ7QlsFWZiw/gTG3nSQGL0fA== | ||
981 | dependencies: | ||
982 | "@types/node" "*" | ||
983 | "@types/qs" "*" | ||
984 | "@types/range-parser" "*" | ||
985 | |||
986 | "@types/express@*": | ||
987 | version "4.17.8" | ||
988 | resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.8.tgz#3df4293293317e61c60137d273a2e96cd8d5f27a" | ||
989 | integrity sha512-wLhcKh3PMlyA2cNAB9sjM1BntnhPMiM0JOBwPBqttjHev2428MLEB4AYVN+d8s2iyCVZac+o41Pflm/ZH5vLXQ== | ||
990 | dependencies: | ||
991 | "@types/body-parser" "*" | ||
992 | "@types/express-serve-static-core" "*" | ||
993 | "@types/qs" "*" | ||
994 | "@types/serve-static" "*" | ||
902 | 995 | ||
903 | "@types/glob@^7.1.1": | 996 | "@types/glob@^7.1.1": |
904 | version "7.1.3" | 997 | version "7.1.3" |
@@ -908,20 +1001,46 @@ | |||
908 | "@types/minimatch" "*" | 1001 | "@types/minimatch" "*" |
909 | "@types/node" "*" | 1002 | "@types/node" "*" |
910 | 1003 | ||
911 | "@types/json-schema@^7.0.4": | 1004 | "@types/http-proxy-middleware@*": |
912 | version "7.0.5" | 1005 | version "0.19.3" |
913 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd" | 1006 | resolved "https://registry.yarnpkg.com/@types/http-proxy-middleware/-/http-proxy-middleware-0.19.3.tgz#b2eb96fbc0f9ac7250b5d9c4c53aade049497d03" |
914 | integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ== | 1007 | integrity sha512-lnBTx6HCOUeIJMLbI/LaL5EmdKLhczJY5oeXZpX/cXE4rRqb3RmV7VcMpiEfYkmTjipv3h7IAyIINe4plEv7cA== |
1008 | dependencies: | ||
1009 | "@types/connect" "*" | ||
1010 | "@types/http-proxy" "*" | ||
1011 | "@types/node" "*" | ||
1012 | |||
1013 | "@types/http-proxy@*": | ||
1014 | version "1.17.4" | ||
1015 | resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.4.tgz#e7c92e3dbe3e13aa799440ff42e6d3a17a9d045b" | ||
1016 | integrity sha512-IrSHl2u6AWXduUaDLqYpt45tLVCtYv7o4Z0s1KghBCDgIIS9oW5K1H8mZG/A2CfeLdEa7rTd1ACOiHBc1EMT2Q== | ||
1017 | dependencies: | ||
1018 | "@types/node" "*" | ||
1019 | |||
1020 | "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6": | ||
1021 | version "7.0.6" | ||
1022 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0" | ||
1023 | integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw== | ||
1024 | |||
1025 | "@types/mime@*": | ||
1026 | version "2.0.3" | ||
1027 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.3.tgz#c893b73721db73699943bfc3653b1deb7faa4a3a" | ||
1028 | integrity sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q== | ||
915 | 1029 | ||
916 | "@types/minimatch@*": | 1030 | "@types/minimatch@*": |
917 | version "3.0.3" | 1031 | version "3.0.3" |
918 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" | 1032 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" |
919 | integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== | 1033 | integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== |
920 | 1034 | ||
1035 | "@types/minimist@^1.2.0": | ||
1036 | version "1.2.0" | ||
1037 | resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.0.tgz#69a23a3ad29caf0097f06eda59b361ee2f0639f6" | ||
1038 | integrity sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY= | ||
1039 | |||
921 | "@types/node@*": | 1040 | "@types/node@*": |
922 | version "14.0.22" | 1041 | version "14.14.2" |
923 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.22.tgz#23ea4d88189cec7d58f9e6b66f786b215eb61bdc" | 1042 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.2.tgz#d25295f9e4ca5989a2c610754dc02a9721235eeb" |
924 | integrity sha512-emeGcJvdiZ4Z3ohbmw93E/64jRzUHAItSHt8nF7M4TGgQTiWqFVGB8KNpLGFmUHmHLvjvBgFwVlqNcq+VuGv9g== | 1043 | integrity sha512-jeYJU2kl7hL9U5xuI/BhKPZ4vqGM/OmK6whiFAXVhlstzZhVamWhDSmHyGLIp+RVyuF9/d0dqr2P85aFj4BvJg== |
925 | 1044 | ||
926 | "@types/normalize-package-data@^2.4.0": | 1045 | "@types/normalize-package-data@^2.4.0": |
927 | version "2.4.0" | 1046 | version "2.4.0" |
@@ -933,38 +1052,125 @@ | |||
933 | resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" | 1052 | resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" |
934 | integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== | 1053 | integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== |
935 | 1054 | ||
936 | "@vue/babel-helper-vue-jsx-merge-props@^1.0.0": | 1055 | "@types/qs@*": |
937 | version "1.0.0" | 1056 | version "6.9.5" |
938 | resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.0.0.tgz#048fe579958da408fb7a8b2a3ec050b50a661040" | 1057 | resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.5.tgz#434711bdd49eb5ee69d90c1d67c354a9a8ecb18b" |
939 | integrity sha512-6tyf5Cqm4m6v7buITuwS+jHzPlIPxbFzEhXR5JGZpbrvOcp1hiQKckd305/3C7C36wFekNTQSxAtgeM0j0yoUw== | 1058 | integrity sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ== |
940 | 1059 | ||
941 | "@vue/babel-plugin-transform-vue-jsx@^1.1.2": | 1060 | "@types/range-parser@*": |
942 | version "1.1.2" | 1061 | version "1.2.3" |
943 | resolved "https://registry.yarnpkg.com/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.1.2.tgz#c0a3e6efc022e75e4247b448a8fc6b86f03e91c0" | 1062 | resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz#7ee330ba7caafb98090bece86a5ee44115904c2c" |
944 | integrity sha512-YfdaoSMvD1nj7+DsrwfTvTnhDXI7bsuh+Y5qWwvQXlD24uLgnsoww3qbiZvWf/EoviZMrvqkqN4CBw0W3BWUTQ== | 1063 | integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA== |
1064 | |||
1065 | "@types/serve-static@*": | ||
1066 | version "1.13.6" | ||
1067 | resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.6.tgz#866b1b8dec41c36e28c7be40ac725b88be43c5c1" | ||
1068 | integrity sha512-nuRJmv7jW7VmCVTn+IgYDkkbbDGyIINOeu/G0d74X3lm6E5KfMeQPJhxIt1ayQeQB3cSxvYs1RA/wipYoFB4EA== | ||
1069 | dependencies: | ||
1070 | "@types/mime" "*" | ||
1071 | "@types/node" "*" | ||
1072 | |||
1073 | "@types/source-list-map@*": | ||
1074 | version "0.1.2" | ||
1075 | resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9" | ||
1076 | integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA== | ||
1077 | |||
1078 | "@types/tapable@*": | ||
1079 | version "1.0.6" | ||
1080 | resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.6.tgz#a9ca4b70a18b270ccb2bc0aaafefd1d486b7ea74" | ||
1081 | integrity sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA== | ||
1082 | |||
1083 | "@types/uglify-js@*": | ||
1084 | version "3.11.0" | ||
1085 | resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.11.0.tgz#2868d405cc45cd9dc3069179052103032c33afbc" | ||
1086 | integrity sha512-I0Yd8TUELTbgRHq2K65j8rnDPAzAP+DiaF/syLem7yXwYLsHZhPd+AM2iXsWmf9P2F2NlFCgl5erZPQx9IbM9Q== | ||
1087 | dependencies: | ||
1088 | source-map "^0.6.1" | ||
1089 | |||
1090 | "@types/webpack-dev-server@^3.11.0": | ||
1091 | version "3.11.0" | ||
1092 | resolved "https://registry.yarnpkg.com/@types/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz#bcc3b85e7dc6ac2db25330610513f2228c2fcfb2" | ||
1093 | integrity sha512-3+86AgSzl18n5P1iUP9/lz3G3GMztCp+wxdDvVuNhx1sr1jE79GpYfKHL8k+Vht3N74K2n98CuAEw4YPJCYtDA== | ||
1094 | dependencies: | ||
1095 | "@types/connect-history-api-fallback" "*" | ||
1096 | "@types/express" "*" | ||
1097 | "@types/http-proxy-middleware" "*" | ||
1098 | "@types/serve-static" "*" | ||
1099 | "@types/webpack" "*" | ||
1100 | |||
1101 | "@types/webpack-sources@*": | ||
1102 | version "2.0.0" | ||
1103 | resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-2.0.0.tgz#08216ab9be2be2e1499beaebc4d469cec81e82a7" | ||
1104 | integrity sha512-a5kPx98CNFRKQ+wqawroFunvFqv7GHm/3KOI52NY9xWADgc8smu4R6prt4EU/M4QfVjvgBkMqU4fBhw3QfMVkg== | ||
1105 | dependencies: | ||
1106 | "@types/node" "*" | ||
1107 | "@types/source-list-map" "*" | ||
1108 | source-map "^0.7.3" | ||
1109 | |||
1110 | "@types/webpack@*", "@types/webpack@^4.0.0": | ||
1111 | version "4.41.23" | ||
1112 | resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.23.tgz#1925f42a7325be4ae0fce38329f1cc27768fcda7" | ||
1113 | integrity sha512-ojA4CupZg8RCzVJLugWlvqrHpT59GWhqFxbinlsnvk10MjQCWB+ot7XDACctbWhnhtdhYK7+HOH1JxkVLiZhMg== | ||
1114 | dependencies: | ||
1115 | "@types/anymatch" "*" | ||
1116 | "@types/node" "*" | ||
1117 | "@types/tapable" "*" | ||
1118 | "@types/uglify-js" "*" | ||
1119 | "@types/webpack-sources" "*" | ||
1120 | source-map "^0.6.0" | ||
1121 | |||
1122 | "@vue/babel-helper-vue-jsx-merge-props@^1.2.1": | ||
1123 | version "1.2.1" | ||
1124 | resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.2.1.tgz#31624a7a505fb14da1d58023725a4c5f270e6a81" | ||
1125 | integrity sha512-QOi5OW45e2R20VygMSNhyQHvpdUwQZqGPc748JLGCYEy+yp8fNFNdbNIGAgZmi9e+2JHPd6i6idRuqivyicIkA== | ||
1126 | |||
1127 | "@vue/babel-helper-vue-transform-on@^1.0.0-rc.2": | ||
1128 | version "1.0.0-rc.2" | ||
1129 | resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.0-rc.2.tgz#7246341f666e7c6e65b13da420e2ce85714fbbca" | ||
1130 | integrity sha512-1+7CwjQ0Kasml6rHoNQUmbISwqLNNfFVBUcZl6QBremUl296ZmLrVQPqJP5pyAAWjZke5bpI1hlj+LVVuT7Jcg== | ||
1131 | |||
1132 | "@vue/babel-plugin-jsx@^1.0.0-0": | ||
1133 | version "1.0.0-rc.3" | ||
1134 | resolved "https://registry.yarnpkg.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.0-rc.3.tgz#ab477ee95c764fbe68842a2eddd474f122e70ac6" | ||
1135 | integrity sha512-/Ibq0hoKsidnHWPhgRpjcjYhYcHpqEm2fiKVAPO88OXZNHGwaGgS4yXkC6TDEvlZep4mBDo+2S5T81wpbVh90Q== | ||
1136 | dependencies: | ||
1137 | "@babel/helper-module-imports" "^7.0.0" | ||
1138 | "@babel/plugin-syntax-jsx" "^7.0.0" | ||
1139 | "@babel/traverse" "^7.0.0" | ||
1140 | "@babel/types" "^7.0.0" | ||
1141 | "@vue/babel-helper-vue-transform-on" "^1.0.0-rc.2" | ||
1142 | camelcase "^6.0.0" | ||
1143 | html-tags "^3.1.0" | ||
1144 | svg-tags "^1.0.0" | ||
1145 | |||
1146 | "@vue/babel-plugin-transform-vue-jsx@^1.2.1": | ||
1147 | version "1.2.1" | ||
1148 | resolved "https://registry.yarnpkg.com/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.2.1.tgz#646046c652c2f0242727f34519d917b064041ed7" | ||
1149 | integrity sha512-HJuqwACYehQwh1fNT8f4kyzqlNMpBuUK4rSiSES5D4QsYncv5fxFsLyrxFPG2ksO7t5WP+Vgix6tt6yKClwPzA== | ||
945 | dependencies: | 1150 | dependencies: |
946 | "@babel/helper-module-imports" "^7.0.0" | 1151 | "@babel/helper-module-imports" "^7.0.0" |
947 | "@babel/plugin-syntax-jsx" "^7.2.0" | 1152 | "@babel/plugin-syntax-jsx" "^7.2.0" |
948 | "@vue/babel-helper-vue-jsx-merge-props" "^1.0.0" | 1153 | "@vue/babel-helper-vue-jsx-merge-props" "^1.2.1" |
949 | html-tags "^2.0.0" | 1154 | html-tags "^2.0.0" |
950 | lodash.kebabcase "^4.1.1" | 1155 | lodash.kebabcase "^4.1.1" |
951 | svg-tags "^1.0.0" | 1156 | svg-tags "^1.0.0" |
952 | 1157 | ||
953 | "@vue/babel-preset-app@^4.4.6": | 1158 | "@vue/babel-preset-app@^4.5.8": |
954 | version "4.4.6" | 1159 | version "4.5.8" |
955 | resolved "https://registry.yarnpkg.com/@vue/babel-preset-app/-/babel-preset-app-4.4.6.tgz#92aef916e83f1abe0a2ed1e9e2cef5b332f958c4" | 1160 | resolved "https://registry.yarnpkg.com/@vue/babel-preset-app/-/babel-preset-app-4.5.8.tgz#3fc5f52181db76054ecc085622f3cb066c242f6d" |
956 | integrity sha512-urIa6Qk3lKacLvscrzxMNyYlTqKFcPAUo5MohOjv1ISZ9PssHw693WTOrqSC0XksdMLtp/rnLvc6l5G8Muk0lw== | 1161 | integrity sha512-efCBo2HY8Jcs6+SyCnvWl8jGeF1Fl38reFL35AjO4SBcro0ol/qjPkeeJLjzvXUxrHAsM9DMfL/DvPa/hBmZwQ== |
957 | dependencies: | 1162 | dependencies: |
958 | "@babel/core" "^7.9.6" | 1163 | "@babel/core" "^7.11.0" |
959 | "@babel/helper-compilation-targets" "^7.9.6" | 1164 | "@babel/helper-compilation-targets" "^7.9.6" |
960 | "@babel/helper-module-imports" "^7.8.3" | 1165 | "@babel/helper-module-imports" "^7.8.3" |
961 | "@babel/plugin-proposal-class-properties" "^7.8.3" | 1166 | "@babel/plugin-proposal-class-properties" "^7.8.3" |
962 | "@babel/plugin-proposal-decorators" "^7.8.3" | 1167 | "@babel/plugin-proposal-decorators" "^7.8.3" |
963 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" | 1168 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" |
964 | "@babel/plugin-syntax-jsx" "^7.8.3" | 1169 | "@babel/plugin-syntax-jsx" "^7.8.3" |
965 | "@babel/plugin-transform-runtime" "^7.9.6" | 1170 | "@babel/plugin-transform-runtime" "^7.11.0" |
966 | "@babel/preset-env" "^7.9.6" | 1171 | "@babel/preset-env" "^7.11.0" |
967 | "@babel/runtime" "^7.9.6" | 1172 | "@babel/runtime" "^7.11.0" |
1173 | "@vue/babel-plugin-jsx" "^1.0.0-0" | ||
968 | "@vue/babel-preset-jsx" "^1.1.2" | 1174 | "@vue/babel-preset-jsx" "^1.1.2" |
969 | babel-plugin-dynamic-import-node "^2.3.3" | 1175 | babel-plugin-dynamic-import-node "^2.3.3" |
970 | core-js "^3.6.5" | 1176 | core-js "^3.6.5" |
@@ -972,122 +1178,141 @@ | |||
972 | semver "^6.1.0" | 1178 | semver "^6.1.0" |
973 | 1179 | ||
974 | "@vue/babel-preset-jsx@^1.1.2": | 1180 | "@vue/babel-preset-jsx@^1.1.2": |
975 | version "1.1.2" | 1181 | version "1.2.3" |
976 | resolved "https://registry.yarnpkg.com/@vue/babel-preset-jsx/-/babel-preset-jsx-1.1.2.tgz#2e169eb4c204ea37ca66c2ea85a880bfc99d4f20" | 1182 | resolved "https://registry.yarnpkg.com/@vue/babel-preset-jsx/-/babel-preset-jsx-1.2.3.tgz#355f59206b691a558bc95e4dbd8e59cd27dd76cb" |
977 | integrity sha512-zDpVnFpeC9YXmvGIDSsKNdL7qCG2rA3gjywLYHPCKDT10erjxF4U+6ay9X6TW5fl4GsDlJp9bVfAVQAAVzxxvQ== | 1183 | integrity sha512-yMPoPFH6kiNFAhJknjLKAre7JQNWRPjH1K9EyzTPi/J5T5oDC8sEumSjWI6lBQxcSaBboXpQp92mvxZdXCfiFw== |
1184 | dependencies: | ||
1185 | "@vue/babel-helper-vue-jsx-merge-props" "^1.2.1" | ||
1186 | "@vue/babel-plugin-transform-vue-jsx" "^1.2.1" | ||
1187 | "@vue/babel-sugar-composition-api-inject-h" "^1.2.1" | ||
1188 | "@vue/babel-sugar-composition-api-render-instance" "^1.2.1" | ||
1189 | "@vue/babel-sugar-functional-vue" "^1.2.2" | ||
1190 | "@vue/babel-sugar-inject-h" "^1.2.2" | ||
1191 | "@vue/babel-sugar-v-model" "^1.2.3" | ||
1192 | "@vue/babel-sugar-v-on" "^1.2.3" | ||
1193 | |||
1194 | "@vue/babel-sugar-composition-api-inject-h@^1.2.1": | ||
1195 | version "1.2.1" | ||
1196 | resolved "https://registry.yarnpkg.com/@vue/babel-sugar-composition-api-inject-h/-/babel-sugar-composition-api-inject-h-1.2.1.tgz#05d6e0c432710e37582b2be9a6049b689b6f03eb" | ||
1197 | integrity sha512-4B3L5Z2G+7s+9Bwbf+zPIifkFNcKth7fQwekVbnOA3cr3Pq71q71goWr97sk4/yyzH8phfe5ODVzEjX7HU7ItQ== | ||
978 | dependencies: | 1198 | dependencies: |
979 | "@vue/babel-helper-vue-jsx-merge-props" "^1.0.0" | 1199 | "@babel/plugin-syntax-jsx" "^7.2.0" |
980 | "@vue/babel-plugin-transform-vue-jsx" "^1.1.2" | ||
981 | "@vue/babel-sugar-functional-vue" "^1.1.2" | ||
982 | "@vue/babel-sugar-inject-h" "^1.1.2" | ||
983 | "@vue/babel-sugar-v-model" "^1.1.2" | ||
984 | "@vue/babel-sugar-v-on" "^1.1.2" | ||
985 | 1200 | ||
986 | "@vue/babel-sugar-functional-vue@^1.1.2": | 1201 | "@vue/babel-sugar-composition-api-render-instance@^1.2.1": |
987 | version "1.1.2" | 1202 | version "1.2.1" |
988 | resolved "https://registry.yarnpkg.com/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.1.2.tgz#f7e24fba09e6f1ee70104560a8808057555f1a9a" | 1203 | resolved "https://registry.yarnpkg.com/@vue/babel-sugar-composition-api-render-instance/-/babel-sugar-composition-api-render-instance-1.2.1.tgz#745cf4608ed71476c66434203d0603f32b4c025b" |
989 | integrity sha512-YhmdJQSVEFF5ETJXzrMpj0nkCXEa39TvVxJTuVjzvP2rgKhdMmQzlJuMv/HpadhZaRVMCCF3AEjjJcK5q/cYzQ== | 1204 | integrity sha512-F2gQbEMOUPyapqc85/O1Tbw0qBuvgXC/qBcBsjMKqC7KWJ4hK1eJUvU3iLHHTbre6V7zzIjrqEe0SoE1lR4mfw== |
990 | dependencies: | 1205 | dependencies: |
991 | "@babel/plugin-syntax-jsx" "^7.2.0" | 1206 | "@babel/plugin-syntax-jsx" "^7.2.0" |
992 | 1207 | ||
993 | "@vue/babel-sugar-inject-h@^1.1.2": | 1208 | "@vue/babel-sugar-functional-vue@^1.2.2": |
994 | version "1.1.2" | 1209 | version "1.2.2" |
995 | resolved "https://registry.yarnpkg.com/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.1.2.tgz#8a5276b6d8e2ed16ffc8078aad94236274e6edf0" | 1210 | resolved "https://registry.yarnpkg.com/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.2.2.tgz#267a9ac8d787c96edbf03ce3f392c49da9bd2658" |
996 | integrity sha512-VRSENdTvD5htpnVp7i7DNuChR5rVMcORdXjvv5HVvpdKHzDZAYiLSD+GhnhxLm3/dMuk8pSzV+k28ECkiN5m8w== | 1211 | integrity sha512-JvbgGn1bjCLByIAU1VOoepHQ1vFsroSA/QkzdiSs657V79q6OwEWLCQtQnEXD/rLTA8rRit4rMOhFpbjRFm82w== |
997 | dependencies: | 1212 | dependencies: |
998 | "@babel/plugin-syntax-jsx" "^7.2.0" | 1213 | "@babel/plugin-syntax-jsx" "^7.2.0" |
999 | 1214 | ||
1000 | "@vue/babel-sugar-v-model@^1.1.2": | 1215 | "@vue/babel-sugar-inject-h@^1.2.2": |
1001 | version "1.1.2" | 1216 | version "1.2.2" |
1002 | resolved "https://registry.yarnpkg.com/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.1.2.tgz#1ff6fd1b800223fc9cb1e84dceb5e52d737a8192" | 1217 | resolved "https://registry.yarnpkg.com/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.2.2.tgz#d738d3c893367ec8491dcbb669b000919293e3aa" |
1003 | integrity sha512-vLXPvNq8vDtt0u9LqFdpGM9W9IWDmCmCyJXuozlq4F4UYVleXJ2Fa+3JsnTZNJcG+pLjjfnEGHci2339Kj5sGg== | 1218 | integrity sha512-y8vTo00oRkzQTgufeotjCLPAvlhnpSkcHFEp60+LJUwygGcd5Chrpn5480AQp/thrxVm8m2ifAk0LyFel9oCnw== |
1004 | dependencies: | 1219 | dependencies: |
1005 | "@babel/plugin-syntax-jsx" "^7.2.0" | 1220 | "@babel/plugin-syntax-jsx" "^7.2.0" |
1006 | "@vue/babel-helper-vue-jsx-merge-props" "^1.0.0" | 1221 | |
1007 | "@vue/babel-plugin-transform-vue-jsx" "^1.1.2" | 1222 | "@vue/babel-sugar-v-model@^1.2.3": |
1223 | version "1.2.3" | ||
1224 | resolved "https://registry.yarnpkg.com/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.2.3.tgz#fa1f29ba51ebf0aa1a6c35fa66d539bc459a18f2" | ||
1225 | integrity sha512-A2jxx87mySr/ulAsSSyYE8un6SIH0NWHiLaCWpodPCVOlQVODCaSpiR4+IMsmBr73haG+oeCuSvMOM+ttWUqRQ== | ||
1226 | dependencies: | ||
1227 | "@babel/plugin-syntax-jsx" "^7.2.0" | ||
1228 | "@vue/babel-helper-vue-jsx-merge-props" "^1.2.1" | ||
1229 | "@vue/babel-plugin-transform-vue-jsx" "^1.2.1" | ||
1008 | camelcase "^5.0.0" | 1230 | camelcase "^5.0.0" |
1009 | html-tags "^2.0.0" | 1231 | html-tags "^2.0.0" |
1010 | svg-tags "^1.0.0" | 1232 | svg-tags "^1.0.0" |
1011 | 1233 | ||
1012 | "@vue/babel-sugar-v-on@^1.1.2": | 1234 | "@vue/babel-sugar-v-on@^1.2.3": |
1013 | version "1.1.2" | 1235 | version "1.2.3" |
1014 | resolved "https://registry.yarnpkg.com/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.1.2.tgz#b2ef99b8f2fab09fbead25aad70ef42e1cf5b13b" | 1236 | resolved "https://registry.yarnpkg.com/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.2.3.tgz#342367178586a69f392f04bfba32021d02913ada" |
1015 | integrity sha512-T8ZCwC8Jp2uRtcZ88YwZtZXe7eQrJcfRq0uTFy6ShbwYJyz5qWskRFoVsdTi9o0WEhmQXxhQUewodOSCUPVmsQ== | 1237 | integrity sha512-kt12VJdz/37D3N3eglBywV8GStKNUhNrsxChXIV+o0MwVXORYuhDTHJRKPgLJRb/EY3vM2aRFQdxJBp9CLikjw== |
1016 | dependencies: | 1238 | dependencies: |
1017 | "@babel/plugin-syntax-jsx" "^7.2.0" | 1239 | "@babel/plugin-syntax-jsx" "^7.2.0" |
1018 | "@vue/babel-plugin-transform-vue-jsx" "^1.1.2" | 1240 | "@vue/babel-plugin-transform-vue-jsx" "^1.2.1" |
1019 | camelcase "^5.0.0" | 1241 | camelcase "^5.0.0" |
1020 | 1242 | ||
1021 | "@vue/cli-overlay@^4.4.6": | 1243 | "@vue/cli-overlay@^4.5.8": |
1022 | version "4.4.6" | 1244 | version "4.5.8" |
1023 | resolved "https://registry.yarnpkg.com/@vue/cli-overlay/-/cli-overlay-4.4.6.tgz#58f996066d8c0a0a45ad4b5c6f3f213f9945a9ba" | 1245 | resolved "https://registry.yarnpkg.com/@vue/cli-overlay/-/cli-overlay-4.5.8.tgz#5b71b81bd490b9b596cfdda78f90155643e037d4" |
1024 | integrity sha512-fzjg2gWQt+jw5fyLsD9HZNxGNQgZjLDI2s9bLWJwRucdfmncSi9neqA0TZyszGrgcJA4Qu4V5KgV0qwVSBYCaw== | 1246 | integrity sha512-M6q4QPKQfErHk54ycxBASgBadgdsK45f6v2NWUTAiFXdTtqv1Z7gR8JAbQhiXbni/m9571bLJnZFv5c8uhAHnw== |
1025 | 1247 | ||
1026 | "@vue/cli-plugin-babel@~4.4.6": | 1248 | "@vue/cli-plugin-babel@~4.5.8": |
1027 | version "4.4.6" | 1249 | version "4.5.8" |
1028 | resolved "https://registry.yarnpkg.com/@vue/cli-plugin-babel/-/cli-plugin-babel-4.4.6.tgz#d5d750d4f74900c00836e19c164193650df26f3b" | 1250 | resolved "https://registry.yarnpkg.com/@vue/cli-plugin-babel/-/cli-plugin-babel-4.5.8.tgz#5759e0d24c568cb145e7d0b307497ce64f472cb0" |
1029 | integrity sha512-9cX9mN+4DIbcqw3rV6UBOA0t5zikIkrBLQloUzsOBOu5Xb7/UoD7inInFj7bnyHUflr5LqbdWJ+etCQcWAIIXA== | 1251 | integrity sha512-2quuLuCZq2vH29xfp66L5YfUxQvyMX9te5jMslfQGVzvUmFpPbz8ceioZYW9+VqWjg8pzqSuBE+ANJLWdy2RtQ== |
1030 | dependencies: | 1252 | dependencies: |
1031 | "@babel/core" "^7.9.6" | 1253 | "@babel/core" "^7.11.0" |
1032 | "@vue/babel-preset-app" "^4.4.6" | 1254 | "@vue/babel-preset-app" "^4.5.8" |
1033 | "@vue/cli-shared-utils" "^4.4.6" | 1255 | "@vue/cli-shared-utils" "^4.5.8" |
1034 | babel-loader "^8.1.0" | 1256 | babel-loader "^8.1.0" |
1035 | cache-loader "^4.1.0" | 1257 | cache-loader "^4.1.0" |
1036 | thread-loader "^2.1.3" | 1258 | thread-loader "^2.1.3" |
1037 | webpack "^4.0.0" | 1259 | webpack "^4.0.0" |
1038 | 1260 | ||
1039 | "@vue/cli-plugin-eslint@~4.4.6": | 1261 | "@vue/cli-plugin-eslint@~4.5.8": |
1040 | version "4.4.6" | 1262 | version "4.5.8" |
1041 | resolved "https://registry.yarnpkg.com/@vue/cli-plugin-eslint/-/cli-plugin-eslint-4.4.6.tgz#442d62a70dd93e4a549ff9164d2d10f4e97a58f1" | 1263 | resolved "https://registry.yarnpkg.com/@vue/cli-plugin-eslint/-/cli-plugin-eslint-4.5.8.tgz#fce1ed659dbb50de7477592591348cf29f3353ff" |
1042 | integrity sha512-3a9rVpOKPQsDgAlRkhmBMHboGobivG/47BbQGE66Z8YJxrgF/AWikP3Jy67SmxtszRkyiWfw4aJFRV9r3MzffQ== | 1264 | integrity sha512-1lg3K2D/harXbN4FvRoA1b0X9947H+G4Ql/43rxJY39OqswfK/d1ck438Fo9M4l1+zhBSUNDmcjn7Q2EH6qWmA== |
1043 | dependencies: | 1265 | dependencies: |
1044 | "@vue/cli-shared-utils" "^4.4.6" | 1266 | "@vue/cli-shared-utils" "^4.5.8" |
1045 | eslint-loader "^2.2.1" | 1267 | eslint-loader "^2.2.1" |
1046 | globby "^9.2.0" | 1268 | globby "^9.2.0" |
1047 | inquirer "^7.1.0" | 1269 | inquirer "^7.1.0" |
1048 | webpack "^4.0.0" | 1270 | webpack "^4.0.0" |
1049 | yorkie "^2.0.0" | 1271 | yorkie "^2.0.0" |
1050 | 1272 | ||
1051 | "@vue/cli-plugin-pwa@~4.4.6": | 1273 | "@vue/cli-plugin-pwa@~4.5.8": |
1052 | version "4.4.6" | 1274 | version "4.5.8" |
1053 | resolved "https://registry.yarnpkg.com/@vue/cli-plugin-pwa/-/cli-plugin-pwa-4.4.6.tgz#f1b8e35822e28c3b6b196673d00a9127f7953937" | 1275 | resolved "https://registry.yarnpkg.com/@vue/cli-plugin-pwa/-/cli-plugin-pwa-4.5.8.tgz#16dff0256625fce840970e50630c8e472238e742" |
1054 | integrity sha512-TbYKZ60phCdVFiamvaGrIDTKJA0068WJ1i8FiKNEgQaXdGEFCWII3KK4QTIEwgXSNtgY+m2hYx7mZB/y5/9/RA== | 1276 | integrity sha512-B5rFJhwhGLHcPUrAUx185X6jlTUJHgN6FTnU+qKspEoONCtGy09/zIL9ejELRw9jxv5C6x2WKUAkyHhh89RkWw== |
1055 | dependencies: | 1277 | dependencies: |
1056 | "@vue/cli-shared-utils" "^4.4.6" | 1278 | "@vue/cli-shared-utils" "^4.5.8" |
1057 | webpack "^4.0.0" | 1279 | webpack "^4.0.0" |
1058 | workbox-webpack-plugin "^4.3.1" | 1280 | workbox-webpack-plugin "^4.3.1" |
1059 | 1281 | ||
1060 | "@vue/cli-plugin-router@^4.4.6": | 1282 | "@vue/cli-plugin-router@^4.5.8": |
1061 | version "4.4.6" | 1283 | version "4.5.8" |
1062 | resolved "https://registry.yarnpkg.com/@vue/cli-plugin-router/-/cli-plugin-router-4.4.6.tgz#db5bb1c92afd2046376e4faa90270d6363d4b9b8" | 1284 | resolved "https://registry.yarnpkg.com/@vue/cli-plugin-router/-/cli-plugin-router-4.5.8.tgz#db70a69df4edc90690765f8c25749a68b20dd850" |
1063 | integrity sha512-TkLdn0ZYo3zgn78Rk8doPlR+4UkGjGW2R1eGEaZEkue/mw2VhUWtTk9cKLZaYrw0eY8Ro/j+OV6mD+scyrairg== | 1285 | integrity sha512-tJwVLdX4jj0Ia/1hsBejRbo4gs0hb2z1z5ert+4Ve5RNdpOKUG69OaPQgXPqvuYSQh9MW7bqG0iJmYtVD+KBNw== |
1064 | dependencies: | 1286 | dependencies: |
1065 | "@vue/cli-shared-utils" "^4.4.6" | 1287 | "@vue/cli-shared-utils" "^4.5.8" |
1066 | 1288 | ||
1067 | "@vue/cli-plugin-vuex@^4.4.6": | 1289 | "@vue/cli-plugin-vuex@^4.5.8": |
1068 | version "4.4.6" | 1290 | version "4.5.8" |
1069 | resolved "https://registry.yarnpkg.com/@vue/cli-plugin-vuex/-/cli-plugin-vuex-4.4.6.tgz#44b596f0d5236e0a2ce1aa4757bda5207c230be0" | 1291 | resolved "https://registry.yarnpkg.com/@vue/cli-plugin-vuex/-/cli-plugin-vuex-4.5.8.tgz#8122ae93bf59327d3a0063c0c6da51513a1e2456" |
1070 | integrity sha512-Ho0YzUivn8BLPqFoFypntR8CMTEXYYHVr0GdnZW99XL+DbGw75f+tJfnrV9UFHDTfvZt7uewKiXDMlrzQ0l3Ug== | 1292 | integrity sha512-wU9WPhay1zBxtdd/HLRYhFRLBbG9lw3YTBJep9sTnYwUeXiEgum4O88Q2j6cwBBPPHMgeMrKMPHS85Jf4hMc0g== |
1071 | 1293 | ||
1072 | "@vue/cli-service@~4.4.6": | 1294 | "@vue/cli-service@~4.5.8": |
1073 | version "4.4.6" | 1295 | version "4.5.8" |
1074 | resolved "https://registry.yarnpkg.com/@vue/cli-service/-/cli-service-4.4.6.tgz#83ca058d081eb145bbc1ae2fe8069d2d9ddf7e18" | 1296 | resolved "https://registry.yarnpkg.com/@vue/cli-service/-/cli-service-4.5.8.tgz#9fe58bc7c77c5121eabb940f80e06c18dab123ea" |
1075 | integrity sha512-k5OFGh2NnvRymCyq9DfBiNJvECUuun3pl5KMm3557IZyA5E5csv+RHoSW3dX8HHe0zXq18g52VswP1llvR9POw== | 1297 | integrity sha512-YcVEJvA5vQOcfRzhCQDfHxRW9WHvKqlQeiuSvNddfV2uQqKD3ifhsNYiZZuFvbev9qgRUmtmxSafpwYzj/LLBw== |
1076 | dependencies: | 1298 | dependencies: |
1077 | "@intervolga/optimize-cssnano-plugin" "^1.0.5" | 1299 | "@intervolga/optimize-cssnano-plugin" "^1.0.5" |
1078 | "@soda/friendly-errors-webpack-plugin" "^1.7.1" | 1300 | "@soda/friendly-errors-webpack-plugin" "^1.7.1" |
1079 | "@soda/get-current-script" "^1.0.0" | 1301 | "@soda/get-current-script" "^1.0.0" |
1080 | "@vue/cli-overlay" "^4.4.6" | 1302 | "@types/minimist" "^1.2.0" |
1081 | "@vue/cli-plugin-router" "^4.4.6" | 1303 | "@types/webpack" "^4.0.0" |
1082 | "@vue/cli-plugin-vuex" "^4.4.6" | 1304 | "@types/webpack-dev-server" "^3.11.0" |
1083 | "@vue/cli-shared-utils" "^4.4.6" | 1305 | "@vue/cli-overlay" "^4.5.8" |
1306 | "@vue/cli-plugin-router" "^4.5.8" | ||
1307 | "@vue/cli-plugin-vuex" "^4.5.8" | ||
1308 | "@vue/cli-shared-utils" "^4.5.8" | ||
1084 | "@vue/component-compiler-utils" "^3.1.2" | 1309 | "@vue/component-compiler-utils" "^3.1.2" |
1085 | "@vue/preload-webpack-plugin" "^1.1.0" | 1310 | "@vue/preload-webpack-plugin" "^1.1.0" |
1086 | "@vue/web-component-wrapper" "^1.2.0" | 1311 | "@vue/web-component-wrapper" "^1.2.0" |
1087 | acorn "^7.2.0" | 1312 | acorn "^7.4.0" |
1088 | acorn-walk "^7.1.1" | 1313 | acorn-walk "^7.1.1" |
1089 | address "^1.1.2" | 1314 | address "^1.1.2" |
1090 | autoprefixer "^9.8.0" | 1315 | autoprefixer "^9.8.6" |
1091 | browserslist "^4.12.0" | 1316 | browserslist "^4.12.0" |
1092 | cache-loader "^4.1.0" | 1317 | cache-loader "^4.1.0" |
1093 | case-sensitive-paths-webpack-plugin "^2.3.0" | 1318 | case-sensitive-paths-webpack-plugin "^2.3.0" |
@@ -1126,11 +1351,13 @@ | |||
1126 | webpack-chain "^6.4.0" | 1351 | webpack-chain "^6.4.0" |
1127 | webpack-dev-server "^3.11.0" | 1352 | webpack-dev-server "^3.11.0" |
1128 | webpack-merge "^4.2.2" | 1353 | webpack-merge "^4.2.2" |
1354 | optionalDependencies: | ||
1355 | vue-loader-v16 "npm:vue-loader@^16.0.0-beta.7" | ||
1129 | 1356 | ||
1130 | "@vue/cli-shared-utils@^4.4.6": | 1357 | "@vue/cli-shared-utils@^4.5.8": |
1131 | version "4.4.6" | 1358 | version "4.5.8" |
1132 | resolved "https://registry.yarnpkg.com/@vue/cli-shared-utils/-/cli-shared-utils-4.4.6.tgz#0ec59880920736c6dd79079ac0b5ceac29fa55e1" | 1359 | resolved "https://registry.yarnpkg.com/@vue/cli-shared-utils/-/cli-shared-utils-4.5.8.tgz#d454306aaa510e666a34b144afc81830fc23acc9" |
1133 | integrity sha512-ba+FZZCjiTSu2otnLjY4qXqASe7ZIQ/QBljk5oRPgqrR0p1NUkDPUcZhqa041aOaSW1yAfSfhOD7Q84nMnWhzQ== | 1360 | integrity sha512-pa6oenhBO/5HeDLRSokiwVN01gROACEDy3ESXWuPmragOREGNmmFKtkPHlqeYavGEX6LFp7f0VK3uMX6UYS5mQ== |
1134 | dependencies: | 1361 | dependencies: |
1135 | "@hapi/joi" "^15.0.1" | 1362 | "@hapi/joi" "^15.0.1" |
1136 | chalk "^2.4.2" | 1363 | chalk "^2.4.2" |
@@ -1146,9 +1373,9 @@ | |||
1146 | strip-ansi "^6.0.0" | 1373 | strip-ansi "^6.0.0" |
1147 | 1374 | ||
1148 | "@vue/component-compiler-utils@^3.1.0", "@vue/component-compiler-utils@^3.1.2": | 1375 | "@vue/component-compiler-utils@^3.1.0", "@vue/component-compiler-utils@^3.1.2": |
1149 | version "3.1.2" | 1376 | version "3.2.0" |
1150 | resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-3.1.2.tgz#8213a5ff3202f9f2137fe55370f9e8b9656081c3" | 1377 | resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-3.2.0.tgz#8f85182ceed28e9b3c75313de669f83166d11e5d" |
1151 | integrity sha512-QLq9z8m79mCinpaEeSURhnNCN6djxpHw0lpP/bodMlt5kALfONpryMthvnrQOlTcIKoF+VoPi+lPHUYeDFPXug== | 1378 | integrity sha512-lejBLa7xAMsfiZfNp7Kv51zOzifnb29FwdnMLa96z26kXErPFioSf9BMcePVIQ6/Gc6/mC0UrPpxAWIHyae0vw== |
1152 | dependencies: | 1379 | dependencies: |
1153 | consolidate "^0.15.1" | 1380 | consolidate "^0.15.1" |
1154 | hash-sum "^1.0.2" | 1381 | hash-sum "^1.0.2" |
@@ -1169,9 +1396,9 @@ | |||
1169 | eslint-config-prettier "^6.0.0" | 1396 | eslint-config-prettier "^6.0.0" |
1170 | 1397 | ||
1171 | "@vue/preload-webpack-plugin@^1.1.0": | 1398 | "@vue/preload-webpack-plugin@^1.1.0": |
1172 | version "1.1.1" | 1399 | version "1.1.2" |
1173 | resolved "https://registry.yarnpkg.com/@vue/preload-webpack-plugin/-/preload-webpack-plugin-1.1.1.tgz#18723530d304f443021da2292d6ec9502826104a" | 1400 | resolved "https://registry.yarnpkg.com/@vue/preload-webpack-plugin/-/preload-webpack-plugin-1.1.2.tgz#ceb924b4ecb3b9c43871c7a429a02f8423e621ab" |
1174 | integrity sha512-8VCoJeeH8tCkzhkpfOkt+abALQkS11OIHhte5MBzYaKMTqK0A3ZAKEUVAffsOklhEv7t0yrQt696Opnu9oAx+w== | 1401 | integrity sha512-LIZMuJk38pk9U9Ur4YzHjlIyMuxPlACdBIHH9/nGYVTsaGKOSnSuELiE8vS9wa+dJpIYspYUOqk+L1Q4pgHQHQ== |
1175 | 1402 | ||
1176 | "@vue/web-component-wrapper@^1.2.0": | 1403 | "@vue/web-component-wrapper@^1.2.0": |
1177 | version "1.2.0" | 1404 | version "1.2.0" |
@@ -1342,9 +1569,9 @@ accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: | |||
1342 | negotiator "0.6.2" | 1569 | negotiator "0.6.2" |
1343 | 1570 | ||
1344 | acorn-jsx@^5.2.0: | 1571 | acorn-jsx@^5.2.0: |
1345 | version "5.2.0" | 1572 | version "5.3.1" |
1346 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe" | 1573 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" |
1347 | integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== | 1574 | integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== |
1348 | 1575 | ||
1349 | acorn-walk@^7.1.1: | 1576 | acorn-walk@^7.1.1: |
1350 | version "7.2.0" | 1577 | version "7.2.0" |
@@ -1352,14 +1579,14 @@ acorn-walk@^7.1.1: | |||
1352 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== | 1579 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== |
1353 | 1580 | ||
1354 | acorn@^6.4.1: | 1581 | acorn@^6.4.1: |
1355 | version "6.4.1" | 1582 | version "6.4.2" |
1356 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" | 1583 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6" |
1357 | integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== | 1584 | integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== |
1358 | 1585 | ||
1359 | acorn@^7.1.1, acorn@^7.2.0: | 1586 | acorn@^7.1.1, acorn@^7.4.0: |
1360 | version "7.3.1" | 1587 | version "7.4.1" |
1361 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.3.1.tgz#85010754db53c3fbaf3b9ea3e083aa5c5d147ffd" | 1588 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" |
1362 | integrity sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA== | 1589 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== |
1363 | 1590 | ||
1364 | address@^1.1.2: | 1591 | address@^1.1.2: |
1365 | version "1.1.2" | 1592 | version "1.1.2" |
@@ -1367,9 +1594,9 @@ address@^1.1.2: | |||
1367 | integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA== | 1594 | integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA== |
1368 | 1595 | ||
1369 | aggregate-error@^3.0.0: | 1596 | aggregate-error@^3.0.0: |
1370 | version "3.0.1" | 1597 | version "3.1.0" |
1371 | resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" | 1598 | resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" |
1372 | integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== | 1599 | integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== |
1373 | dependencies: | 1600 | dependencies: |
1374 | clean-stack "^2.0.0" | 1601 | clean-stack "^2.0.0" |
1375 | indent-string "^4.0.0" | 1602 | indent-string "^4.0.0" |
@@ -1379,15 +1606,15 @@ ajv-errors@^1.0.0: | |||
1379 | resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" | 1606 | resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" |
1380 | integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== | 1607 | integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== |
1381 | 1608 | ||
1382 | ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: | 1609 | ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: |
1383 | version "3.5.1" | 1610 | version "3.5.2" |
1384 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.1.tgz#b83ca89c5d42d69031f424cad49aada0236c6957" | 1611 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" |
1385 | integrity sha512-KWcq3xN8fDjSB+IMoh2VaXVhRI0BBGxoYp3rx7Pkb6z0cFjYR9Q9l4yZqqals0/zsioCmocC5H6UvsGD4MoIBA== | 1612 | integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== |
1386 | 1613 | ||
1387 | ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.5.5: | 1614 | ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5: |
1388 | version "6.12.3" | 1615 | version "6.12.6" |
1389 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706" | 1616 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" |
1390 | integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA== | 1617 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== |
1391 | dependencies: | 1618 | dependencies: |
1392 | fast-deep-equal "^3.1.1" | 1619 | fast-deep-equal "^3.1.1" |
1393 | fast-json-stable-stringify "^2.0.0" | 1620 | fast-json-stable-stringify "^2.0.0" |
@@ -1454,11 +1681,10 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1: | |||
1454 | color-convert "^1.9.0" | 1681 | color-convert "^1.9.0" |
1455 | 1682 | ||
1456 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: | 1683 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: |
1457 | version "4.2.1" | 1684 | version "4.3.0" |
1458 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" | 1685 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" |
1459 | integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== | 1686 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== |
1460 | dependencies: | 1687 | dependencies: |
1461 | "@types/color-name" "^1.1.1" | ||
1462 | color-convert "^2.0.1" | 1688 | color-convert "^2.0.1" |
1463 | 1689 | ||
1464 | any-promise@^1.0.0: | 1690 | any-promise@^1.0.0: |
@@ -1541,14 +1767,15 @@ array-unique@^0.3.2: | |||
1541 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" | 1767 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" |
1542 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= | 1768 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= |
1543 | 1769 | ||
1544 | asn1.js@^4.0.0: | 1770 | asn1.js@^5.2.0: |
1545 | version "4.10.1" | 1771 | version "5.4.1" |
1546 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" | 1772 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" |
1547 | integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== | 1773 | integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== |
1548 | dependencies: | 1774 | dependencies: |
1549 | bn.js "^4.0.0" | 1775 | bn.js "^4.0.0" |
1550 | inherits "^2.0.1" | 1776 | inherits "^2.0.1" |
1551 | minimalistic-assert "^1.0.0" | 1777 | minimalistic-assert "^1.0.0" |
1778 | safer-buffer "^2.1.0" | ||
1552 | 1779 | ||
1553 | asn1@~0.2.3: | 1780 | asn1@~0.2.3: |
1554 | version "0.2.4" | 1781 | version "0.2.4" |
@@ -1607,14 +1834,14 @@ atob@^2.1.2: | |||
1607 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" | 1834 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" |
1608 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== | 1835 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== |
1609 | 1836 | ||
1610 | autoprefixer@^9.8.0: | 1837 | autoprefixer@^9.8.6: |
1611 | version "9.8.5" | 1838 | version "9.8.6" |
1612 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.5.tgz#2c225de229ddafe1d1424c02791d0c3e10ccccaa" | 1839 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f" |
1613 | integrity sha512-C2p5KkumJlsTHoNv9w31NrBRgXhf6eCMteJuHZi2xhkgC+5Vm40MEtCKPhc0qdgAOhox0YPy1SQHTAky05UoKg== | 1840 | integrity sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg== |
1614 | dependencies: | 1841 | dependencies: |
1615 | browserslist "^4.12.0" | 1842 | browserslist "^4.12.0" |
1616 | caniuse-lite "^1.0.30001097" | 1843 | caniuse-lite "^1.0.30001109" |
1617 | colorette "^1.2.0" | 1844 | colorette "^1.2.1" |
1618 | normalize-range "^0.1.2" | 1845 | normalize-range "^0.1.2" |
1619 | num2fraction "^1.2.2" | 1846 | num2fraction "^1.2.2" |
1620 | postcss "^7.0.32" | 1847 | postcss "^7.0.32" |
@@ -1626,9 +1853,9 @@ aws-sign2@~0.7.0: | |||
1626 | integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= | 1853 | integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= |
1627 | 1854 | ||
1628 | aws4@^1.8.0: | 1855 | aws4@^1.8.0: |
1629 | version "1.10.0" | 1856 | version "1.10.1" |
1630 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.0.tgz#a17b3a8ea811060e74d47d306122400ad4497ae2" | 1857 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.1.tgz#e1e82e4f3e999e2cfd61b161280d16a111f86428" |
1631 | integrity sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA== | 1858 | integrity sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA== |
1632 | 1859 | ||
1633 | babel-eslint@^10.1.0: | 1860 | babel-eslint@^10.1.0: |
1634 | version "10.1.0" | 1861 | version "10.1.0" |
@@ -1776,9 +2003,9 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: | |||
1776 | integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== | 2003 | integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== |
1777 | 2004 | ||
1778 | bn.js@^5.1.1: | 2005 | bn.js@^5.1.1: |
1779 | version "5.1.2" | 2006 | version "5.1.3" |
1780 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0" | 2007 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b" |
1781 | integrity sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA== | 2008 | integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ== |
1782 | 2009 | ||
1783 | body-parser@1.19.0: | 2010 | body-parser@1.19.0: |
1784 | version "1.19.0" | 2011 | version "1.19.0" |
@@ -1889,15 +2116,15 @@ browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: | |||
1889 | randombytes "^2.0.1" | 2116 | randombytes "^2.0.1" |
1890 | 2117 | ||
1891 | browserify-sign@^4.0.0: | 2118 | browserify-sign@^4.0.0: |
1892 | version "4.2.0" | 2119 | version "4.2.1" |
1893 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.0.tgz#545d0b1b07e6b2c99211082bf1b12cce7a0b0e11" | 2120 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3" |
1894 | integrity sha512-hEZC1KEeYuoHRqhGhTy6gWrpJA3ZDjFWv0DE61643ZnOXAKJb3u7yWcrU0mMc9SwAqK1n7myPGndkp0dFG7NFA== | 2121 | integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg== |
1895 | dependencies: | 2122 | dependencies: |
1896 | bn.js "^5.1.1" | 2123 | bn.js "^5.1.1" |
1897 | browserify-rsa "^4.0.1" | 2124 | browserify-rsa "^4.0.1" |
1898 | create-hash "^1.2.0" | 2125 | create-hash "^1.2.0" |
1899 | create-hmac "^1.1.7" | 2126 | create-hmac "^1.1.7" |
1900 | elliptic "^6.5.2" | 2127 | elliptic "^6.5.3" |
1901 | inherits "^2.0.4" | 2128 | inherits "^2.0.4" |
1902 | parse-asn1 "^5.1.5" | 2129 | parse-asn1 "^5.1.5" |
1903 | readable-stream "^3.6.0" | 2130 | readable-stream "^3.6.0" |
@@ -1911,14 +2138,14 @@ browserify-zlib@^0.2.0: | |||
1911 | pako "~1.0.5" | 2138 | pako "~1.0.5" |
1912 | 2139 | ||
1913 | browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.8.5: | 2140 | browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.8.5: |
1914 | version "4.13.0" | 2141 | version "4.14.5" |
1915 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.13.0.tgz#42556cba011e1b0a2775b611cba6a8eca18e940d" | 2142 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.5.tgz#1c751461a102ddc60e40993639b709be7f2c4015" |
1916 | integrity sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ== | 2143 | integrity sha512-Z+vsCZIvCBvqLoYkBFTwEYH3v5MCQbsAjp50ERycpOjnPmolg1Gjy4+KaWWpm8QOJt9GHkhdqAl14NpCX73CWA== |
1917 | dependencies: | 2144 | dependencies: |
1918 | caniuse-lite "^1.0.30001093" | 2145 | caniuse-lite "^1.0.30001135" |
1919 | electron-to-chromium "^1.3.488" | 2146 | electron-to-chromium "^1.3.571" |
1920 | escalade "^3.0.1" | 2147 | escalade "^3.1.0" |
1921 | node-releases "^1.1.58" | 2148 | node-releases "^1.1.61" |
1922 | 2149 | ||
1923 | buffer-from@^1.0.0: | 2150 | buffer-from@^1.0.0: |
1924 | version "1.1.1" | 2151 | version "1.1.1" |
@@ -1954,10 +2181,10 @@ builtin-status-codes@^3.0.0: | |||
1954 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" | 2181 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" |
1955 | integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= | 2182 | integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= |
1956 | 2183 | ||
1957 | bulma@^0.9.0: | 2184 | bulma@^0.9.1: |
1958 | version "0.9.0" | 2185 | version "0.9.1" |
1959 | resolved "https://registry.yarnpkg.com/bulma/-/bulma-0.9.0.tgz#948c5445a49e9d7546f0826cb3820d17178a814f" | 2186 | resolved "https://registry.yarnpkg.com/bulma/-/bulma-0.9.1.tgz#2bf0e25062a22166db5c92e8c3dcb4605ab040d8" |
1960 | integrity sha512-rV75CJkubNUroAt0qCRkjznZLoaXq/ctfMXsMvKSL84UetbSyx5REl96e8GoQ04G4Tkw0XF3STECffTOQrbzOQ== | 2187 | integrity sha512-LSF69OumXg2HSKl2+rN0/OEXJy7WFEb681wtBlNS/ulJYR27J3rORHibdXZ6GVb/vyUzzYK/Arjyh56wjbFedA== |
1961 | 2188 | ||
1962 | bytes@3.0.0: | 2189 | bytes@3.0.0: |
1963 | version "3.0.0" | 2190 | version "3.0.0" |
@@ -2083,6 +2310,11 @@ camelcase@^5.0.0, camelcase@^5.3.1: | |||
2083 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" | 2310 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" |
2084 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== | 2311 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== |
2085 | 2312 | ||
2313 | camelcase@^6.0.0: | ||
2314 | version "6.1.0" | ||
2315 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.1.0.tgz#27dc176173725fb0adf8a48b647f4d7871944d78" | ||
2316 | integrity sha512-WCMml9ivU60+8rEJgELlFp1gxFcEGxwYleE3bziHEDeqsqAWGHdimB7beBFGjLzVNgPGyDsfgXLQEYMpmIFnVQ== | ||
2317 | |||
2086 | caniuse-api@^3.0.0: | 2318 | caniuse-api@^3.0.0: |
2087 | version "3.0.0" | 2319 | version "3.0.0" |
2088 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" | 2320 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" |
@@ -2093,10 +2325,10 @@ caniuse-api@^3.0.0: | |||
2093 | lodash.memoize "^4.1.2" | 2325 | lodash.memoize "^4.1.2" |
2094 | lodash.uniq "^4.5.0" | 2326 | lodash.uniq "^4.5.0" |
2095 | 2327 | ||
2096 | caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001093, caniuse-lite@^1.0.30001097: | 2328 | caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001135: |
2097 | version "1.0.30001099" | 2329 | version "1.0.30001150" |
2098 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001099.tgz#540118fcc6842d1fde62f4ee5521d1ec6afdb40e" | 2330 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001150.tgz#6d0d829da654b0b233576de00335586bc2004df1" |
2099 | integrity sha512-sdS9A+sQTk7wKoeuZBN/YMAHVztUfVnjDi4/UV3sDE8xoh7YR12hKW+pIdB3oqKGwr9XaFL2ovfzt9w8eUI5CA== | 2331 | integrity sha512-kiNKvihW0m36UhAFnl7bOAv0i1K1f6wpfVtTF5O5O82XzgtBnb05V0XeV3oZ968vfg2sRNChsHw8ASH2hDfoYQ== |
2100 | 2332 | ||
2101 | case-sensitive-paths-webpack-plugin@^2.3.0: | 2333 | case-sensitive-paths-webpack-plugin@^2.3.0: |
2102 | version "2.3.0" | 2334 | version "2.3.0" |
@@ -2154,10 +2386,10 @@ check-types@^8.0.3: | |||
2154 | resolved "https://registry.yarnpkg.com/check-types/-/check-types-8.0.3.tgz#3356cca19c889544f2d7a95ed49ce508a0ecf552" | 2386 | resolved "https://registry.yarnpkg.com/check-types/-/check-types-8.0.3.tgz#3356cca19c889544f2d7a95ed49ce508a0ecf552" |
2155 | integrity sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ== | 2387 | integrity sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ== |
2156 | 2388 | ||
2157 | "chokidar@>=2.0.0 <4.0.0", chokidar@^3.4.0: | 2389 | "chokidar@>=2.0.0 <4.0.0", chokidar@^3.4.1: |
2158 | version "3.4.0" | 2390 | version "3.4.3" |
2159 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.0.tgz#b30611423ce376357c765b9b8f904b9fba3c0be8" | 2391 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz#c1df38231448e45ca4ac588e6c79573ba6a57d5b" |
2160 | integrity sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ== | 2392 | integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ== |
2161 | dependencies: | 2393 | dependencies: |
2162 | anymatch "~3.1.1" | 2394 | anymatch "~3.1.1" |
2163 | braces "~3.0.2" | 2395 | braces "~3.0.2" |
@@ -2165,7 +2397,7 @@ check-types@^8.0.3: | |||
2165 | is-binary-path "~2.1.0" | 2397 | is-binary-path "~2.1.0" |
2166 | is-glob "~4.0.1" | 2398 | is-glob "~4.0.1" |
2167 | normalize-path "~3.0.0" | 2399 | normalize-path "~3.0.0" |
2168 | readdirp "~3.4.0" | 2400 | readdirp "~3.5.0" |
2169 | optionalDependencies: | 2401 | optionalDependencies: |
2170 | fsevents "~2.1.2" | 2402 | fsevents "~2.1.2" |
2171 | 2403 | ||
@@ -2262,9 +2494,9 @@ cli-highlight@^2.1.4: | |||
2262 | yargs "^15.0.0" | 2494 | yargs "^15.0.0" |
2263 | 2495 | ||
2264 | cli-spinners@^2.0.0: | 2496 | cli-spinners@^2.0.0: |
2265 | version "2.3.0" | 2497 | version "2.5.0" |
2266 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.3.0.tgz#0632239a4b5aa4c958610142c34bb7a651fc8df5" | 2498 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.5.0.tgz#12763e47251bf951cb75c201dfa58ff1bcb2d047" |
2267 | integrity sha512-Xs2Hf2nzrvJMFKimOR7YR0QwZ8fc0u98kdtwN1eNAZzNQgH3vK2pXzff6GJtKh7S5hoJ87ECiAiZFS2fb5Ii2w== | 2499 | integrity sha512-PC+AmIuK04E6aeSs/pUccSujsTzBhu4HzC2dL+CfJB/Jcc2qTRbEwZQDfIUpt2Xl8BodYBEq8w4fc0kU2I9DjQ== |
2268 | 2500 | ||
2269 | cli-width@^3.0.0: | 2501 | cli-width@^3.0.0: |
2270 | version "3.0.0" | 2502 | version "3.0.0" |
@@ -2344,23 +2576,23 @@ color-name@^1.0.0, color-name@~1.1.4: | |||
2344 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" | 2576 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" |
2345 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== | 2577 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== |
2346 | 2578 | ||
2347 | color-string@^1.5.2: | 2579 | color-string@^1.5.4: |
2348 | version "1.5.3" | 2580 | version "1.5.4" |
2349 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" | 2581 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6" |
2350 | integrity sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw== | 2582 | integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw== |
2351 | dependencies: | 2583 | dependencies: |
2352 | color-name "^1.0.0" | 2584 | color-name "^1.0.0" |
2353 | simple-swizzle "^0.2.2" | 2585 | simple-swizzle "^0.2.2" |
2354 | 2586 | ||
2355 | color@^3.0.0: | 2587 | color@^3.0.0: |
2356 | version "3.1.2" | 2588 | version "3.1.3" |
2357 | resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" | 2589 | resolved "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e" |
2358 | integrity sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== | 2590 | integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== |
2359 | dependencies: | 2591 | dependencies: |
2360 | color-convert "^1.9.1" | 2592 | color-convert "^1.9.1" |
2361 | color-string "^1.5.2" | 2593 | color-string "^1.5.4" |
2362 | 2594 | ||
2363 | colorette@^1.2.0: | 2595 | colorette@^1.2.1: |
2364 | version "1.2.1" | 2596 | version "1.2.1" |
2365 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" | 2597 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" |
2366 | integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== | 2598 | integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== |
@@ -2506,9 +2738,9 @@ copy-descriptor@^0.1.0: | |||
2506 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= | 2738 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= |
2507 | 2739 | ||
2508 | copy-webpack-plugin@^5.1.1: | 2740 | copy-webpack-plugin@^5.1.1: |
2509 | version "5.1.1" | 2741 | version "5.1.2" |
2510 | resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-5.1.1.tgz#5481a03dea1123d88a988c6ff8b78247214f0b88" | 2742 | resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-5.1.2.tgz#8a889e1dcafa6c91c6cd4be1ad158f1d3823bae2" |
2511 | integrity sha512-P15M5ZC8dyCjQHWwd4Ia/dm0SgVvZJMYeykVIVYXbGyqO4dWB5oyPHp9i7wjwo5LhtlhKbiBCdS2NvM07Wlybg== | 2743 | integrity sha512-Uh7crJAco3AjBvgAy9Z75CjK8IG+gxaErro71THQ+vv/bl4HaQcpkexAY8KVW/T6D2W2IRr+couF/knIRkZMIQ== |
2512 | dependencies: | 2744 | dependencies: |
2513 | cacache "^12.0.3" | 2745 | cacache "^12.0.3" |
2514 | find-cache-dir "^2.1.0" | 2746 | find-cache-dir "^2.1.0" |
@@ -2520,7 +2752,7 @@ copy-webpack-plugin@^5.1.1: | |||
2520 | normalize-path "^3.0.0" | 2752 | normalize-path "^3.0.0" |
2521 | p-limit "^2.2.1" | 2753 | p-limit "^2.2.1" |
2522 | schema-utils "^1.0.0" | 2754 | schema-utils "^1.0.0" |
2523 | serialize-javascript "^2.1.2" | 2755 | serialize-javascript "^4.0.0" |
2524 | webpack-log "^2.0.0" | 2756 | webpack-log "^2.0.0" |
2525 | 2757 | ||
2526 | core-js-compat@^3.6.2, core-js-compat@^3.6.5: | 2758 | core-js-compat@^3.6.2, core-js-compat@^3.6.5: |
@@ -2557,12 +2789,12 @@ cosmiconfig@^5.0.0: | |||
2557 | parse-json "^4.0.0" | 2789 | parse-json "^4.0.0" |
2558 | 2790 | ||
2559 | create-ecdh@^4.0.0: | 2791 | create-ecdh@^4.0.0: |
2560 | version "4.0.3" | 2792 | version "4.0.4" |
2561 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" | 2793 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" |
2562 | integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== | 2794 | integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== |
2563 | dependencies: | 2795 | dependencies: |
2564 | bn.js "^4.1.0" | 2796 | bn.js "^4.1.0" |
2565 | elliptic "^6.0.0" | 2797 | elliptic "^6.5.3" |
2566 | 2798 | ||
2567 | create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: | 2799 | create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: |
2568 | version "1.2.0" | 2800 | version "1.2.0" |
@@ -2712,9 +2944,9 @@ css-what@2.1: | |||
2712 | integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== | 2944 | integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== |
2713 | 2945 | ||
2714 | css-what@^3.2.1: | 2946 | css-what@^3.2.1: |
2715 | version "3.3.0" | 2947 | version "3.4.2" |
2716 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.3.0.tgz#10fec696a9ece2e591ac772d759aacabac38cd39" | 2948 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4" |
2717 | integrity sha512-pv9JPyatiPaQ6pf4OvD/dbfm0o5LviWmwxNWzblYf/1u9QZd0ihV+PMwy5jdQWQ3349kZmKEx9WXuSka2dM4cg== | 2949 | integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== |
2718 | 2950 | ||
2719 | cssesc@^3.0.0: | 2951 | cssesc@^3.0.0: |
2720 | version "3.0.0" | 2952 | version "3.0.0" |
@@ -2828,11 +3060,11 @@ debug@^3.1.1, debug@^3.2.5: | |||
2828 | ms "^2.1.1" | 3060 | ms "^2.1.1" |
2829 | 3061 | ||
2830 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: | 3062 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: |
2831 | version "4.1.1" | 3063 | version "4.2.0" |
2832 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" | 3064 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1" |
2833 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== | 3065 | integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg== |
2834 | dependencies: | 3066 | dependencies: |
2835 | ms "^2.1.1" | 3067 | ms "2.1.2" |
2836 | 3068 | ||
2837 | decamelize@^1.2.0: | 3069 | decamelize@^1.2.0: |
2838 | version "1.2.0" | 3070 | version "1.2.0" |
@@ -3027,9 +3259,9 @@ domelementtype@1, domelementtype@^1.3.1: | |||
3027 | integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== | 3259 | integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== |
3028 | 3260 | ||
3029 | domelementtype@^2.0.1: | 3261 | domelementtype@^2.0.1: |
3030 | version "2.0.1" | 3262 | version "2.0.2" |
3031 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d" | 3263 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.2.tgz#f3b6e549201e46f588b59463dd77187131fe6971" |
3032 | integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ== | 3264 | integrity sha512-wFwTwCVebUrMgGeAwRL/NhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA== |
3033 | 3265 | ||
3034 | domhandler@^2.3.0: | 3266 | domhandler@^2.3.0: |
3035 | version "2.4.2" | 3267 | version "2.4.2" |
@@ -3055,9 +3287,9 @@ domutils@^1.5.1, domutils@^1.7.0: | |||
3055 | domelementtype "1" | 3287 | domelementtype "1" |
3056 | 3288 | ||
3057 | dot-prop@^5.2.0: | 3289 | dot-prop@^5.2.0: |
3058 | version "5.2.0" | 3290 | version "5.3.0" |
3059 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb" | 3291 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" |
3060 | integrity sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A== | 3292 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== |
3061 | dependencies: | 3293 | dependencies: |
3062 | is-obj "^2.0.0" | 3294 | is-obj "^2.0.0" |
3063 | 3295 | ||
@@ -3072,9 +3304,9 @@ dotenv@^8.2.0: | |||
3072 | integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== | 3304 | integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== |
3073 | 3305 | ||
3074 | duplexer@^0.1.1: | 3306 | duplexer@^0.1.1: |
3075 | version "0.1.1" | 3307 | version "0.1.2" |
3076 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" | 3308 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" |
3077 | integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= | 3309 | integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== |
3078 | 3310 | ||
3079 | duplexify@^3.4.2, duplexify@^3.6.0: | 3311 | duplexify@^3.4.2, duplexify@^3.6.0: |
3080 | version "3.7.1" | 3312 | version "3.7.1" |
@@ -3109,12 +3341,12 @@ ejs@^2.6.1: | |||
3109 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" | 3341 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" |
3110 | integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== | 3342 | integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== |
3111 | 3343 | ||
3112 | electron-to-chromium@^1.3.488: | 3344 | electron-to-chromium@^1.3.571: |
3113 | version "1.3.496" | 3345 | version "1.3.583" |
3114 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.496.tgz#3f43d32930481d82ad3663d79658e7c59a58af0b" | 3346 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.583.tgz#47a9fde74740b1205dba96db2e433132964ba3ee" |
3115 | integrity sha512-TXY4mwoyowwi4Lsrq9vcTUYBThyc1b2hXaTZI13p8/FRhY2CTaq5lK+DVjhYkKiTLsKt569Xes+0J5JsVXFurQ== | 3347 | integrity sha512-L9BwLwJohjZW9mQESI79HRzhicPk1DFgM+8hOCfGgGCFEcA3Otpv7QK6SGtYoZvfQfE3wKLh0Hd5ptqUFv3gvQ== |
3116 | 3348 | ||
3117 | elliptic@^6.0.0, elliptic@^6.5.2: | 3349 | elliptic@^6.5.3: |
3118 | version "6.5.3" | 3350 | version "6.5.3" |
3119 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" | 3351 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" |
3120 | integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== | 3352 | integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== |
@@ -3159,10 +3391,10 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0: | |||
3159 | dependencies: | 3391 | dependencies: |
3160 | once "^1.4.0" | 3392 | once "^1.4.0" |
3161 | 3393 | ||
3162 | enhanced-resolve@^4.1.0: | 3394 | enhanced-resolve@^4.3.0: |
3163 | version "4.2.0" | 3395 | version "4.3.0" |
3164 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.2.0.tgz#5d43bda4a0fd447cb0ebbe71bef8deff8805ad0d" | 3396 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz#3b806f3bfafc1ec7de69551ef93cca46c1704126" |
3165 | integrity sha512-S7eiFb/erugyd1rLb6mQ3Vuq+EXHv5cpCkNqqIkYkBgN2QdFnyCZzFBleqwGEx4lgNGYij81BWnCrFNK7vxvjQ== | 3397 | integrity sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ== |
3166 | dependencies: | 3398 | dependencies: |
3167 | graceful-fs "^4.1.2" | 3399 | graceful-fs "^4.1.2" |
3168 | memory-fs "^0.5.0" | 3400 | memory-fs "^0.5.0" |
@@ -3181,9 +3413,9 @@ entities@^1.1.1: | |||
3181 | integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== | 3413 | integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== |
3182 | 3414 | ||
3183 | entities@^2.0.0: | 3415 | entities@^2.0.0: |
3184 | version "2.0.3" | 3416 | version "2.1.0" |
3185 | resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz#5c487e5742ab93c15abb5da22759b8590ec03b7f" | 3417 | resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" |
3186 | integrity sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ== | 3418 | integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== |
3187 | 3419 | ||
3188 | errno@^0.1.3, errno@~0.1.7: | 3420 | errno@^0.1.3, errno@~0.1.7: |
3189 | version "0.1.7" | 3421 | version "0.1.7" |
@@ -3206,20 +3438,38 @@ error-stack-parser@^2.0.0: | |||
3206 | dependencies: | 3438 | dependencies: |
3207 | stackframe "^1.1.1" | 3439 | stackframe "^1.1.1" |
3208 | 3440 | ||
3209 | es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.5: | 3441 | es-abstract@^1.17.0-next.1, es-abstract@^1.17.2: |
3210 | version "1.17.6" | 3442 | version "1.17.7" |
3211 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a" | 3443 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c" |
3212 | integrity sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw== | 3444 | integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g== |
3213 | dependencies: | 3445 | dependencies: |
3214 | es-to-primitive "^1.2.1" | 3446 | es-to-primitive "^1.2.1" |
3215 | function-bind "^1.1.1" | 3447 | function-bind "^1.1.1" |
3216 | has "^1.0.3" | 3448 | has "^1.0.3" |
3217 | has-symbols "^1.0.1" | 3449 | has-symbols "^1.0.1" |
3218 | is-callable "^1.2.0" | 3450 | is-callable "^1.2.2" |
3219 | is-regex "^1.1.0" | 3451 | is-regex "^1.1.1" |
3220 | object-inspect "^1.7.0" | 3452 | object-inspect "^1.8.0" |
3221 | object-keys "^1.1.1" | 3453 | object-keys "^1.1.1" |
3222 | object.assign "^4.1.0" | 3454 | object.assign "^4.1.1" |
3455 | string.prototype.trimend "^1.0.1" | ||
3456 | string.prototype.trimstart "^1.0.1" | ||
3457 | |||
3458 | es-abstract@^1.18.0-next.0, es-abstract@^1.18.0-next.1: | ||
3459 | version "1.18.0-next.1" | ||
3460 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68" | ||
3461 | integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== | ||
3462 | dependencies: | ||
3463 | es-to-primitive "^1.2.1" | ||
3464 | function-bind "^1.1.1" | ||
3465 | has "^1.0.3" | ||
3466 | has-symbols "^1.0.1" | ||
3467 | is-callable "^1.2.2" | ||
3468 | is-negative-zero "^2.0.0" | ||
3469 | is-regex "^1.1.1" | ||
3470 | object-inspect "^1.8.0" | ||
3471 | object-keys "^1.1.1" | ||
3472 | object.assign "^4.1.1" | ||
3223 | string.prototype.trimend "^1.0.1" | 3473 | string.prototype.trimend "^1.0.1" |
3224 | string.prototype.trimstart "^1.0.1" | 3474 | string.prototype.trimstart "^1.0.1" |
3225 | 3475 | ||
@@ -3232,10 +3482,10 @@ es-to-primitive@^1.2.1: | |||
3232 | is-date-object "^1.0.1" | 3482 | is-date-object "^1.0.1" |
3233 | is-symbol "^1.0.2" | 3483 | is-symbol "^1.0.2" |
3234 | 3484 | ||
3235 | escalade@^3.0.1: | 3485 | escalade@^3.1.0: |
3236 | version "3.0.1" | 3486 | version "3.1.1" |
3237 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.1.tgz#52568a77443f6927cd0ab9c73129137533c965ed" | 3487 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" |
3238 | integrity sha512-DR6NO3h9niOT+MZs7bjxlj2a1k+POu5RN8CLTPX2+i78bRi9eLe7+0zXgUHMnGXWybYcL61E9hGhPKqedy8tQA== | 3488 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== |
3239 | 3489 | ||
3240 | escape-html@~1.0.3: | 3490 | escape-html@~1.0.3: |
3241 | version "1.0.3" | 3491 | version "1.0.3" |
@@ -3248,9 +3498,9 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: | |||
3248 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= | 3498 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= |
3249 | 3499 | ||
3250 | eslint-config-prettier@^6.0.0: | 3500 | eslint-config-prettier@^6.0.0: |
3251 | version "6.11.0" | 3501 | version "6.14.0" |
3252 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.11.0.tgz#f6d2238c1290d01c859a8b5c1f7d352a0b0da8b1" | 3502 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.14.0.tgz#390e7863a8ae99970981933826476169285b3a27" |
3253 | integrity sha512-oB8cpLWSAjOVFEJhhyMZh6NOEOtBVziaqdDQ86+qhDHFbZXoRTM7pNSvFRfW/W/L/LrQ38C99J5CGuRBBzBsdA== | 3503 | integrity sha512-DbVwh0qZhAC7CNDWcq8cBdK6FcVHiMTKmCypOPWeZkp9hJ8xYwTaWSa6bb6cjfi8KOeJy0e9a8Izxyx+O4+gCQ== |
3254 | dependencies: | 3504 | dependencies: |
3255 | get-stdin "^6.0.0" | 3505 | get-stdin "^6.0.0" |
3256 | 3506 | ||
@@ -3272,14 +3522,15 @@ eslint-plugin-prettier@^3.1.4: | |||
3272 | dependencies: | 3522 | dependencies: |
3273 | prettier-linter-helpers "^1.0.0" | 3523 | prettier-linter-helpers "^1.0.0" |
3274 | 3524 | ||
3275 | eslint-plugin-vue@^6.2.2: | 3525 | eslint-plugin-vue@^7.1.0: |
3276 | version "6.2.2" | 3526 | version "7.1.0" |
3277 | resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-6.2.2.tgz#27fecd9a3a24789b0f111ecdd540a9e56198e0fe" | 3527 | resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-7.1.0.tgz#832d83e4e1e480c7285b2bc3ff1076cd0dca7a5b" |
3278 | integrity sha512-Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ== | 3528 | integrity sha512-9dW7kj8/d2IkDdgNpvIhJdJ3XzU3x4PThXYMzWt49taktYnGyrTY6/bXCYZ/VtQKU9kXPntPrZ41+8Pw0Nxblg== |
3279 | dependencies: | 3529 | dependencies: |
3530 | eslint-utils "^2.1.0" | ||
3280 | natural-compare "^1.4.0" | 3531 | natural-compare "^1.4.0" |
3281 | semver "^5.6.0" | 3532 | semver "^7.3.2" |
3282 | vue-eslint-parser "^7.0.0" | 3533 | vue-eslint-parser "^7.1.1" |
3283 | 3534 | ||
3284 | eslint-scope@^4.0.3: | 3535 | eslint-scope@^4.0.3: |
3285 | version "4.0.3" | 3536 | version "4.0.3" |
@@ -3289,42 +3540,48 @@ eslint-scope@^4.0.3: | |||
3289 | esrecurse "^4.1.0" | 3540 | esrecurse "^4.1.0" |
3290 | estraverse "^4.1.1" | 3541 | estraverse "^4.1.1" |
3291 | 3542 | ||
3292 | eslint-scope@^5.0.0, eslint-scope@^5.1.0: | 3543 | eslint-scope@^5.0.0, eslint-scope@^5.1.1: |
3293 | version "5.1.0" | 3544 | version "5.1.1" |
3294 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.0.tgz#d0f971dfe59c69e0cada684b23d49dbf82600ce5" | 3545 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" |
3295 | integrity sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w== | 3546 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== |
3296 | dependencies: | 3547 | dependencies: |
3297 | esrecurse "^4.1.0" | 3548 | esrecurse "^4.3.0" |
3298 | estraverse "^4.1.1" | 3549 | estraverse "^4.1.1" |
3299 | 3550 | ||
3300 | eslint-utils@^2.0.0: | 3551 | eslint-utils@^2.1.0: |
3301 | version "2.1.0" | 3552 | version "2.1.0" |
3302 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" | 3553 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" |
3303 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== | 3554 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== |
3304 | dependencies: | 3555 | dependencies: |
3305 | eslint-visitor-keys "^1.1.0" | 3556 | eslint-visitor-keys "^1.1.0" |
3306 | 3557 | ||
3307 | eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.2.0: | 3558 | eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: |
3308 | version "1.3.0" | 3559 | version "1.3.0" |
3309 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" | 3560 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" |
3310 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== | 3561 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== |
3311 | 3562 | ||
3312 | eslint@^7.4.0: | 3563 | eslint-visitor-keys@^2.0.0: |
3313 | version "7.4.0" | 3564 | version "2.0.0" |
3314 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.4.0.tgz#4e35a2697e6c1972f9d6ef2b690ad319f80f206f" | 3565 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8" |
3315 | integrity sha512-gU+lxhlPHu45H3JkEGgYhWhkR9wLHHEXC9FbWFnTlEkbKyZKWgWRLgf61E8zWmBuI6g5xKBph9ltg3NtZMVF8g== | 3566 | integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== |
3567 | |||
3568 | eslint@^7.11.0: | ||
3569 | version "7.11.0" | ||
3570 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.11.0.tgz#aaf2d23a0b5f1d652a08edacea0c19f7fadc0b3b" | ||
3571 | integrity sha512-G9+qtYVCHaDi1ZuWzBsOWo2wSwd70TXnU6UHA3cTYHp7gCTXZcpggWFoUVAMRarg68qtPoNfFbzPh+VdOgmwmw== | ||
3316 | dependencies: | 3572 | dependencies: |
3317 | "@babel/code-frame" "^7.0.0" | 3573 | "@babel/code-frame" "^7.0.0" |
3574 | "@eslint/eslintrc" "^0.1.3" | ||
3318 | ajv "^6.10.0" | 3575 | ajv "^6.10.0" |
3319 | chalk "^4.0.0" | 3576 | chalk "^4.0.0" |
3320 | cross-spawn "^7.0.2" | 3577 | cross-spawn "^7.0.2" |
3321 | debug "^4.0.1" | 3578 | debug "^4.0.1" |
3322 | doctrine "^3.0.0" | 3579 | doctrine "^3.0.0" |
3323 | enquirer "^2.3.5" | 3580 | enquirer "^2.3.5" |
3324 | eslint-scope "^5.1.0" | 3581 | eslint-scope "^5.1.1" |
3325 | eslint-utils "^2.0.0" | 3582 | eslint-utils "^2.1.0" |
3326 | eslint-visitor-keys "^1.2.0" | 3583 | eslint-visitor-keys "^2.0.0" |
3327 | espree "^7.1.0" | 3584 | espree "^7.3.0" |
3328 | esquery "^1.2.0" | 3585 | esquery "^1.2.0" |
3329 | esutils "^2.0.2" | 3586 | esutils "^2.0.2" |
3330 | file-entry-cache "^5.0.1" | 3587 | file-entry-cache "^5.0.1" |
@@ -3338,7 +3595,7 @@ eslint@^7.4.0: | |||
3338 | js-yaml "^3.13.1" | 3595 | js-yaml "^3.13.1" |
3339 | json-stable-stringify-without-jsonify "^1.0.1" | 3596 | json-stable-stringify-without-jsonify "^1.0.1" |
3340 | levn "^0.4.1" | 3597 | levn "^0.4.1" |
3341 | lodash "^4.17.14" | 3598 | lodash "^4.17.19" |
3342 | minimatch "^3.0.4" | 3599 | minimatch "^3.0.4" |
3343 | natural-compare "^1.4.0" | 3600 | natural-compare "^1.4.0" |
3344 | optionator "^0.9.1" | 3601 | optionator "^0.9.1" |
@@ -3360,14 +3617,14 @@ espree@^6.2.1: | |||
3360 | acorn-jsx "^5.2.0" | 3617 | acorn-jsx "^5.2.0" |
3361 | eslint-visitor-keys "^1.1.0" | 3618 | eslint-visitor-keys "^1.1.0" |
3362 | 3619 | ||
3363 | espree@^7.1.0: | 3620 | espree@^7.3.0: |
3364 | version "7.1.0" | 3621 | version "7.3.0" |
3365 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.1.0.tgz#a9c7f18a752056735bf1ba14cb1b70adc3a5ce1c" | 3622 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.0.tgz#dc30437cf67947cf576121ebd780f15eeac72348" |
3366 | integrity sha512-dcorZSyfmm4WTuTnE5Y7MEN1DyoPYy1ZR783QW1FJoenn7RailyWFsq/UL6ZAAA7uXurN9FIpYyUs3OfiIW+Qw== | 3623 | integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw== |
3367 | dependencies: | 3624 | dependencies: |
3368 | acorn "^7.2.0" | 3625 | acorn "^7.4.0" |
3369 | acorn-jsx "^5.2.0" | 3626 | acorn-jsx "^5.2.0" |
3370 | eslint-visitor-keys "^1.2.0" | 3627 | eslint-visitor-keys "^1.3.0" |
3371 | 3628 | ||
3372 | esprima@^4.0.0: | 3629 | esprima@^4.0.0: |
3373 | version "4.0.1" | 3630 | version "4.0.1" |
@@ -3381,22 +3638,22 @@ esquery@^1.0.1, esquery@^1.2.0: | |||
3381 | dependencies: | 3638 | dependencies: |
3382 | estraverse "^5.1.0" | 3639 | estraverse "^5.1.0" |
3383 | 3640 | ||
3384 | esrecurse@^4.1.0: | 3641 | esrecurse@^4.1.0, esrecurse@^4.3.0: |
3385 | version "4.2.1" | 3642 | version "4.3.0" |
3386 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" | 3643 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" |
3387 | integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== | 3644 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== |
3388 | dependencies: | 3645 | dependencies: |
3389 | estraverse "^4.1.0" | 3646 | estraverse "^5.2.0" |
3390 | 3647 | ||
3391 | estraverse@^4.1.0, estraverse@^4.1.1: | 3648 | estraverse@^4.1.1: |
3392 | version "4.3.0" | 3649 | version "4.3.0" |
3393 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" | 3650 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" |
3394 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== | 3651 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== |
3395 | 3652 | ||
3396 | estraverse@^5.1.0: | 3653 | estraverse@^5.1.0, estraverse@^5.2.0: |
3397 | version "5.1.0" | 3654 | version "5.2.0" |
3398 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642" | 3655 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" |
3399 | integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw== | 3656 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== |
3400 | 3657 | ||
3401 | esutils@^2.0.2: | 3658 | esutils@^2.0.2: |
3402 | version "2.0.3" | 3659 | version "2.0.3" |
@@ -3414,14 +3671,14 @@ event-pubsub@4.3.0: | |||
3414 | integrity sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ== | 3671 | integrity sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ== |
3415 | 3672 | ||
3416 | eventemitter3@^4.0.0: | 3673 | eventemitter3@^4.0.0: |
3417 | version "4.0.4" | 3674 | version "4.0.7" |
3418 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.4.tgz#b5463ace635a083d018bdc7c917b4c5f10a85384" | 3675 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" |
3419 | integrity sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ== | 3676 | integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== |
3420 | 3677 | ||
3421 | events@^3.0.0: | 3678 | events@^3.0.0: |
3422 | version "3.1.0" | 3679 | version "3.2.0" |
3423 | resolved "https://registry.yarnpkg.com/events/-/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59" | 3680 | resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379" |
3424 | integrity sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg== | 3681 | integrity sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg== |
3425 | 3682 | ||
3426 | eventsource@^1.0.7: | 3683 | eventsource@^1.0.7: |
3427 | version "1.0.7" | 3684 | version "1.0.7" |
@@ -3768,9 +4025,9 @@ flush-write-stream@^1.0.0: | |||
3768 | readable-stream "^2.3.6" | 4025 | readable-stream "^2.3.6" |
3769 | 4026 | ||
3770 | follow-redirects@^1.0.0: | 4027 | follow-redirects@^1.0.0: |
3771 | version "1.12.1" | 4028 | version "1.13.0" |
3772 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.12.1.tgz#de54a6205311b93d60398ebc01cf7015682312b6" | 4029 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.0.tgz#b42e8d93a2a7eea5ed88633676d6597bc8e384db" |
3773 | integrity sha512-tmRv0AVuR7ZyouUHLeNSiO6pqulF7dYa3s19c6t+wz9LD69/uSzdMxJ2S91nTI9U3rt/IldxpzMOFejp6f0hjg== | 4030 | integrity sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA== |
3774 | 4031 | ||
3775 | for-in@^1.0.2: | 4032 | for-in@^1.0.2: |
3776 | version "1.0.2" | 4033 | version "1.0.2" |
@@ -3912,9 +4169,9 @@ get-stream@^4.0.0: | |||
3912 | pump "^3.0.0" | 4169 | pump "^3.0.0" |
3913 | 4170 | ||
3914 | get-stream@^5.0.0: | 4171 | get-stream@^5.0.0: |
3915 | version "5.1.0" | 4172 | version "5.2.0" |
3916 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" | 4173 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" |
3917 | integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== | 4174 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== |
3918 | dependencies: | 4175 | dependencies: |
3919 | pump "^3.0.0" | 4176 | pump "^3.0.0" |
3920 | 4177 | ||
@@ -4035,11 +4292,11 @@ har-schema@^2.0.0: | |||
4035 | integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= | 4292 | integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= |
4036 | 4293 | ||
4037 | har-validator@~5.1.3: | 4294 | har-validator@~5.1.3: |
4038 | version "5.1.3" | 4295 | version "5.1.5" |
4039 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" | 4296 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" |
4040 | integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== | 4297 | integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== |
4041 | dependencies: | 4298 | dependencies: |
4042 | ajv "^6.5.5" | 4299 | ajv "^6.12.3" |
4043 | har-schema "^2.0.0" | 4300 | har-schema "^2.0.0" |
4044 | 4301 | ||
4045 | has-ansi@^2.0.0: | 4302 | has-ansi@^2.0.0: |
@@ -4059,7 +4316,7 @@ has-flag@^4.0.0: | |||
4059 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" | 4316 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" |
4060 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== | 4317 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== |
4061 | 4318 | ||
4062 | has-symbols@^1.0.0, has-symbols@^1.0.1: | 4319 | has-symbols@^1.0.1: |
4063 | version "1.0.1" | 4320 | version "1.0.1" |
4064 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" | 4321 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" |
4065 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== | 4322 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== |
@@ -4140,9 +4397,9 @@ hex-color-regex@^1.1.0: | |||
4140 | integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== | 4397 | integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== |
4141 | 4398 | ||
4142 | highlight.js@^9.6.0: | 4399 | highlight.js@^9.6.0: |
4143 | version "9.18.1" | 4400 | version "9.18.3" |
4144 | resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.1.tgz#ed21aa001fe6252bb10a3d76d47573c6539fe13c" | 4401 | resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.3.tgz#a1a0a2028d5e3149e2380f8a865ee8516703d634" |
4145 | integrity sha512-OrVKYz70LHsnCgmbXctv/bfuvntIKDz177h0Co37DQ5jamGZLVmoCVMtjMtNZY3X9DrCcKfklHPNeA0uPZhSJg== | 4402 | integrity sha512-zBZAmhSupHIl5sITeMqIJnYCDfAEc3Gdkqj65wC1lpI468MMQeeQkhcIAvk+RylAkxrCcI9xy9piHiXeQ1BdzQ== |
4146 | 4403 | ||
4147 | hmac-drbg@^1.0.0: | 4404 | hmac-drbg@^1.0.0: |
4148 | version "1.0.1" | 4405 | version "1.0.1" |
@@ -4211,6 +4468,11 @@ html-tags@^2.0.0: | |||
4211 | resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-2.0.0.tgz#10b30a386085f43cede353cc8fa7cb0deeea668b" | 4468 | resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-2.0.0.tgz#10b30a386085f43cede353cc8fa7cb0deeea668b" |
4212 | integrity sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos= | 4469 | integrity sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos= |
4213 | 4470 | ||
4471 | html-tags@^3.1.0: | ||
4472 | version "3.1.0" | ||
4473 | resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140" | ||
4474 | integrity sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg== | ||
4475 | |||
4214 | html-webpack-plugin@^3.2.0: | 4476 | html-webpack-plugin@^3.2.0: |
4215 | version "3.2.0" | 4477 | version "3.2.0" |
4216 | resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz#b01abbd723acaaa7b37b6af4492ebda03d9dd37b" | 4478 | resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz#b01abbd723acaaa7b37b6af4492ebda03d9dd37b" |
@@ -4365,7 +4627,7 @@ import-fresh@^2.0.0: | |||
4365 | caller-path "^2.0.0" | 4627 | caller-path "^2.0.0" |
4366 | resolve-from "^3.0.0" | 4628 | resolve-from "^3.0.0" |
4367 | 4629 | ||
4368 | import-fresh@^3.0.0: | 4630 | import-fresh@^3.0.0, import-fresh@^3.2.1: |
4369 | version "3.2.1" | 4631 | version "3.2.1" |
4370 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" | 4632 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" |
4371 | integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== | 4633 | integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== |
@@ -4432,9 +4694,9 @@ inherits@2.0.3: | |||
4432 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= | 4694 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= |
4433 | 4695 | ||
4434 | inquirer@^7.1.0: | 4696 | inquirer@^7.1.0: |
4435 | version "7.3.1" | 4697 | version "7.3.3" |
4436 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.1.tgz#ac6aba1abdfdd5ad34e7069370411edba17f6439" | 4698 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003" |
4437 | integrity sha512-/+vOpHQHhoh90Znev8BXiuw1TDQ7IDxWsQnFafUEoK5+4uN5Eoz1p+3GqOj/NtzEi9VzWKQcV9Bm+i8moxedsA== | 4699 | integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== |
4438 | dependencies: | 4700 | dependencies: |
4439 | ansi-escapes "^4.2.1" | 4701 | ansi-escapes "^4.2.1" |
4440 | chalk "^4.1.0" | 4702 | chalk "^4.1.0" |
@@ -4442,7 +4704,7 @@ inquirer@^7.1.0: | |||
4442 | cli-width "^3.0.0" | 4704 | cli-width "^3.0.0" |
4443 | external-editor "^3.0.3" | 4705 | external-editor "^3.0.3" |
4444 | figures "^3.0.0" | 4706 | figures "^3.0.0" |
4445 | lodash "^4.17.16" | 4707 | lodash "^4.17.19" |
4446 | mute-stream "0.0.8" | 4708 | mute-stream "0.0.8" |
4447 | run-async "^2.4.0" | 4709 | run-async "^2.4.0" |
4448 | rxjs "^6.6.0" | 4710 | rxjs "^6.6.0" |
@@ -4458,13 +4720,6 @@ internal-ip@^4.3.0: | |||
4458 | default-gateway "^4.2.0" | 4720 | default-gateway "^4.2.0" |
4459 | ipaddr.js "^1.9.0" | 4721 | ipaddr.js "^1.9.0" |
4460 | 4722 | ||
4461 | invariant@^2.2.2, invariant@^2.2.4: | ||
4462 | version "2.2.4" | ||
4463 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" | ||
4464 | integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== | ||
4465 | dependencies: | ||
4466 | loose-envify "^1.0.0" | ||
4467 | |||
4468 | ip-regex@^2.1.0: | 4723 | ip-regex@^2.1.0: |
4469 | version "2.1.0" | 4724 | version "2.1.0" |
4470 | resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" | 4725 | resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" |
@@ -4538,10 +4793,10 @@ is-buffer@^1.1.5: | |||
4538 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" | 4793 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" |
4539 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== | 4794 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== |
4540 | 4795 | ||
4541 | is-callable@^1.1.4, is-callable@^1.2.0: | 4796 | is-callable@^1.1.4, is-callable@^1.2.2: |
4542 | version "1.2.0" | 4797 | version "1.2.2" |
4543 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb" | 4798 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9" |
4544 | integrity sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw== | 4799 | integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA== |
4545 | 4800 | ||
4546 | is-ci@^1.0.10: | 4801 | is-ci@^1.0.10: |
4547 | version "1.2.1" | 4802 | version "1.2.1" |
@@ -4562,6 +4817,13 @@ is-color-stop@^1.0.0: | |||
4562 | rgb-regex "^1.0.1" | 4817 | rgb-regex "^1.0.1" |
4563 | rgba-regex "^1.0.0" | 4818 | rgba-regex "^1.0.0" |
4564 | 4819 | ||
4820 | is-core-module@^2.0.0: | ||
4821 | version "2.0.0" | ||
4822 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.0.0.tgz#58531b70aed1db7c0e8d4eb1a0a2d1ddd64bd12d" | ||
4823 | integrity sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw== | ||
4824 | dependencies: | ||
4825 | has "^1.0.3" | ||
4826 | |||
4565 | is-data-descriptor@^0.1.4: | 4827 | is-data-descriptor@^0.1.4: |
4566 | version "0.1.4" | 4828 | version "0.1.4" |
4567 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" | 4829 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" |
@@ -4605,9 +4867,9 @@ is-directory@^0.3.1: | |||
4605 | integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= | 4867 | integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= |
4606 | 4868 | ||
4607 | is-docker@^2.0.0: | 4869 | is-docker@^2.0.0: |
4608 | version "2.0.0" | 4870 | version "2.1.1" |
4609 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.0.0.tgz#2cb0df0e75e2d064fe1864c37cdeacb7b2dcf25b" | 4871 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156" |
4610 | integrity sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ== | 4872 | integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw== |
4611 | 4873 | ||
4612 | is-extendable@^0.1.0, is-extendable@^0.1.1: | 4874 | is-extendable@^0.1.0, is-extendable@^0.1.1: |
4613 | version "0.1.1" | 4875 | version "0.1.1" |
@@ -4650,6 +4912,11 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: | |||
4650 | dependencies: | 4912 | dependencies: |
4651 | is-extglob "^2.1.1" | 4913 | is-extglob "^2.1.1" |
4652 | 4914 | ||
4915 | is-negative-zero@^2.0.0: | ||
4916 | version "2.0.0" | ||
4917 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.0.tgz#9553b121b0fac28869da9ed459e20c7543788461" | ||
4918 | integrity sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE= | ||
4919 | |||
4653 | is-number@^3.0.0: | 4920 | is-number@^3.0.0: |
4654 | version "3.0.0" | 4921 | version "3.0.0" |
4655 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" | 4922 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" |
@@ -4703,10 +4970,10 @@ is-plain-object@^2.0.3, is-plain-object@^2.0.4: | |||
4703 | dependencies: | 4970 | dependencies: |
4704 | isobject "^3.0.1" | 4971 | isobject "^3.0.1" |
4705 | 4972 | ||
4706 | is-regex@^1.0.4, is-regex@^1.1.0: | 4973 | is-regex@^1.0.4, is-regex@^1.1.1: |
4707 | version "1.1.0" | 4974 | version "1.1.1" |
4708 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff" | 4975 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" |
4709 | integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw== | 4976 | integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== |
4710 | dependencies: | 4977 | dependencies: |
4711 | has-symbols "^1.0.1" | 4978 | has-symbols "^1.0.1" |
4712 | 4979 | ||
@@ -4818,7 +5085,7 @@ js-queue@2.0.0: | |||
4818 | dependencies: | 5085 | dependencies: |
4819 | easy-stack "^1.0.0" | 5086 | easy-stack "^1.0.0" |
4820 | 5087 | ||
4821 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: | 5088 | js-tokens@^4.0.0: |
4822 | version "4.0.0" | 5089 | version "4.0.0" |
4823 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" | 5090 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" |
4824 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== | 5091 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== |
@@ -4851,6 +5118,11 @@ json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: | |||
4851 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" | 5118 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" |
4852 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== | 5119 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== |
4853 | 5120 | ||
5121 | json-parse-even-better-errors@^2.3.0: | ||
5122 | version "2.3.1" | ||
5123 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" | ||
5124 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== | ||
5125 | |||
4854 | json-schema-traverse@^0.4.1: | 5126 | json-schema-traverse@^0.4.1: |
4855 | version "0.4.1" | 5127 | version "0.4.1" |
4856 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" | 5128 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" |
@@ -4953,10 +5225,10 @@ kind-of@^6.0.0, kind-of@^6.0.2: | |||
4953 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" | 5225 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" |
4954 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== | 5226 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== |
4955 | 5227 | ||
4956 | klona@^1.1.1: | 5228 | klona@^2.0.4: |
4957 | version "1.1.2" | 5229 | version "2.0.4" |
4958 | resolved "https://registry.yarnpkg.com/klona/-/klona-1.1.2.tgz#a79e292518a5a5412ec8d097964bff1571a64db0" | 5230 | resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.4.tgz#7bb1e3affb0cb8624547ef7e8f6708ea2e39dfc0" |
4959 | integrity sha512-xf88rTeHiXk+XE2Vhi6yj8Wm3gMZrygGdKjJqN8HkV+PwF/t50/LdAKHoHpPcxFAlmQszTZ1CugrK25S7qDRLA== | 5231 | integrity sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA== |
4960 | 5232 | ||
4961 | launch-editor-middleware@^2.2.1: | 5233 | launch-editor-middleware@^2.2.1: |
4962 | version "2.2.1" | 5234 | version "2.2.1" |
@@ -4973,18 +5245,6 @@ launch-editor@^2.2.1: | |||
4973 | chalk "^2.3.0" | 5245 | chalk "^2.3.0" |
4974 | shell-quote "^1.6.1" | 5246 | shell-quote "^1.6.1" |
4975 | 5247 | ||
4976 | leven@^3.1.0: | ||
4977 | version "3.1.0" | ||
4978 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" | ||
4979 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== | ||
4980 | |||
4981 | levenary@^1.1.1: | ||
4982 | version "1.1.1" | ||
4983 | resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77" | ||
4984 | integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ== | ||
4985 | dependencies: | ||
4986 | leven "^3.1.0" | ||
4987 | |||
4988 | levn@^0.4.1: | 5248 | levn@^0.4.1: |
4989 | version "0.4.1" | 5249 | version "0.4.1" |
4990 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" | 5250 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" |
@@ -5109,10 +5369,10 @@ lodash.uniq@^4.5.0: | |||
5109 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" | 5369 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" |
5110 | integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= | 5370 | integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= |
5111 | 5371 | ||
5112 | lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.16, lodash@^4.17.3: | 5372 | lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.3: |
5113 | version "4.17.19" | 5373 | version "4.17.20" |
5114 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" | 5374 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" |
5115 | integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== | 5375 | integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== |
5116 | 5376 | ||
5117 | log-symbols@^2.2.0: | 5377 | log-symbols@^2.2.0: |
5118 | version "2.2.0" | 5378 | version "2.2.0" |
@@ -5122,16 +5382,9 @@ log-symbols@^2.2.0: | |||
5122 | chalk "^2.0.1" | 5382 | chalk "^2.0.1" |
5123 | 5383 | ||
5124 | loglevel@^1.6.8: | 5384 | loglevel@^1.6.8: |
5125 | version "1.6.8" | 5385 | version "1.7.0" |
5126 | resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.8.tgz#8a25fb75d092230ecd4457270d80b54e28011171" | 5386 | resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.0.tgz#728166855a740d59d38db01cf46f042caa041bb0" |
5127 | integrity sha512-bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA== | 5387 | integrity sha512-i2sY04nal5jDcagM3FMfG++T69GEEM8CYuOfeOIvmXzOIcwE9a/CJPR0MFM97pYMj/u10lzz7/zd7+qwhrBTqQ== |
5128 | |||
5129 | loose-envify@^1.0.0: | ||
5130 | version "1.4.0" | ||
5131 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" | ||
5132 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== | ||
5133 | dependencies: | ||
5134 | js-tokens "^3.0.0 || ^4.0.0" | ||
5135 | 5388 | ||
5136 | lower-case@^1.1.1: | 5389 | lower-case@^1.1.1: |
5137 | version "1.1.4" | 5390 | version "1.1.4" |
@@ -5274,11 +5527,16 @@ miller-rabin@^4.0.0: | |||
5274 | bn.js "^4.0.0" | 5527 | bn.js "^4.0.0" |
5275 | brorand "^1.0.1" | 5528 | brorand "^1.0.1" |
5276 | 5529 | ||
5277 | mime-db@1.44.0, "mime-db@>= 1.43.0 < 2": | 5530 | mime-db@1.44.0: |
5278 | version "1.44.0" | 5531 | version "1.44.0" |
5279 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" | 5532 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" |
5280 | integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== | 5533 | integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== |
5281 | 5534 | ||
5535 | "mime-db@>= 1.43.0 < 2": | ||
5536 | version "1.45.0" | ||
5537 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea" | ||
5538 | integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w== | ||
5539 | |||
5282 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: | 5540 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: |
5283 | version "2.1.27" | 5541 | version "2.1.27" |
5284 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" | 5542 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" |
@@ -5353,9 +5611,9 @@ minipass-flush@^1.0.5: | |||
5353 | minipass "^3.0.0" | 5611 | minipass "^3.0.0" |
5354 | 5612 | ||
5355 | minipass-pipeline@^1.2.2: | 5613 | minipass-pipeline@^1.2.2: |
5356 | version "1.2.3" | 5614 | version "1.2.4" |
5357 | resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.3.tgz#55f7839307d74859d6e8ada9c3ebe72cec216a34" | 5615 | resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" |
5358 | integrity sha512-cFOknTvng5vqnwOpDsZTWhNll6Jf8o2x+/diplafmxpuIymAjzoOolZG0VvQf3V2HgqzJNhnuKHYp2BqDgz8IQ== | 5616 | integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== |
5359 | dependencies: | 5617 | dependencies: |
5360 | minipass "^3.0.0" | 5618 | minipass "^3.0.0" |
5361 | 5619 | ||
@@ -5390,7 +5648,7 @@ mixin-deep@^1.2.0: | |||
5390 | for-in "^1.0.2" | 5648 | for-in "^1.0.2" |
5391 | is-extendable "^1.0.1" | 5649 | is-extendable "^1.0.1" |
5392 | 5650 | ||
5393 | mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: | 5651 | mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.5, mkdirp@~0.5.1: |
5394 | version "0.5.5" | 5652 | version "0.5.5" |
5395 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" | 5653 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" |
5396 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== | 5654 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== |
@@ -5419,7 +5677,7 @@ ms@2.1.1: | |||
5419 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" | 5677 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" |
5420 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== | 5678 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== |
5421 | 5679 | ||
5422 | ms@^2.1.1: | 5680 | ms@2.1.2, ms@^2.1.1: |
5423 | version "2.1.2" | 5681 | version "2.1.2" |
5424 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" | 5682 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" |
5425 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== | 5683 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== |
@@ -5452,9 +5710,9 @@ mz@^2.4.0: | |||
5452 | thenify-all "^1.0.0" | 5710 | thenify-all "^1.0.0" |
5453 | 5711 | ||
5454 | nan@^2.12.1: | 5712 | nan@^2.12.1: |
5455 | version "2.14.1" | 5713 | version "2.14.2" |
5456 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" | 5714 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19" |
5457 | integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== | 5715 | integrity sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ== |
5458 | 5716 | ||
5459 | nanomatch@^1.2.9: | 5717 | nanomatch@^1.2.9: |
5460 | version "1.2.13" | 5718 | version "1.2.13" |
@@ -5483,7 +5741,7 @@ negotiator@0.6.2: | |||
5483 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" | 5741 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" |
5484 | integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== | 5742 | integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== |
5485 | 5743 | ||
5486 | neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: | 5744 | neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1, neo-async@^2.6.2: |
5487 | version "2.6.2" | 5745 | version "2.6.2" |
5488 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" | 5746 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" |
5489 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== | 5747 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== |
@@ -5500,10 +5758,10 @@ no-case@^2.2.0: | |||
5500 | dependencies: | 5758 | dependencies: |
5501 | lower-case "^1.1.1" | 5759 | lower-case "^1.1.1" |
5502 | 5760 | ||
5503 | node-forge@0.9.0: | 5761 | node-forge@^0.10.0: |
5504 | version "0.9.0" | 5762 | version "0.10.0" |
5505 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.9.0.tgz#d624050edbb44874adca12bb9a52ec63cb782579" | 5763 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3" |
5506 | integrity sha512-7ASaDa3pD+lJ3WvXFsxekJQelBKRpne+GOVbLbtHYdd7pFspyeuJHnWfLplGf3SwKGbfs/aYl5V/JCIaHVUKKQ== | 5764 | integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA== |
5507 | 5765 | ||
5508 | node-ipc@^9.1.1: | 5766 | node-ipc@^9.1.1: |
5509 | version "9.1.1" | 5767 | version "9.1.1" |
@@ -5543,10 +5801,10 @@ node-libs-browser@^2.2.1: | |||
5543 | util "^0.11.0" | 5801 | util "^0.11.0" |
5544 | vm-browserify "^1.0.1" | 5802 | vm-browserify "^1.0.1" |
5545 | 5803 | ||
5546 | node-releases@^1.1.58: | 5804 | node-releases@^1.1.61: |
5547 | version "1.1.59" | 5805 | version "1.1.64" |
5548 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.59.tgz#4d648330641cec704bff10f8e4fe28e453ab8e8e" | 5806 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.64.tgz#71b4ae988e9b1dd7c1ffce58dd9e561752dfebc5" |
5549 | integrity sha512-H3JrdUczbdiwxN5FuJPyCHnGHIFqQ0wWxo+9j1kAXAzqNMAHlo+4I/sYYxpyK0irQ73HgdiyzD32oqQDcU2Osw== | 5807 | integrity sha512-Iec8O9166/x2HRMJyLLLWkd0sFFLrFNy+Xf+JQfSQsdBJzPcHpNl3JQ9gD4j+aJxmCa25jNsIbM4bmACtSbkSg== |
5550 | 5808 | ||
5551 | normalize-package-data@^2.5.0: | 5809 | normalize-package-data@^2.5.0: |
5552 | version "2.5.0" | 5810 | version "2.5.0" |
@@ -5645,20 +5903,20 @@ object-hash@^1.1.4: | |||
5645 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.3.1.tgz#fde452098a951cb145f039bb7d455449ddc126df" | 5903 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.3.1.tgz#fde452098a951cb145f039bb7d455449ddc126df" |
5646 | integrity sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA== | 5904 | integrity sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA== |
5647 | 5905 | ||
5648 | object-inspect@^1.7.0: | 5906 | object-inspect@^1.8.0: |
5649 | version "1.8.0" | 5907 | version "1.8.0" |
5650 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" | 5908 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" |
5651 | integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== | 5909 | integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== |
5652 | 5910 | ||
5653 | object-is@^1.0.1: | 5911 | object-is@^1.0.1: |
5654 | version "1.1.2" | 5912 | version "1.1.3" |
5655 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.2.tgz#c5d2e87ff9e119f78b7a088441519e2eec1573b6" | 5913 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.3.tgz#2e3b9e65560137455ee3bd62aec4d90a2ea1cc81" |
5656 | integrity sha512-5lHCz+0uufF6wZ7CRFWJN3hp8Jqblpgve06U5CMQ3f//6iDjPr2PEo9MWCjEssDsa+UZEL4PkFpr+BMop6aKzQ== | 5914 | integrity sha512-teyqLvFWzLkq5B9ki8FVWA902UER2qkxmdA4nLf+wjOLAWgxzCWZNCxpDq9MvE8MmhWNr+I8w3BN49Vx36Y6Xg== |
5657 | dependencies: | 5915 | dependencies: |
5658 | define-properties "^1.1.3" | 5916 | define-properties "^1.1.3" |
5659 | es-abstract "^1.17.5" | 5917 | es-abstract "^1.18.0-next.1" |
5660 | 5918 | ||
5661 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: | 5919 | object-keys@^1.0.12, object-keys@^1.1.1: |
5662 | version "1.1.1" | 5920 | version "1.1.1" |
5663 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" | 5921 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" |
5664 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== | 5922 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== |
@@ -5670,15 +5928,15 @@ object-visit@^1.0.0: | |||
5670 | dependencies: | 5928 | dependencies: |
5671 | isobject "^3.0.0" | 5929 | isobject "^3.0.0" |
5672 | 5930 | ||
5673 | object.assign@^4.1.0: | 5931 | object.assign@^4.1.0, object.assign@^4.1.1: |
5674 | version "4.1.0" | 5932 | version "4.1.1" |
5675 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" | 5933 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.1.tgz#303867a666cdd41936ecdedfb1f8f3e32a478cdd" |
5676 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== | 5934 | integrity sha512-VT/cxmx5yaoHSOTSyrCygIDFco+RsibY2NM0a4RdEeY/4KgqezwFtK1yr3U67xYhqJSlASm2pKhLVzPj2lr4bA== |
5677 | dependencies: | 5935 | dependencies: |
5678 | define-properties "^1.1.2" | 5936 | define-properties "^1.1.3" |
5679 | function-bind "^1.1.1" | 5937 | es-abstract "^1.18.0-next.0" |
5680 | has-symbols "^1.0.0" | 5938 | has-symbols "^1.0.1" |
5681 | object-keys "^1.0.11" | 5939 | object-keys "^1.1.1" |
5682 | 5940 | ||
5683 | object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0: | 5941 | object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0: |
5684 | version "2.1.0" | 5942 | version "2.1.0" |
@@ -5737,9 +5995,9 @@ onetime@^2.0.0: | |||
5737 | mimic-fn "^1.0.0" | 5995 | mimic-fn "^1.0.0" |
5738 | 5996 | ||
5739 | onetime@^5.1.0: | 5997 | onetime@^5.1.0: |
5740 | version "5.1.0" | 5998 | version "5.1.2" |
5741 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" | 5999 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" |
5742 | integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== | 6000 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== |
5743 | dependencies: | 6001 | dependencies: |
5744 | mimic-fn "^2.1.0" | 6002 | mimic-fn "^2.1.0" |
5745 | 6003 | ||
@@ -5751,9 +6009,9 @@ open@^6.3.0: | |||
5751 | is-wsl "^1.1.0" | 6009 | is-wsl "^1.1.0" |
5752 | 6010 | ||
5753 | opener@^1.5.1: | 6011 | opener@^1.5.1: |
5754 | version "1.5.1" | 6012 | version "1.5.2" |
5755 | resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.1.tgz#6d2f0e77f1a0af0032aca716c2c1fbb8e7e8abed" | 6013 | resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" |
5756 | integrity sha512-goYSy5c2UXE4Ra1xixabeVh1guIX/ZV/YokJksb6q2lubWu6UbvPQ20p542/sFIll1nl8JnCyK9oBaOcCWXwvA== | 6014 | integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== |
5757 | 6015 | ||
5758 | opn@^5.5.0: | 6016 | opn@^5.5.0: |
5759 | version "5.5.0" | 6017 | version "5.5.0" |
@@ -5887,13 +6145,12 @@ parent-module@^1.0.0: | |||
5887 | callsites "^3.0.0" | 6145 | callsites "^3.0.0" |
5888 | 6146 | ||
5889 | parse-asn1@^5.0.0, parse-asn1@^5.1.5: | 6147 | parse-asn1@^5.0.0, parse-asn1@^5.1.5: |
5890 | version "5.1.5" | 6148 | version "5.1.6" |
5891 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e" | 6149 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" |
5892 | integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ== | 6150 | integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== |
5893 | dependencies: | 6151 | dependencies: |
5894 | asn1.js "^4.0.0" | 6152 | asn1.js "^5.2.0" |
5895 | browserify-aes "^1.0.0" | 6153 | browserify-aes "^1.0.0" |
5896 | create-hash "^1.1.0" | ||
5897 | evp_bytestokey "^1.0.0" | 6154 | evp_bytestokey "^1.0.0" |
5898 | pbkdf2 "^3.0.3" | 6155 | pbkdf2 "^3.0.3" |
5899 | safe-buffer "^5.1.1" | 6156 | safe-buffer "^5.1.1" |
@@ -5907,13 +6164,13 @@ parse-json@^4.0.0: | |||
5907 | json-parse-better-errors "^1.0.1" | 6164 | json-parse-better-errors "^1.0.1" |
5908 | 6165 | ||
5909 | parse-json@^5.0.0: | 6166 | parse-json@^5.0.0: |
5910 | version "5.0.0" | 6167 | version "5.1.0" |
5911 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f" | 6168 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" |
5912 | integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw== | 6169 | integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== |
5913 | dependencies: | 6170 | dependencies: |
5914 | "@babel/code-frame" "^7.0.0" | 6171 | "@babel/code-frame" "^7.0.0" |
5915 | error-ex "^1.3.1" | 6172 | error-ex "^1.3.1" |
5916 | json-parse-better-errors "^1.0.1" | 6173 | json-parse-even-better-errors "^2.3.0" |
5917 | lines-and-columns "^1.1.6" | 6174 | lines-and-columns "^1.1.6" |
5918 | 6175 | ||
5919 | parse5-htmlparser2-tree-adapter@^5.1.1: | 6176 | parse5-htmlparser2-tree-adapter@^5.1.1: |
@@ -6079,13 +6336,13 @@ pnp-webpack-plugin@^1.6.4: | |||
6079 | ts-pnp "^1.1.6" | 6336 | ts-pnp "^1.1.6" |
6080 | 6337 | ||
6081 | portfinder@^1.0.26: | 6338 | portfinder@^1.0.26: |
6082 | version "1.0.26" | 6339 | version "1.0.28" |
6083 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.26.tgz#475658d56ca30bed72ac7f1378ed350bd1b64e70" | 6340 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778" |
6084 | integrity sha512-Xi7mKxJHHMI3rIUrnm/jjUgwhbYMkp/XKEcZX3aG4BrumLpq3nmoQMX+ClYnDZnZ/New7IatC1no5RX0zo1vXQ== | 6341 | integrity sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA== |
6085 | dependencies: | 6342 | dependencies: |
6086 | async "^2.6.2" | 6343 | async "^2.6.2" |
6087 | debug "^3.1.1" | 6344 | debug "^3.1.1" |
6088 | mkdirp "^0.5.1" | 6345 | mkdirp "^0.5.5" |
6089 | 6346 | ||
6090 | posix-character-classes@^0.1.0: | 6347 | posix-character-classes@^0.1.0: |
6091 | version "0.1.1" | 6348 | version "0.1.1" |
@@ -6093,9 +6350,9 @@ posix-character-classes@^0.1.0: | |||
6093 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= | 6350 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= |
6094 | 6351 | ||
6095 | postcss-calc@^7.0.1: | 6352 | postcss-calc@^7.0.1: |
6096 | version "7.0.2" | 6353 | version "7.0.5" |
6097 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.2.tgz#504efcd008ca0273120568b0792b16cdcde8aac1" | 6354 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.5.tgz#f8a6e99f12e619c2ebc23cf6c486fdc15860933e" |
6098 | integrity sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ== | 6355 | integrity sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg== |
6099 | dependencies: | 6356 | dependencies: |
6100 | postcss "^7.0.27" | 6357 | postcss "^7.0.27" |
6101 | postcss-selector-parser "^6.0.2" | 6358 | postcss-selector-parser "^6.0.2" |
@@ -6149,9 +6406,9 @@ postcss-discard-overridden@^4.0.1: | |||
6149 | postcss "^7.0.0" | 6406 | postcss "^7.0.0" |
6150 | 6407 | ||
6151 | postcss-load-config@^2.0.0: | 6408 | postcss-load-config@^2.0.0: |
6152 | version "2.1.0" | 6409 | version "2.1.2" |
6153 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.0.tgz#c84d692b7bb7b41ddced94ee62e8ab31b417b003" | 6410 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.2.tgz#c5ea504f2c4aef33c7359a34de3573772ad7502a" |
6154 | integrity sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q== | 6411 | integrity sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw== |
6155 | dependencies: | 6412 | dependencies: |
6156 | cosmiconfig "^5.0.0" | 6413 | cosmiconfig "^5.0.0" |
6157 | import-cwd "^2.0.0" | 6414 | import-cwd "^2.0.0" |
@@ -6236,14 +6493,14 @@ postcss-modules-extract-imports@^2.0.0: | |||
6236 | postcss "^7.0.5" | 6493 | postcss "^7.0.5" |
6237 | 6494 | ||
6238 | postcss-modules-local-by-default@^3.0.2: | 6495 | postcss-modules-local-by-default@^3.0.2: |
6239 | version "3.0.2" | 6496 | version "3.0.3" |
6240 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz#e8a6561be914aaf3c052876377524ca90dbb7915" | 6497 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0" |
6241 | integrity sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ== | 6498 | integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw== |
6242 | dependencies: | 6499 | dependencies: |
6243 | icss-utils "^4.1.1" | 6500 | icss-utils "^4.1.1" |
6244 | postcss "^7.0.16" | 6501 | postcss "^7.0.32" |
6245 | postcss-selector-parser "^6.0.2" | 6502 | postcss-selector-parser "^6.0.2" |
6246 | postcss-value-parser "^4.0.0" | 6503 | postcss-value-parser "^4.1.0" |
6247 | 6504 | ||
6248 | postcss-modules-scope@^2.2.0: | 6505 | postcss-modules-scope@^2.2.0: |
6249 | version "2.2.0" | 6506 | version "2.2.0" |
@@ -6381,13 +6638,14 @@ postcss-selector-parser@^3.0.0: | |||
6381 | uniq "^1.0.1" | 6638 | uniq "^1.0.1" |
6382 | 6639 | ||
6383 | postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: | 6640 | postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: |
6384 | version "6.0.2" | 6641 | version "6.0.4" |
6385 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" | 6642 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3" |
6386 | integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== | 6643 | integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw== |
6387 | dependencies: | 6644 | dependencies: |
6388 | cssesc "^3.0.0" | 6645 | cssesc "^3.0.0" |
6389 | indexes-of "^1.0.1" | 6646 | indexes-of "^1.0.1" |
6390 | uniq "^1.0.1" | 6647 | uniq "^1.0.1" |
6648 | util-deprecate "^1.0.2" | ||
6391 | 6649 | ||
6392 | postcss-svgo@^4.0.2: | 6650 | postcss-svgo@^4.0.2: |
6393 | version "4.0.2" | 6651 | version "4.0.2" |
@@ -6413,15 +6671,15 @@ postcss-value-parser@^3.0.0: | |||
6413 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" | 6671 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" |
6414 | integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== | 6672 | integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== |
6415 | 6673 | ||
6416 | postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0: | 6674 | postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0: |
6417 | version "4.1.0" | 6675 | version "4.1.0" |
6418 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" | 6676 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" |
6419 | integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== | 6677 | integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== |
6420 | 6678 | ||
6421 | postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6: | 6679 | postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6: |
6422 | version "7.0.32" | 6680 | version "7.0.35" |
6423 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.32.tgz#4310d6ee347053da3433db2be492883d62cec59d" | 6681 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24" |
6424 | integrity sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw== | 6682 | integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== |
6425 | dependencies: | 6683 | dependencies: |
6426 | chalk "^2.4.2" | 6684 | chalk "^2.4.2" |
6427 | source-map "^0.6.1" | 6685 | source-map "^0.6.1" |
@@ -6449,23 +6707,23 @@ prettier@^1.18.2: | |||
6449 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" | 6707 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" |
6450 | integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== | 6708 | integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== |
6451 | 6709 | ||
6452 | prettier@^2.0.5: | 6710 | prettier@^2.1.2: |
6453 | version "2.0.5" | 6711 | version "2.1.2" |
6454 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4" | 6712 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.1.2.tgz#3050700dae2e4c8b67c4c3f666cdb8af405e1ce5" |
6455 | integrity sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg== | 6713 | integrity sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg== |
6456 | 6714 | ||
6457 | pretty-bytes@^5.1.0: | 6715 | pretty-bytes@^5.1.0: |
6458 | version "5.3.0" | 6716 | version "5.4.1" |
6459 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.3.0.tgz#f2849e27db79fb4d6cfe24764fc4134f165989f2" | 6717 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.4.1.tgz#cd89f79bbcef21e3d21eb0da68ffe93f803e884b" |
6460 | integrity sha512-hjGrh+P926p4R4WbaB6OckyRtO0F0/lQBiT+0gnxjV+5kjPBrfVBFCsCLbMqVQeydvIoouYTCmmEURiH3R1Bdg== | 6718 | integrity sha512-s1Iam6Gwz3JI5Hweaz4GoCD1WUNUIyzePFy5+Js2hjwGVt2Z79wNN+ZKOZ2vB6C+Xs6njyB84Z1IthQg8d9LxA== |
6461 | 6719 | ||
6462 | pretty-error@^2.0.2: | 6720 | pretty-error@^2.0.2: |
6463 | version "2.1.1" | 6721 | version "2.1.2" |
6464 | resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3" | 6722 | resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.2.tgz#be89f82d81b1c86ec8fdfbc385045882727f93b6" |
6465 | integrity sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM= | 6723 | integrity sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw== |
6466 | dependencies: | 6724 | dependencies: |
6467 | renderkid "^2.0.1" | 6725 | lodash "^4.17.20" |
6468 | utila "~0.4" | 6726 | renderkid "^2.0.4" |
6469 | 6727 | ||
6470 | process-nextick-args@~2.0.0: | 6728 | process-nextick-args@~2.0.0: |
6471 | version "2.0.1" | 6729 | version "2.0.1" |
@@ -6596,9 +6854,9 @@ querystring@0.2.0: | |||
6596 | integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= | 6854 | integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= |
6597 | 6855 | ||
6598 | querystringify@^2.1.1: | 6856 | querystringify@^2.1.1: |
6599 | version "2.1.1" | 6857 | version "2.2.0" |
6600 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" | 6858 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" |
6601 | integrity sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA== | 6859 | integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== |
6602 | 6860 | ||
6603 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: | 6861 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: |
6604 | version "2.1.0" | 6862 | version "2.1.0" |
@@ -6630,13 +6888,13 @@ raw-body@2.4.0: | |||
6630 | iconv-lite "0.4.24" | 6888 | iconv-lite "0.4.24" |
6631 | unpipe "1.0.0" | 6889 | unpipe "1.0.0" |
6632 | 6890 | ||
6633 | raw-loader@^4.0.1: | 6891 | raw-loader@^4.0.2: |
6634 | version "4.0.1" | 6892 | version "4.0.2" |
6635 | resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-4.0.1.tgz#14e1f726a359b68437e183d5a5b7d33a3eba6933" | 6893 | resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-4.0.2.tgz#1aac6b7d1ad1501e66efdac1522c73e59a584eb6" |
6636 | integrity sha512-baolhQBSi3iNh1cglJjA0mYzga+wePk7vdEX//1dTFd+v4TsQlQE0jitJSNF1OIP82rdYulH7otaVmdlDaJ64A== | 6894 | integrity sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA== |
6637 | dependencies: | 6895 | dependencies: |
6638 | loader-utils "^2.0.0" | 6896 | loader-utils "^2.0.0" |
6639 | schema-utils "^2.6.5" | 6897 | schema-utils "^3.0.0" |
6640 | 6898 | ||
6641 | read-pkg@^5.1.1: | 6899 | read-pkg@^5.1.1: |
6642 | version "5.2.0" | 6900 | version "5.2.0" |
@@ -6679,10 +6937,10 @@ readdirp@^2.2.1: | |||
6679 | micromatch "^3.1.10" | 6937 | micromatch "^3.1.10" |
6680 | readable-stream "^2.0.2" | 6938 | readable-stream "^2.0.2" |
6681 | 6939 | ||
6682 | readdirp@~3.4.0: | 6940 | readdirp@~3.5.0: |
6683 | version "3.4.0" | 6941 | version "3.5.0" |
6684 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada" | 6942 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" |
6685 | integrity sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ== | 6943 | integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== |
6686 | dependencies: | 6944 | dependencies: |
6687 | picomatch "^2.2.1" | 6945 | picomatch "^2.2.1" |
6688 | 6946 | ||
@@ -6704,9 +6962,9 @@ regenerator-runtime@^0.11.0: | |||
6704 | integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== | 6962 | integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== |
6705 | 6963 | ||
6706 | regenerator-runtime@^0.13.4: | 6964 | regenerator-runtime@^0.13.4: |
6707 | version "0.13.5" | 6965 | version "0.13.7" |
6708 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" | 6966 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" |
6709 | integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== | 6967 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== |
6710 | 6968 | ||
6711 | regenerator-transform@^0.14.2: | 6969 | regenerator-transform@^0.14.2: |
6712 | version "0.14.5" | 6970 | version "0.14.5" |
@@ -6736,10 +6994,10 @@ regexpp@^3.1.0: | |||
6736 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" | 6994 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" |
6737 | integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== | 6995 | integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== |
6738 | 6996 | ||
6739 | regexpu-core@^4.7.0: | 6997 | regexpu-core@^4.7.1: |
6740 | version "4.7.0" | 6998 | version "4.7.1" |
6741 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" | 6999 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6" |
6742 | integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== | 7000 | integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ== |
6743 | dependencies: | 7001 | dependencies: |
6744 | regenerate "^1.4.0" | 7002 | regenerate "^1.4.0" |
6745 | regenerate-unicode-properties "^8.2.0" | 7003 | regenerate-unicode-properties "^8.2.0" |
@@ -6775,16 +7033,16 @@ remove-trailing-separator@^1.0.1: | |||
6775 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" | 7033 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" |
6776 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= | 7034 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= |
6777 | 7035 | ||
6778 | renderkid@^2.0.1: | 7036 | renderkid@^2.0.4: |
6779 | version "2.0.3" | 7037 | version "2.0.4" |
6780 | resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.3.tgz#380179c2ff5ae1365c522bf2fcfcff01c5b74149" | 7038 | resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.4.tgz#d325e532afb28d3f8796ffee306be8ffd6fc864c" |
6781 | integrity sha512-z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA== | 7039 | integrity sha512-K2eXrSOJdq+HuKzlcjOlGoOarUu5SDguDEhE7+Ah4zuOWL40j8A/oHvLlLob9PSTNvVnBd+/q0Er1QfpEuem5g== |
6782 | dependencies: | 7040 | dependencies: |
6783 | css-select "^1.1.0" | 7041 | css-select "^1.1.0" |
6784 | dom-converter "^0.2" | 7042 | dom-converter "^0.2" |
6785 | htmlparser2 "^3.3.0" | 7043 | htmlparser2 "^3.3.0" |
7044 | lodash "^4.17.20" | ||
6786 | strip-ansi "^3.0.0" | 7045 | strip-ansi "^3.0.0" |
6787 | utila "^0.4.0" | ||
6788 | 7046 | ||
6789 | repeat-element@^1.1.2: | 7047 | repeat-element@^1.1.2: |
6790 | version "1.1.3" | 7048 | version "1.1.3" |
@@ -6860,10 +7118,11 @@ resolve-url@^0.2.1: | |||
6860 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= | 7118 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= |
6861 | 7119 | ||
6862 | resolve@^1.10.0, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.8.1: | 7120 | resolve@^1.10.0, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.8.1: |
6863 | version "1.17.0" | 7121 | version "1.18.1" |
6864 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" | 7122 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.18.1.tgz#018fcb2c5b207d2a6424aee361c5a266da8f4130" |
6865 | integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== | 7123 | integrity sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA== |
6866 | dependencies: | 7124 | dependencies: |
7125 | is-core-module "^2.0.0" | ||
6867 | path-parse "^1.0.6" | 7126 | path-parse "^1.0.6" |
6868 | 7127 | ||
6869 | restore-cursor@^2.0.0: | 7128 | restore-cursor@^2.0.0: |
@@ -6937,9 +7196,9 @@ run-queue@^1.0.0, run-queue@^1.0.3: | |||
6937 | aproba "^1.1.1" | 7196 | aproba "^1.1.1" |
6938 | 7197 | ||
6939 | rxjs@^6.6.0: | 7198 | rxjs@^6.6.0: |
6940 | version "6.6.0" | 7199 | version "6.6.3" |
6941 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.0.tgz#af2901eedf02e3a83ffa7f886240ff9018bbec84" | 7200 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552" |
6942 | integrity sha512-3HMA8z/Oz61DUHe+SdOiQyzIf4tOx5oQHmMir7IZEu6TMqCLHT4LRcmNaUS0NwOz8VLvmmBduMsoaUvMaIiqzg== | 7201 | integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ== |
6943 | dependencies: | 7202 | dependencies: |
6944 | tslib "^1.9.0" | 7203 | tslib "^1.9.0" |
6945 | 7204 | ||
@@ -6965,21 +7224,21 @@ safe-regex@^1.1.0: | |||
6965 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" | 7224 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" |
6966 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== | 7225 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== |
6967 | 7226 | ||
6968 | sass-loader@^9.0.2: | 7227 | sass-loader@^10.0.4: |
6969 | version "9.0.2" | 7228 | version "10.0.4" |
6970 | resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-9.0.2.tgz#847c9b4c95328ddc8c7d35cf28c9d6e54e59a90b" | 7229 | resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.0.4.tgz#ec7181096947d078d60a1d76d527f47c19b151d8" |
6971 | integrity sha512-nphcum3jNI442njnrZ5wJgSNX5lfEOHOKHCLf+PrTIaleploKqAMUuT9CVKjf+lyi6c2MCGPHh1vb9nGsjnZJA== | 7230 | integrity sha512-zhdZ8qvZM4iL5XjLVEjJLvKWvC+MB+hHgzL2x/Nf7UHpUNmPYsJvypW79bW39g4LZ603dH/dRSsRYzJJIljtdA== |
6972 | dependencies: | 7231 | dependencies: |
6973 | klona "^1.1.1" | 7232 | klona "^2.0.4" |
6974 | loader-utils "^2.0.0" | 7233 | loader-utils "^2.0.0" |
6975 | neo-async "^2.6.1" | 7234 | neo-async "^2.6.2" |
6976 | schema-utils "^2.7.0" | 7235 | schema-utils "^3.0.0" |
6977 | semver "^7.3.2" | 7236 | semver "^7.3.2" |
6978 | 7237 | ||
6979 | sass@^1.26.10: | 7238 | sass@^1.27.0: |
6980 | version "1.26.10" | 7239 | version "1.27.0" |
6981 | resolved "https://registry.yarnpkg.com/sass/-/sass-1.26.10.tgz#851d126021cdc93decbf201d1eca2a20ee434760" | 7240 | resolved "https://registry.yarnpkg.com/sass/-/sass-1.27.0.tgz#0657ff674206b95ec20dc638a93e179c78f6ada2" |
6982 | integrity sha512-bzN0uvmzfsTvjz0qwccN1sPm2HxxpNI/Xa+7PlUEMS+nQvbyuEK7Y0qFqxlPHhiNHb1Ze8WQJtU31olMObkAMw== | 7241 | integrity sha512-0gcrER56OkzotK/GGwgg4fPrKuiFlPNitO7eUJ18Bs+/NBlofJfMxmxqpqJxjae9vu0Wq8TZzrSyxZal00WDig== |
6983 | dependencies: | 7242 | dependencies: |
6984 | chokidar ">=2.0.0 <4.0.0" | 7243 | chokidar ">=2.0.0 <4.0.0" |
6985 | 7244 | ||
@@ -6998,13 +7257,22 @@ schema-utils@^1.0.0: | |||
6998 | ajv-keywords "^3.1.0" | 7257 | ajv-keywords "^3.1.0" |
6999 | 7258 | ||
7000 | schema-utils@^2.0.0, schema-utils@^2.5.0, schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0: | 7259 | schema-utils@^2.0.0, schema-utils@^2.5.0, schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0: |
7001 | version "2.7.0" | 7260 | version "2.7.1" |
7002 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7" | 7261 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" |
7003 | integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== | 7262 | integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== |
7004 | dependencies: | 7263 | dependencies: |
7005 | "@types/json-schema" "^7.0.4" | 7264 | "@types/json-schema" "^7.0.5" |
7006 | ajv "^6.12.2" | 7265 | ajv "^6.12.4" |
7007 | ajv-keywords "^3.4.1" | 7266 | ajv-keywords "^3.5.2" |
7267 | |||
7268 | schema-utils@^3.0.0: | ||
7269 | version "3.0.0" | ||
7270 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz#67502f6aa2b66a2d4032b4279a2944978a0913ef" | ||
7271 | integrity sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA== | ||
7272 | dependencies: | ||
7273 | "@types/json-schema" "^7.0.6" | ||
7274 | ajv "^6.12.5" | ||
7275 | ajv-keywords "^3.5.2" | ||
7008 | 7276 | ||
7009 | select-hose@^2.0.0: | 7277 | select-hose@^2.0.0: |
7010 | version "2.0.0" | 7278 | version "2.0.0" |
@@ -7012,11 +7280,11 @@ select-hose@^2.0.0: | |||
7012 | integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo= | 7280 | integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo= |
7013 | 7281 | ||
7014 | selfsigned@^1.10.7: | 7282 | selfsigned@^1.10.7: |
7015 | version "1.10.7" | 7283 | version "1.10.8" |
7016 | resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.7.tgz#da5819fd049d5574f28e88a9bcc6dbc6e6f3906b" | 7284 | resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.8.tgz#0d17208b7d12c33f8eac85c41835f27fc3d81a30" |
7017 | integrity sha512-8M3wBCzeWIJnQfl43IKwOmC4H/RAp50S8DF60znzjW5GVqTcSe2vWclt7hmYVPkKPlHWOu5EaWOMZ2Y6W8ZXTA== | 7285 | integrity sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w== |
7018 | dependencies: | 7286 | dependencies: |
7019 | node-forge "0.9.0" | 7287 | node-forge "^0.10.0" |
7020 | 7288 | ||
7021 | "semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: | 7289 | "semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: |
7022 | version "5.7.1" | 7290 | version "5.7.1" |
@@ -7057,15 +7325,10 @@ send@0.17.1: | |||
7057 | range-parser "~1.2.1" | 7325 | range-parser "~1.2.1" |
7058 | statuses "~1.5.0" | 7326 | statuses "~1.5.0" |
7059 | 7327 | ||
7060 | serialize-javascript@^2.1.2: | 7328 | serialize-javascript@^4.0.0: |
7061 | version "2.1.2" | 7329 | version "4.0.0" |
7062 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61" | 7330 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" |
7063 | integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ== | 7331 | integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== |
7064 | |||
7065 | serialize-javascript@^3.1.0: | ||
7066 | version "3.1.0" | ||
7067 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-3.1.0.tgz#8bf3a9170712664ef2561b44b691eafe399214ea" | ||
7068 | integrity sha512-JIJT1DGiWmIKhzRsG91aS6Ze4sFUrYbltlkg2onR5OrnNM02Kl/hnY/T4FN2omvyeBbQmMJv+K4cPOpGzOTFBg== | ||
7069 | dependencies: | 7332 | dependencies: |
7070 | randombytes "^2.1.0" | 7333 | randombytes "^2.1.0" |
7071 | 7334 | ||
@@ -7287,6 +7550,11 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: | |||
7287 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" | 7550 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" |
7288 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== | 7551 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== |
7289 | 7552 | ||
7553 | source-map@^0.7.3: | ||
7554 | version "0.7.3" | ||
7555 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" | ||
7556 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== | ||
7557 | |||
7290 | spdx-correct@^3.0.0: | 7558 | spdx-correct@^3.0.0: |
7291 | version "3.1.1" | 7559 | version "3.1.1" |
7292 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" | 7560 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" |
@@ -7309,9 +7577,9 @@ spdx-expression-parse@^3.0.0: | |||
7309 | spdx-license-ids "^3.0.0" | 7577 | spdx-license-ids "^3.0.0" |
7310 | 7578 | ||
7311 | spdx-license-ids@^3.0.0: | 7579 | spdx-license-ids@^3.0.0: |
7312 | version "3.0.5" | 7580 | version "3.0.6" |
7313 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" | 7581 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz#c80757383c28abf7296744998cbc106ae8b854ce" |
7314 | integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== | 7582 | integrity sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw== |
7315 | 7583 | ||
7316 | spdy-transport@^3.0.0: | 7584 | spdy-transport@^3.0.0: |
7317 | version "3.0.0" | 7585 | version "3.0.0" |
@@ -7465,20 +7733,20 @@ string-width@^4.1.0, string-width@^4.2.0: | |||
7465 | strip-ansi "^6.0.0" | 7733 | strip-ansi "^6.0.0" |
7466 | 7734 | ||
7467 | string.prototype.trimend@^1.0.1: | 7735 | string.prototype.trimend@^1.0.1: |
7468 | version "1.0.1" | 7736 | version "1.0.2" |
7469 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" | 7737 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.2.tgz#6ddd9a8796bc714b489a3ae22246a208f37bfa46" |
7470 | integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== | 7738 | integrity sha512-8oAG/hi14Z4nOVP0z6mdiVZ/wqjDtWSLygMigTzAb+7aPEDTleeFf+WrF+alzecxIRkckkJVn+dTlwzJXORATw== |
7471 | dependencies: | 7739 | dependencies: |
7472 | define-properties "^1.1.3" | 7740 | define-properties "^1.1.3" |
7473 | es-abstract "^1.17.5" | 7741 | es-abstract "^1.18.0-next.1" |
7474 | 7742 | ||
7475 | string.prototype.trimstart@^1.0.1: | 7743 | string.prototype.trimstart@^1.0.1: |
7476 | version "1.0.1" | 7744 | version "1.0.2" |
7477 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" | 7745 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.2.tgz#22d45da81015309cd0cdd79787e8919fc5c613e7" |
7478 | integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== | 7746 | integrity sha512-7F6CdBTl5zyu30BJFdzSTlSlLPwODC23Od+iLoVH8X6+3fvDPPuBVVj9iaB1GOsSTSIgVfsfm27R2FGrAPznWg== |
7479 | dependencies: | 7747 | dependencies: |
7480 | define-properties "^1.1.3" | 7748 | define-properties "^1.1.3" |
7481 | es-abstract "^1.17.5" | 7749 | es-abstract "^1.18.0-next.1" |
7482 | 7750 | ||
7483 | string_decoder@^1.0.0, string_decoder@^1.1.1: | 7751 | string_decoder@^1.0.0, string_decoder@^1.1.1: |
7484 | version "1.3.0" | 7752 | version "1.3.0" |
@@ -7554,7 +7822,7 @@ strip-indent@^2.0.0: | |||
7554 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" | 7822 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" |
7555 | integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= | 7823 | integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= |
7556 | 7824 | ||
7557 | strip-json-comments@^3.1.0: | 7825 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: |
7558 | version "3.1.1" | 7826 | version "3.1.1" |
7559 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" | 7827 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" |
7560 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== | 7828 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== |
@@ -7588,9 +7856,9 @@ supports-color@^6.1.0: | |||
7588 | has-flag "^3.0.0" | 7856 | has-flag "^3.0.0" |
7589 | 7857 | ||
7590 | supports-color@^7.0.0, supports-color@^7.1.0: | 7858 | supports-color@^7.0.0, supports-color@^7.1.0: |
7591 | version "7.1.0" | 7859 | version "7.2.0" |
7592 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" | 7860 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" |
7593 | integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== | 7861 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== |
7594 | dependencies: | 7862 | dependencies: |
7595 | has-flag "^4.0.0" | 7863 | has-flag "^4.0.0" |
7596 | 7864 | ||
@@ -7634,31 +7902,31 @@ tapable@^1.0.0, tapable@^1.1.3: | |||
7634 | integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== | 7902 | integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== |
7635 | 7903 | ||
7636 | terser-webpack-plugin@^1.4.3: | 7904 | terser-webpack-plugin@^1.4.3: |
7637 | version "1.4.4" | 7905 | version "1.4.5" |
7638 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.4.tgz#2c63544347324baafa9a56baaddf1634c8abfc2f" | 7906 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b" |
7639 | integrity sha512-U4mACBHIegmfoEe5fdongHESNJWqsGU+W0S/9+BmYGVQDw1+c2Ow05TpMhxjPK1sRb7cuYq1BPl1e5YHJMTCqA== | 7907 | integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw== |
7640 | dependencies: | 7908 | dependencies: |
7641 | cacache "^12.0.2" | 7909 | cacache "^12.0.2" |
7642 | find-cache-dir "^2.1.0" | 7910 | find-cache-dir "^2.1.0" |
7643 | is-wsl "^1.1.0" | 7911 | is-wsl "^1.1.0" |
7644 | schema-utils "^1.0.0" | 7912 | schema-utils "^1.0.0" |
7645 | serialize-javascript "^3.1.0" | 7913 | serialize-javascript "^4.0.0" |
7646 | source-map "^0.6.1" | 7914 | source-map "^0.6.1" |
7647 | terser "^4.1.2" | 7915 | terser "^4.1.2" |
7648 | webpack-sources "^1.4.0" | 7916 | webpack-sources "^1.4.0" |
7649 | worker-farm "^1.7.0" | 7917 | worker-farm "^1.7.0" |
7650 | 7918 | ||
7651 | terser-webpack-plugin@^2.3.6: | 7919 | terser-webpack-plugin@^2.3.6: |
7652 | version "2.3.7" | 7920 | version "2.3.8" |
7653 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.7.tgz#4910ff5d1a872168cc7fa6cd3749e2b0d60a8a0b" | 7921 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz#894764a19b0743f2f704e7c2a848c5283a696724" |
7654 | integrity sha512-xzYyaHUNhzgaAdBsXxk2Yvo/x1NJdslUaussK3fdpBbvttm1iIwU+c26dj9UxJcwk2c5UWt5F55MUTIA8BE7Dg== | 7922 | integrity sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w== |
7655 | dependencies: | 7923 | dependencies: |
7656 | cacache "^13.0.1" | 7924 | cacache "^13.0.1" |
7657 | find-cache-dir "^3.3.1" | 7925 | find-cache-dir "^3.3.1" |
7658 | jest-worker "^25.4.0" | 7926 | jest-worker "^25.4.0" |
7659 | p-limit "^2.3.0" | 7927 | p-limit "^2.3.0" |
7660 | schema-utils "^2.6.6" | 7928 | schema-utils "^2.6.6" |
7661 | serialize-javascript "^3.1.0" | 7929 | serialize-javascript "^4.0.0" |
7662 | source-map "^0.6.1" | 7930 | source-map "^0.6.1" |
7663 | terser "^4.6.12" | 7931 | terser "^4.6.12" |
7664 | webpack-sources "^1.4.3" | 7932 | webpack-sources "^1.4.3" |
@@ -7808,9 +8076,9 @@ ts-pnp@^1.1.6: | |||
7808 | integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== | 8076 | integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== |
7809 | 8077 | ||
7810 | tslib@^1.9.0: | 8078 | tslib@^1.9.0: |
7811 | version "1.13.0" | 8079 | version "1.14.1" |
7812 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" | 8080 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" |
7813 | integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== | 8081 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== |
7814 | 8082 | ||
7815 | tty-browserify@0.0.0: | 8083 | tty-browserify@0.0.0: |
7816 | version "0.0.0" | 8084 | version "0.0.0" |
@@ -7963,9 +8231,9 @@ upper-case@^1.1.1: | |||
7963 | integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= | 8231 | integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= |
7964 | 8232 | ||
7965 | uri-js@^4.2.2: | 8233 | uri-js@^4.2.2: |
7966 | version "4.2.2" | 8234 | version "4.4.0" |
7967 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" | 8235 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602" |
7968 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== | 8236 | integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g== |
7969 | dependencies: | 8237 | dependencies: |
7970 | punycode "^2.1.0" | 8238 | punycode "^2.1.0" |
7971 | 8239 | ||
@@ -8004,7 +8272,7 @@ use@^3.1.0: | |||
8004 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" | 8272 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" |
8005 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== | 8273 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== |
8006 | 8274 | ||
8007 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: | 8275 | util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: |
8008 | version "1.0.2" | 8276 | version "1.0.2" |
8009 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" | 8277 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" |
8010 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= | 8278 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= |
@@ -8041,7 +8309,7 @@ util@^0.11.0: | |||
8041 | dependencies: | 8309 | dependencies: |
8042 | inherits "2.0.3" | 8310 | inherits "2.0.3" |
8043 | 8311 | ||
8044 | utila@^0.4.0, utila@~0.4: | 8312 | utila@~0.4: |
8045 | version "0.4.0" | 8313 | version "0.4.0" |
8046 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" | 8314 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" |
8047 | integrity sha1-ihagXURWV6Oupe7MWxKk+lN5dyw= | 8315 | integrity sha1-ihagXURWV6Oupe7MWxKk+lN5dyw= |
@@ -8093,10 +8361,10 @@ vm-browserify@^1.0.1: | |||
8093 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" | 8361 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" |
8094 | integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== | 8362 | integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== |
8095 | 8363 | ||
8096 | vue-eslint-parser@^7.0.0: | 8364 | vue-eslint-parser@^7.1.1: |
8097 | version "7.1.0" | 8365 | version "7.1.1" |
8098 | resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.1.0.tgz#9cdbcc823e656b087507a1911732b867ac101e83" | 8366 | resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.1.1.tgz#c43c1c715ff50778b9a7e9a4e16921185f3425d3" |
8099 | integrity sha512-Kr21uPfthDc63nDl27AGQEhtt9VrZ9nkYk/NTftJ2ws9XiJwzJJCnCr3AITQ2jpRMA0XPGDECxYH8E027qMK9Q== | 8367 | integrity sha512-8FdXi0gieEwh1IprIBafpiJWcApwrU+l2FEj8c1HtHFdNXMd0+2jUSjBVmcQYohf/E72irwAXEXLga6TQcB3FA== |
8100 | dependencies: | 8368 | dependencies: |
8101 | debug "^4.1.1" | 8369 | debug "^4.1.1" |
8102 | eslint-scope "^5.0.0" | 8370 | eslint-scope "^5.0.0" |
@@ -8110,6 +8378,15 @@ vue-hot-reload-api@^2.3.0: | |||
8110 | resolved "https://registry.yarnpkg.com/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz#532955cc1eb208a3d990b3a9f9a70574657e08f2" | 8378 | resolved "https://registry.yarnpkg.com/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz#532955cc1eb208a3d990b3a9f9a70574657e08f2" |
8111 | integrity sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog== | 8379 | integrity sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog== |
8112 | 8380 | ||
8381 | "vue-loader-v16@npm:vue-loader@^16.0.0-beta.7": | ||
8382 | version "16.0.0-beta.8" | ||
8383 | resolved "https://registry.yarnpkg.com/vue-loader/-/vue-loader-16.0.0-beta.8.tgz#1f523d9fea8e8c6e4f5bb99fd768165af5845879" | ||
8384 | integrity sha512-oouKUQWWHbSihqSD7mhymGPX1OQ4hedzAHyvm8RdyHh6m3oIvoRF+NM45i/bhNOlo8jCnuJhaSUf/6oDjv978g== | ||
8385 | dependencies: | ||
8386 | chalk "^4.1.0" | ||
8387 | hash-sum "^2.0.0" | ||
8388 | loader-utils "^2.0.0" | ||
8389 | |||
8113 | vue-loader@^15.9.2: | 8390 | vue-loader@^15.9.2: |
8114 | version "15.9.3" | 8391 | version "15.9.3" |
8115 | resolved "https://registry.yarnpkg.com/vue-loader/-/vue-loader-15.9.3.tgz#0de35d9e555d3ed53969516cac5ce25531299dda" | 8392 | resolved "https://registry.yarnpkg.com/vue-loader/-/vue-loader-15.9.3.tgz#0de35d9e555d3ed53969516cac5ce25531299dda" |
@@ -8129,10 +8406,10 @@ vue-style-loader@^4.1.0, vue-style-loader@^4.1.2: | |||
8129 | hash-sum "^1.0.2" | 8406 | hash-sum "^1.0.2" |
8130 | loader-utils "^1.0.2" | 8407 | loader-utils "^1.0.2" |
8131 | 8408 | ||
8132 | vue-template-compiler@^2.6.11: | 8409 | vue-template-compiler@^2.6.12: |
8133 | version "2.6.11" | 8410 | version "2.6.12" |
8134 | resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.6.11.tgz#c04704ef8f498b153130018993e56309d4698080" | 8411 | resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.6.12.tgz#947ed7196744c8a5285ebe1233fe960437fcc57e" |
8135 | integrity sha512-KIq15bvQDrcCjpGjrAhx4mUlyyHfdmTaoNfeoATHLAiWB+MU3cx4lOzMwrnUh9cCxy0Lt1T11hAFY6TQgroUAA== | 8412 | integrity sha512-OzzZ52zS41YUbkCBfdXShQTe69j1gQDZ9HIX8miuC9C3rBCk9wIRjLiZZLrmX9V+Ftq/YEyv1JaVr5Y/hNtByg== |
8136 | dependencies: | 8413 | dependencies: |
8137 | de-indent "^1.0.2" | 8414 | de-indent "^1.0.2" |
8138 | he "^1.1.0" | 8415 | he "^1.1.0" |
@@ -8142,10 +8419,10 @@ vue-template-es2015-compiler@^1.9.0: | |||
8142 | resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz#1ee3bc9a16ecbf5118be334bb15f9c46f82f5825" | 8419 | resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz#1ee3bc9a16ecbf5118be334bb15f9c46f82f5825" |
8143 | integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw== | 8420 | integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw== |
8144 | 8421 | ||
8145 | vue@^2.6.11: | 8422 | vue@^2.6.12: |
8146 | version "2.6.11" | 8423 | version "2.6.12" |
8147 | resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.11.tgz#76594d877d4b12234406e84e35275c6d514125c5" | 8424 | resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.12.tgz#f5ebd4fa6bd2869403e29a896aed4904456c9123" |
8148 | integrity sha512-VfPwgcGABbGAue9+sfrD4PuwFar7gPb1yl1UK1MwXoQPAw0BKSqWfoYCT/ThFrdEVWoI51dBuyCoiNU9bZDZxQ== | 8425 | integrity sha512-uhmLFETqPPNyuLLbsKz6ioJ4q7AZHzD8ZVFNATNyICSZouqP2Sz0rotWQC8UNBF6VGSCs5abnKJoStA6JbCbfg== |
8149 | 8426 | ||
8150 | watchpack-chokidar2@^2.0.0: | 8427 | watchpack-chokidar2@^2.0.0: |
8151 | version "2.0.0" | 8428 | version "2.0.0" |
@@ -8154,15 +8431,15 @@ watchpack-chokidar2@^2.0.0: | |||
8154 | dependencies: | 8431 | dependencies: |
8155 | chokidar "^2.1.8" | 8432 | chokidar "^2.1.8" |
8156 | 8433 | ||
8157 | watchpack@^1.6.1: | 8434 | watchpack@^1.7.4: |
8158 | version "1.7.2" | 8435 | version "1.7.4" |
8159 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.2.tgz#c02e4d4d49913c3e7e122c3325365af9d331e9aa" | 8436 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.4.tgz#6e9da53b3c80bb2d6508188f5b200410866cd30b" |
8160 | integrity sha512-ymVbbQP40MFTp+cNMvpyBpBtygHnPzPkHqoIwRRj/0B8KhqQwV8LaKjtbaxF2lK4vl8zN9wCxS46IFCU5K4W0g== | 8437 | integrity sha512-aWAgTW4MoSJzZPAicljkO1hsi1oKj/RRq/OJQh2PKI2UKL04c2Bs+MBOB+BBABHTXJpf9mCwHN7ANCvYsvY2sg== |
8161 | dependencies: | 8438 | dependencies: |
8162 | graceful-fs "^4.1.2" | 8439 | graceful-fs "^4.1.2" |
8163 | neo-async "^2.5.0" | 8440 | neo-async "^2.5.0" |
8164 | optionalDependencies: | 8441 | optionalDependencies: |
8165 | chokidar "^3.4.0" | 8442 | chokidar "^3.4.1" |
8166 | watchpack-chokidar2 "^2.0.0" | 8443 | watchpack-chokidar2 "^2.0.0" |
8167 | 8444 | ||
8168 | wbuf@^1.1.0, wbuf@^1.7.3: | 8445 | wbuf@^1.1.0, wbuf@^1.7.3: |
@@ -8180,9 +8457,9 @@ wcwidth@^1.0.1: | |||
8180 | defaults "^1.0.3" | 8457 | defaults "^1.0.3" |
8181 | 8458 | ||
8182 | webpack-bundle-analyzer@^3.8.0: | 8459 | webpack-bundle-analyzer@^3.8.0: |
8183 | version "3.8.0" | 8460 | version "3.9.0" |
8184 | resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.8.0.tgz#ce6b3f908daf069fd1f7266f692cbb3bded9ba16" | 8461 | resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.9.0.tgz#f6f94db108fb574e415ad313de41a2707d33ef3c" |
8185 | integrity sha512-PODQhAYVEourCcOuU+NiYI7WdR8QyELZGgPvB1y2tjbUpbmcQOt5Q7jEK+ttd5se0KSBKD9SXHCEozS++Wllmw== | 8462 | integrity sha512-Ob8amZfCm3rMB1ScjQVlbYYUEJyEjdEtQ92jqiFUYt5VkEeO2v5UMbv49P/gnmCZm3A6yaFQzCBvpZqN4MUsdA== |
8186 | dependencies: | 8463 | dependencies: |
8187 | acorn "^7.1.1" | 8464 | acorn "^7.1.1" |
8188 | acorn-walk "^7.1.1" | 8465 | acorn-walk "^7.1.1" |
@@ -8193,15 +8470,15 @@ webpack-bundle-analyzer@^3.8.0: | |||
8193 | express "^4.16.3" | 8470 | express "^4.16.3" |
8194 | filesize "^3.6.1" | 8471 | filesize "^3.6.1" |
8195 | gzip-size "^5.0.0" | 8472 | gzip-size "^5.0.0" |
8196 | lodash "^4.17.15" | 8473 | lodash "^4.17.19" |
8197 | mkdirp "^0.5.1" | 8474 | mkdirp "^0.5.1" |
8198 | opener "^1.5.1" | 8475 | opener "^1.5.1" |
8199 | ws "^6.0.0" | 8476 | ws "^6.0.0" |
8200 | 8477 | ||
8201 | webpack-chain@^6.4.0: | 8478 | webpack-chain@^6.4.0: |
8202 | version "6.5.0" | 8479 | version "6.5.1" |
8203 | resolved "https://registry.yarnpkg.com/webpack-chain/-/webpack-chain-6.5.0.tgz#0b4af2094a5058a9ccd34b8f7ab194de4c83365f" | 8480 | resolved "https://registry.yarnpkg.com/webpack-chain/-/webpack-chain-6.5.1.tgz#4f27284cbbb637e3c8fbdef43eef588d4d861206" |
8204 | integrity sha512-K4EHiEg4WlP4w1rKXKpYWvX9cfGBERHCGP06ETSNV62XUIfOUg1DDRQpxyBsFYxZLKc4YUAI3iiCIvWoliheGA== | 8481 | integrity sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA== |
8205 | dependencies: | 8482 | dependencies: |
8206 | deepmerge "^1.5.2" | 8483 | deepmerge "^1.5.2" |
8207 | javascript-stringify "^2.0.1" | 8484 | javascript-stringify "^2.0.1" |
@@ -8280,9 +8557,9 @@ webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack- | |||
8280 | source-map "~0.6.1" | 8557 | source-map "~0.6.1" |
8281 | 8558 | ||
8282 | webpack@^4.0.0: | 8559 | webpack@^4.0.0: |
8283 | version "4.43.0" | 8560 | version "4.44.2" |
8284 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.43.0.tgz#c48547b11d563224c561dad1172c8aa0b8a678e6" | 8561 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.44.2.tgz#6bfe2b0af055c8b2d1e90ed2cd9363f841266b72" |
8285 | integrity sha512-GW1LjnPipFW2Y78OOab8NJlCflB7EFskMih2AHdvjbpKMeDJqEgSx24cXXXiPS65+WSwVyxtDsJH6jGX2czy+g== | 8562 | integrity sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q== |
8286 | dependencies: | 8563 | dependencies: |
8287 | "@webassemblyjs/ast" "1.9.0" | 8564 | "@webassemblyjs/ast" "1.9.0" |
8288 | "@webassemblyjs/helper-module-context" "1.9.0" | 8565 | "@webassemblyjs/helper-module-context" "1.9.0" |
@@ -8292,7 +8569,7 @@ webpack@^4.0.0: | |||
8292 | ajv "^6.10.2" | 8569 | ajv "^6.10.2" |
8293 | ajv-keywords "^3.4.1" | 8570 | ajv-keywords "^3.4.1" |
8294 | chrome-trace-event "^1.0.2" | 8571 | chrome-trace-event "^1.0.2" |
8295 | enhanced-resolve "^4.1.0" | 8572 | enhanced-resolve "^4.3.0" |
8296 | eslint-scope "^4.0.3" | 8573 | eslint-scope "^4.0.3" |
8297 | json-parse-better-errors "^1.0.2" | 8574 | json-parse-better-errors "^1.0.2" |
8298 | loader-runner "^2.4.0" | 8575 | loader-runner "^2.4.0" |
@@ -8305,7 +8582,7 @@ webpack@^4.0.0: | |||
8305 | schema-utils "^1.0.0" | 8582 | schema-utils "^1.0.0" |
8306 | tapable "^1.1.3" | 8583 | tapable "^1.1.3" |
8307 | terser-webpack-plugin "^1.4.3" | 8584 | terser-webpack-plugin "^1.4.3" |
8308 | watchpack "^1.6.1" | 8585 | watchpack "^1.7.4" |
8309 | webpack-sources "^1.4.1" | 8586 | webpack-sources "^1.4.1" |
8310 | 8587 | ||
8311 | websocket-driver@0.6.5: | 8588 | websocket-driver@0.6.5: |