Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
nni
Commits
07df1c9f
Unverified
Commit
07df1c9f
authored
Aug 05, 2022
by
Lijiaoa
Committed by
GitHub
Aug 05, 2022
Browse files
detail page empty with tensorflow tutorial code because of the "None" (#5011)
parent
9f65f12a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
863 additions
and
838 deletions
+863
-838
ts/webui/src/static/function.ts
ts/webui/src/static/function.ts
+2
-1
ts/webui/src/static/model/trial.ts
ts/webui/src/static/model/trial.ts
+6
-0
ts/webui/yarn.lock
ts/webui/yarn.lock
+855
-837
No files found.
ts/webui/src/static/function.ts
View file @
07df1c9f
...
@@ -245,7 +245,8 @@ function formatComplexTypeValue(value: any): string | number {
...
@@ -245,7 +245,8 @@ function formatComplexTypeValue(value: any): string | number {
if
([
'
number
'
,
'
string
'
].
includes
(
typeof
value
))
{
if
([
'
number
'
,
'
string
'
].
includes
(
typeof
value
))
{
return
value
;
return
value
;
}
else
{
}
else
{
return
value
.
toString
();
// for hpo experiment: search space choice value is None, and it shows null
return
String
(
value
);
}
}
}
}
...
...
ts/webui/src/static/model/trial.ts
View file @
07df1c9f
...
@@ -114,6 +114,12 @@ class Trial {
...
@@ -114,6 +114,12 @@ class Trial {
if
(
typeof
params
===
'
string
'
)
{
if
(
typeof
params
===
'
string
'
)
{
params
=
JSON
.
parse
(
params
);
params
=
JSON
.
parse
(
params
);
}
}
// for hpo experiment: search space choice value is None, and it shows null
for
(
const
[
key
,
value
]
of
Object
.
entries
(
params
))
{
if
(
Object
.
is
(
null
,
value
))
{
params
[
key
]
=
'
null
'
;
}
}
const
[
updated
,
unexpectedEntries
]
=
inferTrialParameters
(
params
,
axes
);
const
[
updated
,
unexpectedEntries
]
=
inferTrialParameters
(
params
,
axes
);
if
(
unexpectedEntries
.
size
)
{
if
(
unexpectedEntries
.
size
)
{
throw
unexpectedEntries
;
throw
unexpectedEntries
;
...
...
ts/webui/yarn.lock
View file @
07df1c9f
...
@@ -40,26 +40,26 @@
...
@@ -40,26 +40,26 @@
dependencies:
dependencies:
"@babel/highlight" "^7.18.6"
"@babel/highlight" "^7.18.6"
"@babel/compat-data@^7.1
3.11
", "@babel/compat-data@^7.18.
6
":
"@babel/compat-data@^7.1
7.7
", "@babel/compat-data@^7.18.
8
":
version "7.18.
6
"
version "7.18.
8
"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.
6
.tgz#
8b37d24e88e8e21c499d4328db80577d8882fa53
"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.
8
.tgz#
2483f565faca607b8535590e84e7de323f27764d
"
integrity sha512-
tzulrgDT0QD6U7BJ4TKVk2SDDg7wlP39P9yAx1RfLy7vP/7rsDRlWVfbWxElslu56+r7QOhB2NSDsabYYruoZ
Q==
integrity sha512-
HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIH
Q==
"@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.3", "@babel/core@^7.14.6",
"@babel/core@^7.15.5",
"@babel/core@^7.16.0", "@babel/core@^7.17.9", "@babel/core@^7.7.2", "@babel/core@^7.8.0":
"@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.3", "@babel/core@^7.14.6", "@babel/core@^7.16.0", "@babel/core@^7.17.9",
"@babel/core@^7.18.5",
"@babel/core@^7.7.2", "@babel/core@^7.8.0":
version "7.18.
6
"
version "7.18.
10
"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.
6
.tgz#
54a107a3c298aee3fe5e1947a6464b9b6faca03d
"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.
10
.tgz#
39ad504991d77f1f3da91be0b8b949a5bc466fb8
"
integrity sha512-
cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ
==
integrity sha512-
JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw
==
dependencies:
dependencies:
"@ampproject/remapping" "^2.1.0"
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.18.6"
"@babel/code-frame" "^7.18.6"
"@babel/generator" "^7.18.
6
"
"@babel/generator" "^7.18.
10
"
"@babel/helper-compilation-targets" "^7.18.
6
"
"@babel/helper-compilation-targets" "^7.18.
9
"
"@babel/helper-module-transforms" "^7.18.
6
"
"@babel/helper-module-transforms" "^7.18.
9
"
"@babel/helpers" "^7.18.
6
"
"@babel/helpers" "^7.18.
9
"
"@babel/parser" "^7.18.
6
"
"@babel/parser" "^7.18.
10
"
"@babel/template" "^7.18.
6
"
"@babel/template" "^7.18.
10
"
"@babel/traverse" "^7.18.
6
"
"@babel/traverse" "^7.18.
10
"
"@babel/types" "^7.18.
6
"
"@babel/types" "^7.18.
10
"
convert-source-map "^1.7.0"
convert-source-map "^1.7.0"
debug "^4.1.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
gensync "^1.0.0-beta.2"
...
@@ -67,20 +67,20 @@
...
@@ -67,20 +67,20 @@
semver "^6.3.0"
semver "^6.3.0"
"@babel/eslint-parser@^7.14.5":
"@babel/eslint-parser@^7.14.5":
version "7.18.
2
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.18.
2
.tgz#
e14dee36c010edfb0153cf900c2b0815e82e3245
"
resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.18.
9
.tgz#
255a63796819a97b7578751bb08ab9f2a375a031
"
integrity sha512-
oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A
==
integrity sha512-
KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ
==
dependencies:
dependencies:
eslint-scope "^5.1.1"
eslint-scope "^5.1.1"
eslint-visitor-keys "^2.1.0"
eslint-visitor-keys "^2.1.0"
semver "^6.3.0"
semver "^6.3.0"
"@babel/generator@^7.18.
6
", "@babel/generator@^7.4.0", "@babel/generator@^7.7.2":
"@babel/generator@^7.18.
10
", "@babel/generator@^7.4.0", "@babel/generator@^7.7.2":
version "7.18.
7
"
version "7.18.
10
"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.
7
.tgz#
2aa78da3c05aadfc82dbac16c99552fc802284bd
"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.
10
.tgz#
794f328bfabdcbaf0ebf9bf91b5b57b61fa77a2a
"
integrity sha512-
shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3
A==
integrity sha512-
0+sW7e3HjQbiHbj1NeU/vN8ornohYlacAfZIaXhdoGweQqgcNy69COVciYYqEXJ/v+9OBA7Frxm4CVAuNqKeN
A==
dependencies:
dependencies:
"@babel/types" "^7.18.
7
"
"@babel/types" "^7.18.
10
"
"@jridgewell/gen-mapping" "^0.3.2"
"@jridgewell/gen-mapping" "^0.3.2"
jsesc "^2.5.1"
jsesc "^2.5.1"
...
@@ -92,34 +92,34 @@
...
@@ -92,34 +92,34 @@
"@babel/types" "^7.18.6"
"@babel/types" "^7.18.6"
"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6":
"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.
6
.tgz#
f14d640ed1ee9246fb33b8255f08353acfe70e6a
"
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.
9
.tgz#
acd4edfd7a566d1d51ea975dff38fd52906981bb
"
integrity sha512-
KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38j
w==
integrity sha512-
yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdN
w==
dependencies:
dependencies:
"@babel/helper-explode-assignable-expression" "^7.18.6"
"@babel/helper-explode-assignable-expression" "^7.18.6"
"@babel/types" "^7.18.
6
"
"@babel/types" "^7.18.
9
"
"@babel/helper-compilation-targets@^7.1
3.0
", "@babel/helper-compilation-targets@^7.18.
6
":
"@babel/helper-compilation-targets@^7.1
7.7
", "@babel/helper-compilation-targets@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.
6
.tgz#
18d35bfb9f83b1293c22c55b3d576c1315b6ed96
"
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.
9
.tgz#
69e64f57b524cde3e5ff6cc5a9f4a387ee5563bf
"
integrity sha512-
vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQ
g==
integrity sha512-
tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQN
g==
dependencies:
dependencies:
"@babel/compat-data" "^7.18.
6
"
"@babel/compat-data" "^7.18.
8
"
"@babel/helper-validator-option" "^7.18.6"
"@babel/helper-validator-option" "^7.18.6"
browserslist "^4.20.2"
browserslist "^4.20.2"
semver "^6.3.0"
semver "^6.3.0"
"@babel/helper-create-class-features-plugin@^7.18.6":
"@babel/helper-create-class-features-plugin@^7.18.6"
, "@babel/helper-create-class-features-plugin@^7.18.9"
:
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.
6
.tgz#
6f15f8459f3b523b39e00a99982e2c040871ed72
"
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.
9
.tgz#
d802ee16a64a9e824fcbf0a2ffc92f19d58550ce
"
integrity sha512-
YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnq
w==
integrity sha512-
WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2op
w==
dependencies:
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-environment-visitor" "^7.18.
6
"
"@babel/helper-environment-visitor" "^7.18.
9
"
"@babel/helper-function-name" "^7.18.
6
"
"@babel/helper-function-name" "^7.18.
9
"
"@babel/helper-member-expression-to-functions" "^7.18.
6
"
"@babel/helper-member-expression-to-functions" "^7.18.
9
"
"@babel/helper-optimise-call-expression" "^7.18.6"
"@babel/helper-optimise-call-expression" "^7.18.6"
"@babel/helper-replace-supers" "^7.18.
6
"
"@babel/helper-replace-supers" "^7.18.
9
"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-create-regexp-features-plugin@^7.18.6":
"@babel/helper-create-regexp-features-plugin@^7.18.6":
...
@@ -130,24 +130,22 @@
...
@@ -130,24 +130,22 @@
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-annotate-as-pure" "^7.18.6"
regexpu-core "^5.1.0"
regexpu-core "^5.1.0"
"@babel/helper-define-polyfill-provider@^0.3.
1
":
"@babel/helper-define-polyfill-provider@^0.3.
2
":
version "0.3.
1
"
version "0.3.
2
"
resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.
1
.tgz#
52411b445bdb2e676869e5a74960d2d3826d2665
"
resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.
2
.tgz#
bd10d0aca18e8ce012755395b05a79f45eca5073
"
integrity sha512-
J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA
==
integrity sha512-
r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg
==
dependencies:
dependencies:
"@babel/helper-compilation-targets" "^7.13.0"
"@babel/helper-compilation-targets" "^7.17.7"
"@babel/helper-module-imports" "^7.12.13"
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/traverse" "^7.13.0"
debug "^4.1.1"
debug "^4.1.1"
lodash.debounce "^4.0.8"
lodash.debounce "^4.0.8"
resolve "^1.14.2"
resolve "^1.14.2"
semver "^6.1.2"
semver "^6.1.2"
"@babel/helper-environment-visitor@^7.18.
6
":
"@babel/helper-environment-visitor@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.
6
.tgz#
b7eee2b5b9d70602e59d1a6cad7dd24de7ca6cd7
"
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.
9
.tgz#
0c0cee9b35d2ca190478756865bb3528422f51be
"
integrity sha512-
8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q
==
integrity sha512-
3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg
==
"@babel/helper-explode-assignable-expression@^7.18.6":
"@babel/helper-explode-assignable-expression@^7.18.6":
version "7.18.6"
version "7.18.6"
...
@@ -156,13 +154,13 @@
...
@@ -156,13 +154,13 @@
dependencies:
dependencies:
"@babel/types" "^7.18.6"
"@babel/types" "^7.18.6"
"@babel/helper-function-name@^7.18.
6
":
"@babel/helper-function-name@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.18.
6
.tgz#
8334fecb0afba66e6d87a7e8c6bb7fed79926b83
"
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.18.
9
.tgz#
940e6084a55dee867d33b4e487da2676365e86b0
"
integrity sha512-
0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw
==
integrity sha512-
fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A
==
dependencies:
dependencies:
"@babel/template" "^7.18.6"
"@babel/template" "^7.18.6"
"@babel/types" "^7.18.
6
"
"@babel/types" "^7.18.
9
"
"@babel/helper-hoist-variables@^7.18.6":
"@babel/helper-hoist-variables@^7.18.6":
version "7.18.6"
version "7.18.6"
...
@@ -171,33 +169,33 @@
...
@@ -171,33 +169,33 @@
dependencies:
dependencies:
"@babel/types" "^7.18.6"
"@babel/types" "^7.18.6"
"@babel/helper-member-expression-to-functions@^7.18.
6
":
"@babel/helper-member-expression-to-functions@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.
6
.tgz#
44802d7d602c285e1692db0bad9396d007be2afc
"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.
9
.tgz#
1531661e8375af843ad37ac692c132841e2fd815
"
integrity sha512-
CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+N
g==
integrity sha512-
RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuD
g==
dependencies:
dependencies:
"@babel/types" "^7.18.
6
"
"@babel/types" "^7.18.
9
"
"@babel/helper-module-imports@^7.10.4",
"@babel/helper-module-imports@^7.12.13",
"@babel/helper-module-imports@^7.18.6":
"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.18.6":
version "7.18.6"
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
dependencies:
dependencies:
"@babel/types" "^7.18.6"
"@babel/types" "^7.18.6"
"@babel/helper-module-transforms@^7.18.6":
"@babel/helper-module-transforms@^7.18.6"
, "@babel/helper-module-transforms@^7.18.9"
:
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.
6
.tgz#5
7e3ca669e273d55c3cda55e6ebf552f37f483c8
"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.
9
.tgz#5
a1079c005135ed627442df31a42887e80fcb712
"
integrity sha512-
L//phhB4al5uucwzlimruukHB3jRd5JGClwRMD/ROrVjXfLqovYnvQrK/JK36WYyVwGGO7OD3kMyVTjx+WVPhw
==
integrity sha512-
KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g
==
dependencies:
dependencies:
"@babel/helper-environment-visitor" "^7.18.
6
"
"@babel/helper-environment-visitor" "^7.18.
9
"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-simple-access" "^7.18.6"
"@babel/helper-simple-access" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-validator-identifier" "^7.18.6"
"@babel/helper-validator-identifier" "^7.18.6"
"@babel/template" "^7.18.6"
"@babel/template" "^7.18.6"
"@babel/traverse" "^7.18.
6
"
"@babel/traverse" "^7.18.
9
"
"@babel/types" "^7.18.
6
"
"@babel/types" "^7.18.
9
"
"@babel/helper-optimise-call-expression@^7.18.6":
"@babel/helper-optimise-call-expression@^7.18.6":
version "7.18.6"
version "7.18.6"
...
@@ -206,31 +204,31 @@
...
@@ -206,31 +204,31 @@
dependencies:
dependencies:
"@babel/types" "^7.18.6"
"@babel/types" "^7.18.6"
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.1
3.0
", "@babel/helper-plugin-utils@^7.1
4.5
", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.1
4.5
", "@babel/helper-plugin-utils@^7.1
6.7
", "@babel/helper-plugin-utils@^7.18.6",
"@babel/helper-plugin-utils@^7.18.9",
"@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.
6
.tgz#
9448974dd4fb1d80fefe72e8a0af37809cd30d6d
"
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.
9
.tgz#
4b8aea3b069d8cb8a72cdfe28ddf5ceca695ef2f
"
integrity sha512-
gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg
==
integrity sha512-
aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w
==
"@babel/helper-remap-async-to-generator@^7.18.6":
"@babel/helper-remap-async-to-generator@^7.18.6"
, "@babel/helper-remap-async-to-generator@^7.18.9"
:
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.
6
.tgz#
fa1f81acd19daee9d73de297c0308783cd3cfc23
"
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.
9
.tgz#
997458a0e3357080e54e1d79ec347f8a8cd28519
"
integrity sha512-
z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ
==
integrity sha512-
dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA
==
dependencies:
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-environment-visitor" "^7.18.
6
"
"@babel/helper-environment-visitor" "^7.18.
9
"
"@babel/helper-wrap-function" "^7.18.
6
"
"@babel/helper-wrap-function" "^7.18.
9
"
"@babel/types" "^7.18.
6
"
"@babel/types" "^7.18.
9
"
"@babel/helper-replace-supers@^7.18.6":
"@babel/helper-replace-supers@^7.18.6"
, "@babel/helper-replace-supers@^7.18.9"
:
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.
6
.tgz#
efedf51cfccea7b7b8c0f00002ab317e7abfe420
"
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.
9
.tgz#
1092e002feca980fbbb0bd4d51b74a65c6a500e6
"
integrity sha512-
fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g
==
integrity sha512-
dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ
==
dependencies:
dependencies:
"@babel/helper-environment-visitor" "^7.18.
6
"
"@babel/helper-environment-visitor" "^7.18.
9
"
"@babel/helper-member-expression-to-functions" "^7.18.
6
"
"@babel/helper-member-expression-to-functions" "^7.18.
9
"
"@babel/helper-optimise-call-expression" "^7.18.6"
"@babel/helper-optimise-call-expression" "^7.18.6"
"@babel/traverse" "^7.18.
6
"
"@babel/traverse" "^7.18.
9
"
"@babel/types" "^7.18.
6
"
"@babel/types" "^7.18.
9
"
"@babel/helper-simple-access@^7.18.6":
"@babel/helper-simple-access@^7.18.6":
version "7.18.6"
version "7.18.6"
...
@@ -239,12 +237,12 @@
...
@@ -239,12 +237,12 @@
dependencies:
dependencies:
"@babel/types" "^7.18.6"
"@babel/types" "^7.18.6"
"@babel/helper-skip-transparent-expression-wrappers@^7.18.
6
":
"@babel/helper-skip-transparent-expression-wrappers@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.
6
.tgz#7
dff00a5320ca4cf63270e5a0eca4b268b7380d9
"
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.
9
.tgz#7
78d87b3a758d90b471e7b9918f34a9a02eb5818
"
integrity sha512-
4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIki
w==
integrity sha512-
imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVt
w==
dependencies:
dependencies:
"@babel/types" "^7.18.
6
"
"@babel/types" "^7.18.
9
"
"@babel/helper-split-export-declaration@^7.18.6":
"@babel/helper-split-export-declaration@^7.18.6":
version "7.18.6"
version "7.18.6"
...
@@ -253,6 +251,11 @@
...
@@ -253,6 +251,11 @@
dependencies:
dependencies:
"@babel/types" "^7.18.6"
"@babel/types" "^7.18.6"
"@babel/helper-string-parser@^7.18.10":
version "7.18.10"
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz#181f22d28ebe1b3857fa575f5c290b1aaf659b56"
integrity sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==
"@babel/helper-validator-identifier@^7.18.6":
"@babel/helper-validator-identifier@^7.18.6":
version "7.18.6"
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076"
...
@@ -263,24 +266,24 @@
...
@@ -263,24 +266,24 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
"@babel/helper-wrap-function@^7.18.
6
":
"@babel/helper-wrap-function@^7.18.
9
":
version "7.18.
6
"
version "7.18.
10
"
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.18.
6
.tgz#
ec44ea4ad9d8988b90c3e465ba2382f4de81a073
"
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.18.
10
.tgz#
a7fcd3ab9b1be4c9b52cf7d7fdc1e88c2ce93396
"
integrity sha512-
I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw
==
integrity sha512-
95NLBP59VWdfK2lyLKe6eTMq9xg+yWKzxzxbJ1wcYNi1Auz200+83fMDADjRxBvc2QQor5zja2yTQzXGhk2GtQ
==
dependencies:
dependencies:
"@babel/helper-function-name" "^7.18.
6
"
"@babel/helper-function-name" "^7.18.
9
"
"@babel/template" "^7.18.
6
"
"@babel/template" "^7.18.
10
"
"@babel/traverse" "^7.18.
6
"
"@babel/traverse" "^7.18.
10
"
"@babel/types" "^7.18.
6
"
"@babel/types" "^7.18.
10
"
"@babel/helpers@^7.18.
6
":
"@babel/helpers@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.
6
.tgz#4
c966140eaa1fcaa3d5a8c09d7db61077d4debfd
"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.
9
.tgz#4
bef3b893f253a1eced04516824ede94dcfe7ff9
"
integrity sha512-
vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zs
Q==
integrity sha512-
Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzEL
Q==
dependencies:
dependencies:
"@babel/template" "^7.18.6"
"@babel/template" "^7.18.6"
"@babel/traverse" "^7.18.
6
"
"@babel/traverse" "^7.18.
9
"
"@babel/types" "^7.18.
6
"
"@babel/types" "^7.18.
9
"
"@babel/highlight@^7.10.4", "@babel/highlight@^7.18.6":
"@babel/highlight@^7.10.4", "@babel/highlight@^7.18.6":
version "7.18.6"
version "7.18.6"
...
@@ -291,10 +294,10 @@
...
@@ -291,10 +294,10 @@
chalk "^2.0.0"
chalk "^2.0.0"
js-tokens "^4.0.0"
js-tokens "^4.0.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.18.
6
", "@babel/parser@^7.4.3":
"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.18.
10
", "@babel/parser@^7.4.3":
version "7.18.
6
"
version "7.18.
10
"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.
6
.tgz#
845338edecad65ebffef058d3be851f1d28a63bc
"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.
10
.tgz#
94b5f8522356e69e8277276adf67ed280c90ecc1
"
integrity sha512-
uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw
==
integrity sha512-
TYk3OA0HKL6qNryUayb5UUEhM/rkOQozIBEA5ITXh5DWrSp0TlUQXMyZmnWxG/DizSWBeeQ0Zbc5z8UGaaqoeg
==
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6":
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6":
version "7.18.6"
version "7.18.6"
...
@@ -303,23 +306,23 @@
...
@@ -303,23 +306,23 @@
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.
6
":
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.
6
.tgz#
b4e4dbc2cd1acd0133479918f7c6412961c9adb8
"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.
9
.tgz#
a11af19aa373d68d561f08e0a57242350ed0ec50
"
integrity sha512-
Udgu8ZRgrBrttVz6A0EVL0SJ1z+RLbIeqsu632SA1hf0awEppD6TvdznoH+orIF8wtFFAV/Enmw9Y+9oV8TQcw
==
integrity sha512-
AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/helper-skip-transparent-expression-wrappers" "^7.18.
6
"
"@babel/helper-skip-transparent-expression-wrappers" "^7.18.
9
"
"@babel/plugin-proposal-optional-chaining" "^7.18.
6
"
"@babel/plugin-proposal-optional-chaining" "^7.18.
9
"
"@babel/plugin-proposal-async-generator-functions@^7.18.
6
":
"@babel/plugin-proposal-async-generator-functions@^7.18.
10
":
version "7.18.
6
"
version "7.18.
10
"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.
6
.tgz#
aedac81e6fc12bb643374656dd5f2605bf743d17
"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.
10
.tgz#
85ea478c98b0095c3e4102bff3b67d306ed24952
"
integrity sha512-
WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8
w==
integrity sha512-
1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6E
w==
dependencies:
dependencies:
"@babel/helper-environment-visitor" "^7.18.
6
"
"@babel/helper-environment-visitor" "^7.18.
9
"
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/helper-remap-async-to-generator" "^7.18.
6
"
"@babel/helper-remap-async-to-generator" "^7.18.
9
"
"@babel/plugin-syntax-async-generators" "^7.8.4"
"@babel/plugin-syntax-async-generators" "^7.8.4"
"@babel/plugin-proposal-class-properties@^7.16.0", "@babel/plugin-proposal-class-properties@^7.18.6":
"@babel/plugin-proposal-class-properties@^7.16.0", "@babel/plugin-proposal-class-properties@^7.18.6":
...
@@ -340,13 +343,13 @@
...
@@ -340,13 +343,13 @@
"@babel/plugin-syntax-class-static-block" "^7.14.5"
"@babel/plugin-syntax-class-static-block" "^7.14.5"
"@babel/plugin-proposal-decorators@^7.16.4":
"@babel/plugin-proposal-decorators@^7.16.4":
version "7.18.
6
"
version "7.18.
10
"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.18.
6
.tgz#
68e9fd0f022b944f84a8824bb28bfaee724d259
5"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.18.
10
.tgz#
788650d01e518a8a722eb8b3055dd9d73ecb7a3
5"
integrity sha512-
gAdhsjaYmiZVxx5vTMiRfj31nB7LhwBJFMSLzeDxc7X4tKLixup0+k9ughn0RcpBrv9E3PBaXJW7jF5TCihAOg
==
integrity sha512-
wdGTwWF5QtpTY/gbBtQLAiCnoxfD4qMbN87NYZle1dOZ9Os8Y6zXcKrIaOU8W+TIvFUWVGG9tUgNww3CjXRVVw
==
dependencies:
dependencies:
"@babel/helper-create-class-features-plugin" "^7.18.
6
"
"@babel/helper-create-class-features-plugin" "^7.18.
9
"
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/helper-replace-supers" "^7.18.
6
"
"@babel/helper-replace-supers" "^7.18.
9
"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/plugin-syntax-decorators" "^7.18.6"
"@babel/plugin-syntax-decorators" "^7.18.6"
...
@@ -358,12 +361,12 @@
...
@@ -358,12 +361,12 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-dynamic-import" "^7.8.3"
"@babel/plugin-syntax-dynamic-import" "^7.8.3"
"@babel/plugin-proposal-export-namespace-from@^7.18.
6
":
"@babel/plugin-proposal-export-namespace-from@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.
6
.tgz#
1016f0aa5ab383bbf8b3a85a2dcaedf6c8ee7491
"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.
9
.tgz#
5f7313ab348cdb19d590145f9247540e94761203
"
integrity sha512-
zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw
==
integrity sha512-
k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
"@babel/plugin-proposal-json-strings@^7.18.6":
"@babel/plugin-proposal-json-strings@^7.18.6":
...
@@ -374,12 +377,12 @@
...
@@ -374,12 +377,12 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-json-strings" "^7.8.3"
"@babel/plugin-syntax-json-strings" "^7.8.3"
"@babel/plugin-proposal-logical-assignment-operators@^7.18.
6
":
"@babel/plugin-proposal-logical-assignment-operators@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.
6
.tgz#
3b9cac6f1ffc2aa459d111df80c12020dfc6b665
"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.
9
.tgz#
8148cbb350483bf6220af06fa6db3690e14b2e23
"
integrity sha512-
zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+
Q==
integrity sha512-
128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61
Q==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
"@babel/plugin-proposal-nullish-coalescing-operator@^7.16.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6":
"@babel/plugin-proposal-nullish-coalescing-operator@^7.16.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6":
...
@@ -398,16 +401,16 @@
...
@@ -398,16 +401,16 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
"@babel/plugin-proposal-object-rest-spread@^7.18.
6
":
"@babel/plugin-proposal-object-rest-spread@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.
6
.tgz#
ec93bba06bfb3e15ebd7da73e953d84b094d5daf
"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.
9
.tgz#
f9434f6beb2c8cae9dfcf97d2a5941bbbf9ad4e7
"
integrity sha512-
9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw
==
integrity sha512-
kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q
==
dependencies:
dependencies:
"@babel/compat-data" "^7.18.
6
"
"@babel/compat-data" "^7.18.
8
"
"@babel/helper-compilation-targets" "^7.18.
6
"
"@babel/helper-compilation-targets" "^7.18.
9
"
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
"@babel/plugin-transform-parameters" "^7.18.
6
"
"@babel/plugin-transform-parameters" "^7.18.
8
"
"@babel/plugin-proposal-optional-catch-binding@^7.18.6":
"@babel/plugin-proposal-optional-catch-binding@^7.18.6":
version "7.18.6"
version "7.18.6"
...
@@ -417,13 +420,13 @@
...
@@ -417,13 +420,13 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
"@babel/plugin-proposal-optional-chaining@^7.16.0", "@babel/plugin-proposal-optional-chaining@^7.18.
6
":
"@babel/plugin-proposal-optional-chaining@^7.16.0", "@babel/plugin-proposal-optional-chaining@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.
6
.tgz#
46d4f2ffc20e87fad1d98bc4fa5d466366f6aa0b
"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.
9
.tgz#
e8e8fe0723f2563960e4bf5e9690933691915993
"
integrity sha512-
PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA
==
integrity sha512-
v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/helper-skip-transparent-expression-wrappers" "^7.18.
6
"
"@babel/helper-skip-transparent-expression-wrappers" "^7.18.
9
"
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
"@babel/plugin-proposal-private-methods@^7.16.0", "@babel/plugin-proposal-private-methods@^7.18.6":
"@babel/plugin-proposal-private-methods@^7.16.0", "@babel/plugin-proposal-private-methods@^7.18.6":
...
@@ -622,40 +625,40 @@
...
@@ -622,40 +625,40 @@
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-block-scoping@^7.18.
6
":
"@babel/plugin-transform-block-scoping@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.
6
.tgz#
b5f78318914615397d86a731ef2cc668796a7
26
c
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.
9
.tgz#
f9b7e018ac3f373c81452d6ada8bd5a189289
26
d
"
integrity sha512-
pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ
==
integrity sha512-
5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-transform-classes@^7.18.
6
":
"@babel/plugin-transform-classes@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.
6
.tgz#
3501a8f3f4c7d5697c27a3eedbee71d68312669f
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.
9
.tgz#
90818efc5b9746879b869d5ce83eb2aa48bbc3da
"
integrity sha512-
XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ
==
integrity sha512-
EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g
==
dependencies:
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-environment-visitor" "^7.18.
6
"
"@babel/helper-environment-visitor" "^7.18.
9
"
"@babel/helper-function-name" "^7.18.
6
"
"@babel/helper-function-name" "^7.18.
9
"
"@babel/helper-optimise-call-expression" "^7.18.6"
"@babel/helper-optimise-call-expression" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/helper-replace-supers" "^7.18.
6
"
"@babel/helper-replace-supers" "^7.18.
9
"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
globals "^11.1.0"
globals "^11.1.0"
"@babel/plugin-transform-computed-properties@^7.18.
6
":
"@babel/plugin-transform-computed-properties@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.
6
.tgz#
5d15eb90e22e69604f3348344c91165c5395d032
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.
9
.tgz#
2357a8224d402dad623caf6259b611e56aec746e
"
integrity sha512-
9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A
==
integrity sha512-
+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-transform-destructuring@^7.18.
6
":
"@babel/plugin-transform-destructuring@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.
6
.tgz#
a98b0e42c7ffbf5eefcbcf33280430f230895c6f
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.
9
.tgz#
68906549c021cb231bee1db21d3b5b095f8ee292
"
integrity sha512-
tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ
==
integrity sha512-
p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4":
"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4":
version "7.18.6"
version "7.18.6"
...
@@ -665,12 +668,12 @@
...
@@ -665,12 +668,12 @@
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-duplicate-keys@^7.18.
6
":
"@babel/plugin-transform-duplicate-keys@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.
6
.tgz#
e6c94e8cd3c9dd8a88144f7b78ae22975a7ff473
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.
9
.tgz#
687f15ee3cdad6d85191eb2a372c4528eaa0ae0e
"
integrity sha512-
NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg
==
integrity sha512-
d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-transform-exponentiation-operator@^7.18.6":
"@babel/plugin-transform-exponentiation-operator@^7.18.6":
version "7.18.6"
version "7.18.6"
...
@@ -681,35 +684,35 @@
...
@@ -681,35 +684,35 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-flow-strip-types@^7.16.0":
"@babel/plugin-transform-flow-strip-types@^7.16.0":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.
6
.tgz#
6d3dd9f9c0fe13349428569fef00b31310bb3f9
f"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.
9
.tgz#
5b4cc521426263b5ce08893a2db41097ceba35b
f"
integrity sha512-
wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ
==
integrity sha512-
+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-syntax-flow" "^7.18.6"
"@babel/plugin-syntax-flow" "^7.18.6"
"@babel/plugin-transform-for-of@^7.18.
6
":
"@babel/plugin-transform-for-of@^7.18.
8
":
version "7.18.
6
"
version "7.18.
8
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.
6
.tgz#
e0fdb813be908e91ccc9ec87b30cc2eabf046f
7c"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.
8
.tgz#
6ef8a50b244eb6a0bdbad0c7c61877e4e3009
7c
1
"
integrity sha512-
WAjoMf4wIiSsy88KmG7tgj2nFdEK7E46tArVtcgED7Bkj6Fg/tG5SbvNIOKxbFS2VFgNh6+iaPswBeQZm4ox8w
==
integrity sha512-
yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-function-name@^7.18.
6
":
"@babel/plugin-transform-function-name@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.
6
.tgz#
6a7e4ae2893d336fd1b8f64c9f92276391d0f1b4
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.
9
.tgz#
cc354f8234e62968946c61a46d6365440fc764e0
"
integrity sha512-
kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA
==
integrity sha512-
WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ
==
dependencies:
dependencies:
"@babel/helper-compilation-targets" "^7.18.
6
"
"@babel/helper-compilation-targets" "^7.18.
9
"
"@babel/helper-function-name" "^7.18.
6
"
"@babel/helper-function-name" "^7.18.
9
"
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-transform-literals@^7.18.
6
":
"@babel/plugin-transform-literals@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.
6
.tgz#
9d6af353b5209df72960baf4492722d56f39a205
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.
9
.tgz#
72796fdbef80e56fba3c6a699d54f0de557444bc
"
integrity sha512-
x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q
==
integrity sha512-
IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-transform-member-expression-literals@^7.18.6":
"@babel/plugin-transform-member-expression-literals@^7.18.6":
version "7.18.6"
version "7.18.6"
...
@@ -737,14 +740,14 @@
...
@@ -737,14 +740,14 @@
"@babel/helper-simple-access" "^7.18.6"
"@babel/helper-simple-access" "^7.18.6"
babel-plugin-dynamic-import-node "^2.3.3"
babel-plugin-dynamic-import-node "^2.3.3"
"@babel/plugin-transform-modules-systemjs@^7.18.
6
":
"@babel/plugin-transform-modules-systemjs@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.
6
.tgz#
026511b7657d63bf5d4cf2fd4aeb963139914a54
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.
9
.tgz#
545df284a7ac6a05125e3e405e536c5853099a06
"
integrity sha512-
UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g
==
integrity sha512-
zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A
==
dependencies:
dependencies:
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-module-transforms" "^7.18.
6
"
"@babel/helper-module-transforms" "^7.18.
9
"
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/helper-validator-identifier" "^7.18.6"
"@babel/helper-validator-identifier" "^7.18.6"
babel-plugin-dynamic-import-node "^2.3.3"
babel-plugin-dynamic-import-node "^2.3.3"
...
@@ -779,10 +782,10 @@
...
@@ -779,10 +782,10 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-replace-supers" "^7.18.6"
"@babel/helper-replace-supers" "^7.18.6"
"@babel/plugin-transform-parameters@^7.18.
6
":
"@babel/plugin-transform-parameters@^7.18.
8
":
version "7.18.
6
"
version "7.18.
8
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.
6
.tgz#
cbe03d5a4c6385dd756034ac1baa63c04beab8dc
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.
8
.tgz#
ee9f1a0ce6d78af58d0956a9378ea3427cccb48a
"
integrity sha512-
FjdqgMv37yVl/gwvzkcB+wfjRI8HQmc5EgOG9iGNvUY1ok+TjsoaMP7IqCDZBhkFcM5f3OPVMs6Dmp03C5k4/A
==
integrity sha512-
ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
...
@@ -793,12 +796,12 @@
...
@@ -793,12 +796,12 @@
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-react-constant-elements@^7.1
4.5
":
"@babel/plugin-transform-react-constant-elements@^7.1
7.12
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.18.
6
.tgz#
e477693aad3e2aafe86b6db03748a30aef417a5e
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.18.
9
.tgz#
ff6aeedd38f57ba6b41dcf824fcc8bcedb3e783f
"
integrity sha512-
4g5H1bonF1dqgMe+wQ2fvDlRZ/mN/KwArk13teDv+xxn+pUDEiiDluQd6D2B30MJcL1u3qr0WZpfq0mw9/zSqA
==
integrity sha512-
IrTYh1I3YCEL1trjknnlLKTp5JggjzhKl/d3ibzPc97JhpFcDTr38Jdek/oX4cFbS6By0bXJcOkpRvJ5ZHK2wQ
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-transform-react-display-name@^7.16.0", "@babel/plugin-transform-react-display-name@^7.18.6":
"@babel/plugin-transform-react-display-name@^7.16.0", "@babel/plugin-transform-react-display-name@^7.18.6":
version "7.18.6"
version "7.18.6"
...
@@ -815,15 +818,15 @@
...
@@ -815,15 +818,15 @@
"@babel/plugin-transform-react-jsx" "^7.18.6"
"@babel/plugin-transform-react-jsx" "^7.18.6"
"@babel/plugin-transform-react-jsx@^7.18.6":
"@babel/plugin-transform-react-jsx@^7.18.6":
version "7.18.
6
"
version "7.18.
10
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.18.
6
.tgz#
2721e96d31df96e3b7ad48ff446995d26bc028ff
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.18.
10
.tgz#
ea47b2c4197102c196cbd10db9b3bb20daa820f1
"
integrity sha512-
Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw
==
integrity sha512-
gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A
==
dependencies:
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-syntax-jsx" "^7.18.6"
"@babel/plugin-syntax-jsx" "^7.18.6"
"@babel/types" "^7.18.
6
"
"@babel/types" "^7.18.
10
"
"@babel/plugin-transform-react-pure-annotations@^7.18.6":
"@babel/plugin-transform-react-pure-annotations@^7.18.6":
version "7.18.6"
version "7.18.6"
...
@@ -849,15 +852,15 @@
...
@@ -849,15 +852,15 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-runtime@^7.16.4":
"@babel/plugin-transform-runtime@^7.16.4":
version "7.18.
6
"
version "7.18.
10
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.
6
.tgz#
77b14416015ea93367ca06979710f5000ff34ccb
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.
10
.tgz#
37d14d1fa810a368fd635d4d1476c0154144a96f
"
integrity sha512-
8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA
==
integrity sha512-
q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ
==
dependencies:
dependencies:
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
babel-plugin-polyfill-corejs2 "^0.3.
1
"
babel-plugin-polyfill-corejs2 "^0.3.
2
"
babel-plugin-polyfill-corejs3 "^0.5.
2
"
babel-plugin-polyfill-corejs3 "^0.5.
3
"
babel-plugin-polyfill-regenerator "^0.
3.1
"
babel-plugin-polyfill-regenerator "^0.
4.0
"
semver "^6.3.0"
semver "^6.3.0"
"@babel/plugin-transform-shorthand-properties@^7.18.6":
"@babel/plugin-transform-shorthand-properties@^7.18.6":
...
@@ -867,13 +870,13 @@
...
@@ -867,13 +870,13 @@
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-spread@^7.18.
6
":
"@babel/plugin-transform-spread@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.
6
.tgz#
82b080241965f1689f0a60ecc6f1f6575dbdb9d6
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.
9
.tgz#
6ea7a6297740f381c540ac56caf75b05b74fb664
"
integrity sha512-
ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw
==
integrity sha512-
39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/helper-skip-transparent-expression-wrappers" "^7.18.
6
"
"@babel/helper-skip-transparent-expression-wrappers" "^7.18.
9
"
"@babel/plugin-transform-sticky-regex@^7.18.6":
"@babel/plugin-transform-sticky-regex@^7.18.6":
version "7.18.6"
version "7.18.6"
...
@@ -882,35 +885,35 @@
...
@@ -882,35 +885,35 @@
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-template-literals@^7.18.
6
":
"@babel/plugin-transform-template-literals@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.
6
.tgz#
b763f4dc9d11a7cce58cf9a490d82e8054
7d
b
9c2"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.
9
.tgz#
04ec6f10acdaa81846689d63fae11
7d
d
9c2
43a5e
"
integrity sha512-
UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw
==
integrity sha512-
S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-transform-typeof-symbol@^7.18.
6
":
"@babel/plugin-transform-typeof-symbol@^7.18.
9
":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.
6
.tgz#
486bb39d5a18047358e0d04dc0d2f322f0b92e92
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.
9
.tgz#
c8cea68263e45addcd6afc9091429f80925762c0
"
integrity sha512-
7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g
==
integrity sha512-
SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-transform-typescript@^7.18.6":
"@babel/plugin-transform-typescript@^7.18.6":
version "7.18.
6
"
version "7.18.
10
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.
6
.tgz#
8f4ade1a9cf253e5cf7c7c20173082c2c08a50a7
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.
10
.tgz#
b23401b32f1f079396bcaed01667a54ebe4f9f85
"
integrity sha512-
ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w
==
integrity sha512-
j2HQCJuMbi88QftIb5zlRu3c7PU+sXNnscqsrjqegoGiCgXR569pEdben9vly5QHKL2ilYkfnSwu64zsZo/VYQ
==
dependencies:
dependencies:
"@babel/helper-create-class-features-plugin" "^7.18.
6
"
"@babel/helper-create-class-features-plugin" "^7.18.
9
"
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-syntax-typescript" "^7.18.6"
"@babel/plugin-syntax-typescript" "^7.18.6"
"@babel/plugin-transform-unicode-escapes@^7.18.
6
":
"@babel/plugin-transform-unicode-escapes@^7.18.
10
":
version "7.18.
6
"
version "7.18.
10
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.
6
.tgz#
0d01fb7fb2243ae1c033f65f6e3b4be78db75f27
"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.
10
.tgz#
1ecfb0eda83d09bbcb77c09970c2dd55832aa246
"
integrity sha512-
XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw
==
integrity sha512-
kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ
==
dependencies:
dependencies:
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/plugin-transform-unicode-regex@^7.18.6":
"@babel/plugin-transform-unicode-regex@^7.18.6":
version "7.18.6"
version "7.18.6"
...
@@ -920,29 +923,29 @@
...
@@ -920,29 +923,29 @@
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.1
5.6
", "@babel/preset-env@^7.1
6.4
":
"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.1
6.4
", "@babel/preset-env@^7.1
8.2
":
version "7.18.
6
"
version "7.18.
10
"
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.18.
6
.tgz#
953422e98a5f66bc56cd0b9074eaea127ec86ace
"
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.18.
10
.tgz#
83b8dfe70d7eea1aae5a10635ab0a5fe60dfc0f4
"
integrity sha512-
WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw
==
integrity sha512-
wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA
==
dependencies:
dependencies:
"@babel/compat-data" "^7.18.
6
"
"@babel/compat-data" "^7.18.
8
"
"@babel/helper-compilation-targets" "^7.18.
6
"
"@babel/helper-compilation-targets" "^7.18.
9
"
"@babel/helper-plugin-utils" "^7.18.
6
"
"@babel/helper-plugin-utils" "^7.18.
9
"
"@babel/helper-validator-option" "^7.18.6"
"@babel/helper-validator-option" "^7.18.6"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.
6
"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.
9
"
"@babel/plugin-proposal-async-generator-functions" "^7.18.
6
"
"@babel/plugin-proposal-async-generator-functions" "^7.18.
10
"
"@babel/plugin-proposal-class-properties" "^7.18.6"
"@babel/plugin-proposal-class-properties" "^7.18.6"
"@babel/plugin-proposal-class-static-block" "^7.18.6"
"@babel/plugin-proposal-class-static-block" "^7.18.6"
"@babel/plugin-proposal-dynamic-import" "^7.18.6"
"@babel/plugin-proposal-dynamic-import" "^7.18.6"
"@babel/plugin-proposal-export-namespace-from" "^7.18.
6
"
"@babel/plugin-proposal-export-namespace-from" "^7.18.
9
"
"@babel/plugin-proposal-json-strings" "^7.18.6"
"@babel/plugin-proposal-json-strings" "^7.18.6"
"@babel/plugin-proposal-logical-assignment-operators" "^7.18.
6
"
"@babel/plugin-proposal-logical-assignment-operators" "^7.18.
9
"
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6"
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6"
"@babel/plugin-proposal-numeric-separator" "^7.18.6"
"@babel/plugin-proposal-numeric-separator" "^7.18.6"
"@babel/plugin-proposal-object-rest-spread" "^7.18.
6
"
"@babel/plugin-proposal-object-rest-spread" "^7.18.
9
"
"@babel/plugin-proposal-optional-catch-binding" "^7.18.6"
"@babel/plugin-proposal-optional-catch-binding" "^7.18.6"
"@babel/plugin-proposal-optional-chaining" "^7.18.
6
"
"@babel/plugin-proposal-optional-chaining" "^7.18.
9
"
"@babel/plugin-proposal-private-methods" "^7.18.6"
"@babel/plugin-proposal-private-methods" "^7.18.6"
"@babel/plugin-proposal-private-property-in-object" "^7.18.6"
"@babel/plugin-proposal-private-property-in-object" "^7.18.6"
"@babel/plugin-proposal-unicode-property-regex" "^7.18.6"
"@babel/plugin-proposal-unicode-property-regex" "^7.18.6"
...
@@ -964,40 +967,40 @@
...
@@ -964,40 +967,40 @@
"@babel/plugin-transform-arrow-functions" "^7.18.6"
"@babel/plugin-transform-arrow-functions" "^7.18.6"
"@babel/plugin-transform-async-to-generator" "^7.18.6"
"@babel/plugin-transform-async-to-generator" "^7.18.6"
"@babel/plugin-transform-block-scoped-functions" "^7.18.6"
"@babel/plugin-transform-block-scoped-functions" "^7.18.6"
"@babel/plugin-transform-block-scoping" "^7.18.
6
"
"@babel/plugin-transform-block-scoping" "^7.18.
9
"
"@babel/plugin-transform-classes" "^7.18.
6
"
"@babel/plugin-transform-classes" "^7.18.
9
"
"@babel/plugin-transform-computed-properties" "^7.18.
6
"
"@babel/plugin-transform-computed-properties" "^7.18.
9
"
"@babel/plugin-transform-destructuring" "^7.18.
6
"
"@babel/plugin-transform-destructuring" "^7.18.
9
"
"@babel/plugin-transform-dotall-regex" "^7.18.6"
"@babel/plugin-transform-dotall-regex" "^7.18.6"
"@babel/plugin-transform-duplicate-keys" "^7.18.
6
"
"@babel/plugin-transform-duplicate-keys" "^7.18.
9
"
"@babel/plugin-transform-exponentiation-operator" "^7.18.6"
"@babel/plugin-transform-exponentiation-operator" "^7.18.6"
"@babel/plugin-transform-for-of" "^7.18.
6
"
"@babel/plugin-transform-for-of" "^7.18.
8
"
"@babel/plugin-transform-function-name" "^7.18.
6
"
"@babel/plugin-transform-function-name" "^7.18.
9
"
"@babel/plugin-transform-literals" "^7.18.
6
"
"@babel/plugin-transform-literals" "^7.18.
9
"
"@babel/plugin-transform-member-expression-literals" "^7.18.6"
"@babel/plugin-transform-member-expression-literals" "^7.18.6"
"@babel/plugin-transform-modules-amd" "^7.18.6"
"@babel/plugin-transform-modules-amd" "^7.18.6"
"@babel/plugin-transform-modules-commonjs" "^7.18.6"
"@babel/plugin-transform-modules-commonjs" "^7.18.6"
"@babel/plugin-transform-modules-systemjs" "^7.18.
6
"
"@babel/plugin-transform-modules-systemjs" "^7.18.
9
"
"@babel/plugin-transform-modules-umd" "^7.18.6"
"@babel/plugin-transform-modules-umd" "^7.18.6"
"@babel/plugin-transform-named-capturing-groups-regex" "^7.18.6"
"@babel/plugin-transform-named-capturing-groups-regex" "^7.18.6"
"@babel/plugin-transform-new-target" "^7.18.6"
"@babel/plugin-transform-new-target" "^7.18.6"
"@babel/plugin-transform-object-super" "^7.18.6"
"@babel/plugin-transform-object-super" "^7.18.6"
"@babel/plugin-transform-parameters" "^7.18.
6
"
"@babel/plugin-transform-parameters" "^7.18.
8
"
"@babel/plugin-transform-property-literals" "^7.18.6"
"@babel/plugin-transform-property-literals" "^7.18.6"
"@babel/plugin-transform-regenerator" "^7.18.6"
"@babel/plugin-transform-regenerator" "^7.18.6"
"@babel/plugin-transform-reserved-words" "^7.18.6"
"@babel/plugin-transform-reserved-words" "^7.18.6"
"@babel/plugin-transform-shorthand-properties" "^7.18.6"
"@babel/plugin-transform-shorthand-properties" "^7.18.6"
"@babel/plugin-transform-spread" "^7.18.
6
"
"@babel/plugin-transform-spread" "^7.18.
9
"
"@babel/plugin-transform-sticky-regex" "^7.18.6"
"@babel/plugin-transform-sticky-regex" "^7.18.6"
"@babel/plugin-transform-template-literals" "^7.18.
6
"
"@babel/plugin-transform-template-literals" "^7.18.
9
"
"@babel/plugin-transform-typeof-symbol" "^7.18.
6
"
"@babel/plugin-transform-typeof-symbol" "^7.18.
9
"
"@babel/plugin-transform-unicode-escapes" "^7.18.
6
"
"@babel/plugin-transform-unicode-escapes" "^7.18.
10
"
"@babel/plugin-transform-unicode-regex" "^7.18.6"
"@babel/plugin-transform-unicode-regex" "^7.18.6"
"@babel/preset-modules" "^0.1.5"
"@babel/preset-modules" "^0.1.5"
"@babel/types" "^7.18.
6
"
"@babel/types" "^7.18.
10
"
babel-plugin-polyfill-corejs2 "^0.3.
1
"
babel-plugin-polyfill-corejs2 "^0.3.
2
"
babel-plugin-polyfill-corejs3 "^0.5.
2
"
babel-plugin-polyfill-corejs3 "^0.5.
3
"
babel-plugin-polyfill-regenerator "^0.
3.1
"
babel-plugin-polyfill-regenerator "^0.
4.0
"
core-js-compat "^3.22.1"
core-js-compat "^3.22.1"
semver "^6.3.0"
semver "^6.3.0"
...
@@ -1012,7 +1015,7 @@
...
@@ -1012,7 +1015,7 @@
"@babel/types" "^7.4.4"
"@babel/types" "^7.4.4"
esutils "^2.0.2"
esutils "^2.0.2"
"@babel/preset-react@^7.14.5", "@babel/preset-react@^7.16.0":
"@babel/preset-react@^7.14.5", "@babel/preset-react@^7.16.0"
, "@babel/preset-react@^7.17.12"
:
version "7.18.6"
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.18.6.tgz#979f76d6277048dc19094c217b507f3ad517dd2d"
resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.18.6.tgz#979f76d6277048dc19094c217b507f3ad517dd2d"
integrity sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==
integrity sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==
...
@@ -1024,7 +1027,7 @@
...
@@ -1024,7 +1027,7 @@
"@babel/plugin-transform-react-jsx-development" "^7.18.6"
"@babel/plugin-transform-react-jsx-development" "^7.18.6"
"@babel/plugin-transform-react-pure-annotations" "^7.18.6"
"@babel/plugin-transform-react-pure-annotations" "^7.18.6"
"@babel/preset-typescript@^7.14.5", "@babel/preset-typescript@^7.1
5
.0", "@babel/preset-typescript@^7.1
6.0
":
"@babel/preset-typescript@^7.14.5", "@babel/preset-typescript@^7.1
6
.0", "@babel/preset-typescript@^7.1
7.12
":
version "7.18.6"
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz#ce64be3e63eddc44240c6358daefac17b3186399"
resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz#ce64be3e63eddc44240c6358daefac17b3186399"
integrity sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==
integrity sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==
...
@@ -1034,50 +1037,51 @@
...
@@ -1034,50 +1037,51 @@
"@babel/plugin-transform-typescript" "^7.18.6"
"@babel/plugin-transform-typescript" "^7.18.6"
"@babel/runtime-corejs3@^7.10.2":
"@babel/runtime-corejs3@^7.10.2":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.18.
6
.tgz#
6f02c5536911f4b445946a2179554b95c8838635
"
resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.18.
9
.tgz#
7bacecd1cb2dd694eacd32a91fcf7021c20770ae
"
integrity sha512-
cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw
==
integrity sha512-
qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A
==
dependencies:
dependencies:
core-js-pure "^3.20.2"
core-js-pure "^3.20.2"
regenerator-runtime "^0.13.4"
regenerator-runtime "^0.13.4"
"@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.14.6", "@babel/runtime@^7.16.3", "@babel/runtime@^7.18.
3
", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4":
"@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.14.6", "@babel/runtime@^7.16.3", "@babel/runtime@^7.18.
9
", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4":
version "7.18.
6
"
version "7.18.
9
"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.
6
.tgz#
6a1ef59f838debd670421f8c7f2cbb8da9751580
"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.
9
.tgz#
b4fcfce55db3d2e5e080d2490f608a3b9f407f4a
"
integrity sha512-
t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ
==
integrity sha512-
lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw
==
dependencies:
dependencies:
regenerator-runtime "^0.13.4"
regenerator-runtime "^0.13.4"
"@babel/template@^7.18.6", "@babel/template@^7.3.3", "@babel/template@^7.4.0":
"@babel/template@^7.18.10",
"@babel/template@^7.18.6", "@babel/template@^7.3.3", "@babel/template@^7.4.0":
version "7.18.
6
"
version "7.18.
10
"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.
6
.tgz#
1283f4993e00b929d6e2d3c72fdc9168a2977a3
1"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.
10
.tgz#
6f9134835970d1dbf0835c0d100c9f38de0c5e7
1"
integrity sha512-
JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw
==
integrity sha512-
TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA
==
dependencies:
dependencies:
"@babel/code-frame" "^7.18.6"
"@babel/code-frame" "^7.18.6"
"@babel/parser" "^7.18.
6
"
"@babel/parser" "^7.18.
10
"
"@babel/types" "^7.18.
6
"
"@babel/types" "^7.18.
10
"
"@babel/traverse@^7.1
3.
0", "@babel/traverse@^7.18.
6
", "@babel/traverse@^7.4.3", "@babel/traverse@^7.7.2":
"@babel/traverse@^7.1
8.1
0", "@babel/traverse@^7.18.
9
", "@babel/traverse@^7.4.3", "@babel/traverse@^7.7.2":
version "7.18.
6
"
version "7.18.
10
"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.
6
.tgz#
a228562d2f46e89258efa4ddd0416942e2fd671d
"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.
10
.tgz#
37ad97d1cb00efa869b91dd5d1950f8a6cf0cb08
"
integrity sha512-
zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw
==
integrity sha512-
J7ycxg0/K9XCtLyHf0cz2DqDihonJeIo+z+HEdRe9YuT8TY4A66i+Ab2/xZCEW7Ro60bPCBBfqqboHSamoV3+g
==
dependencies:
dependencies:
"@babel/code-frame" "^7.18.6"
"@babel/code-frame" "^7.18.6"
"@babel/generator" "^7.18.
6
"
"@babel/generator" "^7.18.
10
"
"@babel/helper-environment-visitor" "^7.18.
6
"
"@babel/helper-environment-visitor" "^7.18.
9
"
"@babel/helper-function-name" "^7.18.
6
"
"@babel/helper-function-name" "^7.18.
9
"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/parser" "^7.18.
6
"
"@babel/parser" "^7.18.
10
"
"@babel/types" "^7.18.
6
"
"@babel/types" "^7.18.
10
"
debug "^4.1.0"
debug "^4.1.0"
globals "^11.1.0"
globals "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.1
5.6
", "@babel/types@^7.18.6", "@babel/types@^7.18.
7
", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.0", "@babel/types@^7.4.4":
"@babel/types@^7.0.0", "@babel/types@^7.1
8.10", "@babel/types@^7.18.4
", "@babel/types@^7.18.6", "@babel/types@^7.18.
9
", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.0", "@babel/types@^7.4.4":
version "7.18.
7
"
version "7.18.
10
"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.
7
.tgz#
a4a2c910c15040ea52cdd1ddb1614a65c804172
6"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.
10
.tgz#
4908e81b6b339ca7c6b7a555a5fc29446f26dde
6"
integrity sha512-
QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPS
Q==
integrity sha512-
MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsa
Q==
dependencies:
dependencies:
"@babel/helper-string-parser" "^7.18.10"
"@babel/helper-validator-identifier" "^7.18.6"
"@babel/helper-validator-identifier" "^7.18.6"
to-fast-properties "^2.0.0"
to-fast-properties "^2.0.0"
...
@@ -1147,15 +1151,15 @@
...
@@ -1147,15 +1151,15 @@
dependencies:
dependencies:
tslib "^1.10.0"
tslib "^1.10.0"
"@fluentui/react-focus@^7.18.
4
":
"@fluentui/react-focus@^7.18.
6
":
version "7.18.
4
"
version "7.18.
6
"
resolved "https://registry.yarnpkg.com/@fluentui/react-focus/-/react-focus-7.18.
4
.tgz#
481ea2619f35f3bf90c46ab91f90992f25dac548
"
resolved "https://registry.yarnpkg.com/@fluentui/react-focus/-/react-focus-7.18.
6
.tgz#
7471b53943990728f6762a73b73c9b37966137c2
"
integrity sha512-
9TqpaHHGB6QUK/SN3H4IdAnkI2T0VVLIPsC+J7tB3Zlw5G4nFYbYFL9N5b+HzkH4NCKW7ad11EHn7vafyF52+w
==
integrity sha512-
6ZwkfX0he0mPvWVjMN1FUKFq0rvgL1//n5M8ZcCNipn4aNYAdNdzlIDA/ewO6XauYA32M6BjF6sEdErL7ZKCeQ
==
dependencies:
dependencies:
"@fluentui/keyboard-key" "^0.2.12"
"@fluentui/keyboard-key" "^0.2.12"
"@uifabric/merge-styles" "^7.19.2"
"@uifabric/merge-styles" "^7.19.2"
"@uifabric/set-version" "^7.0.24"
"@uifabric/set-version" "^7.0.24"
"@uifabric/styling" "^7.2
0.2
"
"@uifabric/styling" "^7.2
1.1
"
"@uifabric/utilities" "^7.34.1"
"@uifabric/utilities" "^7.34.1"
tslib "^1.10.0"
tslib "^1.10.0"
...
@@ -1168,12 +1172,12 @@
...
@@ -1168,12 +1172,12 @@
tslib "^1.10.0"
tslib "^1.10.0"
"@fluentui/react@^7.135.0":
"@fluentui/react@^7.135.0":
version "7.1
88
.0"
version "7.1
92
.0"
resolved "https://registry.yarnpkg.com/@fluentui/react/-/react-7.1
88
.0.tgz#
39097706169d5a00a20e72a6f84d7f80a5cf1158
"
resolved "https://registry.yarnpkg.com/@fluentui/react/-/react-7.1
92
.0.tgz#
ba3296bd518190c2cee72981c8c5850af875b362
"
integrity sha512-
kkE0VEkfOZYhJIdYuDtHPXFWoLbjaNfWKV+ZHgVRVmyki+OWzblSMrKAOzoc9Sf2HmiYHAkhSMLLEDCVNK9tRA
==
integrity sha512-
E56p1rS1w6yMulNgO1iBDv2gRoKjhdFD8RSkm7ifL0qUJ5P2JeCimpq6H+wMZHBLCXGzUzjp/Y9bdRjuNxw3LQ
==
dependencies:
dependencies:
"@uifabric/set-version" "^7.0.24"
"@uifabric/set-version" "^7.0.24"
office-ui-fabric-react "^7.1
88
.0"
office-ui-fabric-react "^7.1
92
.0"
tslib "^1.10.0"
tslib "^1.10.0"
"@fluentui/theme@^1.7.6":
"@fluentui/theme@^1.7.6":
...
@@ -1526,9 +1530,9 @@
...
@@ -1526,9 +1530,9 @@
integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==
integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==
"@microsoft/load-themed-styles@^1.10.26":
"@microsoft/load-themed-styles@^1.10.26":
version "1.10.2
79
"
version "1.10.2
85
"
resolved "https://registry.yarnpkg.com/@microsoft/load-themed-styles/-/load-themed-styles-1.10.2
79
.tgz#
f6bee18a4ec8562e9165ea9a54e852f09220dc70
"
resolved "https://registry.yarnpkg.com/@microsoft/load-themed-styles/-/load-themed-styles-1.10.2
85
.tgz#
477d3895f8d6312c478a652b02518f2899111a31
"
integrity sha512-
5JvB3Jz6KVPHx5spCEIvsZsx+AbMvur/SkMqhPqYgkAOZbBvHXFHc/XW4x55E7CrImiG1o8JyTfD4hR8XUFjNg
==
integrity sha512-
Z+PdkIt+FGDL3IdnOEz3/77YBaDV51Oll3aSE/WITKWUUDrorIDTGZzqAk1sx/fdnlKo+f2wCFxXrWkq9MN0YQ
==
"@nodelib/fs.scandir@2.1.5":
"@nodelib/fs.scandir@2.1.5":
version "2.1.5"
version "2.1.5"
...
@@ -1552,9 +1556,9 @@
...
@@ -1552,9 +1556,9 @@
fastq "^1.6.0"
fastq "^1.6.0"
"@npmcli/arborist@^5.0.0", "@npmcli/arborist@^5.0.4":
"@npmcli/arborist@^5.0.0", "@npmcli/arborist@^5.0.4":
version "5.
2.3
"
version "5.
4.0
"
resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-5.
2.3
.tgz#
3cc5d7b4bcf9783c41b6beec908d3de9592b4952
"
resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-5.
4.0
.tgz#
beef01e0b47c682b74cae4c9266f5720bf1cdf0a
"
integrity sha512-
2ywCfbN3ibONJ2t9Ke0CXIHa20yJH6/e3Kta3ZNabnFjm+5Amr+rw5qL52mVQBKxEB+pfSiZDsnqwyKyyj0JTQ
==
integrity sha512-
gWDDQjoRndukgV9DLDXLqgzY2sIbUJ0D7JNgNlLuMFbei4Gm7EWYulpOyIjYxdYXM9b0L3sAniOOlOVMkMNMXA
==
dependencies:
dependencies:
"@isaacs/string-locale-compare" "^1.1.0"
"@isaacs/string-locale-compare" "^1.1.0"
"@npmcli/installed-package-contents" "^1.0.7"
"@npmcli/installed-package-contents" "^1.0.7"
...
@@ -1564,12 +1568,14 @@
...
@@ -1564,12 +1568,14 @@
"@npmcli/name-from-folder" "^1.0.1"
"@npmcli/name-from-folder" "^1.0.1"
"@npmcli/node-gyp" "^2.0.0"
"@npmcli/node-gyp" "^2.0.0"
"@npmcli/package-json" "^2.0.0"
"@npmcli/package-json" "^2.0.0"
"@npmcli/query" "^1.1.1"
"@npmcli/run-script" "^4.1.3"
"@npmcli/run-script" "^4.1.3"
bin-links "^3.0.0"
bin-links "^3.0.0"
cacache "^16.0.6"
cacache "^16.0.6"
common-ancestor-path "^1.0.1"
common-ancestor-path "^1.0.1"
json-parse-even-better-errors "^2.3.1"
json-parse-even-better-errors "^2.3.1"
json-stringify-nice "^1.1.4"
json-stringify-nice "^1.1.4"
minimatch "^5.1.0"
mkdirp "^1.0.4"
mkdirp "^1.0.4"
mkdirp-infer-owner "^2.0.0"
mkdirp-infer-owner "^2.0.0"
nopt "^5.0.0"
nopt "^5.0.0"
...
@@ -1596,10 +1602,10 @@
...
@@ -1596,10 +1602,10 @@
resolved "https://registry.yarnpkg.com/@npmcli/ci-detect/-/ci-detect-2.0.0.tgz#e63c91bcd4185ac1e85720a34fc48e164ece5b89"
resolved "https://registry.yarnpkg.com/@npmcli/ci-detect/-/ci-detect-2.0.0.tgz#e63c91bcd4185ac1e85720a34fc48e164ece5b89"
integrity sha512-8yQtQ9ArHh/TzdUDKQwEvwCgpDuhSWTDAbiKMl3854PcT+Dk4UmWaiawuFTLy9n5twzXOBXVflWe+90/ffXQrA==
integrity sha512-8yQtQ9ArHh/TzdUDKQwEvwCgpDuhSWTDAbiKMl3854PcT+Dk4UmWaiawuFTLy9n5twzXOBXVflWe+90/ffXQrA==
"@npmcli/config@^4.
1
.0":
"@npmcli/config@^4.
2
.0":
version "4.
1
.0"
version "4.
2
.0"
resolved "https://registry.yarnpkg.com/@npmcli/config/-/config-4.
1
.0.tgz#
5c92e5ded2a44baf76b94926646329c3b39e79b8
"
resolved "https://registry.yarnpkg.com/@npmcli/config/-/config-4.
2
.0.tgz#
62b5d2b9cbf93fb2bc9f7cc947f25d7659ef849f
"
integrity sha512-
cPQmIQ2Q0vuOfrenrA3isikdMFMAHgzlXV+EmvZ8f2JeJsU5xTU2bG7ipXECiMvPF9nM+QDnMLuIg8QLw9H4xg
==
integrity sha512-
imWNz5dNWb2u+y41jyxL2WB389tkhu3a01Rchn16O/ur6GrnKySgOqdNG3N/9Z+mqxdISMEGKXI/POCauzz0dA
==
dependencies:
dependencies:
"@npmcli/map-workspaces" "^2.0.2"
"@npmcli/map-workspaces" "^2.0.2"
ini "^3.0.0"
ini "^3.0.0"
...
@@ -1625,10 +1631,10 @@
...
@@ -1625,10 +1631,10 @@
"@gar/promisify" "^1.0.1"
"@gar/promisify" "^1.0.1"
semver "^7.3.5"
semver "^7.3.5"
"@npmcli/fs@^2.1.0":
"@npmcli/fs@^2.1.0"
, "@npmcli/fs@^2.1.1"
:
version "2.1.
0
"
version "2.1.
1
"
resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-2.1.
0
.tgz#
f2a21c28386e299d1a9fae8051d35ad180e33109
"
resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-2.1.
1
.tgz#
c0c480b03450d8b9fc086816a50cb682668a48bf
"
integrity sha512-
DmfBvNXGaetMxj9LTp8NAN9vEidXURrf5ZTslQzEAi/6GbW+4yjaLFQc6Tue5cpZ9Frlk4OBo/Snf1Bh/S7qTQ
==
integrity sha512-
1Q0uzx6c/NVNGszePbr5Gc2riSU1zLpNlo/1YWntH+eaPmMgBssAW0qXofCVkpdj3ce4swZtlDYQu+NKiYcptg
==
dependencies:
dependencies:
"@gar/promisify" "^1.1.3"
"@gar/promisify" "^1.1.3"
semver "^7.3.5"
semver "^7.3.5"
...
@@ -1657,9 +1663,9 @@
...
@@ -1657,9 +1663,9 @@
npm-normalize-package-bin "^1.0.1"
npm-normalize-package-bin "^1.0.1"
"@npmcli/map-workspaces@^2.0.2", "@npmcli/map-workspaces@^2.0.3":
"@npmcli/map-workspaces@^2.0.2", "@npmcli/map-workspaces@^2.0.3":
version "2.0.
3
"
version "2.0.
4
"
resolved "https://registry.yarnpkg.com/@npmcli/map-workspaces/-/map-workspaces-2.0.
3
.tgz#
2d3c75119ee53246e9aa75bc469a55281cd5f08f
"
resolved "https://registry.yarnpkg.com/@npmcli/map-workspaces/-/map-workspaces-2.0.
4
.tgz#
9e5e8ab655215a262aefabf139782b894e0504fc
"
integrity sha512-
X6suAun5QyupNM8iHkNPh0AHdRC2rb1W+MTdMvvA/2ixgmqZwlq5cGUBgmKHUHT2LgrkKJMAXbfAoTxOigpK8Q
==
integrity sha512-
bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg
==
dependencies:
dependencies:
"@npmcli/name-from-folder" "^1.0.1"
"@npmcli/name-from-folder" "^1.0.1"
glob "^8.0.1"
glob "^8.0.1"
...
@@ -1716,10 +1722,19 @@
...
@@ -1716,10 +1722,19 @@
dependencies:
dependencies:
infer-owner "^1.0.4"
infer-owner "^1.0.4"
"@npmcli/run-script@^4.1.0", "@npmcli/run-script@^4.1.3", "@npmcli/run-script@^4.1.5":
"@npmcli/query@^1.1.1":
version "4.1.5"
version "1.1.1"
resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-4.1.5.tgz#d60a7d41321612a9c0e1433797c10c19d0213d55"
resolved "https://registry.yarnpkg.com/@npmcli/query/-/query-1.1.1.tgz#462c4268473ae39e89d5fefbad94d9af7e1217c4"
integrity sha512-FyrZkZ+O0bCnQqm+mRb6sKbEJgyJudInwFN84gCcMUcxrWkR15Ags1uOHwnxHYdpj3T5eqrCZNW/Ys20MGTQ6Q==
integrity sha512-UF3I0fD94wzQ84vojMO2jDB8ibjRSTqhi8oz2mzVKiJ9gZHbeGlu9kzPvgHuGDK0Hf2cARhWtTfCDHNEwlL9hg==
dependencies:
npm-package-arg "^9.1.0"
postcss-selector-parser "^6.0.10"
semver "^7.3.7"
"@npmcli/run-script@^4.1.0", "@npmcli/run-script@^4.1.3", "@npmcli/run-script@^4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-4.2.0.tgz#2c25758f80831ba138afe25225d456e89acedac3"
integrity sha512-e/QgLg7j2wSJp1/7JRl0GC8c7PMX+uYlA/1Tb+IDOLdSM4T7K1VQ9mm9IGU3WRtY5vEIObpqCLb3aCNCug18DA==
dependencies:
dependencies:
"@npmcli/node-gyp" "^2.0.0"
"@npmcli/node-gyp" "^2.0.0"
"@npmcli/promise-spawn" "^3.0.0"
"@npmcli/promise-spawn" "^3.0.0"
...
@@ -1803,109 +1818,109 @@
...
@@ -1803,109 +1818,109 @@
magic-string "^0.25.0"
magic-string "^0.25.0"
string.prototype.matchall "^4.0.6"
string.prototype.matchall "^4.0.6"
"@svgr/babel-plugin-add-jsx-attribute@^6.
0.0
":
"@svgr/babel-plugin-add-jsx-attribute@^6.
3.1
":
version "6.
0.0
"
version "6.
3.1
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.
0.0
.tgz#b
d6d1ff32a31b82b601e73672a789cc41e84fe18
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.
3.1
.tgz#b
9a5d84902be75a05ede92e70b338d28ab63fa74
"
integrity sha512-
MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA
==
integrity sha512-
jDBKArXYO1u0B1dmd2Nf8Oy6aTF5vLDfLoO9Oon/GLkqZ/NiggYWZA+a2HpUMH4ITwNqS3z43k8LWApB8S583w
==
"@svgr/babel-plugin-remove-jsx-attribute@^6.
0.0
":
"@svgr/babel-plugin-remove-jsx-attribute@^6.
3.1
":
version "6.
0.0
"
version "6.
3.1
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.
0.0
.tgz#
58654908beebfa069681a83332544b17e5237
e8
9
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.
3.1
.tgz#
4877995452efc997b36777abe1fde9705ef78
e8
b
"
integrity sha512-
aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw
==
integrity sha512-
dQzyJ4prwjcFd929T43Z8vSYiTlTu8eafV40Z2gO7zy/SV5GT+ogxRJRBIKWomPBOiaVXFg3jY4S5hyEN3IBjQ
==
"@svgr/babel-plugin-remove-jsx-empty-expression@^6.
0.0
":
"@svgr/babel-plugin-remove-jsx-empty-expression@^6.
3.1
":
version "6.
0.0
"
version "6.
3.1
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.
0.0
.tgz#
d06dd6e8a8f603f92f9979bb9990a1f85a4f57ba
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.
3.1
.tgz#
2d67a0e92904c9be149a5b22d3a3797ce4d7b514
"
integrity sha512-
Ccj42ApsePD451AZJJf1QzTD1B/BOU392URJTeXFxSK709i0KUsGtbwyiqsKu7vsYxpTM0IA5clAKDyf9RCZy
A==
integrity sha512-
HBOUc1XwSU67fU26V5Sfb8MQsT0HvUyxru7d0oBJ4rA2s4HW3PhyAPC7fV/mdsSGpAvOdd8Wpvkjsr0fWPUO7
A==
"@svgr/babel-plugin-replace-jsx-attribute-value@^6.
0.0
":
"@svgr/babel-plugin-replace-jsx-attribute-value@^6.
3.1
":
version "6.
0.0
"
version "6.
3.1
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.
0.0
.tgz#
0b85837577b02c31c09c758a12932820f5245c
ee"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.
3.1
.tgz#
306f5247139c53af70d1778f2719647c747998
ee"
integrity sha512-
88V26WGyt1Sfd1emBYmBJRWMmgarrExpKNVmI9vVozha4kqs6FzQJ/Kp5+EYli1apgX44518/0+t9+NU36lThQ
==
integrity sha512-
C12e6aN4BXAolRrI601gPn5MDFCRHO7C4TM8Kks+rDtl8eEq+NN1sak0eAzJu363x3TmHXdZn7+Efd2nr9I5dA
==
"@svgr/babel-plugin-svg-dynamic-title@^6.
0.0
":
"@svgr/babel-plugin-svg-dynamic-title@^6.
3.1
":
version "6.
0.0
"
version "6.
3.1
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.
0.0
.tgz#
28236ec26f7ab9d486a487d36ae52d58ba15676f
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.
3.1
.tgz#
6ce26d34cbc93eb81737ef528528907c292e7aa2
"
integrity sha512-
F7YXNLfGze+xv0KMQxrl2vkNbI9kzT9oDK55/kUuymh1ACyXkMV+VZWX1zEhSTfEKh7VkHVZGmVtHg8eTZ6PRg
==
integrity sha512-
6NU55Mmh3M5u2CfCCt6TX29/pPneutrkJnnDCHbKZnjukZmmgUAZLtZ2g6ZoSPdarowaQmAiBRgAHqHmG0vuqA
==
"@svgr/babel-plugin-svg-em-dimensions@^6.
0.0
":
"@svgr/babel-plugin-svg-em-dimensions@^6.
3.1
":
version "6.
0.0
"
version "6.
3.1
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.
0.0
.tgz#
40267c5dea1b43c4f83a0eb6169e08b43d8bafce
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.
3.1
.tgz#
5ade2a724b290873c30529d1d8cd23523856287a
"
integrity sha512-
+rghFXxdIqJNLQK08kwPBD3Z22/0b2tEZ9lKiL/yTfuyj1wW8HUXu4bo/XkogATIYuXSghVQOOCwURXzHGKyZA
==
integrity sha512-
HV1NGHYTTe1vCNKlBgq/gKuCSfaRlKcHIADn7P8w8U3Zvujdw1rmusutghJ1pZJV7pDt3Gt8ws+SVrqHnBO/Qw
==
"@svgr/babel-plugin-transform-react-native-svg@^6.
0.0
":
"@svgr/babel-plugin-transform-react-native-svg@^6.
3.1
":
version "6.
0.0
"
version "6.
3.1
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.
0.0
.tgz#
eb688d0a5f539e34d268d8a516e81f5d7fede7c9
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.
3.1
.tgz#
d654f509d692c3a09dfb475757a44bd9f6ad7ddf
"
integrity sha512-
VaphyHZ+xIKv5v0K0HCzyfAaLhPGJXSk2HkpYfXIOKb7DjLBv0soHDxNv6X0vr2titsxE7klb++u7iOf7TSrFQ
==
integrity sha512-
2wZhSHvTolFNeKDAN/ZmIeSz2O9JSw72XD+o2bNp2QAaWqa8KGpn5Yk5WHso6xqfSAiRzAE+GXlsrBO4UP9LLw
==
"@svgr/babel-plugin-transform-svg-component@^6.
2.0
":
"@svgr/babel-plugin-transform-svg-component@^6.
3.1
":
version "6.
2.0
"
version "6.
3.1
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.
2.0
.tgz#
7ba61d9fc1fb42b0ba1a04e4630019fa7e993c4f
"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.
3.1
.tgz#
21a285dbffdce9567c437ebf0d081bf9210807e6
"
integrity sha512-
bhYIpsORb++wpsp91fymbFkf09Z/YEKR0DnFjxvN+8JHeCUD2unnh18jIMKnDJTWtvpTaGYPXELVe4OOzFI0xg
==
integrity sha512-
cZ8Tr6ZAWNUFfDeCKn/pGi976iWSkS8ijmEYKosP+6ktdZ7lW9HVLHojyusPw3w0j8PI4VBeWAXAmi/2G7owxw
==
"@svgr/babel-preset@^6.
2.0
":
"@svgr/babel-preset@^6.
3.1
":
version "6.
2.0
"
version "6.
3.1
"
resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-6.
2.0
.tgz#
1d3ad8c7664253a4be8e4a0f0e6872f30d8af627
"
resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-6.
3.1
.tgz#
8bd1ead79637d395e9362b01dd37cfd59702e152
"
integrity sha512-
4WQNY0J71JIaL03DRn0vLiz87JXx0b9dYm2aA8XHlQJQoixMl4r/soYHm8dsaJZ3jWtkCiOYy48dp9izvXhDkQ
==
integrity sha512-
tQtWtzuMMQ3opH7je+MpwfuRA1Hf3cKdSgTtAYwOBDfmhabP7rcTfBi3E7V3MuwJNy/Y02/7/RutvwS1W4Qv9g
==
dependencies:
dependencies:
"@svgr/babel-plugin-add-jsx-attribute" "^6.
0.0
"
"@svgr/babel-plugin-add-jsx-attribute" "^6.
3.1
"
"@svgr/babel-plugin-remove-jsx-attribute" "^6.
0.0
"
"@svgr/babel-plugin-remove-jsx-attribute" "^6.
3.1
"
"@svgr/babel-plugin-remove-jsx-empty-expression" "^6.
0.0
"
"@svgr/babel-plugin-remove-jsx-empty-expression" "^6.
3.1
"
"@svgr/babel-plugin-replace-jsx-attribute-value" "^6.
0.0
"
"@svgr/babel-plugin-replace-jsx-attribute-value" "^6.
3.1
"
"@svgr/babel-plugin-svg-dynamic-title" "^6.
0.0
"
"@svgr/babel-plugin-svg-dynamic-title" "^6.
3.1
"
"@svgr/babel-plugin-svg-em-dimensions" "^6.
0.0
"
"@svgr/babel-plugin-svg-em-dimensions" "^6.
3.1
"
"@svgr/babel-plugin-transform-react-native-svg" "^6.
0.0
"
"@svgr/babel-plugin-transform-react-native-svg" "^6.
3.1
"
"@svgr/babel-plugin-transform-svg-component" "^6.
2.0
"
"@svgr/babel-plugin-transform-svg-component" "^6.
3.1
"
"@svgr/core@^6.
2
.1":
"@svgr/core@^6.
3
.1":
version "6.
2
.1"
version "6.
3
.1"
resolved "https://registry.yarnpkg.com/@svgr/core/-/core-6.
2
.1.tgz#
195de807a9f27f9e0e0d678e01084b05c54fdf61
"
resolved "https://registry.yarnpkg.com/@svgr/core/-/core-6.
3
.1.tgz#
752adf49d8d5473b15d76ca741961de093f715bd
"
integrity sha512-
NWufjGI2WUyrg46mKuySfviEJ6IxHUOm/8a3Ph38VCWSp+83HBraCQrpEM3F3dB6LBs5x8OElS8h3C0oOJaJA
A==
integrity sha512-
Sm3/7OdXbQreemf9aO25keerZSbnKMpGEfmH90EyYpj1e8wMD4TuwJIb3THDSgRMWk1kYJfSRulELBy4gVgZU
A==
dependencies:
dependencies:
"@svgr/plugin-jsx" "^6.
2
.1"
"@svgr/plugin-jsx" "^6.
3
.1"
camelcase "^6.2.0"
camelcase "^6.2.0"
cosmiconfig "^7.0.1"
cosmiconfig "^7.0.1"
"@svgr/hast-util-to-babel-ast@^6.
2
.1":
"@svgr/hast-util-to-babel-ast@^6.
3
.1":
version "6.
2
.1"
version "6.
3
.1"
resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.
2
.1.tgz#
ae065567b74cbe745afae617053adf9a764bea25
"
resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.
3
.1.tgz#
59614e24d2a4a28010e02089213b3448d905769d
"
integrity sha512-
pt7MMkQFDlWJVy9ULJ1h+hZBDGFfSCwlBNW1HkLnVi7jUhyEXUaGYWi1x6bM2IXuAR9l265khBT4Av4lPmaNL
Q==
integrity sha512-
NgyCbiTQIwe3wHe/VWOUjyxmpUmsrBjdoIxKpXt3Nqc3TN30BpJG22OxBvVzsAh9jqep0w0/h8Ywvdk3D9niN
Q==
dependencies:
dependencies:
"@babel/types" "^7.1
5.6
"
"@babel/types" "^7.1
8.4
"
entities "^3.0
.1
"
entities "^
4.
3.0"
"@svgr/plugin-jsx@^6.
2
.1":
"@svgr/plugin-jsx@^6.
3
.1":
version "6.
2
.1"
version "6.
3
.1"
resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-6.
2
.1.tgz#
5668f1d2aa18c2f1bb7a1fc9f682d3f9aed263bd
"
resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-6.
3
.1.tgz#
de7b2de824296b836d6b874d498377896e367f50
"
integrity sha512-
u+MpjTsLaKo6r3pHeeSVsh9hmGRag2L7VzApWIaS8imNguqoUwDq/u6U/NDmYs/KAsrmtBjOEaAAPbwNGXXp1g
==
integrity sha512-
r9+0mYG3hD4nNtUgsTXWGYJomv/bNd7kC16zvsM70I/bGeoCi/3lhTmYqeN6ChWX317OtQCSZZbH4wq9WwoXbw
==
dependencies:
dependencies:
"@babel/core" "^7.1
5
.5"
"@babel/core" "^7.1
8
.5"
"@svgr/babel-preset" "^6.
2.0
"
"@svgr/babel-preset" "^6.
3.1
"
"@svgr/hast-util-to-babel-ast" "^6.
2
.1"
"@svgr/hast-util-to-babel-ast" "^6.
3
.1"
svg-parser "^2.0.
2
"
svg-parser "^2.0.
4
"
"@svgr/plugin-svgo@^6.
2.0
":
"@svgr/plugin-svgo@^6.
3.1
":
version "6.
2.0
"
version "6.
3.1
"
resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-6.
2.0
.tgz#
4cbe6a33ccccdcae4e3b63ded64cc1cbe1faf48c
"
resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-6.
3.1
.tgz#
3c1ff2efaed10e5c5d35a6cae7bacaedc18b5d4a
"
integrity sha512-
oDdMQONKOJEbuKwuy4Np6VdV6qoaLLvoY86hjvQEgU82Vx1MSWRyYms6Sl0f+NtqxLI/rDVufATbP/ev996k3Q
==
integrity sha512-
yJIjTDKPYqzFVjmsbH5EdIwEsmKxjxdXSGJVLeUgwZOZPAkNQmD1v7LDbOdOKbR44FG8465Du+zWPdbYGnbMbw
==
dependencies:
dependencies:
cosmiconfig "^7.0.1"
cosmiconfig "^7.0.1"
deepmerge "^4.2.2"
deepmerge "^4.2.2"
svgo "^2.
5
.0"
svgo "^2.
8
.0"
"@svgr/webpack@^6.1.2":
"@svgr/webpack@^6.1.2":
version "6.
2
.1"
version "6.
3
.1"
resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-6.
2
.1.tgz#
ef5d51c1b6be4e7537fb9f76b3f2b2e22b63c58d
"
resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-6.
3
.1.tgz#
001d03236ebb03bf47c0a4b92d5423e05095ebe6
"
integrity sha512-
h09ngMNd13hnePwgXa+Y5CgOjzlCvfWLHg+MBnydEedAnuLRzUHUJmGS3o2OsrhxTOOqEsPOFt5v/f6C5Qulcw
==
integrity sha512-
eODxwIUShLxSMaRjzJtrj9wg89D75JLczvWg9SaB5W+OtVTkiC1vdGd8+t+pf5fTlBOy4RRXAq7x1E3DUl3D0A
==
dependencies:
dependencies:
"@babel/core" "^7.1
5
.5"
"@babel/core" "^7.1
8
.5"
"@babel/plugin-transform-react-constant-elements" "^7.1
4.5
"
"@babel/plugin-transform-react-constant-elements" "^7.1
7.12
"
"@babel/preset-env" "^7.1
5.6
"
"@babel/preset-env" "^7.1
8.2
"
"@babel/preset-react" "^7.1
4.5
"
"@babel/preset-react" "^7.1
7.12
"
"@babel/preset-typescript" "^7.1
5.0
"
"@babel/preset-typescript" "^7.1
7.12
"
"@svgr/core" "^6.
2
.1"
"@svgr/core" "^6.
3
.1"
"@svgr/plugin-jsx" "^6.
2
.1"
"@svgr/plugin-jsx" "^6.
3
.1"
"@svgr/plugin-svgo" "^6.
2.0
"
"@svgr/plugin-svgo" "^6.
3.1
"
"@tootallnate/once@1":
"@tootallnate/once@1":
version "1.1.2"
version "1.1.2"
...
@@ -2212,9 +2227,9 @@
...
@@ -2212,9 +2227,9 @@
"@types/json-schema" "*"
"@types/json-schema" "*"
"@types/estree@*":
"@types/estree@*":
version "
0
.0.
52
"
version "
1
.0.
0
"
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-
0
.0.
52
.tgz#
7f1f57ad5b741f3d5b210d3b1f145640d89bf8fe
"
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-
1
.0.
0
.tgz#
5fb2e536c1ae9bf35366eed879e827fa59ca41c2
"
integrity sha512-
BZWrtCU0bMVAIliIV+HJO1f1PR41M7NKjfxrFJwwhKI1KwhwOxYw1SXg9ao+CIMt774nFuGiG6eU+udtbEI9o
Q==
integrity sha512-
WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJI
Q==
"@types/estree@0.0.39":
"@types/estree@0.0.39":
version "0.0.39"
version "0.0.39"
...
@@ -2227,9 +2242,9 @@
...
@@ -2227,9 +2242,9 @@
integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==
integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==
"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.18":
"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.18":
version "4.17.
29
"
version "4.17.
30
"
resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.
29
.tgz#
2a1795ea8e9e9c91b4a4bbe475034b20c1ec711c
"
resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.
30
.tgz#
0f2f99617fa8f9696170c46152ccf7500b34ac04
"
integrity sha512-
uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7
Q==
integrity sha512-
gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVO
Q==
dependencies:
dependencies:
"@types/node" "*"
"@types/node" "*"
"@types/qs" "*"
"@types/qs" "*"
...
@@ -2246,9 +2261,9 @@
...
@@ -2246,9 +2261,9 @@
"@types/serve-static" "*"
"@types/serve-static" "*"
"@types/geojson@*":
"@types/geojson@*":
version "7946.0.
8
"
version "7946.0.
10
"
resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.
8
.tgz#
30744afdb385e2945e22f3b033f897f76b1f12ca
"
resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.
10
.tgz#
6dfbf5ea17142f7f9a043809f1cd4c448cb68249
"
integrity sha512-
1rkryxURpr6aWP7R786/UQOkJ3PcpQiWkAXBmdWc7ryFWqN6a4xfK7BtjXvFBKO9LjQ+MWQSWxYeZX1OApnAr
A==
integrity sha512-
Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLV
A==
"@types/graceful-fs@^4.1.2":
"@types/graceful-fs@^4.1.2":
version "4.1.5"
version "4.1.5"
...
@@ -2313,10 +2328,10 @@
...
@@ -2313,10 +2328,10 @@
dependencies:
dependencies:
"@types/unist" "*"
"@types/unist" "*"
"@types/mime@
^1
":
"@types/mime@
*
":
version "
1.3.2
"
version "
3.0.0
"
resolved "https://registry.yarnpkg.com/@types/mime/-/mime-
1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a
"
resolved "https://registry.yarnpkg.com/@types/mime/-/mime-
3.0.0.tgz#e9a9903894405c6a6551f1774df4e64d9804d69c
"
integrity sha512-
YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxT
w==
integrity sha512-
fccbsHKqFDXClBZTDLA43zl0+TbxyIwyzIzwwhvoJvhNjOErCdeX2xJbURimv2EbSVUGav001PaCJg4mZxMl4
w==
"@types/minimist@^1.2.0":
"@types/minimist@^1.2.0":
version "1.2.2"
version "1.2.2"
...
@@ -2324,9 +2339,9 @@
...
@@ -2324,9 +2339,9 @@
integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==
integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==
"@types/node@*":
"@types/node@*":
version "18.
0
.3"
version "18.
6
.3"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.
0
.3.tgz#4
63fc47f13ec0688a33aec75d078a0541a447199
"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.
6
.3.tgz#4
e4a95b6fe44014563ceb514b2598b3e623d1c98
"
integrity sha512-
HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ
==
integrity sha512-
6qKpDtoaYLM+5+AFChLhHermMQxc3TOEFIDzrZLPRGHPrLEwqFkkT5Kx3ju05g6X7uDPazz3jHbKPX0KzCjntg
==
"@types/node@^15.12.2":
"@types/node@^15.12.2":
version "15.14.9"
version "15.14.9"
...
@@ -2344,9 +2359,9 @@
...
@@ -2344,9 +2359,9 @@
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
"@types/prettier@^2.1.5":
"@types/prettier@^2.1.5":
version "2.6.
3
"
version "2.6.
4
"
resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.
3
.tgz#
68ada76827b0010d0db071f739314fa429943d0a
"
resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.
4
.tgz#
ad899dad022bab6b5a9f0a0fe67c2f7a4a8950ed
"
integrity sha512-
ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg
==
integrity sha512-
fOwvpvQYStpb/zHMx0Cauwywu9yLDmzWiiQBC7gJyq5tYLUXFZvDG7VK1B7WBxxjBJNKFOZ0zLoOQn8vmATbhw
==
"@types/prop-types@*":
"@types/prop-types@*":
version "15.7.5"
version "15.7.5"
...
@@ -2371,9 +2386,9 @@
...
@@ -2371,9 +2386,9 @@
"@types/react" "^16"
"@types/react" "^16"
"@types/react@^15.x || ^16.x", "@types/react@^16", "@types/react@^16.8.15":
"@types/react@^15.x || ^16.x", "@types/react@^16", "@types/react@^16.8.15":
version "16.14.2
8
"
version "16.14.2
9
"
resolved "https://registry.yarnpkg.com/@types/react/-/react-16.14.2
8
.tgz#
073258f3fe7bb80c748842c1f93aeaafe16dffad
"
resolved "https://registry.yarnpkg.com/@types/react/-/react-16.14.2
9
.tgz#
8489c633afc629736ef221bdd3528bdbd1e67e4b
"
integrity sha512-
83zBE6+XUVXsdL3iFzOyUewdauaU+KviKCHEGOgSW52coAuqW7tEKQM0E9+ZC0Zk6TELQ2/JgogPvp7FavzFwg
==
integrity sha512-
I5IwEaefGZbpmmK1J7zHwZe3JkGxcRkc5WJUDWmNySVVovueViRTEUWV7spTvpe96l3nbKD/K6+GxoN69CYb/w
==
dependencies:
dependencies:
"@types/prop-types" "*"
"@types/prop-types" "*"
"@types/scheduler" "*"
"@types/scheduler" "*"
...
@@ -2404,11 +2419,11 @@
...
@@ -2404,11 +2419,11 @@
"@types/express" "*"
"@types/express" "*"
"@types/serve-static@*", "@types/serve-static@^1.13.10":
"@types/serve-static@*", "@types/serve-static@^1.13.10":
version "1.1
3.1
0"
version "1.1
5.
0"
resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.1
3.1
0.tgz#
f5e0ce8797d2d7cc5ebeda48a52c96c4fa47a8d9
"
resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.1
5.
0.tgz#
c7930ff61afb334e121a9da780aac0d9b8f34155
"
integrity sha512-
nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ
==
integrity sha512-
z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg
==
dependencies:
dependencies:
"@types/mime" "
^1
"
"@types/mime" "
*
"
"@types/node" "*"
"@types/node" "*"
"@types/sockjs@^0.3.33":
"@types/sockjs@^0.3.33":
...
@@ -2465,13 +2480,13 @@
...
@@ -2465,13 +2480,13 @@
"@types/yargs-parser" "*"
"@types/yargs-parser" "*"
"@typescript-eslint/eslint-plugin@^5.8.0":
"@typescript-eslint/eslint-plugin@^5.8.0":
version "5.3
0.5
"
version "5.3
2.0
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.3
0.5
.tgz#e
9a0afd6eb3b1d663db91cf1e7bc7584d394503d
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.3
2.0
.tgz#e
27e38cffa4a61226327c874a7be965e9a861624
"
integrity sha512-
lftkqRoBvc28VFXEoRgyZuztyVUQ04JvUnATSPtIRFAccbXTWL6DEtXGYMcbg998kXw1NLUJm7rTQ9eUt+q6Ig
==
integrity sha512-
CHLuz5Uz7bHP2WgVlvoZGhf0BvFakBJKAD/43Ty0emn4wXWv5k01ND0C0fHcl/Im8Td2y/7h44E9pca9qAu2ew
==
dependencies:
dependencies:
"@typescript-eslint/scope-manager" "5.3
0.5
"
"@typescript-eslint/scope-manager" "5.3
2.0
"
"@typescript-eslint/type-utils" "5.3
0.5
"
"@typescript-eslint/type-utils" "5.3
2.0
"
"@typescript-eslint/utils" "5.3
0.5
"
"@typescript-eslint/utils" "5.3
2.0
"
debug "^4.3.4"
debug "^4.3.4"
functional-red-black-tree "^1.0.1"
functional-red-black-tree "^1.0.1"
ignore "^5.2.0"
ignore "^5.2.0"
...
@@ -2480,88 +2495,88 @@
...
@@ -2480,88 +2495,88 @@
tsutils "^3.21.0"
tsutils "^3.21.0"
"@typescript-eslint/parser@^5.8.0":
"@typescript-eslint/parser@^5.8.0":
version "5.3
0.5
"
version "5.3
2.0
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.3
0.5
.tgz#
f667c34e4e4c299d98281246c9b1e68c03a92522
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.3
2.0
.tgz#
1de243443bc6186fb153b9e395b842e46877ca5d
"
integrity sha512-
zj251pcPXI8GO9NDKWWmygP6+UjwWmrdf9qMW/L/uQJBM/0XbU2inxe5io/234y/RCvwpKEYjZ6c1YrXERkK4Q
==
integrity sha512-
IxRtsehdGV9GFQ35IGm5oKKR2OGcazUoiNBxhRV160iF9FoyuXxjY+rIqs1gfnd+4eL98OjeGnMpE7RF/NBb3A
==
dependencies:
dependencies:
"@typescript-eslint/scope-manager" "5.3
0.5
"
"@typescript-eslint/scope-manager" "5.3
2.0
"
"@typescript-eslint/types" "5.3
0.5
"
"@typescript-eslint/types" "5.3
2.0
"
"@typescript-eslint/typescript-estree" "5.3
0.5
"
"@typescript-eslint/typescript-estree" "5.3
2.0
"
debug "^4.3.4"
debug "^4.3.4"
"@typescript-eslint/scope-manager@5.3
0.5
":
"@typescript-eslint/scope-manager@5.3
2.0
":
version "5.3
0.5
"
version "5.3
2.0
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.3
0.5
.tgz#7
f90b9d6800552c856a5f3644f5e55dd1469d964
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.3
2.0
.tgz#7
63386e963a8def470580cc36cf9228864190b95
"
integrity sha512-
NJ6F+YHHFT/30isRe2UTmIGGAiXKckCyMnIV58cE3JkHmaD6e5zyEYm5hBDv0Wbin+IC0T1FWJpD3YqHUG/Yd
g==
integrity sha512-
KyAE+tUON0D7tNz92p1uetRqVJiiAkeluvwvZOqBmW9z2XApmk5WSMV9FrzOroAcVxJZB3GfUwVKr98Dr/OjO
g==
dependencies:
dependencies:
"@typescript-eslint/types" "5.3
0.5
"
"@typescript-eslint/types" "5.3
2.0
"
"@typescript-eslint/visitor-keys" "5.3
0.5
"
"@typescript-eslint/visitor-keys" "5.3
2.0
"
"@typescript-eslint/type-utils@5.3
0.5
":
"@typescript-eslint/type-utils@5.3
2.0
":
version "5.3
0.5
"
version "5.3
2.0
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.3
0.5
.tgz#
7a9656f3
60b4
b1daea635c4621dab053d08bf8a
9"
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.3
2.0
.tgz#
45a14506fe3fb908
60
0
b4
cef2f70778f7b5cdc7
9"
integrity sha512-
k9+ejlv1GgwN1nN7XjVtyCgE0BTzhzT1YsQF0rv4Vfj2U9xnslBgMYYvcEYAFVdvhuEscELJsB7lDkN7WusErw
==
integrity sha512-
0gSsIhFDduBz3QcHJIp3qRCvVYbqzHg8D6bHFsDMrm0rURYDj+skBK2zmYebdCp+4nrd9VWd13egvhYFJj/wZg
==
dependencies:
dependencies:
"@typescript-eslint/utils" "5.3
0.5
"
"@typescript-eslint/utils" "5.3
2.0
"
debug "^4.3.4"
debug "^4.3.4"
tsutils "^3.21.0"
tsutils "^3.21.0"
"@typescript-eslint/types@5.3
0.5
":
"@typescript-eslint/types@5.3
2.0
":
version "5.3
0.5
"
version "5.3
2.0
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.3
0.5
.tgz#
36a0c05a72af3623cdf9ee8b81ea743b7de75a9
8"
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.3
2.0
.tgz#
484273021eeeae87ddb288f39586ef5efeb6dcd
8"
integrity sha512-
kZ80w/M2AvsbRvOr3PjaNh6qEW1LFqs2pLdo2s5R38B2HYXG8Z0PP48/4+j1QHJFL3ssHIbJ4odPRS8PlHrFfw
==
integrity sha512-
EBUKs68DOcT/EjGfzywp+f8wG9Zw6gj6BjWu7KV/IYllqKJFPlZlLSYw/PTvVyiRw50t6wVbgv4p9uE2h6sZrQ
==
"@typescript-eslint/typescript-estree@5.3
0.5
":
"@typescript-eslint/typescript-estree@5.3
2.0
":
version "5.3
0.5
"
version "5.3
2.0
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.3
0.5
.tgz#
c520e4eba20551c4ec76af8d344a42eb6c9767bb
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.3
2.0
.tgz#
282943f34babf07a4afa7b0ff347a8e7b6030d12
"
integrity sha512-
qGTc7QZC801kbYjAr4AgdOfnokpwStqyhSbiQvqGBLixniAKyH+ib2qXIVo4P9NgGzwyfD9I0nlJN7D91E1VpQ
==
integrity sha512-
ZVAUkvPk3ITGtCLU5J4atCw9RTxK+SRc6hXqLtllC2sGSeMFWN+YwbiJR9CFrSFJ3w4SJfcWtDwNb/DmUIHdhg
==
dependencies:
dependencies:
"@typescript-eslint/types" "5.3
0.5
"
"@typescript-eslint/types" "5.3
2.0
"
"@typescript-eslint/visitor-keys" "5.3
0.5
"
"@typescript-eslint/visitor-keys" "5.3
2.0
"
debug "^4.3.4"
debug "^4.3.4"
globby "^11.1.0"
globby "^11.1.0"
is-glob "^4.0.3"
is-glob "^4.0.3"
semver "^7.3.7"
semver "^7.3.7"
tsutils "^3.21.0"
tsutils "^3.21.0"
"@typescript-eslint/utils@5.3
0.5
":
"@typescript-eslint/utils@5.3
2.0
":
version "5.3
0.5
"
version "5.3
2.0
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.3
0.5
.tgz#
3999cbd06baad31b9e60d084f20714d1b2776765
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.3
2.0
.tgz#
eccb6b672b94516f1afc6508d05173c45924840c
"
integrity sha512-
o4SSUH9IkuA7AYIfAvatldovurqTAHrfzPApOZvdUq01hHojZojCFXx06D/aFpKCgWbMPRdJBWAC3sWp3itwTA
==
integrity sha512-
W7lYIAI5Zlc5K082dGR27Fczjb3Q57ECcXefKU/f0ajM5ToM0P+N9NmJWip8GmGu/g6QISNT+K6KYB+iSHjXCQ
==
dependencies:
dependencies:
"@types/json-schema" "^7.0.9"
"@types/json-schema" "^7.0.9"
"@typescript-eslint/scope-manager" "5.3
0.5
"
"@typescript-eslint/scope-manager" "5.3
2.0
"
"@typescript-eslint/types" "5.3
0.5
"
"@typescript-eslint/types" "5.3
2.0
"
"@typescript-eslint/typescript-estree" "5.3
0.5
"
"@typescript-eslint/typescript-estree" "5.3
2.0
"
eslint-scope "^5.1.1"
eslint-scope "^5.1.1"
eslint-utils "^3.0.0"
eslint-utils "^3.0.0"
"@typescript-eslint/visitor-keys@5.3
0.5
":
"@typescript-eslint/visitor-keys@5.3
2.0
":
version "5.3
0.5
"
version "5.3
2.0
"
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.3
0.5
.tgz#
d4bb969202019d5d5d849a0aaedc7370cc044b1
4"
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.3
2.0
.tgz#
b9715d0b11fdb5dd10fd0c42ff1398747052539
4"
integrity sha512-
D+xtGo9HUMELzWIUqcQc0p2PO4NyvTrgIOK/VnSH083+8sq0tiLozNRKuLarwHYGRuA6TVBQSuuLwJUDWd3aaA
==
integrity sha512-
S54xOHZgfThiZ38/ZGTgB2rqx51CMJ5MCfVT2IplK4Q7hgzGfe0nLzLCcenDnc/cSjP568hdeKfeDcBgqNHD/g
==
dependencies:
dependencies:
"@typescript-eslint/types" "5.3
0.5
"
"@typescript-eslint/types" "5.3
2.0
"
eslint-visitor-keys "^3.3.0"
eslint-visitor-keys "^3.3.0"
"@uifabric/foundation@^7.10.
3
":
"@uifabric/foundation@^7.10.
5
":
version "7.10.
3
"
version "7.10.
5
"
resolved "https://registry.yarnpkg.com/@uifabric/foundation/-/foundation-7.10.
3
.tgz#
3f59e3514264de46c7ceb7ead1159ec67dc81638
"
resolved "https://registry.yarnpkg.com/@uifabric/foundation/-/foundation-7.10.
5
.tgz#
f7adea7261eb19b8f4f59480aae4ccf6c5fc02bf
"
integrity sha512-
ZP1tISpinWZHxQunqUwMWs2imX7/osOYgokSZhWzcAWMCC3TOwiU5w7oAXcKsIpMkPxI13ivac5S66qDad+Iw
A==
integrity sha512-
g++S8pWwLb6jhiOC0EhGD9s6lN8uCaeDdjyiGt7Ox11RRaZwvWI0opLdgubt6ANT7AjoXeUrPf1aqrEw3PzWo
A==
dependencies:
dependencies:
"@uifabric/merge-styles" "^7.19.2"
"@uifabric/merge-styles" "^7.19.2"
"@uifabric/set-version" "^7.0.24"
"@uifabric/set-version" "^7.0.24"
"@uifabric/styling" "^7.2
0.2
"
"@uifabric/styling" "^7.2
1.1
"
"@uifabric/utilities" "^7.34.1"
"@uifabric/utilities" "^7.34.1"
tslib "^1.10.0"
tslib "^1.10.0"
"@uifabric/icons@^7.7.
2
":
"@uifabric/icons@^7.7.
4
":
version "7.7.
2
"
version "7.7.
4
"
resolved "https://registry.yarnpkg.com/@uifabric/icons/-/icons-7.7.
2
.tgz#
28df7751df74b791230330e446362195b3a8dd41
"
resolved "https://registry.yarnpkg.com/@uifabric/icons/-/icons-7.7.
4
.tgz#
3cf9abbfee66810f70abe5d16c7dd7585254a0d3
"
integrity sha512-
3f223BZ5TXTF37J7lG+saGBY7U8vAi5HyMP58ccIoUafOj5551h5sovPFD/hVIYzYFhvT+/VpbUzF3vw+RARHA
==
integrity sha512-
eJa4mqLawuKM8NNpScLD/eQRfXFP9ut3RinKQrNAc9q/zAbj1tYRbJhzZykl1X1WIh4OZOOlJ9YDwGax/RP8sg
==
dependencies:
dependencies:
"@uifabric/set-version" "^7.0.24"
"@uifabric/set-version" "^7.0.24"
"@uifabric/styling" "^7.2
0.2
"
"@uifabric/styling" "^7.2
1.1
"
"@uifabric/utilities" "^7.34.1"
"@uifabric/utilities" "^7.34.1"
tslib "^1.10.0"
tslib "^1.10.0"
...
@@ -2573,10 +2588,10 @@
...
@@ -2573,10 +2588,10 @@
"@uifabric/set-version" "^7.0.24"
"@uifabric/set-version" "^7.0.24"
tslib "^1.10.0"
tslib "^1.10.0"
"@uifabric/react-hooks@^7.1
4.2
":
"@uifabric/react-hooks@^7.1
5.0
":
version "7.1
4.2
"
version "7.1
5.0
"
resolved "https://registry.yarnpkg.com/@uifabric/react-hooks/-/react-hooks-7.1
4.2
.tgz#
a33748d7b7f36a67bc7932472cc7d7640e180d9d
"
resolved "https://registry.yarnpkg.com/@uifabric/react-hooks/-/react-hooks-7.1
5.0
.tgz#
5dd45eea5fa06cb9fb89f5893d304bcf06d98db1
"
integrity sha512-
7KCHxXoZhdVDfPY+ZF7+FGh7sD5naDyDE2uOos+kaRg10iuOhz/9QPLsZAIqMDpDS/l5G5DGv4EAgBaiEZbs6Q
==
integrity sha512-
+JE/KplHRyf68mpDdQk8zewmdF95n0ZN6wUz4MKJWOS/y9rjhar7T4poXyHJL6LrB3vQeRp5Z2+s9Puhn8CVIA
==
dependencies:
dependencies:
"@fluentui/react-window-provider" "^1.0.3"
"@fluentui/react-window-provider" "^1.0.3"
"@uifabric/set-version" "^7.0.24"
"@uifabric/set-version" "^7.0.24"
...
@@ -2590,10 +2605,10 @@
...
@@ -2590,10 +2605,10 @@
dependencies:
dependencies:
tslib "^1.10.0"
tslib "^1.10.0"
"@uifabric/styling@^7.2
0.2
":
"@uifabric/styling@^7.2
1.1
":
version "7.2
0.2
"
version "7.2
1.1
"
resolved "https://registry.yarnpkg.com/@uifabric/styling/-/styling-7.2
0.2
.tgz#
33d1c9e8f55b4a42147c06c576e9b080849a33e5
"
resolved "https://registry.yarnpkg.com/@uifabric/styling/-/styling-7.2
1.1
.tgz#
dc43bc0560d3b7dd1043e29764b818a6718b7383
"
integrity sha512-
FiGdeTsfJAs8qrqU2aLx70C2MT8YsjraMzr0HSiXKFQ2/LM4hwAYpbC41NIHzUemm63uA8NJRLHJlSv3S7V2SQ
==
integrity sha512-
5HX5amh8mDRDrP5pdMOYaB/f3KH0m4ZX+cMfU6jj3jREx7jor6ok5J1Vr7zBY+MnUA2soQREJyZvpibT2YeVlg
==
dependencies:
dependencies:
"@fluentui/theme" "^1.7.6"
"@fluentui/theme" "^1.7.6"
"@microsoft/load-themed-styles" "^1.10.26"
"@microsoft/load-themed-styles" "^1.10.26"
...
@@ -2798,10 +2813,10 @@ acorn-walk@^7.1.1:
...
@@ -2798,10 +2813,10 @@ acorn-walk@^7.1.1:
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
acorn@>=8.4.0, acorn@^6.0.1, acorn@^6.0.4, acorn@^7.1.1, acorn@^7.4.0, acorn@^8.2.4, acorn@^8.
4.1
, acorn@^8.
5.0
:
acorn@>=8.4.0, acorn@^6.0.1, acorn@^6.0.4, acorn@^7.1.1, acorn@^7.4.0, acorn@^8.2.4, acorn@^8.
5.0
, acorn@^8.
7.1
:
version "8.
7.1
"
version "8.
8.0
"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.
7.1
.tgz#
0197122c843d1bf6d0a5e83220a788f278f63c30
"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.
8.0
.tgz#
88c0187620435c7f6015803f5539dae05a9dbea8
"
integrity sha512-
Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A
==
integrity sha512-
QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w
==
address@1.1.2:
address@1.1.2:
version "1.1.2"
version "1.1.2"
...
@@ -2952,9 +2967,9 @@ are-we-there-yet@^2.0.0:
...
@@ -2952,9 +2967,9 @@ are-we-there-yet@^2.0.0:
readable-stream "^3.6.0"
readable-stream "^3.6.0"
are-we-there-yet@^3.0.0:
are-we-there-yet@^3.0.0:
version "3.0.
0
"
version "3.0.
1
"
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.
0
.tgz#
ba20bd6b553e31d62fc8c31bd23d22b95734390
d"
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.
1
.tgz#
679df222b278c64f2cdba1175cdc00b0d96164b
d"
integrity sha512-
0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw
==
integrity sha512-
QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg
==
dependencies:
dependencies:
delegates "^1.0.0"
delegates "^1.0.0"
readable-stream "^3.6.0"
readable-stream "^3.6.0"
...
@@ -3146,10 +3161,10 @@ aws4@^1.8.0:
...
@@ -3146,10 +3161,10 @@ aws4@^1.8.0:
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59"
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59"
integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==
integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==
axe-core@^4.4.
2
:
axe-core@^4.4.
3
:
version "4.4.
2
"
version "4.4.
3
"
resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.
2
.tgz#
dcf7fb6dea866166c3eab33d68208afe4d5f670c
"
resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.
3
.tgz#
11c74d23d5013c0fa5d183796729bc3482bd2f6f
"
integrity sha512-
LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA
==
integrity sha512-
32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w
==
axios@^0.21.2:
axios@^0.21.2:
version "0.21.4"
version "0.21.4"
...
@@ -3239,29 +3254,29 @@ babel-plugin-named-asset-import@^0.3.2:
...
@@ -3239,29 +3254,29 @@ babel-plugin-named-asset-import@^0.3.2:
resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz#6b7fa43c59229685368683c28bc9734f24524cc2"
resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz#6b7fa43c59229685368683c28bc9734f24524cc2"
integrity sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==
integrity sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==
babel-plugin-polyfill-corejs2@^0.3.
1
:
babel-plugin-polyfill-corejs2@^0.3.
2
:
version "0.3.
1
"
version "0.3.
2
"
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.
1
.tgz#
440f1b70ccfaabc6b676d196239b138f8a2cfba5
"
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.
2
.tgz#
e4c31d4c89b56f3cf85b92558954c66b54bd972d
"
integrity sha512-
v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w
==
integrity sha512-
LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q
==
dependencies:
dependencies:
"@babel/compat-data" "^7.1
3.11
"
"@babel/compat-data" "^7.1
7.7
"
"@babel/helper-define-polyfill-provider" "^0.3.
1
"
"@babel/helper-define-polyfill-provider" "^0.3.
2
"
semver "^6.1.1"
semver "^6.1.1"
babel-plugin-polyfill-corejs3@^0.5.
2
:
babel-plugin-polyfill-corejs3@^0.5.
3
:
version "0.5.
2
"
version "0.5.
3
"
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.
2
.tgz#
aabe4b2fa04a6e038b688c5e55d44e78cd3a5f72
"
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.
3
.tgz#
d7e09c9a899079d71a8b670c6181af56ec19c5c7
"
integrity sha512-
G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ
==
integrity sha512-
zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw
==
dependencies:
dependencies:
"@babel/helper-define-polyfill-provider" "^0.3.
1
"
"@babel/helper-define-polyfill-provider" "^0.3.
2
"
core-js-compat "^3.21.0"
core-js-compat "^3.21.0"
babel-plugin-polyfill-regenerator@^0.
3.1
:
babel-plugin-polyfill-regenerator@^0.
4.0
:
version "0.
3.1
"
version "0.
4.0
"
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.
3.1
.tgz#
2c0678ea47c75c8cc2fbb1852278d8fb68233990
"
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.
4.0
.tgz#
8f51809b6d5883e07e71548d75966ff7635527fe
"
integrity sha512-
Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A
==
integrity sha512-
RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw
==
dependencies:
dependencies:
"@babel/helper-define-polyfill-provider" "^0.3.
1
"
"@babel/helper-define-polyfill-provider" "^0.3.
2
"
babel-plugin-transform-react-remove-prop-types@^0.4.24:
babel-plugin-transform-react-remove-prop-types@^0.4.24:
version "0.4.24"
version "0.4.24"
...
@@ -3474,15 +3489,15 @@ browser-process-hrtime@^1.0.0:
...
@@ -3474,15 +3489,15 @@ browser-process-hrtime@^1.0.0:
resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
browserslist@4.14.2, browserslist@>=4.16.6, browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.14.5, browserslist@^4.16.6, browserslist@^4.20.2, browserslist@^4.20.3, browserslist@^4.21.
0
, browserslist@^4.6.4:
browserslist@4.14.2, browserslist@>=4.16.6, browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.14.5, browserslist@^4.16.6, browserslist@^4.20.2, browserslist@^4.20.3, browserslist@^4.21.
3
, browserslist@^4.6.4:
version "4.21.
1
"
version "4.21.
3
"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.
1
.tgz#
c9b9b0a54c7607e8dc3e01a0d311727188011a00
"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.
3
.tgz#
5df277694eb3c48bc5c4b05af3e8b7e09c5a6d1a
"
integrity sha512-
Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8Odfj
Q==
integrity sha512-
898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fW
Q==
dependencies:
dependencies:
caniuse-lite "^1.0.300013
59
"
caniuse-lite "^1.0.300013
70
"
electron-to-chromium "^1.4.
17
2"
electron-to-chromium "^1.4.
20
2"
node-releases "^2.0.
5
"
node-releases "^2.0.
6
"
update-browserslist-db "^1.0.
4
"
update-browserslist-db "^1.0.
5
"
bser@2.1.1:
bser@2.1.1:
version "2.1.1"
version "2.1.1"
...
@@ -3631,10 +3646,10 @@ caniuse-api@^3.0.0:
...
@@ -3631,10 +3646,10 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2"
lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0"
lodash.uniq "^4.5.0"
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.300013
59
:
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.300013
70
:
version "1.0.300013
6
3"
version "1.0.300013
7
3"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.300013
6
3.tgz#2
6bec2d606924ba318235944e1193304ea7c4f15
"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.300013
7
3.tgz#2
dc3bc3bfcb5d5a929bec11300883040d7b4b4be
"
integrity sha512-
HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg
==
integrity sha512-
pJYArGHrPp3TUqQzFYRmP/lwJlj8RCbVe3Gd3eJQkAV8SAC6b19XS9BjMvRdvaS8RMkaTN8ZhoHP6S1y8zzwEQ
==
capture-exit@^2.0.0:
capture-exit@^2.0.0:
version "2.0.0"
version "2.0.0"
...
@@ -3748,9 +3763,9 @@ class-utils@^0.3.5:
...
@@ -3748,9 +3763,9 @@ class-utils@^0.3.5:
static-extend "^0.1.1"
static-extend "^0.1.1"
clean-css@^5.2.2:
clean-css@^5.2.2:
version "5.3.
0
"
version "5.3.
1
"
resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.
0
.tgz#
ad3d8238d5f3549e83d5f87205189494bc7cbb59
"
resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.
1
.tgz#
d0610b0b90d125196a2894d35366f734e5d7aa32
"
integrity sha512-
YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ
==
integrity sha512-
lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg
==
dependencies:
dependencies:
source-map "~0.6.0"
source-map "~0.6.0"
...
@@ -4000,24 +4015,24 @@ copy-descriptor@^0.1.0:
...
@@ -4000,24 +4015,24 @@ copy-descriptor@^0.1.0:
integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==
integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==
copy-to-clipboard@^3.0.8:
copy-to-clipboard@^3.0.8:
version "3.3.
1
"
version "3.3.
2
"
resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.
1
.tgz#
115aa1a9998ffab6196f93076ad6da3b913662ae
"
resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.
2
.tgz#
5b263ec2366224b100181dded7ce0579b340c107
"
integrity sha512-
i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw
==
integrity sha512-
Vme1Z6RUDzrb6xAI7EZlVZ5uvOk2F//GaxKUxajDqm9LhOVM1inxNAD2vy+UZDYsd0uyA9s7b3/FVZPSxqrCfg
==
dependencies:
dependencies:
toggle-selection "^1.0.6"
toggle-selection "^1.0.6"
core-js-compat@^3.21.0, core-js-compat@^3.22.1:
core-js-compat@^3.21.0, core-js-compat@^3.22.1:
version "3.2
3.3
"
version "3.2
4.1
"
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.2
3.3
.tgz#
7d8503185be76bb6d8d592c291a4457a8e440aa9
"
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.2
4.1
.tgz#
d1af84a17e18dfdd401ee39da9996f9a7ba887de
"
integrity sha512-
WSzUs2h2vvmKsacLHNTdpyOC9k43AEhcGoFlVgCY4L7aw98oSBKtPL6vD0/TqZjRWRQYdDSLkzZIni4Crbbiq
w==
integrity sha512-
XhdNAGeRnTpp8xbD+sR/HFDK9CbeeeqXT6TuofXh3urqEevzkWmLRgrVoykodsw8okqo2pu1BOmuCKrHx63zd
w==
dependencies:
dependencies:
browserslist "^4.21.
0
"
browserslist "^4.21.
3
"
semver "7.0.0"
semver "7.0.0"
core-js-pure@^3.20.2:
core-js-pure@^3.20.2:
version "3.2
3.3
"
version "3.2
4.1
"
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.2
3.3
.tgz#
bcd02d3d8ec68ad871ef50d5ccbb248ddb54f401
"
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.2
4.1
.tgz#
8839dde5da545521bf282feb7dc6d0b425f39fd3
"
integrity sha512-
XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA
==
integrity sha512-
r1nJk41QLLPyozHUUPmILCEMtMw24NG4oWK6RbsDdjzQgg9ZvrUsPBj1MnG0wXXp1DCDU6j+wUvEmBSrtRbLXg
==
core-js@^2.4.0:
core-js@^2.4.0:
version "2.6.12"
version "2.6.12"
...
@@ -4025,9 +4040,9 @@ core-js@^2.4.0:
...
@@ -4025,9 +4040,9 @@ core-js@^2.4.0:
integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
core-js@^3.5.0:
core-js@^3.5.0:
version "3.2
3.3
"
version "3.2
4.1
"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.2
3.3
.tgz#
3b977612b15da6da0c9cc4aec487e8d24f371112
"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.2
4.1
.tgz#
cf7724d41724154010a6576b7b57d94c5d66e64f
"
integrity sha512-
oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q
==
integrity sha512-
0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg
==
core-util-is@1.0.2:
core-util-is@1.0.2:
version "1.0.2"
version "1.0.2"
...
@@ -4653,9 +4668,9 @@ data-urls@^2.0.0:
...
@@ -4653,9 +4668,9 @@ data-urls@^2.0.0:
whatwg-url "^8.0.0"
whatwg-url "^8.0.0"
date-fns@^2.16.1:
date-fns@^2.16.1:
version "2.2
8.0
"
version "2.2
9.1
"
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.2
8.0
.tgz#9
570d656f5fc13143e50c975a3b6bbeb46cd08b2
"
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.2
9.1
.tgz#9
667c2615525e552b5135a3116b95b1961456e60
"
integrity sha512-
8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQ
w==
integrity sha512-
dlLD5rKaKxpFdnjrs+5azHDFOPEu4ANy/LTh04A1DTzMM7qoajmKCBc8pkKRFT41CNzw+4gQh79X5C+Jq27HA
w==
debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9:
debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9:
version "2.6.9"
version "2.6.9"
...
@@ -5007,10 +5022,10 @@ ejs@^3.1.6:
...
@@ -5007,10 +5022,10 @@ ejs@^3.1.6:
dependencies:
dependencies:
jake "^10.8.5"
jake "^10.8.5"
electron-to-chromium@^1.4.
17
2:
electron-to-chromium@^1.4.
20
2:
version "1.4.
180
"
version "1.4.
211
"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.
180
.tgz#
380b06037836055d12c7de181ee90b8ed911c3e7
"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.
211
.tgz#
afaa8b58313807501312d598d99b953568d60f91
"
integrity sha512-
7at5ash3FD9U5gPa3/wPr6OdiZd/zBjvDZaaHBpcqFOFUhZiWnb7stkqk8xUFL9H9nk7Yok5vCCNK8wyC/+f8
A==
integrity sha512-
BZSbMpyFQU0KBJ1JG26XGeFI3i4op+qOYGxftmZXFZoHkhLgsSv4DHDJfl8ogII3hIuzGt51PaZ195OVu0yJ9
A==
emittery@^0.8.1:
emittery@^0.8.1:
version "0.8.1"
version "0.8.1"
...
@@ -5051,7 +5066,7 @@ end-of-stream@^1.1.0:
...
@@ -5051,7 +5066,7 @@ end-of-stream@^1.1.0:
dependencies:
dependencies:
once "^1.4.0"
once "^1.4.0"
enhanced-resolve@^5.
9.3
:
enhanced-resolve@^5.
10.0
:
version "5.10.0"
version "5.10.0"
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz#0dc579c3bb2a1032e357ac45b8f3a6f3ad4fb1e6"
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz#0dc579c3bb2a1032e357ac45b8f3a6f3ad4fb1e6"
integrity sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==
integrity sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==
...
@@ -5076,10 +5091,10 @@ entities@^2.0.0:
...
@@ -5076,10 +5091,10 @@ entities@^2.0.0:
resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==
integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==
entities@^3.0
.1
:
entities@^
4.
3.0:
version "
3.0
.1"
version "
4.3
.1"
resolved "https://registry.yarnpkg.com/entities/-/entities-
3.0
.1.tgz#
2b887ca62585e96db3903482d336c1006c3001d
4"
resolved "https://registry.yarnpkg.com/entities/-/entities-
4.3
.1.tgz#
c34062a94c865c322f9d67b4384e4169bcede6a
4"
integrity sha512-
WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q
==
integrity sha512-
o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg
==
env-paths@^2.2.0:
env-paths@^2.2.0:
version "2.2.1"
version "2.2.1"
...
@@ -5269,20 +5284,20 @@ eslint-plugin-import@^2.23.4:
...
@@ -5269,20 +5284,20 @@ eslint-plugin-import@^2.23.4:
tsconfig-paths "^3.14.1"
tsconfig-paths "^3.14.1"
eslint-plugin-jsx-a11y@^6.4.1:
eslint-plugin-jsx-a11y@^6.4.1:
version "6.6.
0
"
version "6.6.
1
"
resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.
0
.tgz#
2c5ac12e013eb98337b9aa261c3b355275cc6415
"
resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.
1
.tgz#
93736fc91b83fdc38cc8d115deedfc3091aef1ff
"
integrity sha512-
kTeLuIzpNhXL2CwLlc8AHI0aFRwWHcg483yepO9VQiHzM9bZwJdzTkzBszbuPrbgGmq2rlX/FaT2fJQsjUSHsw
==
integrity sha512-
sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q
==
dependencies:
dependencies:
"@babel/runtime" "^7.18.
3
"
"@babel/runtime" "^7.18.
9
"
aria-query "^4.2.2"
aria-query "^4.2.2"
array-includes "^3.1.5"
array-includes "^3.1.5"
ast-types-flow "^0.0.7"
ast-types-flow "^0.0.7"
axe-core "^4.4.
2
"
axe-core "^4.4.
3
"
axobject-query "^2.2.0"
axobject-query "^2.2.0"
damerau-levenshtein "^1.0.8"
damerau-levenshtein "^1.0.8"
emoji-regex "^9.2.2"
emoji-regex "^9.2.2"
has "^1.0.3"
has "^1.0.3"
jsx-ast-utils "^3.3.
1
"
jsx-ast-utils "^3.3.
2
"
language-tags "^1.0.5"
language-tags "^1.0.5"
minimatch "^3.1.2"
minimatch "^3.1.2"
semver "^6.3.0"
semver "^6.3.0"
...
@@ -5646,9 +5661,9 @@ fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
...
@@ -5646,9 +5661,9 @@ fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
fastest-levenshtein@^1.0.12:
fastest-levenshtein@^1.0.12:
version "1.0.1
2
"
version "1.0.1
6
"
resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.1
2
.tgz#
9990f7d3a88cc5a9ffd1f1745745251700d497e2
"
resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.1
6
.tgz#
210e61b6ff181de91ea9b3d1b84fdedd47e034e5
"
integrity sha512-
On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow
==
integrity sha512-
eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg
==
fastq@^1.6.0:
fastq@^1.6.0:
version "1.13.0"
version "1.13.0"
...
@@ -6111,9 +6126,9 @@ globals@^11.1.0:
...
@@ -6111,9 +6126,9 @@ globals@^11.1.0:
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
globals@^13.6.0, globals@^13.9.0:
globals@^13.6.0, globals@^13.9.0:
version "13.1
6
.0"
version "13.1
7
.0"
resolved "https://registry.yarnpkg.com/globals/-/globals-13.1
6
.0.tgz#9
be4aca28f311aaeb974ea54978ebbb5e35ce46a
"
resolved "https://registry.yarnpkg.com/globals/-/globals-13.1
7
.0.tgz#9
02eb1e680a41da93945adbdcb5a9f361ba69bd4
"
integrity sha512-
A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q
==
integrity sha512-
1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw
==
dependencies:
dependencies:
type-fest "^0.20.2"
type-fest "^0.20.2"
...
@@ -6518,10 +6533,10 @@ icss-utils@^5.0.0, icss-utils@^5.1.0:
...
@@ -6518,10 +6533,10 @@ icss-utils@^5.0.0, icss-utils@^5.1.0:
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==
integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==
idb@^
6.1.4
:
idb@^
7.0.1
:
version "
6.1.5
"
version "
7.0.2
"
resolved "https://registry.yarnpkg.com/idb/-/idb-
6.1.5.tgz#dbc53e7adf1ac7c59f9b2bf56e00b4ea4fce8c7b
"
resolved "https://registry.yarnpkg.com/idb/-/idb-
7.0.2.tgz#7a067e20dd16539938e456814b7d714ba8db3892
"
integrity sha512-
IJtugpKkiVXQn5Y+LteyBCNk1N8xpGV3wWZk9EVtZWH8DYkjBn0bX1XnGP9RkyZF0sAcywa6unHqSWKe7q4LGw
==
integrity sha512-
jjKrT1EnyZewQ/gCBb/eyiYrhGzws2FeY92Yx8qT9S9GeQAmo4JFVIiWRIfKW/6Ob9A+UDAOW9j9jn58fy2HIg
==
ignore-walk@^5.0.1:
ignore-walk@^5.0.1:
version "5.0.1"
version "5.0.1"
...
@@ -6653,10 +6668,10 @@ ip-regex@^4.1.0:
...
@@ -6653,10 +6668,10 @@ ip-regex@^4.1.0:
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-4.3.0.tgz#687275ab0f57fa76978ff8f4dddc8a23d5990db5"
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-4.3.0.tgz#687275ab0f57fa76978ff8f4dddc8a23d5990db5"
integrity sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==
integrity sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==
ip@^
1.1.5
:
ip@^
2.0.0
:
version "
1.1.8
"
version "
2.0.0
"
resolved "https://registry.yarnpkg.com/ip/-/ip-
1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48
"
resolved "https://registry.yarnpkg.com/ip/-/ip-
2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da
"
integrity sha512-
PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg
==
integrity sha512-
WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ
==
ipaddr.js@1.9.1:
ipaddr.js@1.9.1:
version "1.9.1"
version "1.9.1"
...
@@ -6752,9 +6767,9 @@ is-cidr@^4.0.2:
...
@@ -6752,9 +6767,9 @@ is-cidr@^4.0.2:
cidr-regex "^3.1.1"
cidr-regex "^3.1.1"
is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-module@^2.9.0:
is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-module@^2.9.0:
version "2.
9
.0"
version "2.
10
.0"
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.
9
.0.tgz#
e1c34429cd51c6dd9e09e0799e396e27b19a9c69
"
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.
10
.0.tgz#
9012ede0a91c69587e647514e1d5277019e728ed
"
integrity sha512-
+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A
==
integrity sha512-
Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg
==
dependencies:
dependencies:
has "^1.0.3"
has "^1.0.3"
...
@@ -7075,9 +7090,9 @@ istanbul-lib-source-maps@^4.0.0:
...
@@ -7075,9 +7090,9 @@ istanbul-lib-source-maps@^4.0.0:
source-map "^0.6.1"
source-map "^0.6.1"
istanbul-reports@^3.1.3:
istanbul-reports@^3.1.3:
version "3.1.
4
"
version "3.1.
5
"
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.
4
.tgz#
1b6f068ecbc6c331040aab5741991273e609e40c
"
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.
5
.tgz#
cc9a6ab25cb25659810e4785ed9d9fb742578bae
"
integrity sha512-
r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzf
w==
integrity sha512-
nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1
w==
dependencies:
dependencies:
html-escaper "^2.0.0"
html-escaper "^2.0.0"
istanbul-lib-report "^3.0.0"
istanbul-lib-report "^3.0.0"
...
@@ -7779,9 +7794,9 @@ jsonparse@^1.3.1:
...
@@ -7779,9 +7794,9 @@ jsonparse@^1.3.1:
integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==
integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==
jsonpointer@^5.0.0:
jsonpointer@^5.0.0:
version "5.0.
0
"
version "5.0.
1
"
resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.
0
.tgz#
f802669a524ec4805fa7389eadbc9921d5dc8072
"
resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.
1
.tgz#
2110e0af0900fd37467b5907ecd13a7884a1b559
"
integrity sha512-
PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg
==
integrity sha512-
p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ
==
jsprim@^1.2.2:
jsprim@^1.2.2:
version "1.4.2"
version "1.4.2"
...
@@ -7793,10 +7808,10 @@ jsprim@^1.2.2:
...
@@ -7793,10 +7808,10 @@ jsprim@^1.2.2:
json-schema "0.4.0"
json-schema "0.4.0"
verror "1.10.0"
verror "1.10.0"
"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.
1
:
"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.
2
:
version "3.3.
1
"
version "3.3.
2
"
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.
1
.tgz#a
3e0f1cb7e230954eab4dcbce9f6288a78f8ba44
"
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.
2
.tgz#a
fe5efe4332cd3515c065072bd4d6b0aa22152bd
"
integrity sha512-
pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOh
Q==
integrity sha512-
4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9
Q==
dependencies:
dependencies:
array-includes "^3.1.5"
array-includes "^3.1.5"
object.assign "^4.1.2"
object.assign "^4.1.2"
...
@@ -7908,13 +7923,14 @@ libnpmdiff@^4.0.2:
...
@@ -7908,13 +7923,14 @@ libnpmdiff@^4.0.2:
tar "^6.1.0"
tar "^6.1.0"
libnpmexec@^4.0.2:
libnpmexec@^4.0.2:
version "4.0.
8
"
version "4.0.
9
"
resolved "https://registry.yarnpkg.com/libnpmexec/-/libnpmexec-4.0.
8
.tgz#
27be33278dec1c7cfce52e28f8814b19e31129fe
"
resolved "https://registry.yarnpkg.com/libnpmexec/-/libnpmexec-4.0.
9
.tgz#
6bfff09cc05bc60eea023e1c818fa6159ade3954
"
integrity sha512-
SKO6JCt/rL6r+ilbq315zEj2sDdZRniCJ2AvmzqMyIKW4IMuuLsOjjkcWKBV2l1Vle54ud7Tkv9IEPR2cE0mJg
==
integrity sha512-
w+m/ximjFJQ1ndGu8dTR3K/sZcmSuetOCflFBkwVFXvf2JPd1BT8ETBrmYISMYBo2kuHn8HzvwZZtAeZBvrZbQ
==
dependencies:
dependencies:
"@npmcli/arborist" "^5.0.0"
"@npmcli/arborist" "^5.0.0"
"@npmcli/ci-detect" "^2.0.0"
"@npmcli/ci-detect" "^2.0.0"
"@npmcli/run-script" "^4.1.3"
"@npmcli/fs" "^2.1.1"
"@npmcli/run-script" "^4.2.0"
chalk "^4.1.0"
chalk "^4.1.0"
mkdirp-infer-owner "^2.0.0"
mkdirp-infer-owner "^2.0.0"
npm-package-arg "^9.0.1"
npm-package-arg "^9.0.1"
...
@@ -7923,6 +7939,7 @@ libnpmexec@^4.0.2:
...
@@ -7923,6 +7939,7 @@ libnpmexec@^4.0.2:
proc-log "^2.0.0"
proc-log "^2.0.0"
read "^1.0.7"
read "^1.0.7"
read-package-json-fast "^2.0.2"
read-package-json-fast "^2.0.2"
semver "^7.3.7"
walk-up-path "^1.0.0"
walk-up-path "^1.0.0"
libnpmfund@^3.0.1:
libnpmfund@^3.0.1:
...
@@ -7995,9 +8012,9 @@ libnpmversion@^3.0.1:
...
@@ -7995,9 +8012,9 @@ libnpmversion@^3.0.1:
semver "^7.3.7"
semver "^7.3.7"
lilconfig@^2.0.3:
lilconfig@^2.0.3:
version "2.0.
5
"
version "2.0.
6
"
resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.
5
.tgz#
19e57fd06ccc3848fd1891655b5a447092225b25
"
resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.
6
.tgz#
32a384558bd58af3d4c6e077dd1ad1d397bc69d4
"
integrity sha512-
xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9E
g==
integrity sha512-
9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neO
g==
lines-and-columns@^1.1.6:
lines-and-columns@^1.1.6:
version "1.2.4"
version "1.2.4"
...
@@ -8140,9 +8157,9 @@ lru-cache@^6.0.0:
...
@@ -8140,9 +8157,9 @@ lru-cache@^6.0.0:
yallist "^4.0.0"
yallist "^4.0.0"
lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1:
lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1:
version "7.1
2.0
"
version "7.1
3.2
"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.1
2.0
.tgz#b
e2649a992c8a9116efda5c487538dcf715f3476
"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.1
3.2
.tgz#b
b5d3f1deea3f3a7a35c1c44345566a612e09cd0
"
integrity sha512-
OIP3DwzRZDfLg9B9VP/huWBlpvbkmbfiBy8xmsXp4RPmE4A3MhwNozc5ZJ3fWnSg8fDcdlE/neRTPG2ycEKliw
==
integrity sha512-
VJL3nIpA79TodY/ctmZEfhASgqekbT574/c4j3jn4bKXbSCnTTCH/KltZyvL2GlV+tGSMtsWyem8DCX7qKTMBA
==
magic-string@^0.25.0, magic-string@^0.25.7:
magic-string@^0.25.0, magic-string@^0.25.7:
version "0.25.9"
version "0.25.9"
...
@@ -8158,10 +8175,10 @@ make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0:
...
@@ -8158,10 +8175,10 @@ make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0:
dependencies:
dependencies:
semver "^6.0.0"
semver "^6.0.0"
make-fetch-happen@^10.0.3, make-fetch-happen@^10.0.6, make-fetch-happen@^10.
1.8
:
make-fetch-happen@^10.0.3, make-fetch-happen@^10.0.6, make-fetch-happen@^10.
2.0
:
version "10.
1.8
"
version "10.
2.0
"
resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.
1.8
.tgz#
3b6e93dd8d8fdb76c0d7bf32e617f37c3108435a
"
resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.
2.0
.tgz#
0bde3914f2f82750b5d48c6d2294d2c74f985e5b
"
integrity sha512-
0ASJbG12Au6+N5I84W+8FhGS6iM8MyzvZady+zaQAu+6IOaESFzCLLD0AR1sAFF3Jufi8bxm586ABN6hWd3k7
g==
integrity sha512-
OnEfCLofQVJ5zgKwGk55GaqosqKjaR6khQlJY3dBAA+hM25Bc5CmX5rKUfVut+rYA3uidA7zb7AvcglU87rPR
g==
dependencies:
dependencies:
agentkeepalive "^4.2.1"
agentkeepalive "^4.2.1"
cacache "^16.1.0"
cacache "^16.1.0"
...
@@ -8421,7 +8438,7 @@ minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
...
@@ -8421,7 +8438,7 @@ minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
dependencies:
dependencies:
brace-expansion "^1.1.7"
brace-expansion "^1.1.7"
minimatch@^5.0.1:
minimatch@^5.0.1
, minimatch@^5.1.0
:
version "5.1.0"
version "5.1.0"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7"
integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==
integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==
...
@@ -8668,9 +8685,9 @@ node-gyp@^8.4.1:
...
@@ -8668,9 +8685,9 @@ node-gyp@^8.4.1:
which "^2.0.2"
which "^2.0.2"
node-gyp@^9.0.0:
node-gyp@^9.0.0:
version "9.
0
.0"
version "9.
1
.0"
resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.
0
.0.tgz#
e1da2067427f3eb5bb56820cb62bc6b1e4bd2089
"
resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.
1
.0.tgz#
c8d8e590678ea1f7b8097511dedf41fc126648f8
"
integrity sha512-
Ma6p4s+XCTPxCuAMrOA/IJRmVy16R8Sdhtwl4PrCr7IBlj4cPawF0vg/l7nOT1jPbuNS7lIRJpBSvVsXwEZuzw
==
integrity sha512-
HkmN0ZpQJU7FLbJauJTHkHlSVAXlNGDAzH/VYFZGDOnFyn/Na3GlNJfkudmufOdS6/jNFhy88ObzL7ERz9es1g
==
dependencies:
dependencies:
env-paths "^2.2.0"
env-paths "^2.2.0"
glob "^7.1.4"
glob "^7.1.4"
...
@@ -8688,10 +8705,10 @@ node-int64@^0.4.0:
...
@@ -8688,10 +8705,10 @@ node-int64@^0.4.0:
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==
integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==
node-releases@^2.0.
5
:
node-releases@^2.0.
6
:
version "2.0.
5
"
version "2.0.
6
"
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.
5
.tgz#
280ed5bc3eba0d96ce44897d8aee478bfb3d9666
"
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.
6
.tgz#
8a7088c63a55e493845683ebf3c828d8c51c5503
"
integrity sha512-
U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q
==
integrity sha512-
PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg
==
node-sass@^7.0.1:
node-sass@^7.0.1:
version "7.0.1"
version "7.0.1"
...
@@ -8804,7 +8821,7 @@ npm-normalize-package-bin@^1.0.0, npm-normalize-package-bin@^1.0.1:
...
@@ -8804,7 +8821,7 @@ npm-normalize-package-bin@^1.0.0, npm-normalize-package-bin@^1.0.1:
resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2"
resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2"
integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==
integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==
npm-package-arg@^9.0.0, npm-package-arg@^9.0.1, npm-package-arg@^9.
0.2
:
npm-package-arg@^9.0.0, npm-package-arg@^9.0.1, npm-package-arg@^9.
1.0
:
version "9.1.0"
version "9.1.0"
resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-9.1.0.tgz#a60e9f1e7c03e4e3e4e994ea87fff8b90b522987"
resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-9.1.0.tgz#a60e9f1e7c03e4e3e4e994ea87fff8b90b522987"
integrity sha512-4J0GL+u2Nh6OnhvUKXRr2ZMG4lR8qtLp+kv7UiV00Y+nGiSxtttCyIRHCt5L5BNkXQld/RceYItau3MDOoGiBw==
integrity sha512-4J0GL+u2Nh6OnhvUKXRr2ZMG4lR8qtLp+kv7UiV00Y+nGiSxtttCyIRHCt5L5BNkXQld/RceYItau3MDOoGiBw==
...
@@ -8834,18 +8851,18 @@ npm-pick-manifest@^7.0.0, npm-pick-manifest@^7.0.1:
...
@@ -8834,18 +8851,18 @@ npm-pick-manifest@^7.0.0, npm-pick-manifest@^7.0.1:
npm-package-arg "^9.0.0"
npm-package-arg "^9.0.0"
semver "^7.3.5"
semver "^7.3.5"
npm-profile@^6.
1
.0:
npm-profile@^6.
2
.0:
version "6.
1.0
"
version "6.
2.1
"
resolved "https://registry.yarnpkg.com/npm-profile/-/npm-profile-6.
1.0
.tgz#
2f32431c487cb21ef5882c9511f8be8a0b602d35
"
resolved "https://registry.yarnpkg.com/npm-profile/-/npm-profile-6.
2.1
.tgz#
975c31ec75a6ae029ab5b8820ffdcbae3a1e3d5e
"
integrity sha512-
JHnBzSqS9xPa0M3g90zhaGElSVdxoAipGkraBaM6Jph2XiSiwFN1HmfRTqndYhDkXia2hWRWl8O5RbDvae++GA
==
integrity sha512-
Tlu13duByHyDd4Xy0PgroxzxnBYWbGGL5aZifNp8cx2DxUrHSoETXtPKg38aRPsBWMRfDtvcvVfJNasj7oImQQ
==
dependencies:
dependencies:
npm-registry-fetch "^13.0.1"
npm-registry-fetch "^13.0.1"
proc-log "^2.0.0"
proc-log "^2.0.0"
npm-registry-fetch@^13.0.0, npm-registry-fetch@^13.0.1, npm-registry-fetch@^13.
1.1
:
npm-registry-fetch@^13.0.0, npm-registry-fetch@^13.0.1, npm-registry-fetch@^13.
3.0
:
version "13.
1.1
"
version "13.
3.0
"
resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-13.
1.1
.tgz#
26dc4b26d0a545886e807748032ba2aefaaae96
b"
resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-13.
3.0
.tgz#
0ce10fa4a699a1e70685ecf41bbfb4150d74231
b"
integrity sha512-
5p8rwe6wQPLJ8dMqeTnA57Dp9Ox6GH9H60xkyJup07FmVlu3Mk7pf/kIIpl9gaN5bM8NM+UUx3emUWvDNTt39w
==
integrity sha512-
10LJQ/1+VhKrZjIuY9I/+gQTvumqqlgnsCufoXETHAPFTS3+M+Z5CFhZRDHGavmJ6rOye3UvNga88vl8n1r6gg
==
dependencies:
dependencies:
make-fetch-happen "^10.0.6"
make-fetch-happen "^10.0.6"
minipass "^3.1.6"
minipass "^3.1.6"
...
@@ -8875,18 +8892,18 @@ npm-user-validate@^1.0.1:
...
@@ -8875,18 +8892,18 @@ npm-user-validate@^1.0.1:
integrity sha512-uQwcd/tY+h1jnEaze6cdX/LrhWhoBxfSknxentoqmIuStxUExxjWd3ULMLFPiFUrZKbOVMowH6Jq2FRWfmhcEw==
integrity sha512-uQwcd/tY+h1jnEaze6cdX/LrhWhoBxfSknxentoqmIuStxUExxjWd3ULMLFPiFUrZKbOVMowH6Jq2FRWfmhcEw==
npm@>=8.11.0:
npm@>=8.11.0:
version "8.1
3.2
"
version "8.1
6.0
"
resolved "https://registry.yarnpkg.com/npm/-/npm-8.1
3.2
.tgz#d
79c851c1d9cc6c11efe708379fd5339580f8fec
"
resolved "https://registry.yarnpkg.com/npm/-/npm-8.1
6.0
.tgz#d
385060093f3af10fabe6d8205d41bbf2a34ff9d
"
integrity sha512-
aS6q/QKxkw9mTX8gR7Ft38BcRkW1i+h3sI1yAFmfQ30Yl1a1G4ZX3oNGDzaLCilU5ThFZQBS1F4ZSZsrVxJ7HA
==
integrity sha512-
UfLT/hCbcpV9uiTEBthyrOlQxwk8LG5tAGn283g7f7pRx41KcwFiHV7HYgYm2y2GabfnPtf897ptrXRQwxJWzQ
==
dependencies:
dependencies:
"@isaacs/string-locale-compare" "^1.1.0"
"@isaacs/string-locale-compare" "^1.1.0"
"@npmcli/arborist" "^5.0.4"
"@npmcli/arborist" "^5.0.4"
"@npmcli/ci-detect" "^2.0.0"
"@npmcli/ci-detect" "^2.0.0"
"@npmcli/config" "^4.
1
.0"
"@npmcli/config" "^4.
2
.0"
"@npmcli/fs" "^2.1.0"
"@npmcli/fs" "^2.1.0"
"@npmcli/map-workspaces" "^2.0.3"
"@npmcli/map-workspaces" "^2.0.3"
"@npmcli/package-json" "^2.0.0"
"@npmcli/package-json" "^2.0.0"
"@npmcli/run-script" "^4.
1.5
"
"@npmcli/run-script" "^4.
2.0
"
abbrev "~1.1.1"
abbrev "~1.1.1"
archy "~1.0.0"
archy "~1.0.0"
cacache "^16.1.1"
cacache "^16.1.1"
...
@@ -8914,7 +8931,7 @@ npm@>=8.11.0:
...
@@ -8914,7 +8931,7 @@ npm@>=8.11.0:
libnpmsearch "^5.0.2"
libnpmsearch "^5.0.2"
libnpmteam "^4.0.2"
libnpmteam "^4.0.2"
libnpmversion "^3.0.1"
libnpmversion "^3.0.1"
make-fetch-happen "^10.
1.8
"
make-fetch-happen "^10.
2.0
"
minipass "^3.1.6"
minipass "^3.1.6"
minipass-pipeline "^1.2.4"
minipass-pipeline "^1.2.4"
mkdirp "^1.0.4"
mkdirp "^1.0.4"
...
@@ -8924,13 +8941,14 @@ npm@>=8.11.0:
...
@@ -8924,13 +8941,14 @@ npm@>=8.11.0:
nopt "^5.0.0"
nopt "^5.0.0"
npm-audit-report "^3.0.0"
npm-audit-report "^3.0.0"
npm-install-checks "^5.0.0"
npm-install-checks "^5.0.0"
npm-package-arg "^9.
0.2
"
npm-package-arg "^9.
1.0
"
npm-pick-manifest "^7.0.1"
npm-pick-manifest "^7.0.1"
npm-profile "^6.
1
.0"
npm-profile "^6.
2
.0"
npm-registry-fetch "^13.
1.1
"
npm-registry-fetch "^13.
3.0
"
npm-user-validate "^1.0.1"
npm-user-validate "^1.0.1"
npmlog "^6.0.2"
npmlog "^6.0.2"
opener "^1.5.2"
opener "^1.5.2"
p-map "^4.0.0"
pacote "^13.6.1"
pacote "^13.6.1"
parse-conflict-json "^2.0.2"
parse-conflict-json "^2.0.2"
proc-log "^2.0.1"
proc-log "^2.0.1"
...
@@ -9095,21 +9113,21 @@ obuf@^1.0.0, obuf@^1.1.2:
...
@@ -9095,21 +9113,21 @@ obuf@^1.0.0, obuf@^1.1.2:
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
office-ui-fabric-react@^7.1
88
.0:
office-ui-fabric-react@^7.1
92
.0:
version "7.1
88
.0"
version "7.1
92
.0"
resolved "https://registry.yarnpkg.com/office-ui-fabric-react/-/office-ui-fabric-react-7.1
88
.0.tgz#17
e50ed5c98837d2c50631e1908297257a910f73
"
resolved "https://registry.yarnpkg.com/office-ui-fabric-react/-/office-ui-fabric-react-7.1
92
.0.tgz#17
803475ccd9dddf1deb38b2fd09bacf646bf94b
"
integrity sha512-
N5ShkBPRbho251vsGfP3kuYHESQieTnwh4xtxa60zkVk64oNkn1VaEYayP5sF5o5FUp3ganIcjBGH6DCpcXzC
A==
integrity sha512-
4ej2sj2G5IGlQIucg9xD+KS+YqfUZXLcM6VU994sdxK6Sex/qh9dNxW8Ll/LiIWD/TIo2tss3ugbqCKgb4snv
A==
dependencies:
dependencies:
"@fluentui/date-time-utilities" "^7.9.1"
"@fluentui/date-time-utilities" "^7.9.1"
"@fluentui/react-focus" "^7.18.
4
"
"@fluentui/react-focus" "^7.18.
6
"
"@fluentui/react-window-provider" "^1.0.3"
"@fluentui/react-window-provider" "^1.0.3"
"@microsoft/load-themed-styles" "^1.10.26"
"@microsoft/load-themed-styles" "^1.10.26"
"@uifabric/foundation" "^7.10.
3
"
"@uifabric/foundation" "^7.10.
5
"
"@uifabric/icons" "^7.7.
2
"
"@uifabric/icons" "^7.7.
4
"
"@uifabric/merge-styles" "^7.19.2"
"@uifabric/merge-styles" "^7.19.2"
"@uifabric/react-hooks" "^7.1
4.2
"
"@uifabric/react-hooks" "^7.1
5.0
"
"@uifabric/set-version" "^7.0.24"
"@uifabric/set-version" "^7.0.24"
"@uifabric/styling" "^7.2
0.2
"
"@uifabric/styling" "^7.2
1.1
"
"@uifabric/utilities" "^7.34.1"
"@uifabric/utilities" "^7.34.1"
prop-types "^15.7.2"
prop-types "^15.7.2"
tslib "^1.10.0"
tslib "^1.10.0"
...
@@ -10051,7 +10069,7 @@ postcss-selector-parser@^5.0.0-rc.3, postcss-selector-parser@^5.0.0-rc.4:
...
@@ -10051,7 +10069,7 @@ postcss-selector-parser@^5.0.0-rc.3, postcss-selector-parser@^5.0.0-rc.4:
indexes-of "^1.0.1"
indexes-of "^1.0.1"
uniq "^1.0.1"
uniq "^1.0.1"
postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9:
postcss-selector-parser@^6.0.10,
postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9:
version "6.0.10"
version "6.0.10"
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d"
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d"
integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==
integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==
...
@@ -10864,9 +10882,9 @@ rollup-plugin-terser@^7.0.0:
...
@@ -10864,9 +10882,9 @@ rollup-plugin-terser@^7.0.0:
terser "^5.0.0"
terser "^5.0.0"
rollup@^2.43.1:
rollup@^2.43.1:
version "2.7
5.7
"
version "2.7
7.2
"
resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.7
5.7
.tgz#
221ff11887ae271e37dcc649ba32ce1590aaa0b9
"
resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.7
7.2
.tgz#
6b6075c55f9cc2040a5912e6e062151e42e2c4e3
"
integrity sha512-
VSE1iy0eaAYNCxEXaleThdFXqZJ42qDBatAwrfnPlENEZ8erQ+0LYX4JXOLPceWfZpV1VtZwZ3dFCuOZiSyFtQ
==
integrity sha512-
m/4YzYgLcpMQbxX3NmAqDvwLATZzxt8bIegO78FZLl+lAgKJBd1DRAOeEiZcKOIOPjxE6ewHWHNgGEalFXuz1g
==
optionalDependencies:
optionalDependencies:
fsevents "~2.3.2"
fsevents "~2.3.2"
...
@@ -11260,11 +11278,11 @@ socks-proxy-agent@^7.0.0:
...
@@ -11260,11 +11278,11 @@ socks-proxy-agent@^7.0.0:
socks "^2.6.2"
socks "^2.6.2"
socks@^2.6.2:
socks@^2.6.2:
version "2.
6.2
"
version "2.
7.0
"
resolved "https://registry.yarnpkg.com/socks/-/socks-2.
6.2
.tgz#
ec042d7960073d40d94268ff3bb727dc685f111a
"
resolved "https://registry.yarnpkg.com/socks/-/socks-2.
7.0
.tgz#
f9225acdb841e874dca25f870e9130990f3913d0
"
integrity sha512-
zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8g
A==
integrity sha512-
scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quS
A==
dependencies:
dependencies:
ip "^
1.1.5
"
ip "^
2.0.0
"
smart-buffer "^4.2.0"
smart-buffer "^4.2.0"
source-list-map@^2.0.0, source-list-map@^2.0.1:
source-list-map@^2.0.0, source-list-map@^2.0.1:
...
@@ -11733,7 +11751,7 @@ supports-preserve-symlinks-flag@^1.0.0:
...
@@ -11733,7 +11751,7 @@ supports-preserve-symlinks-flag@^1.0.0:
resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
svg-parser@^2.0.
2
:
svg-parser@^2.0.
4
:
version "2.0.4"
version "2.0.4"
resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5"
resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5"
integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==
integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==
...
@@ -11743,7 +11761,7 @@ svg-tags@^1.0.0:
...
@@ -11743,7 +11761,7 @@ svg-tags@^1.0.0:
resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764"
resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764"
integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==
integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==
svgo@^2.
5
.0, svgo@^2.
7
.0:
svgo@^2.
7
.0, svgo@^2.
8
.0:
version "2.8.0"
version "2.8.0"
resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24"
resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24"
integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==
integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==
...
@@ -12243,10 +12261,10 @@ upath@^1.2.0:
...
@@ -12243,10 +12261,10 @@ upath@^1.2.0:
resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
update-browserslist-db@^1.0.
4
:
update-browserslist-db@^1.0.
5
:
version "1.0.
4
"
version "1.0.
5
"
resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.
4
.tgz#
dbfc5a789caa26b1db8990796c2c8
ebbce
304824
"
resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.
5
.tgz#
be06a5eedd62f107b7c19
eb
5
bce
fb194411abf38
"
integrity sha512-
jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA
==
integrity sha512-
dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q
==
dependencies:
dependencies:
escalade "^3.1.1"
escalade "^3.1.1"
picocolors "^1.0.0"
picocolors "^1.0.0"
...
@@ -12409,7 +12427,7 @@ walker@^1.0.7, walker@~1.0.5:
...
@@ -12409,7 +12427,7 @@ walker@^1.0.7, walker@~1.0.5:
dependencies:
dependencies:
makeerror "1.0.12"
makeerror "1.0.12"
watchpack@^2.
3.1
:
watchpack@^2.
4.0
:
version "2.4.0"
version "2.4.0"
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d"
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d"
integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==
integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==
...
@@ -12522,20 +12540,20 @@ webpack-sources@^3.2.3:
...
@@ -12522,20 +12540,20 @@ webpack-sources@^3.2.3:
integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
webpack@^5.39.0:
webpack@^5.39.0:
version "5.7
3
.0"
version "5.7
4
.0"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.7
3
.0.tgz#
bbd17738f8a53ee5760ea2f59dce7f3431d35d38
"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.7
4
.0.tgz#
02a5dac19a17e0bb47093f2be67c695102a55980
"
integrity sha512-
svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHG
A==
integrity sha512-
A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlA
A==
dependencies:
dependencies:
"@types/eslint-scope" "^3.7.3"
"@types/eslint-scope" "^3.7.3"
"@types/estree" "^0.0.51"
"@types/estree" "^0.0.51"
"@webassemblyjs/ast" "1.11.1"
"@webassemblyjs/ast" "1.11.1"
"@webassemblyjs/wasm-edit" "1.11.1"
"@webassemblyjs/wasm-edit" "1.11.1"
"@webassemblyjs/wasm-parser" "1.11.1"
"@webassemblyjs/wasm-parser" "1.11.1"
acorn "^8.
4
.1"
acorn "^8.
7
.1"
acorn-import-assertions "^1.7.6"
acorn-import-assertions "^1.7.6"
browserslist "^4.14.5"
browserslist "^4.14.5"
chrome-trace-event "^1.0.2"
chrome-trace-event "^1.0.2"
enhanced-resolve "^5.
9.3
"
enhanced-resolve "^5.
10.0
"
es-module-lexer "^0.9.0"
es-module-lexer "^0.9.0"
eslint-scope "5.1.1"
eslint-scope "5.1.1"
events "^3.2.0"
events "^3.2.0"
...
@@ -12548,7 +12566,7 @@ webpack@^5.39.0:
...
@@ -12548,7 +12566,7 @@ webpack@^5.39.0:
schema-utils "^3.1.0"
schema-utils "^3.1.0"
tapable "^2.1.1"
tapable "^2.1.1"
terser-webpack-plugin "^5.1.3"
terser-webpack-plugin "^5.1.3"
watchpack "^2.
3.1
"
watchpack "^2.
4.0
"
webpack-sources "^3.2.3"
webpack-sources "^3.2.3"
websocket-driver@>=0.5.1, websocket-driver@^0.7.4:
websocket-driver@>=0.5.1, websocket-driver@^0.7.4:
...
@@ -12637,25 +12655,25 @@ word-wrap@^1.2.3, word-wrap@~1.2.3:
...
@@ -12637,25 +12655,25 @@ word-wrap@^1.2.3, word-wrap@~1.2.3:
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
workbox-background-sync@6.5.
3
:
workbox-background-sync@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-background-sync/-/workbox-background-sync-6.5.
3
.tgz#
7c66c1836aeca6f3762dc48d17a1852a33b3168c
"
resolved "https://registry.yarnpkg.com/workbox-background-sync/-/workbox-background-sync-6.5.
4
.tgz#
3141afba3cc8aa2ae14c24d0f6811374ba8ff6a9
"
integrity sha512-0
DD/V05FAcek6tWv9XYj2w5T/plxhDSpclIcAGjA/b7t/6PdaRkQ7ZgtAX6Q/L7kV7wZ8uYRJUoH11VjNipMZw
==
integrity sha512-0
r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g
==
dependencies:
dependencies:
idb "^
6.1.4
"
idb "^
7.0.1
"
workbox-core "6.5.
3
"
workbox-core "6.5.
4
"
workbox-broadcast-update@6.5.
3
:
workbox-broadcast-update@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-broadcast-update/-/workbox-broadcast-update-6.5.
3
.tgz#
fc2ad79cf507e22950cda9baf1e9a0ccc43f31bc
"
resolved "https://registry.yarnpkg.com/workbox-broadcast-update/-/workbox-broadcast-update-6.5.
4
.tgz#
8441cff5417cd41f384ba7633ca960a7ffe40f66
"
integrity sha512-
4AwCIA5DiDrYhlN+Miv/fp5T3/whNmSL+KqhTwRBTZIL6pvTgE4lVuRzAt1JltmqyMcQ3SEfCdfxczuI4kwFQg
==
integrity sha512-
I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw
==
dependencies:
dependencies:
workbox-core "6.5.
3
"
workbox-core "6.5.
4
"
workbox-build@6.5.
3
:
workbox-build@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-build/-/workbox-build-6.5.
3
.tgz#
38e3f286d63d2745bff4d1478bb3a6ab5c8b1170
"
resolved "https://registry.yarnpkg.com/workbox-build/-/workbox-build-6.5.
4
.tgz#
7d06d31eb28a878817e1c991c05c5b93409f0389
"
integrity sha512-
8JNHHS7u13nhwIYCDea9MNXBNPHXCs5KDZPKI/ZNTr3f4sMGoD7hgFGecbyjX1gw4z6e9bMpMsOEJNyH5htA/w
==
integrity sha512-
kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA
==
dependencies:
dependencies:
"@apideck/better-ajv-errors" "^0.3.1"
"@apideck/better-ajv-errors" "^0.3.1"
"@babel/core" "^7.11.1"
"@babel/core" "^7.11.1"
...
@@ -12679,132 +12697,132 @@ workbox-build@6.5.3:
...
@@ -12679,132 +12697,132 @@ workbox-build@6.5.3:
strip-comments "^2.0.1"
strip-comments "^2.0.1"
tempy "^0.6.0"
tempy "^0.6.0"
upath "^1.2.0"
upath "^1.2.0"
workbox-background-sync "6.5.
3
"
workbox-background-sync "6.5.
4
"
workbox-broadcast-update "6.5.
3
"
workbox-broadcast-update "6.5.
4
"
workbox-cacheable-response "6.5.
3
"
workbox-cacheable-response "6.5.
4
"
workbox-core "6.5.
3
"
workbox-core "6.5.
4
"
workbox-expiration "6.5.
3
"
workbox-expiration "6.5.
4
"
workbox-google-analytics "6.5.
3
"
workbox-google-analytics "6.5.
4
"
workbox-navigation-preload "6.5.
3
"
workbox-navigation-preload "6.5.
4
"
workbox-precaching "6.5.
3
"
workbox-precaching "6.5.
4
"
workbox-range-requests "6.5.
3
"
workbox-range-requests "6.5.
4
"
workbox-recipes "6.5.
3
"
workbox-recipes "6.5.
4
"
workbox-routing "6.5.
3
"
workbox-routing "6.5.
4
"
workbox-strategies "6.5.
3
"
workbox-strategies "6.5.
4
"
workbox-streams "6.5.
3
"
workbox-streams "6.5.
4
"
workbox-sw "6.5.
3
"
workbox-sw "6.5.
4
"
workbox-window "6.5.
3
"
workbox-window "6.5.
4
"
workbox-cacheable-response@6.5.
3
:
workbox-cacheable-response@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-cacheable-response/-/workbox-cacheable-response-6.5.
3
.tgz#
b1f8c2bc599a7be8f7e3c262535629c558738e4
7"
resolved "https://registry.yarnpkg.com/workbox-cacheable-response/-/workbox-cacheable-response-6.5.
4
.tgz#
a5c6ec0c6e2b6f037379198d4ef07d098f7cf13
7"
integrity sha512-
6JE/Zm05hNasHzzAGKDkqqgYtZZL2H06ic2GxuRLStA4S/rHUfm2mnLFFXuHAaGR1XuuYyVCEey1M6H3PdZ7SQ
==
integrity sha512-
DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug
==
dependencies:
dependencies:
workbox-core "6.5.
3
"
workbox-core "6.5.
4
"
workbox-core@6.5.
3
:
workbox-core@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-core/-/workbox-core-6.5.
3
.tgz#
bca038a9ef0d7a634a6db2a60f45313ed22ac249
"
resolved "https://registry.yarnpkg.com/workbox-core/-/workbox-core-6.5.
4
.tgz#
df48bf44cd58bb1d1726c49b883fb1dffa24c9ba
"
integrity sha512-
Bb9ey5n/M9x+l3fBTlLpHt9ASTzgSGj6vxni7pY72ilB/Pb3XtN+cZ9yueboVhD5+9cNQrC9n/E1fSrqWsUz7
Q==
integrity sha512-
OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6
Q==
workbox-expiration@6.5.
3
:
workbox-expiration@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-expiration/-/workbox-expiration-6.5.
3
.tgz#
efc0811f371a2ede1052b9de1c4f072b71d50503
"
resolved "https://registry.yarnpkg.com/workbox-expiration/-/workbox-expiration-6.5.
4
.tgz#
501056f81e87e1d296c76570bb483ce5e29b4539
"
integrity sha512-j
zYopYR1zD04ZMdlbn/R2Ik6ixiXbi15c9iX5H8CTi6RPDz7uhvMLZPKEndZTpfgmUk8mdmT9Vx/AhbuCl5Sqw
==
integrity sha512-j
UP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ
==
dependencies:
dependencies:
idb "^
6.1.4
"
idb "^
7.0.1
"
workbox-core "6.5.
3
"
workbox-core "6.5.
4
"
workbox-google-analytics@6.5.
3
:
workbox-google-analytics@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-google-analytics/-/workbox-google-analytics-6.5.
3
.tgz#c
c8c3a61f449131660a4ed2f5362d9a3599b18fe
"
resolved "https://registry.yarnpkg.com/workbox-google-analytics/-/workbox-google-analytics-6.5.
4
.tgz#c
74327f80dfa4c1954cbba93cd7ea640fe7ece7d
"
integrity sha512-
3GLCHotz5umoRSb4aNQeTbILETcrTVEozSfLhHSBaegHs1PnqCmN0zbIy2TjTpph2AGXiNwDrWGF0AN+UgDNTw
==
integrity sha512-
8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg
==
dependencies:
dependencies:
workbox-background-sync "6.5.
3
"
workbox-background-sync "6.5.
4
"
workbox-core "6.5.
3
"
workbox-core "6.5.
4
"
workbox-routing "6.5.
3
"
workbox-routing "6.5.
4
"
workbox-strategies "6.5.
3
"
workbox-strategies "6.5.
4
"
workbox-navigation-preload@6.5.
3
:
workbox-navigation-preload@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-navigation-preload/-/workbox-navigation-preload-6.5.
3
.tgz#
81b74f598b11aa07e2cf1c21af7a826a4f0f70b3
"
resolved "https://registry.yarnpkg.com/workbox-navigation-preload/-/workbox-navigation-preload-6.5.
4
.tgz#
ede56dd5f6fc9e860a7e45b2c1a8f87c1c793212
"
integrity sha512-
bK1gDFTc5iu6lH3UQ07QVo+0ovErhRNGvJJO/1ngknT0UQ702nmOUhoN9qE5mhuQSrnK+cqu7O7xeaJ+Rd9Tm
g==
integrity sha512-
IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrn
g==
dependencies:
dependencies:
workbox-core "6.5.
3
"
workbox-core "6.5.
4
"
workbox-precaching@6.5.
3
:
workbox-precaching@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-precaching/-/workbox-precaching-6.5.
3
.tgz#
c870312b2ef901d790ab9e48da084e776c62af47
"
resolved "https://registry.yarnpkg.com/workbox-precaching/-/workbox-precaching-6.5.
4
.tgz#
740e3561df92c6726ab5f7471e6aac89582cab72
"
integrity sha512-
sjNfgNLSsRX5zcc63H/ar/hCf+T19fRtTqvWh795gdpghWb5xsfEkecXEvZ8biEi1QD7X/ljtHphdaPvXDygMQ
==
integrity sha512-
hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg
==
dependencies:
dependencies:
workbox-core "6.5.
3
"
workbox-core "6.5.
4
"
workbox-routing "6.5.
3
"
workbox-routing "6.5.
4
"
workbox-strategies "6.5.
3
"
workbox-strategies "6.5.
4
"
workbox-range-requests@6.5.
3
:
workbox-range-requests@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-range-requests/-/workbox-range-requests-6.5.
3
.tgz#
e624ac82ff266a5e4f236d055797def07949d941
"
resolved "https://registry.yarnpkg.com/workbox-range-requests/-/workbox-range-requests-6.5.
4
.tgz#
86b3d482e090433dab38d36ae031b2bb0bd74399
"
integrity sha512-
pGCP80Bpn/0Q0MQsfETSfmtXsQcu3M2QCJwSFuJ6cDp8s2XmbUXkzbuQhCUzKR86ZH2Vex/VUjb2UaZBGamijA
==
integrity sha512-
Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg
==
dependencies:
dependencies:
workbox-core "6.5.
3
"
workbox-core "6.5.
4
"
workbox-recipes@6.5.
3
:
workbox-recipes@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-recipes/-/workbox-recipes-6.5.
3
.tgz#
15beac9d8ae7a3a1c100218094a824b4dd3fd59a
"
resolved "https://registry.yarnpkg.com/workbox-recipes/-/workbox-recipes-6.5.
4
.tgz#
cca809ee63b98b158b2702dcfb741b5cc3e24acb
"
integrity sha512-
IcgiKYmbGiDvvf3PMSEtmwqxwfQ5zwI7OZPio3GWu4PfehA8jI8JHI3KZj+PCfRiUPZhjQHJ3v1HbNs+SiSkig
==
integrity sha512-
QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA
==
dependencies:
dependencies:
workbox-cacheable-response "6.5.
3
"
workbox-cacheable-response "6.5.
4
"
workbox-core "6.5.
3
"
workbox-core "6.5.
4
"
workbox-expiration "6.5.
3
"
workbox-expiration "6.5.
4
"
workbox-precaching "6.5.
3
"
workbox-precaching "6.5.
4
"
workbox-routing "6.5.
3
"
workbox-routing "6.5.
4
"
workbox-strategies "6.5.
3
"
workbox-strategies "6.5.
4
"
workbox-routing@6.5.
3
:
workbox-routing@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-routing/-/workbox-routing-6.5.
3
.tgz#
a0a699d8cc90b5692bd3df24679acbbda3913777
"
resolved "https://registry.yarnpkg.com/workbox-routing/-/workbox-routing-6.5.
4
.tgz#
6a7fbbd23f4ac801038d9a0298bc907ee26fe3da
"
integrity sha512-
DFjxcuRAJjjt4T34RbMm3MCn+xnd36UT/2RfPRfa8VWJGItGJIn7tG+GwVTdHmvE54i/QmVTJepyAGWtoLPTm
g==
integrity sha512-
apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5P
g==
dependencies:
dependencies:
workbox-core "6.5.
3
"
workbox-core "6.5.
4
"
workbox-strategies@6.5.
3
:
workbox-strategies@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-strategies/-/workbox-strategies-6.5.
3
.tgz#4
bea9a48fee16cf43766e0d8138296773c8a9783
"
resolved "https://registry.yarnpkg.com/workbox-strategies/-/workbox-strategies-6.5.
4
.tgz#4
edda035b3c010fc7f6152918370699334cd204d
"
integrity sha512-
MgmGRrDVXs7rtSCcetZgkSZyMpRGw8HqL2aguszOc3nUmzGZsT238z/NN9ZouCxSzDu3PQ3ZSKmovAacaIhu1
w==
integrity sha512-
DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKL
w==
dependencies:
dependencies:
workbox-core "6.5.
3
"
workbox-core "6.5.
4
"
workbox-streams@6.5.
3
:
workbox-streams@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-streams/-/workbox-streams-6.5.
3
.tgz#
b6860290031caa7d0e46ad7142315c94359c780b
"
resolved "https://registry.yarnpkg.com/workbox-streams/-/workbox-streams-6.5.
4
.tgz#
1cb3c168a6101df7b5269d0353c19e36668d7d69
"
integrity sha512-
vN4Qi8o+b7zj1FDVNZ+PlmAcy1sBoV7SC956uhqYvZ9Sg1fViSbOpydULOssVJ4tOyKRifH/eoi6h99d+sJ33w
==
integrity sha512-
FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg
==
dependencies:
dependencies:
workbox-core "6.5.
3
"
workbox-core "6.5.
4
"
workbox-routing "6.5.
3
"
workbox-routing "6.5.
4
"
workbox-sw@6.5.
3
:
workbox-sw@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-sw/-/workbox-sw-6.5.
3
.tgz#
cd2f0c086f4496acd25774ed02c48504189bebdd
"
resolved "https://registry.yarnpkg.com/workbox-sw/-/workbox-sw-6.5.
4
.tgz#
d93e9c67924dd153a61367a4656ff4d2ae2ed736
"
integrity sha512-
BQBzm092w+NqdIEF2yhl32dERt9j9MDGUTa2Eaa+o3YKL4Qqw55W9yQC6f44FdAHdAJrJvp0t+HVrfh8AiGj8
A==
integrity sha512-
vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJAr
A==
workbox-webpack-plugin@^6.5.3:
workbox-webpack-plugin@^6.5.3:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-webpack-plugin/-/workbox-webpack-plugin-6.5.
3
.tgz#
c37bb323be4952311565c07db51054fe59c87
d7
3
"
resolved "https://registry.yarnpkg.com/workbox-webpack-plugin/-/workbox-webpack-plugin-6.5.
4
.tgz#
baf2d3f4b8f435f3469887cf4fba2b7fac3d0f
d7"
integrity sha512-
Es8Xr02Gi6Kc3zaUwR691ZLy61hz3vhhs5GztcklQ7kl5k2qAusPh0s6LF3wEtlpfs9ZDErnmy5SErwoll7jBA
==
integrity sha512-
LmWm/zoaahe0EGmMTrSLUi+BjyR3cdGEfU3fS6PN1zKFYbqAKuQ+Oy/27e4VSXsyIwAw8+QDfk1XHNGtZu9nQg
==
dependencies:
dependencies:
fast-json-stable-stringify "^2.1.0"
fast-json-stable-stringify "^2.1.0"
pretty-bytes "^5.4.1"
pretty-bytes "^5.4.1"
upath "^1.2.0"
upath "^1.2.0"
webpack-sources "^1.4.3"
webpack-sources "^1.4.3"
workbox-build "6.5.
3
"
workbox-build "6.5.
4
"
workbox-window@6.5.
3
:
workbox-window@6.5.
4
:
version "6.5.
3
"
version "6.5.
4
"
resolved "https://registry.yarnpkg.com/workbox-window/-/workbox-window-6.5.
3
.tgz#
4ade70056cb73477ef1cd8fea7cfd0ecbd825c7f
"
resolved "https://registry.yarnpkg.com/workbox-window/-/workbox-window-6.5.
4
.tgz#
d991bc0a94dff3c2dbb6b84558cff155ca878e91
"
integrity sha512-
GnJbx1kcKXDtoJBVZs/P7ddP0Yt52NNy4nocjBpYPiRhMqTpJCNrSL+fGHZ/i/oP6p/vhE8II0sA6AZGKGnssw
==
integrity sha512-
HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug
==
dependencies:
dependencies:
"@types/trusted-types" "^2.0.2"
"@types/trusted-types" "^2.0.2"
workbox-core "6.5.
3
"
workbox-core "6.5.
4
"
worker-rpc@^0.1.0:
worker-rpc@^0.1.0:
version "0.1.1"
version "0.1.1"
...
@@ -12862,14 +12880,14 @@ ws@^6.1.2:
...
@@ -12862,14 +12880,14 @@ ws@^6.1.2:
async-limiter "~1.0.0"
async-limiter "~1.0.0"
ws@^7.4.6:
ws@^7.4.6:
version "7.5.
8
"
version "7.5.
9
"
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.
8
.tgz#
ac2729881ab9e7cbaf8787fe3469a48c5c7f636a
"
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.
9
.tgz#
54fa7db29f4c7cec68b1ddd3a89de099942bb591
"
integrity sha512-
ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw
==
integrity sha512-
F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q
==
ws@^8.4.2:
ws@^8.4.2:
version "8.8.
0
"
version "8.8.
1
"
resolved "https://registry.yarnpkg.com/ws/-/ws-8.8.
0
.tgz#
8e71c75e2f6348dbf8d78005107297056cb77769
"
resolved "https://registry.yarnpkg.com/ws/-/ws-8.8.
1
.tgz#
5dbad0feb7ade8ecc99b830c1d77c913d4955ff0
"
integrity sha512-
JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ
==
integrity sha512-
bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA
==
xml-name-validator@^3.0.0:
xml-name-validator@^3.0.0:
version "3.0.0"
version "3.0.0"
...
@@ -12902,9 +12920,9 @@ yargs-parser@^20.2.3:
...
@@ -12902,9 +12920,9 @@ yargs-parser@^20.2.3:
integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
yargs-parser@^21.0.0:
yargs-parser@^21.0.0:
version "21.
0.1
"
version "21.
1.0
"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.
0.1
.tgz#
0267f286c877a4f0f728fceb6f8a3e4cb95c6e35
"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.
1.0
.tgz#
a11d06a3bf57f064e951aa3ef55fcf3a5705f876
"
integrity sha512-
9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GL
g==
integrity sha512-
xzm2t63xTV/f7+bGMSRzLhUNk1ajv/tDoaD5OeGyC3cFo2fl7My9Z4hS3q2VdQ7JaLvTxErO8Jp5pRIFGMD/z
g==
yargs@>=17.0.1, yargs@^16.2.0, yargs@^17.2.1:
yargs@>=17.0.1, yargs@^16.2.0, yargs@^17.2.1:
version "17.5.1"
version "17.5.1"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment