@samitouri / QOS-React-1 / commits / 3a5496b3f5

[Fiber] Use className on <ViewTransition> to assign view-transition-class (#31999)

Stacked on #31975. This is the primary way we recommend styling your View Transitions since it allows for reusable styling such as a CSS library specializing in View Transitions in a way that's composable and without naming conflicts. E.g. ```js <ViewTransition className="enter-slide-in exit-fade-out update-cross-fade"> ``` This doesn't change the HTML `class` attribute. It's not a CSS class. Instead it assign the `view-transition-class` style prop of the underlying DOM node while it's transitioning. You can also just use `<div style={{viewTransitionClass: ...}}>` on the DOM node but it's convenient to control the Transition completely from the outside and conceptually we're transitioning the whole fragment. You can even make Transition components that just wraps existing components. `<RevealTransition><Component /></RevealTransition>` this way. Since you can also have multiple wrappers for different circumstances it allows React's heuristics to use different classes for different scenarios. We'll likely add more options like configuring different classes for different `types` or scenarios that can't be described by CSS alone. ## CSS Modules ```js import transitions from './transitions.module.css'; <ViewTransition className={transitions.bounceIn}>...</ViewTransition> ``` CSS Modules works well with this strategy because you can have globally unique namespaces and define your transitions in the CSS modules as a library that you can import. [As seen in the fixture here.](https://github.com/facebook/react/commit/8b91b37bb8b4add5f3f8be5ef8f49bb23966b13b#diff-b4d9854171ffdac4d2c01be92a5eff4f8e9e761e6af953094f99ca243b054a85R11) I did notice an unfortunate bug in how CSS Modules (at least in Webpack) generates class names. Sometimes the `+` character is used in the hash of the class name which is not valid for `view-transition-class` and so it breaks. I had to rename my class names until the hash yielded something different to work around it. Ideally that bug gets fixed soon. ## className, rly? `className` isn't exactly the most loved property name, however, I'm using `className` here too for consistency. Even though in this case there's no direct equivalent DOM property name. The CSS property is named `viewTransitionClass`, but the "viewTransition" prefix is implied by the Component it is on in this case. For most people the fact that this is actually a different namespace than other CSS classes doesn't matter. You'll most just use a CSS library anyway and conceptually you're just assigning classes the same way as `className` on a DOM node. But if we ever rename the `class` prop then we can do that for this one as well.

Sebastian Markbåge committed Jan 8, 2025 at 13:22 UTC 3a5496b3f56f1c0b138811a564299ee0b64a64ba
13 files changed +8366 -5471
fixtures/view-transition/package.json
+22 -2
@@ -4,15 +4,23 @@
4 "private": true,
5 "devDependencies": {
6 "concurrently": "3.1.0",
7 - "http-proxy-middleware": "0.17.3",
8 - "react-scripts": "0.9.5"
7 + "http-proxy-middleware": "3.0.3",
8 + "react-scripts": "5.0.1",
9 + "@babel/plugin-proposal-private-property-in-object": "7.21.11"
10 },
11 "dependencies": {
12 + "@babel/register": "^7.25.9",
13 "express": "^4.14.0",
14 "ignore-styles": "^5.0.1",
15 "react": "^19.0.0",
16 "react-dom": "^19.0.0"
17 },
18 + "eslintConfig": {
19 + "extends": [
20 + "react-app",
21 + "react-app/jest"
22 + ]
23 + },
24 "scripts": {
25 "predev": "cp -r ../../build/oss-experimental/* ./node_modules/",
26 "prestart": "cp -r ../../build/oss-experimental/* ./node_modules/",
@@ -24,5 +32,17 @@
32 "build": "react-scripts build",
33 "test": "react-scripts test --env=jsdom",
34 "eject": "react-scripts eject"
35 + },
36 + "browserslist": {
37 + "production": [
38 + ">0.2%",
39 + "not dead",
40 + "not op_mini all"
41 + ],
42 + "development": [
43 + "last 1 chrome version",
44 + "last 1 firefox version",
45 + "last 1 safari version"
46 + ]
47 }
48 }
fixtures/view-transition/server/index.js
+5 -4
@@ -1,9 +1,9 @@
1 require('ignore-styles');
2 -const babelRegister = require('babel-register');
2 +const babelRegister = require('@babel/register');
3 const proxy = require('http-proxy-middleware');
4
5 babelRegister({
6 - ignore: /\/(build|node_modules)\//,
6 + ignore: [/\/(build|node_modules)\//],
7 presets: ['react-app'],
8 });
9
@@ -37,9 +37,10 @@ app.use(express.static(path.resolve(__dirname, '..', 'build')));
37 if (process.env.NODE_ENV === 'development') {
38 app.use(
39 '/',
40 - proxy({
40 + proxy.createProxyMiddleware({
41 ws: true,
42 - target: 'http://localhost:3001',
42 + changeOrigin: true,
43 + target: 'http://127.0.0.1:3001',
44 })
45 );
46 }
fixtures/view-transition/server/render.js
+1 -1
@@ -11,7 +11,7 @@ if (process.env.NODE_ENV === 'development') {
11 // 'main.css': '',
12 };
13 } else {
14 - assets = require('../build/asset-manifest.json');
14 + assets = require('../build/asset-manifest.json').files;
15 }
16
17 export default function render(url, res) {
fixtures/view-transition/src/components/Page.js
+14
@@ -8,6 +8,8 @@ import React, {
8
9 import './Page.css';
10
11 +import transitions from './Transitions.module.css';
12 +
13 const a = (
14 <div key="a">
15 <ViewTransition>
@@ -24,6 +26,17 @@ const b = (
26 </div>
27 );
28
29 +function Component() {
30 + return (
31 + <ViewTransition
32 + className={
33 + transitions['enter-slide-right'] + ' ' + transitions['exit-slide-left']
34 + }>
35 + <p>Slide In from Left, Slide Out to Right</p>
36 + </ViewTransition>
37 + );
38 +}
39 +
40 export default function Page() {
41 const [show, setShow] = useState(false);
42 useEffect(() => {
@@ -72,6 +85,7 @@ export default function Page() {
85 <div>!!</div>
86 </ViewTransition>
87 </Activity>
88 + {show ? <Component /> : <p>&nbsp;</p>}
89 </div>
90 </ViewTransition>
91 </div>
fixtures/view-transition/src/components/Transitions.module.css new
+28
@@ -0,0 +1,28 @@
1 +@keyframes enter-slide-right {
2 + 0% {
3 + opacity: 0;
4 + translate: -200px 0;
5 + }
6 + 100% {
7 + opacity: 1;
8 + translate: 0 0;
9 + }
10 +}
11 +
12 +@keyframes exit-slide-left {
13 + 0% {
14 + opacity: 1;
15 + translate: 0 0;
16 + }
17 + 100% {
18 + opacity: 0;
19 + translate: 200px 0;
20 + }
21 +}
22 +
23 +::view-transition-new(.enter-slide-right):only-child {
24 + animation: enter-slide-right ease-in 0.25s;
25 +}
26 +::view-transition-old(.exit-slide-left):only-child {
27 + animation: exit-slide-left ease-in 0.25s;
28 +}
fixtures/view-transition/yarn.lock
+8246 -5454
@@ -2,1198 +2,2904 @@
2 # yarn lockfile v1
3
4
5 -abab@^1.0.3:
6 - version "1.0.4"
7 - resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e"
8 - integrity sha1-X6rZwsB/YN12dw9xzwJbYqY8/U4=
5 +"@alloc/quick-lru@^5.2.0":
6 + version "5.2.0"
7 + resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30"
8 + integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==
9 +
10 +"@ampproject/remapping@^2.2.0":
11 + version "2.3.0"
12 + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4"
13 + integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==
14 + dependencies:
15 + "@jridgewell/gen-mapping" "^0.3.5"
16 + "@jridgewell/trace-mapping" "^0.3.24"
17 +
18 +"@apideck/better-ajv-errors@^0.3.1":
19 + version "0.3.6"
20 + resolved "https://registry.yarnpkg.com/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz#957d4c28e886a64a8141f7522783be65733ff097"
21 + integrity sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==
22 + dependencies:
23 + json-schema "^0.4.0"
24 + jsonpointer "^5.0.0"
25 + leven "^3.1.0"
26 +
27 +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0", "@babel/code-frame@^7.26.2", "@babel/code-frame@^7.8.3":
28 + version "7.26.2"
29 + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85"
30 + integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==
31 + dependencies:
32 + "@babel/helper-validator-identifier" "^7.25.9"
33 + js-tokens "^4.0.0"
34 + picocolors "^1.0.0"
35 +
36 +"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.9", "@babel/compat-data@^7.26.0":
37 + version "7.26.3"
38 + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.3.tgz#99488264a56b2aded63983abd6a417f03b92ed02"
39 + integrity sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==
40 +
41 +"@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.3", "@babel/core@^7.16.0", "@babel/core@^7.7.2", "@babel/core@^7.8.0":
42 + version "7.26.0"
43 + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40"
44 + integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==
45 + dependencies:
46 + "@ampproject/remapping" "^2.2.0"
47 + "@babel/code-frame" "^7.26.0"
48 + "@babel/generator" "^7.26.0"
49 + "@babel/helper-compilation-targets" "^7.25.9"
50 + "@babel/helper-module-transforms" "^7.26.0"
51 + "@babel/helpers" "^7.26.0"
52 + "@babel/parser" "^7.26.0"
53 + "@babel/template" "^7.25.9"
54 + "@babel/traverse" "^7.25.9"
55 + "@babel/types" "^7.26.0"
56 + convert-source-map "^2.0.0"
57 + debug "^4.1.0"
58 + gensync "^1.0.0-beta.2"
59 + json5 "^2.2.3"
60 + semver "^6.3.1"
61 +
62 +"@babel/eslint-parser@^7.16.3":
63 + version "7.25.9"
64 + resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.25.9.tgz#603c68a63078796527bc9d0833f5e52dd5f9224c"
65 + integrity sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==
66 + dependencies:
67 + "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1"
68 + eslint-visitor-keys "^2.1.0"
69 + semver "^6.3.1"
70 +
71 +"@babel/generator@^7.26.0", "@babel/generator@^7.26.3", "@babel/generator@^7.7.2":
72 + version "7.26.3"
73 + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.3.tgz#ab8d4360544a425c90c248df7059881f4b2ce019"
74 + integrity sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==
75 + dependencies:
76 + "@babel/parser" "^7.26.3"
77 + "@babel/types" "^7.26.3"
78 + "@jridgewell/gen-mapping" "^0.3.5"
79 + "@jridgewell/trace-mapping" "^0.3.25"
80 + jsesc "^3.0.2"
81 +
82 +"@babel/helper-annotate-as-pure@^7.18.6", "@babel/helper-annotate-as-pure@^7.25.9":
83 + version "7.25.9"
84 + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz#d8eac4d2dc0d7b6e11fa6e535332e0d3184f06b4"
85 + integrity sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==
86 + dependencies:
87 + "@babel/types" "^7.25.9"
88 +
89 +"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.25.9":
90 + version "7.25.9"
91 + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz#55af025ce365be3cdc0c1c1e56c6af617ce88875"
92 + integrity sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==
93 + dependencies:
94 + "@babel/compat-data" "^7.25.9"
95 + "@babel/helper-validator-option" "^7.25.9"
96 + browserslist "^4.24.0"
97 + lru-cache "^5.1.1"
98 + semver "^6.3.1"
99 +
100 +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0", "@babel/helper-create-class-features-plugin@^7.25.9":
101 + version "7.25.9"
102 + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz#7644147706bb90ff613297d49ed5266bde729f83"
103 + integrity sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==
104 + dependencies:
105 + "@babel/helper-annotate-as-pure" "^7.25.9"
106 + "@babel/helper-member-expression-to-functions" "^7.25.9"
107 + "@babel/helper-optimise-call-expression" "^7.25.9"
108 + "@babel/helper-replace-supers" "^7.25.9"
109 + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
110 + "@babel/traverse" "^7.25.9"
111 + semver "^6.3.1"
112 +
113 +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.25.9":
114 + version "7.26.3"
115 + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz#5169756ecbe1d95f7866b90bb555b022595302a0"
116 + integrity sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==
117 + dependencies:
118 + "@babel/helper-annotate-as-pure" "^7.25.9"
119 + regexpu-core "^6.2.0"
120 + semver "^6.3.1"
121 +
122 +"@babel/helper-define-polyfill-provider@^0.6.2", "@babel/helper-define-polyfill-provider@^0.6.3":
123 + version "0.6.3"
124 + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz#f4f2792fae2ef382074bc2d713522cf24e6ddb21"
125 + integrity sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==
126 + dependencies:
127 + "@babel/helper-compilation-targets" "^7.22.6"
128 + "@babel/helper-plugin-utils" "^7.22.5"
129 + debug "^4.1.1"
130 + lodash.debounce "^4.0.8"
131 + resolve "^1.14.2"
132 +
133 +"@babel/helper-member-expression-to-functions@^7.25.9":
134 + version "7.25.9"
135 + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz#9dfffe46f727005a5ea29051ac835fb735e4c1a3"
136 + integrity sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==
137 + dependencies:
138 + "@babel/traverse" "^7.25.9"
139 + "@babel/types" "^7.25.9"
140 +
141 +"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.25.9":
142 + version "7.25.9"
143 + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715"
144 + integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==
145 + dependencies:
146 + "@babel/traverse" "^7.25.9"
147 + "@babel/types" "^7.25.9"
148 +
149 +"@babel/helper-module-transforms@^7.25.9", "@babel/helper-module-transforms@^7.26.0":
150 + version "7.26.0"
151 + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae"
152 + integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==
153 + dependencies:
154 + "@babel/helper-module-imports" "^7.25.9"
155 + "@babel/helper-validator-identifier" "^7.25.9"
156 + "@babel/traverse" "^7.25.9"
157 +
158 +"@babel/helper-optimise-call-expression@^7.25.9":
159 + version "7.25.9"
160 + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz#3324ae50bae7e2ab3c33f60c9a877b6a0146b54e"
161 + integrity sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==
162 + dependencies:
163 + "@babel/types" "^7.25.9"
164 +
165 +"@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.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.25.9", "@babel/helper-plugin-utils@^7.8.0":
166 + version "7.25.9"
167 + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz#9cbdd63a9443a2c92a725cca7ebca12cc8dd9f46"
168 + integrity sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==
169 +
170 +"@babel/helper-remap-async-to-generator@^7.25.9":
171 + version "7.25.9"
172 + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz#e53956ab3d5b9fb88be04b3e2f31b523afd34b92"
173 + integrity sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==
174 + dependencies:
175 + "@babel/helper-annotate-as-pure" "^7.25.9"
176 + "@babel/helper-wrap-function" "^7.25.9"
177 + "@babel/traverse" "^7.25.9"
178 +
179 +"@babel/helper-replace-supers@^7.25.9":
180 + version "7.25.9"
181 + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz#ba447224798c3da3f8713fc272b145e33da6a5c5"
182 + integrity sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==
183 + dependencies:
184 + "@babel/helper-member-expression-to-functions" "^7.25.9"
185 + "@babel/helper-optimise-call-expression" "^7.25.9"
186 + "@babel/traverse" "^7.25.9"
187 +
188 +"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.25.9":
189 + version "7.25.9"
190 + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz#0b2e1b62d560d6b1954893fd2b705dc17c91f0c9"
191 + integrity sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==
192 + dependencies:
193 + "@babel/traverse" "^7.25.9"
194 + "@babel/types" "^7.25.9"
195 +
196 +"@babel/helper-string-parser@^7.25.9":
197 + version "7.25.9"
198 + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c"
199 + integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==
200 +
201 +"@babel/helper-validator-identifier@^7.25.9":
202 + version "7.25.9"
203 + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7"
204 + integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==
205 +
206 +"@babel/helper-validator-option@^7.25.9":
207 + version "7.25.9"
208 + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72"
209 + integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==
210 +
211 +"@babel/helper-wrap-function@^7.25.9":
212 + version "7.25.9"
213 + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz#d99dfd595312e6c894bd7d237470025c85eea9d0"
214 + integrity sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==
215 + dependencies:
216 + "@babel/template" "^7.25.9"
217 + "@babel/traverse" "^7.25.9"
218 + "@babel/types" "^7.25.9"
219 +
220 +"@babel/helpers@^7.26.0":
221 + version "7.26.0"
222 + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4"
223 + integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==
224 + dependencies:
225 + "@babel/template" "^7.25.9"
226 + "@babel/types" "^7.26.0"
227 +
228 +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.3":
229 + version "7.26.3"
230 + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.3.tgz#8c51c5db6ddf08134af1ddbacf16aaab48bac234"
231 + integrity sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==
232 + dependencies:
233 + "@babel/types" "^7.26.3"
234 +
235 +"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.9":
236 + version "7.25.9"
237 + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz#cc2e53ebf0a0340777fff5ed521943e253b4d8fe"
238 + integrity sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==
239 + dependencies:
240 + "@babel/helper-plugin-utils" "^7.25.9"
241 + "@babel/traverse" "^7.25.9"
242 +
243 +"@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.25.9":
244 + version "7.25.9"
245 + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz#af9e4fb63ccb8abcb92375b2fcfe36b60c774d30"
246 + integrity sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==
247 + dependencies:
248 + "@babel/helper-plugin-utils" "^7.25.9"
249 +
250 +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.25.9":
251 + version "7.25.9"
252 + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz#e8dc26fcd616e6c5bf2bd0d5a2c151d4f92a9137"
253 + integrity sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==
254 + dependencies:
255 + "@babel/helper-plugin-utils" "^7.25.9"
256 +
257 +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.25.9":
258 + version "7.25.9"
259 + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz#807a667f9158acac6f6164b4beb85ad9ebc9e1d1"
260 + integrity sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==
261 + dependencies:
262 + "@babel/helper-plugin-utils" "^7.25.9"
263 + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
264 + "@babel/plugin-transform-optional-chaining" "^7.25.9"
265 +
266 +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.25.9":
267 + version "7.25.9"
268 + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz#de7093f1e7deaf68eadd7cc6b07f2ab82543269e"
269 + integrity sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==
270 + dependencies:
271 + "@babel/helper-plugin-utils" "^7.25.9"
272 + "@babel/traverse" "^7.25.9"
273 +
274 +"@babel/plugin-proposal-class-properties@^7.16.0":
275 + version "7.18.6"
276 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3"
277 + integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
278 + dependencies:
279 + "@babel/helper-create-class-features-plugin" "^7.18.6"
280 + "@babel/helper-plugin-utils" "^7.18.6"
281 +
282 +"@babel/plugin-proposal-decorators@^7.16.4":
283 + version "7.25.9"
284 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.9.tgz#8680707f943d1a3da2cd66b948179920f097e254"
285 + integrity sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==
286 + dependencies:
287 + "@babel/helper-create-class-features-plugin" "^7.25.9"
288 + "@babel/helper-plugin-utils" "^7.25.9"
289 + "@babel/plugin-syntax-decorators" "^7.25.9"
290 +
291 +"@babel/plugin-proposal-nullish-coalescing-operator@^7.16.0":
292 + version "7.18.6"
293 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1"
294 + integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==
295 + dependencies:
296 + "@babel/helper-plugin-utils" "^7.18.6"
297 + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
298 +
299 +"@babel/plugin-proposal-numeric-separator@^7.16.0":
300 + version "7.18.6"
301 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75"
302 + integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==
303 + dependencies:
304 + "@babel/helper-plugin-utils" "^7.18.6"
305 + "@babel/plugin-syntax-numeric-separator" "^7.10.4"
306 +
307 +"@babel/plugin-proposal-optional-chaining@^7.16.0":
308 + version "7.21.0"
309 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea"
310 + integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==
311 + dependencies:
312 + "@babel/helper-plugin-utils" "^7.20.2"
313 + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
314 + "@babel/plugin-syntax-optional-chaining" "^7.8.3"
315 +
316 +"@babel/plugin-proposal-private-methods@^7.16.0":
317 + version "7.18.6"
318 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea"
319 + integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==
320 + dependencies:
321 + "@babel/helper-create-class-features-plugin" "^7.18.6"
322 + "@babel/helper-plugin-utils" "^7.18.6"
323 +
324 +"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
325 + version "7.21.0-placeholder-for-preset-env.2"
326 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703"
327 + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==
328 +
329 +"@babel/plugin-proposal-private-property-in-object@7.21.11":
330 + version "7.21.11"
331 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz#69d597086b6760c4126525cfa154f34631ff272c"
332 + integrity sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==
333 + dependencies:
334 + "@babel/helper-annotate-as-pure" "^7.18.6"
335 + "@babel/helper-create-class-features-plugin" "^7.21.0"
336 + "@babel/helper-plugin-utils" "^7.20.2"
337 + "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
338 +
339 +"@babel/plugin-syntax-async-generators@^7.8.4":
340 + version "7.8.4"
341 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
342 + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
343 + dependencies:
344 + "@babel/helper-plugin-utils" "^7.8.0"
345 +
346 +"@babel/plugin-syntax-bigint@^7.8.3":
347 + version "7.8.3"
348 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea"
349 + integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
350 + dependencies:
351 + "@babel/helper-plugin-utils" "^7.8.0"
352 +
353 +"@babel/plugin-syntax-class-properties@^7.12.13":
354 + version "7.12.13"
355 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
356 + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
357 + dependencies:
358 + "@babel/helper-plugin-utils" "^7.12.13"
359 +
360 +"@babel/plugin-syntax-class-static-block@^7.14.5":
361 + version "7.14.5"
362 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406"
363 + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
364 + dependencies:
365 + "@babel/helper-plugin-utils" "^7.14.5"
366 +
367 +"@babel/plugin-syntax-decorators@^7.25.9":
368 + version "7.25.9"
369 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.9.tgz#986b4ca8b7b5df3f67cee889cedeffc2e2bf14b3"
370 + integrity sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==
371 + dependencies:
372 + "@babel/helper-plugin-utils" "^7.25.9"
373 +
374 +"@babel/plugin-syntax-flow@^7.25.9":
375 + version "7.26.0"
376 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.26.0.tgz#96507595c21b45fccfc2bc758d5c45452e6164fa"
377 + integrity sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==
378 + dependencies:
379 + "@babel/helper-plugin-utils" "^7.25.9"
380 +
381 +"@babel/plugin-syntax-import-assertions@^7.26.0":
382 + version "7.26.0"
383 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz#620412405058efa56e4a564903b79355020f445f"
384 + integrity sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==
385 + dependencies:
386 + "@babel/helper-plugin-utils" "^7.25.9"
387 +
388 +"@babel/plugin-syntax-import-attributes@^7.24.7", "@babel/plugin-syntax-import-attributes@^7.26.0":
389 + version "7.26.0"
390 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz#3b1412847699eea739b4f2602c74ce36f6b0b0f7"
391 + integrity sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==
392 + dependencies:
393 + "@babel/helper-plugin-utils" "^7.25.9"
394 +
395 +"@babel/plugin-syntax-import-meta@^7.10.4":
396 + version "7.10.4"
397 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
398 + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
399 + dependencies:
400 + "@babel/helper-plugin-utils" "^7.10.4"
401 +
402 +"@babel/plugin-syntax-json-strings@^7.8.3":
403 + version "7.8.3"
404 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
405 + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
406 + dependencies:
407 + "@babel/helper-plugin-utils" "^7.8.0"
408 +
409 +"@babel/plugin-syntax-jsx@^7.25.9":
410 + version "7.25.9"
411 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz#a34313a178ea56f1951599b929c1ceacee719290"
412 + integrity sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==
413 + dependencies:
414 + "@babel/helper-plugin-utils" "^7.25.9"
415 +
416 +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
417 + version "7.10.4"
418 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
419 + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
420 + dependencies:
421 + "@babel/helper-plugin-utils" "^7.10.4"
422 +
423 +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
424 + version "7.8.3"
425 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
426 + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
427 + dependencies:
428 + "@babel/helper-plugin-utils" "^7.8.0"
429 +
430 +"@babel/plugin-syntax-numeric-separator@^7.10.4":
431 + version "7.10.4"
432 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
433 + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
434 + dependencies:
435 + "@babel/helper-plugin-utils" "^7.10.4"
436 +
437 +"@babel/plugin-syntax-object-rest-spread@^7.8.3":
438 + version "7.8.3"
439 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
440 + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
441 + dependencies:
442 + "@babel/helper-plugin-utils" "^7.8.0"
443 +
444 +"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
445 + version "7.8.3"
446 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
447 + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
448 + dependencies:
449 + "@babel/helper-plugin-utils" "^7.8.0"
450 +
451 +"@babel/plugin-syntax-optional-chaining@^7.8.3":
452 + version "7.8.3"
453 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
454 + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
455 + dependencies:
456 + "@babel/helper-plugin-utils" "^7.8.0"
457 +
458 +"@babel/plugin-syntax-private-property-in-object@^7.14.5":
459 + version "7.14.5"
460 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad"
461 + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
462 + dependencies:
463 + "@babel/helper-plugin-utils" "^7.14.5"
464 +
465 +"@babel/plugin-syntax-top-level-await@^7.14.5":
466 + version "7.14.5"
467 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
468 + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
469 + dependencies:
470 + "@babel/helper-plugin-utils" "^7.14.5"
471 +
472 +"@babel/plugin-syntax-typescript@^7.25.9", "@babel/plugin-syntax-typescript@^7.7.2":
473 + version "7.25.9"
474 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz#67dda2b74da43727cf21d46cf9afef23f4365399"
475 + integrity sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==
476 + dependencies:
477 + "@babel/helper-plugin-utils" "^7.25.9"
478 +
479 +"@babel/plugin-syntax-unicode-sets-regex@^7.18.6":
480 + version "7.18.6"
481 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357"
482 + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==
483 + dependencies:
484 + "@babel/helper-create-regexp-features-plugin" "^7.18.6"
485 + "@babel/helper-plugin-utils" "^7.18.6"
486 +
487 +"@babel/plugin-transform-arrow-functions@^7.25.9":
488 + version "7.25.9"
489 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz#7821d4410bee5daaadbb4cdd9a6649704e176845"
490 + integrity sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==
491 + dependencies:
492 + "@babel/helper-plugin-utils" "^7.25.9"
493 +
494 +"@babel/plugin-transform-async-generator-functions@^7.25.9":
495 + version "7.25.9"
496 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz#1b18530b077d18a407c494eb3d1d72da505283a2"
497 + integrity sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==
498 + dependencies:
499 + "@babel/helper-plugin-utils" "^7.25.9"
500 + "@babel/helper-remap-async-to-generator" "^7.25.9"
501 + "@babel/traverse" "^7.25.9"
502 +
503 +"@babel/plugin-transform-async-to-generator@^7.25.9":
504 + version "7.25.9"
505 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz#c80008dacae51482793e5a9c08b39a5be7e12d71"
506 + integrity sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==
507 + dependencies:
508 + "@babel/helper-module-imports" "^7.25.9"
509 + "@babel/helper-plugin-utils" "^7.25.9"
510 + "@babel/helper-remap-async-to-generator" "^7.25.9"
511 +
512 +"@babel/plugin-transform-block-scoped-functions@^7.25.9":
513 + version "7.25.9"
514 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz#5700691dbd7abb93de300ca7be94203764fce458"
515 + integrity sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==
516 + dependencies:
517 + "@babel/helper-plugin-utils" "^7.25.9"
518 +
519 +"@babel/plugin-transform-block-scoping@^7.25.9":
520 + version "7.25.9"
521 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz#c33665e46b06759c93687ca0f84395b80c0473a1"
522 + integrity sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==
523 + dependencies:
524 + "@babel/helper-plugin-utils" "^7.25.9"
525 +
526 +"@babel/plugin-transform-class-properties@^7.25.9":
527 + version "7.25.9"
528 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz#a8ce84fedb9ad512549984101fa84080a9f5f51f"
529 + integrity sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==
530 + dependencies:
531 + "@babel/helper-create-class-features-plugin" "^7.25.9"
532 + "@babel/helper-plugin-utils" "^7.25.9"
533 +
534 +"@babel/plugin-transform-class-static-block@^7.26.0":
535 + version "7.26.0"
536 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz#6c8da219f4eb15cae9834ec4348ff8e9e09664a0"
537 + integrity sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==
538 + dependencies:
539 + "@babel/helper-create-class-features-plugin" "^7.25.9"
540 + "@babel/helper-plugin-utils" "^7.25.9"
541 +
542 +"@babel/plugin-transform-classes@^7.25.9":
543 + version "7.25.9"
544 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz#7152457f7880b593a63ade8a861e6e26a4469f52"
545 + integrity sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==
546 + dependencies:
547 + "@babel/helper-annotate-as-pure" "^7.25.9"
548 + "@babel/helper-compilation-targets" "^7.25.9"
549 + "@babel/helper-plugin-utils" "^7.25.9"
550 + "@babel/helper-replace-supers" "^7.25.9"
551 + "@babel/traverse" "^7.25.9"
552 + globals "^11.1.0"
553 +
554 +"@babel/plugin-transform-computed-properties@^7.25.9":
555 + version "7.25.9"
556 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz#db36492c78460e534b8852b1d5befe3c923ef10b"
557 + integrity sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==
558 + dependencies:
559 + "@babel/helper-plugin-utils" "^7.25.9"
560 + "@babel/template" "^7.25.9"
561 +
562 +"@babel/plugin-transform-destructuring@^7.25.9":
563 + version "7.25.9"
564 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz#966ea2595c498224340883602d3cfd7a0c79cea1"
565 + integrity sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==
566 + dependencies:
567 + "@babel/helper-plugin-utils" "^7.25.9"
568 +
569 +"@babel/plugin-transform-dotall-regex@^7.25.9":
570 + version "7.25.9"
571 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz#bad7945dd07734ca52fe3ad4e872b40ed09bb09a"
572 + integrity sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==
573 + dependencies:
574 + "@babel/helper-create-regexp-features-plugin" "^7.25.9"
575 + "@babel/helper-plugin-utils" "^7.25.9"
576 +
577 +"@babel/plugin-transform-duplicate-keys@^7.25.9":
578 + version "7.25.9"
579 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz#8850ddf57dce2aebb4394bb434a7598031059e6d"
580 + integrity sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==
581 + dependencies:
582 + "@babel/helper-plugin-utils" "^7.25.9"
583 +
584 +"@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.25.9":
585 + version "7.25.9"
586 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz#6f7259b4de127721a08f1e5165b852fcaa696d31"
587 + integrity sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==
588 + dependencies:
589 + "@babel/helper-create-regexp-features-plugin" "^7.25.9"
590 + "@babel/helper-plugin-utils" "^7.25.9"
591 +
592 +"@babel/plugin-transform-dynamic-import@^7.25.9":
593 + version "7.25.9"
594 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz#23e917de63ed23c6600c5dd06d94669dce79f7b8"
595 + integrity sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==
596 + dependencies:
597 + "@babel/helper-plugin-utils" "^7.25.9"
598 +
599 +"@babel/plugin-transform-exponentiation-operator@^7.25.9":
600 + version "7.26.3"
601 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz#e29f01b6de302c7c2c794277a48f04a9ca7f03bc"
602 + integrity sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==
603 + dependencies:
604 + "@babel/helper-plugin-utils" "^7.25.9"
605 +
606 +"@babel/plugin-transform-export-namespace-from@^7.25.9":
607 + version "7.25.9"
608 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz#90745fe55053394f554e40584cda81f2c8a402a2"
609 + integrity sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==
610 + dependencies:
611 + "@babel/helper-plugin-utils" "^7.25.9"
612 +
613 +"@babel/plugin-transform-flow-strip-types@^7.16.0":
614 + version "7.25.9"
615 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.9.tgz#85879b42a8f5948fd6317069978e98f23ef8aec1"
616 + integrity sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==
617 + dependencies:
618 + "@babel/helper-plugin-utils" "^7.25.9"
619 + "@babel/plugin-syntax-flow" "^7.25.9"
620 +
621 +"@babel/plugin-transform-for-of@^7.25.9":
622 + version "7.25.9"
623 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz#4bdc7d42a213397905d89f02350c5267866d5755"
624 + integrity sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==
625 + dependencies:
626 + "@babel/helper-plugin-utils" "^7.25.9"
627 + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
628 +
629 +"@babel/plugin-transform-function-name@^7.25.9":
630 + version "7.25.9"
631 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz#939d956e68a606661005bfd550c4fc2ef95f7b97"
632 + integrity sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==
633 + dependencies:
634 + "@babel/helper-compilation-targets" "^7.25.9"
635 + "@babel/helper-plugin-utils" "^7.25.9"
636 + "@babel/traverse" "^7.25.9"
637 +
638 +"@babel/plugin-transform-json-strings@^7.25.9":
639 + version "7.25.9"
640 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz#c86db407cb827cded902a90c707d2781aaa89660"
641 + integrity sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==
642 + dependencies:
643 + "@babel/helper-plugin-utils" "^7.25.9"
644 +
645 +"@babel/plugin-transform-literals@^7.25.9":
646 + version "7.25.9"
647 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz#1a1c6b4d4aa59bc4cad5b6b3a223a0abd685c9de"
648 + integrity sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==
649 + dependencies:
650 + "@babel/helper-plugin-utils" "^7.25.9"
651 +
652 +"@babel/plugin-transform-logical-assignment-operators@^7.25.9":
653 + version "7.25.9"
654 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz#b19441a8c39a2fda0902900b306ea05ae1055db7"
655 + integrity sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==
656 + dependencies:
657 + "@babel/helper-plugin-utils" "^7.25.9"
658 +
659 +"@babel/plugin-transform-member-expression-literals@^7.25.9":
660 + version "7.25.9"
661 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz#63dff19763ea64a31f5e6c20957e6a25e41ed5de"
662 + integrity sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==
663 + dependencies:
664 + "@babel/helper-plugin-utils" "^7.25.9"
665 +
666 +"@babel/plugin-transform-modules-amd@^7.25.9":
667 + version "7.25.9"
668 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz#49ba478f2295101544abd794486cd3088dddb6c5"
669 + integrity sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==
670 + dependencies:
671 + "@babel/helper-module-transforms" "^7.25.9"
672 + "@babel/helper-plugin-utils" "^7.25.9"
673 +
674 +"@babel/plugin-transform-modules-commonjs@^7.25.9":
675 + version "7.26.3"
676 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz#8f011d44b20d02c3de44d8850d971d8497f981fb"
677 + integrity sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==
678 + dependencies:
679 + "@babel/helper-module-transforms" "^7.26.0"
680 + "@babel/helper-plugin-utils" "^7.25.9"
681 +
682 +"@babel/plugin-transform-modules-systemjs@^7.25.9":
683 + version "7.25.9"
684 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz#8bd1b43836269e3d33307151a114bcf3ba6793f8"
685 + integrity sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==
686 + dependencies:
687 + "@babel/helper-module-transforms" "^7.25.9"
688 + "@babel/helper-plugin-utils" "^7.25.9"
689 + "@babel/helper-validator-identifier" "^7.25.9"
690 + "@babel/traverse" "^7.25.9"
691 +
692 +"@babel/plugin-transform-modules-umd@^7.25.9":
693 + version "7.25.9"
694 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz#6710079cdd7c694db36529a1e8411e49fcbf14c9"
695 + integrity sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==
696 + dependencies:
697 + "@babel/helper-module-transforms" "^7.25.9"
698 + "@babel/helper-plugin-utils" "^7.25.9"
699 +
700 +"@babel/plugin-transform-named-capturing-groups-regex@^7.25.9":
701 + version "7.25.9"
702 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz#454990ae6cc22fd2a0fa60b3a2c6f63a38064e6a"
703 + integrity sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==
704 + dependencies:
705 + "@babel/helper-create-regexp-features-plugin" "^7.25.9"
706 + "@babel/helper-plugin-utils" "^7.25.9"
707 +
708 +"@babel/plugin-transform-new-target@^7.25.9":
709 + version "7.25.9"
710 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz#42e61711294b105c248336dcb04b77054ea8becd"
711 + integrity sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==
712 + dependencies:
713 + "@babel/helper-plugin-utils" "^7.25.9"
714 +
715 +"@babel/plugin-transform-nullish-coalescing-operator@^7.25.9":
716 + version "7.25.9"
717 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz#bcb1b0d9e948168102d5f7104375ca21c3266949"
718 + integrity sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==
719 + dependencies:
720 + "@babel/helper-plugin-utils" "^7.25.9"
721 +
722 +"@babel/plugin-transform-numeric-separator@^7.25.9":
723 + version "7.25.9"
724 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz#bfed75866261a8b643468b0ccfd275f2033214a1"
725 + integrity sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==
726 + dependencies:
727 + "@babel/helper-plugin-utils" "^7.25.9"
728 +
729 +"@babel/plugin-transform-object-rest-spread@^7.25.9":
730 + version "7.25.9"
731 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz#0203725025074164808bcf1a2cfa90c652c99f18"
732 + integrity sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==
733 + dependencies:
734 + "@babel/helper-compilation-targets" "^7.25.9"
735 + "@babel/helper-plugin-utils" "^7.25.9"
736 + "@babel/plugin-transform-parameters" "^7.25.9"
737 +
738 +"@babel/plugin-transform-object-super@^7.25.9":
739 + version "7.25.9"
740 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz#385d5de135162933beb4a3d227a2b7e52bb4cf03"
741 + integrity sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==
742 + dependencies:
743 + "@babel/helper-plugin-utils" "^7.25.9"
744 + "@babel/helper-replace-supers" "^7.25.9"
745 +
746 +"@babel/plugin-transform-optional-catch-binding@^7.25.9":
747 + version "7.25.9"
748 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz#10e70d96d52bb1f10c5caaac59ac545ea2ba7ff3"
749 + integrity sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==
750 + dependencies:
751 + "@babel/helper-plugin-utils" "^7.25.9"
752 +
753 +"@babel/plugin-transform-optional-chaining@^7.25.9":
754 + version "7.25.9"
755 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz#e142eb899d26ef715435f201ab6e139541eee7dd"
756 + integrity sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==
757 + dependencies:
758 + "@babel/helper-plugin-utils" "^7.25.9"
759 + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
760 +
761 +"@babel/plugin-transform-parameters@^7.25.9":
762 + version "7.25.9"
763 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz#b856842205b3e77e18b7a7a1b94958069c7ba257"
764 + integrity sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==
765 + dependencies:
766 + "@babel/helper-plugin-utils" "^7.25.9"
767 +
768 +"@babel/plugin-transform-private-methods@^7.25.9":
769 + version "7.25.9"
770 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz#847f4139263577526455d7d3223cd8bda51e3b57"
771 + integrity sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==
772 + dependencies:
773 + "@babel/helper-create-class-features-plugin" "^7.25.9"
774 + "@babel/helper-plugin-utils" "^7.25.9"
775 +
776 +"@babel/plugin-transform-private-property-in-object@^7.25.9":
777 + version "7.25.9"
778 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz#9c8b73e64e6cc3cbb2743633885a7dd2c385fe33"
779 + integrity sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==
780 + dependencies:
781 + "@babel/helper-annotate-as-pure" "^7.25.9"
782 + "@babel/helper-create-class-features-plugin" "^7.25.9"
783 + "@babel/helper-plugin-utils" "^7.25.9"
784 +
785 +"@babel/plugin-transform-property-literals@^7.25.9":
786 + version "7.25.9"
787 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz#d72d588bd88b0dec8b62e36f6fda91cedfe28e3f"
788 + integrity sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==
789 + dependencies:
790 + "@babel/helper-plugin-utils" "^7.25.9"
791 +
792 +"@babel/plugin-transform-react-constant-elements@^7.12.1":
793 + version "7.25.9"
794 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.25.9.tgz#08a1de35a301929b60fdf2788a54b46cd8ecd0ef"
795 + integrity sha512-Ncw2JFsJVuvfRsa2lSHiC55kETQVLSnsYGQ1JDDwkUeWGTL/8Tom8aLTnlqgoeuopWrbbGndrc9AlLYrIosrow==
796 + dependencies:
797 + "@babel/helper-plugin-utils" "^7.25.9"
798 +
799 +"@babel/plugin-transform-react-display-name@^7.16.0", "@babel/plugin-transform-react-display-name@^7.25.9":
800 + version "7.25.9"
801 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz#4b79746b59efa1f38c8695065a92a9f5afb24f7d"
802 + integrity sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==
803 + dependencies:
804 + "@babel/helper-plugin-utils" "^7.25.9"
805 +
806 +"@babel/plugin-transform-react-jsx-development@^7.25.9":
807 + version "7.25.9"
808 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz#8fd220a77dd139c07e25225a903b8be8c829e0d7"
809 + integrity sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==
810 + dependencies:
811 + "@babel/plugin-transform-react-jsx" "^7.25.9"
812 +
813 +"@babel/plugin-transform-react-jsx@^7.25.9":
814 + version "7.25.9"
815 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz#06367940d8325b36edff5e2b9cbe782947ca4166"
816 + integrity sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==
817 + dependencies:
818 + "@babel/helper-annotate-as-pure" "^7.25.9"
819 + "@babel/helper-module-imports" "^7.25.9"
820 + "@babel/helper-plugin-utils" "^7.25.9"
821 + "@babel/plugin-syntax-jsx" "^7.25.9"
822 + "@babel/types" "^7.25.9"
823 +
824 +"@babel/plugin-transform-react-pure-annotations@^7.25.9":
825 + version "7.25.9"
826 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz#ea1c11b2f9dbb8e2d97025f43a3b5bc47e18ae62"
827 + integrity sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==
828 + dependencies:
829 + "@babel/helper-annotate-as-pure" "^7.25.9"
830 + "@babel/helper-plugin-utils" "^7.25.9"
831 +
832 +"@babel/plugin-transform-regenerator@^7.25.9":
833 + version "7.25.9"
834 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz#03a8a4670d6cebae95305ac6defac81ece77740b"
835 + integrity sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==
836 + dependencies:
837 + "@babel/helper-plugin-utils" "^7.25.9"
838 + regenerator-transform "^0.15.2"
839 +
840 +"@babel/plugin-transform-regexp-modifiers@^7.26.0":
841 + version "7.26.0"
842 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz#2f5837a5b5cd3842a919d8147e9903cc7455b850"
843 + integrity sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==
844 + dependencies:
845 + "@babel/helper-create-regexp-features-plugin" "^7.25.9"
846 + "@babel/helper-plugin-utils" "^7.25.9"
847 +
848 +"@babel/plugin-transform-reserved-words@^7.25.9":
849 + version "7.25.9"
850 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz#0398aed2f1f10ba3f78a93db219b27ef417fb9ce"
851 + integrity sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==
852 + dependencies:
853 + "@babel/helper-plugin-utils" "^7.25.9"
854 +
855 +"@babel/plugin-transform-runtime@^7.16.4":
856 + version "7.25.9"
857 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.9.tgz#62723ea3f5b31ffbe676da9d6dae17138ae580ea"
858 + integrity sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==
859 + dependencies:
860 + "@babel/helper-module-imports" "^7.25.9"
861 + "@babel/helper-plugin-utils" "^7.25.9"
862 + babel-plugin-polyfill-corejs2 "^0.4.10"
863 + babel-plugin-polyfill-corejs3 "^0.10.6"
864 + babel-plugin-polyfill-regenerator "^0.6.1"
865 + semver "^6.3.1"
866 +
867 +"@babel/plugin-transform-shorthand-properties@^7.25.9":
868 + version "7.25.9"
869 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz#bb785e6091f99f826a95f9894fc16fde61c163f2"
870 + integrity sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==
871 + dependencies:
872 + "@babel/helper-plugin-utils" "^7.25.9"
873 +
874 +"@babel/plugin-transform-spread@^7.25.9":
875 + version "7.25.9"
876 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz#24a35153931b4ba3d13cec4a7748c21ab5514ef9"
877 + integrity sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==
878 + dependencies:
879 + "@babel/helper-plugin-utils" "^7.25.9"
880 + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
881 +
882 +"@babel/plugin-transform-sticky-regex@^7.25.9":
883 + version "7.25.9"
884 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz#c7f02b944e986a417817b20ba2c504dfc1453d32"
885 + integrity sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==
886 + dependencies:
887 + "@babel/helper-plugin-utils" "^7.25.9"
888 +
889 +"@babel/plugin-transform-template-literals@^7.25.9":
890 + version "7.25.9"
891 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz#6dbd4a24e8fad024df76d1fac6a03cf413f60fe1"
892 + integrity sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==
893 + dependencies:
894 + "@babel/helper-plugin-utils" "^7.25.9"
895 +
896 +"@babel/plugin-transform-typeof-symbol@^7.25.9":
897 + version "7.25.9"
898 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz#224ba48a92869ddbf81f9b4a5f1204bbf5a2bc4b"
899 + integrity sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==
900 + dependencies:
901 + "@babel/helper-plugin-utils" "^7.25.9"
902 +
903 +"@babel/plugin-transform-typescript@^7.25.9":
904 + version "7.26.3"
905 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.3.tgz#3d6add9c78735623317387ee26d5ada540eee3fd"
906 + integrity sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==
907 + dependencies:
908 + "@babel/helper-annotate-as-pure" "^7.25.9"
909 + "@babel/helper-create-class-features-plugin" "^7.25.9"
910 + "@babel/helper-plugin-utils" "^7.25.9"
911 + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
912 + "@babel/plugin-syntax-typescript" "^7.25.9"
913 +
914 +"@babel/plugin-transform-unicode-escapes@^7.25.9":
915 + version "7.25.9"
916 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz#a75ef3947ce15363fccaa38e2dd9bc70b2788b82"
917 + integrity sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==
918 + dependencies:
919 + "@babel/helper-plugin-utils" "^7.25.9"
920 +
921 +"@babel/plugin-transform-unicode-property-regex@^7.25.9":
922 + version "7.25.9"
923 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz#a901e96f2c1d071b0d1bb5dc0d3c880ce8f53dd3"
924 + integrity sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==
925 + dependencies:
926 + "@babel/helper-create-regexp-features-plugin" "^7.25.9"
927 + "@babel/helper-plugin-utils" "^7.25.9"
928 +
929 +"@babel/plugin-transform-unicode-regex@^7.25.9":
930 + version "7.25.9"
931 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz#5eae747fe39eacf13a8bd006a4fb0b5d1fa5e9b1"
932 + integrity sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==
933 + dependencies:
934 + "@babel/helper-create-regexp-features-plugin" "^7.25.9"
935 + "@babel/helper-plugin-utils" "^7.25.9"
936 +
937 +"@babel/plugin-transform-unicode-sets-regex@^7.25.9":
938 + version "7.25.9"
939 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz#65114c17b4ffc20fa5b163c63c70c0d25621fabe"
940 + integrity sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==
941 + dependencies:
942 + "@babel/helper-create-regexp-features-plugin" "^7.25.9"
943 + "@babel/helper-plugin-utils" "^7.25.9"
944 +
945 +"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.12.1", "@babel/preset-env@^7.16.4":
946 + version "7.26.0"
947 + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.26.0.tgz#30e5c6bc1bcc54865bff0c5a30f6d4ccdc7fa8b1"
948 + integrity sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==
949 + dependencies:
950 + "@babel/compat-data" "^7.26.0"
951 + "@babel/helper-compilation-targets" "^7.25.9"
952 + "@babel/helper-plugin-utils" "^7.25.9"
953 + "@babel/helper-validator-option" "^7.25.9"
954 + "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.25.9"
955 + "@babel/plugin-bugfix-safari-class-field-initializer-scope" "^7.25.9"
956 + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.25.9"
957 + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.25.9"
958 + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.25.9"
959 + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2"
960 + "@babel/plugin-syntax-import-assertions" "^7.26.0"
961 + "@babel/plugin-syntax-import-attributes" "^7.26.0"
962 + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
963 + "@babel/plugin-transform-arrow-functions" "^7.25.9"
964 + "@babel/plugin-transform-async-generator-functions" "^7.25.9"
965 + "@babel/plugin-transform-async-to-generator" "^7.25.9"
966 + "@babel/plugin-transform-block-scoped-functions" "^7.25.9"
967 + "@babel/plugin-transform-block-scoping" "^7.25.9"
968 + "@babel/plugin-transform-class-properties" "^7.25.9"
969 + "@babel/plugin-transform-class-static-block" "^7.26.0"
970 + "@babel/plugin-transform-classes" "^7.25.9"
971 + "@babel/plugin-transform-computed-properties" "^7.25.9"
972 + "@babel/plugin-transform-destructuring" "^7.25.9"
973 + "@babel/plugin-transform-dotall-regex" "^7.25.9"
974 + "@babel/plugin-transform-duplicate-keys" "^7.25.9"
975 + "@babel/plugin-transform-duplicate-named-capturing-groups-regex" "^7.25.9"
976 + "@babel/plugin-transform-dynamic-import" "^7.25.9"
977 + "@babel/plugin-transform-exponentiation-operator" "^7.25.9"
978 + "@babel/plugin-transform-export-namespace-from" "^7.25.9"
979 + "@babel/plugin-transform-for-of" "^7.25.9"
980 + "@babel/plugin-transform-function-name" "^7.25.9"
981 + "@babel/plugin-transform-json-strings" "^7.25.9"
982 + "@babel/plugin-transform-literals" "^7.25.9"
983 + "@babel/plugin-transform-logical-assignment-operators" "^7.25.9"
984 + "@babel/plugin-transform-member-expression-literals" "^7.25.9"
985 + "@babel/plugin-transform-modules-amd" "^7.25.9"
986 + "@babel/plugin-transform-modules-commonjs" "^7.25.9"
987 + "@babel/plugin-transform-modules-systemjs" "^7.25.9"
988 + "@babel/plugin-transform-modules-umd" "^7.25.9"
989 + "@babel/plugin-transform-named-capturing-groups-regex" "^7.25.9"
990 + "@babel/plugin-transform-new-target" "^7.25.9"
991 + "@babel/plugin-transform-nullish-coalescing-operator" "^7.25.9"
992 + "@babel/plugin-transform-numeric-separator" "^7.25.9"
993 + "@babel/plugin-transform-object-rest-spread" "^7.25.9"
994 + "@babel/plugin-transform-object-super" "^7.25.9"
995 + "@babel/plugin-transform-optional-catch-binding" "^7.25.9"
996 + "@babel/plugin-transform-optional-chaining" "^7.25.9"
997 + "@babel/plugin-transform-parameters" "^7.25.9"
998 + "@babel/plugin-transform-private-methods" "^7.25.9"
999 + "@babel/plugin-transform-private-property-in-object" "^7.25.9"
1000 + "@babel/plugin-transform-property-literals" "^7.25.9"
1001 + "@babel/plugin-transform-regenerator" "^7.25.9"
1002 + "@babel/plugin-transform-regexp-modifiers" "^7.26.0"
1003 + "@babel/plugin-transform-reserved-words" "^7.25.9"
1004 + "@babel/plugin-transform-shorthand-properties" "^7.25.9"
1005 + "@babel/plugin-transform-spread" "^7.25.9"
1006 + "@babel/plugin-transform-sticky-regex" "^7.25.9"
1007 + "@babel/plugin-transform-template-literals" "^7.25.9"
1008 + "@babel/plugin-transform-typeof-symbol" "^7.25.9"
1009 + "@babel/plugin-transform-unicode-escapes" "^7.25.9"
1010 + "@babel/plugin-transform-unicode-property-regex" "^7.25.9"
1011 + "@babel/plugin-transform-unicode-regex" "^7.25.9"
1012 + "@babel/plugin-transform-unicode-sets-regex" "^7.25.9"
1013 + "@babel/preset-modules" "0.1.6-no-external-plugins"
1014 + babel-plugin-polyfill-corejs2 "^0.4.10"
1015 + babel-plugin-polyfill-corejs3 "^0.10.6"
1016 + babel-plugin-polyfill-regenerator "^0.6.1"
1017 + core-js-compat "^3.38.1"
1018 + semver "^6.3.1"
1019 +
1020 +"@babel/preset-modules@0.1.6-no-external-plugins":
1021 + version "0.1.6-no-external-plugins"
1022 + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a"
1023 + integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==
1024 + dependencies:
1025 + "@babel/helper-plugin-utils" "^7.0.0"
1026 + "@babel/types" "^7.4.4"
1027 + esutils "^2.0.2"
1028 +
1029 +"@babel/preset-react@^7.12.5", "@babel/preset-react@^7.16.0":
1030 + version "7.26.3"
1031 + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.26.3.tgz#7c5e028d623b4683c1f83a0bd4713b9100560caa"
1032 + integrity sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==
1033 + dependencies:
1034 + "@babel/helper-plugin-utils" "^7.25.9"
1035 + "@babel/helper-validator-option" "^7.25.9"
1036 + "@babel/plugin-transform-react-display-name" "^7.25.9"
1037 + "@babel/plugin-transform-react-jsx" "^7.25.9"
1038 + "@babel/plugin-transform-react-jsx-development" "^7.25.9"
1039 + "@babel/plugin-transform-react-pure-annotations" "^7.25.9"
1040 +
1041 +"@babel/preset-typescript@^7.16.0":
1042 + version "7.26.0"
1043 + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz#4a570f1b8d104a242d923957ffa1eaff142a106d"
1044 + integrity sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==
1045 + dependencies:
1046 + "@babel/helper-plugin-utils" "^7.25.9"
1047 + "@babel/helper-validator-option" "^7.25.9"
1048 + "@babel/plugin-syntax-jsx" "^7.25.9"
1049 + "@babel/plugin-transform-modules-commonjs" "^7.25.9"
1050 + "@babel/plugin-transform-typescript" "^7.25.9"
1051 +
1052 +"@babel/register@^7.25.9":
1053 + version "7.25.9"
1054 + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.25.9.tgz#1c465acf7dc983d70ccc318eb5b887ecb04f021b"
1055 + integrity sha512-8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA==
1056 + dependencies:
1057 + clone-deep "^4.0.1"
1058 + find-cache-dir "^2.0.0"
1059 + make-dir "^2.1.0"
1060 + pirates "^4.0.6"
1061 + source-map-support "^0.5.16"
1062 +
1063 +"@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.3", "@babel/runtime@^7.8.4":
1064 + version "7.26.0"
1065 + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.0.tgz#8600c2f595f277c60815256418b85356a65173c1"
1066 + integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==
1067 + dependencies:
1068 + regenerator-runtime "^0.14.0"
1069 +
1070 +"@babel/template@^7.25.9", "@babel/template@^7.3.3":
1071 + version "7.25.9"
1072 + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016"
1073 + integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==
1074 + dependencies:
1075 + "@babel/code-frame" "^7.25.9"
1076 + "@babel/parser" "^7.25.9"
1077 + "@babel/types" "^7.25.9"
1078 +
1079 +"@babel/traverse@^7.25.9", "@babel/traverse@^7.7.2":
1080 + version "7.26.4"
1081 + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.4.tgz#ac3a2a84b908dde6d463c3bfa2c5fdc1653574bd"
1082 + integrity sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==
1083 + dependencies:
1084 + "@babel/code-frame" "^7.26.2"
1085 + "@babel/generator" "^7.26.3"
1086 + "@babel/parser" "^7.26.3"
1087 + "@babel/template" "^7.25.9"
1088 + "@babel/types" "^7.26.3"
1089 + debug "^4.3.1"
1090 + globals "^11.1.0"
1091 +
1092 +"@babel/types@^7.0.0", "@babel/types@^7.12.6", "@babel/types@^7.20.7", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.26.3", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
1093 + version "7.26.3"
1094 + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.3.tgz#37e79830f04c2b5687acc77db97fbc75fb81f3c0"
1095 + integrity sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==
1096 + dependencies:
1097 + "@babel/helper-string-parser" "^7.25.9"
1098 + "@babel/helper-validator-identifier" "^7.25.9"
1099 +
1100 +"@bcoe/v8-coverage@^0.2.3":
1101 + version "0.2.3"
1102 + resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
1103 + integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
1104 +
1105 +"@csstools/normalize.css@*":
1106 + version "12.1.1"
1107 + resolved "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-12.1.1.tgz#f0ad221b7280f3fc814689786fd9ee092776ef8f"
1108 + integrity sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==
1109
10 -abbrev@1:
1110 +"@csstools/postcss-cascade-layers@^1.1.1":
1111 version "1.1.1"
12 - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
13 - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
1112 + resolved "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz#8a997edf97d34071dd2e37ea6022447dd9e795ad"
1113 + integrity sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==
1114 + dependencies:
1115 + "@csstools/selector-specificity" "^2.0.2"
1116 + postcss-selector-parser "^6.0.10"
1117
15 -accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7:
16 - version "1.3.7"
17 - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
18 - integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
1118 +"@csstools/postcss-color-function@^1.1.1":
1119 + version "1.1.1"
1120 + resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz#2bd36ab34f82d0497cfacdc9b18d34b5e6f64b6b"
1121 + integrity sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==
1122 dependencies:
20 - mime-types "~2.1.24"
21 - negotiator "0.6.2"
1123 + "@csstools/postcss-progressive-custom-properties" "^1.1.0"
1124 + postcss-value-parser "^4.2.0"
1125 +
1126 +"@csstools/postcss-font-format-keywords@^1.0.1":
1127 + version "1.0.1"
1128 + resolved "https://registry.yarnpkg.com/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz#677b34e9e88ae997a67283311657973150e8b16a"
1129 + integrity sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==
1130 + dependencies:
1131 + postcss-value-parser "^4.2.0"
1132 +
1133 +"@csstools/postcss-hwb-function@^1.0.2":
1134 + version "1.0.2"
1135 + resolved "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz#ab54a9fce0ac102c754854769962f2422ae8aa8b"
1136 + integrity sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==
1137 + dependencies:
1138 + postcss-value-parser "^4.2.0"
1139 +
1140 +"@csstools/postcss-ic-unit@^1.0.1":
1141 + version "1.0.1"
1142 + resolved "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz#28237d812a124d1a16a5acc5c3832b040b303e58"
1143 + integrity sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==
1144 + dependencies:
1145 + "@csstools/postcss-progressive-custom-properties" "^1.1.0"
1146 + postcss-value-parser "^4.2.0"
1147 +
1148 +"@csstools/postcss-is-pseudo-class@^2.0.7":
1149 + version "2.0.7"
1150 + resolved "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz#846ae6c0d5a1eaa878fce352c544f9c295509cd1"
1151 + integrity sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==
1152 + dependencies:
1153 + "@csstools/selector-specificity" "^2.0.0"
1154 + postcss-selector-parser "^6.0.10"
1155 +
1156 +"@csstools/postcss-nested-calc@^1.0.0":
1157 + version "1.0.0"
1158 + resolved "https://registry.yarnpkg.com/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz#d7e9d1d0d3d15cf5ac891b16028af2a1044d0c26"
1159 + integrity sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==
1160 + dependencies:
1161 + postcss-value-parser "^4.2.0"
1162 +
1163 +"@csstools/postcss-normalize-display-values@^1.0.1":
1164 + version "1.0.1"
1165 + resolved "https://registry.yarnpkg.com/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz#15da54a36e867b3ac5163ee12c1d7f82d4d612c3"
1166 + integrity sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==
1167 + dependencies:
1168 + postcss-value-parser "^4.2.0"
1169 +
1170 +"@csstools/postcss-oklab-function@^1.1.1":
1171 + version "1.1.1"
1172 + resolved "https://registry.yarnpkg.com/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz#88cee0fbc8d6df27079ebd2fa016ee261eecf844"
1173 + integrity sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==
1174 + dependencies:
1175 + "@csstools/postcss-progressive-custom-properties" "^1.1.0"
1176 + postcss-value-parser "^4.2.0"
1177 +
1178 +"@csstools/postcss-progressive-custom-properties@^1.1.0", "@csstools/postcss-progressive-custom-properties@^1.3.0":
1179 + version "1.3.0"
1180 + resolved "https://registry.yarnpkg.com/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz#542292558384361776b45c85226b9a3a34f276fa"
1181 + integrity sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==
1182 + dependencies:
1183 + postcss-value-parser "^4.2.0"
1184 +
1185 +"@csstools/postcss-stepped-value-functions@^1.0.1":
1186 + version "1.0.1"
1187 + resolved "https://registry.yarnpkg.com/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz#f8772c3681cc2befed695e2b0b1d68e22f08c4f4"
1188 + integrity sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==
1189 + dependencies:
1190 + postcss-value-parser "^4.2.0"
1191 +
1192 +"@csstools/postcss-text-decoration-shorthand@^1.0.0":
1193 + version "1.0.0"
1194 + resolved "https://registry.yarnpkg.com/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz#ea96cfbc87d921eca914d3ad29340d9bcc4c953f"
1195 + integrity sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==
1196 + dependencies:
1197 + postcss-value-parser "^4.2.0"
1198 +
1199 +"@csstools/postcss-trigonometric-functions@^1.0.2":
1200 + version "1.0.2"
1201 + resolved "https://registry.yarnpkg.com/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz#94d3e4774c36d35dcdc88ce091336cb770d32756"
1202 + integrity sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==
1203 + dependencies:
1204 + postcss-value-parser "^4.2.0"
1205 +
1206 +"@csstools/postcss-unset-value@^1.0.2":
1207 + version "1.0.2"
1208 + resolved "https://registry.yarnpkg.com/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz#c99bb70e2cdc7312948d1eb41df2412330b81f77"
1209 + integrity sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==
1210 +
1211 +"@csstools/selector-specificity@^2.0.0", "@csstools/selector-specificity@^2.0.2":
1212 + version "2.2.0"
1213 + resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz#2cbcf822bf3764c9658c4d2e568bd0c0cb748016"
1214 + integrity sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==
1215 +
1216 +"@eslint-community/eslint-utils@^4.2.0":
1217 + version "4.4.1"
1218 + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56"
1219 + integrity sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==
1220 + dependencies:
1221 + eslint-visitor-keys "^3.4.3"
1222 +
1223 +"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.1":
1224 + version "4.12.1"
1225 + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0"
1226 + integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==
1227 +
1228 +"@eslint/eslintrc@^2.1.4":
1229 + version "2.1.4"
1230 + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad"
1231 + integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==
1232 + dependencies:
1233 + ajv "^6.12.4"
1234 + debug "^4.3.2"
1235 + espree "^9.6.0"
1236 + globals "^13.19.0"
1237 + ignore "^5.2.0"
1238 + import-fresh "^3.2.1"
1239 + js-yaml "^4.1.0"
1240 + minimatch "^3.1.2"
1241 + strip-json-comments "^3.1.1"
1242 +
1243 +"@eslint/js@8.57.1":
1244 + version "8.57.1"
1245 + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz#de633db3ec2ef6a3c89e2f19038063e8a122e2c2"
1246 + integrity sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==
1247 +
1248 +"@humanwhocodes/config-array@^0.13.0":
1249 + version "0.13.0"
1250 + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz#fb907624df3256d04b9aa2df50d7aa97ec648748"
1251 + integrity sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==
1252 + dependencies:
1253 + "@humanwhocodes/object-schema" "^2.0.3"
1254 + debug "^4.3.1"
1255 + minimatch "^3.0.5"
1256 +
1257 +"@humanwhocodes/module-importer@^1.0.1":
1258 + version "1.0.1"
1259 + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
1260 + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
1261 +
1262 +"@humanwhocodes/object-schema@^2.0.3":
1263 + version "2.0.3"
1264 + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3"
1265 + integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==
1266 +
1267 +"@isaacs/cliui@^8.0.2":
1268 + version "8.0.2"
1269 + resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550"
1270 + integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==
1271 + dependencies:
1272 + string-width "^5.1.2"
1273 + string-width-cjs "npm:string-width@^4.2.0"
1274 + strip-ansi "^7.0.1"
1275 + strip-ansi-cjs "npm:strip-ansi@^6.0.1"
1276 + wrap-ansi "^8.1.0"
1277 + wrap-ansi-cjs "npm:wrap-ansi@^7.0.0"
1278 +
1279 +"@istanbuljs/load-nyc-config@^1.0.0":
1280 + version "1.1.0"
1281 + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"
1282 + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==
1283 + dependencies:
1284 + camelcase "^5.3.1"
1285 + find-up "^4.1.0"
1286 + get-package-type "^0.1.0"
1287 + js-yaml "^3.13.1"
1288 + resolve-from "^5.0.0"
1289 +
1290 +"@istanbuljs/schema@^0.1.2":
1291 + version "0.1.3"
1292 + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"
1293 + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
1294 +
1295 +"@jest/console@^27.5.1":
1296 + version "27.5.1"
1297 + resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.5.1.tgz#260fe7239602fe5130a94f1aa386eff54b014bba"
1298 + integrity sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==
1299 + dependencies:
1300 + "@jest/types" "^27.5.1"
1301 + "@types/node" "*"
1302 + chalk "^4.0.0"
1303 + jest-message-util "^27.5.1"
1304 + jest-util "^27.5.1"
1305 + slash "^3.0.0"
1306 +
1307 +"@jest/console@^28.1.3":
1308 + version "28.1.3"
1309 + resolved "https://registry.yarnpkg.com/@jest/console/-/console-28.1.3.tgz#2030606ec03a18c31803b8a36382762e447655df"
1310 + integrity sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==
1311 + dependencies:
1312 + "@jest/types" "^28.1.3"
1313 + "@types/node" "*"
1314 + chalk "^4.0.0"
1315 + jest-message-util "^28.1.3"
1316 + jest-util "^28.1.3"
1317 + slash "^3.0.0"
1318 +
1319 +"@jest/core@^27.5.1":
1320 + version "27.5.1"
1321 + resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.5.1.tgz#267ac5f704e09dc52de2922cbf3af9edcd64b626"
1322 + integrity sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==
1323 + dependencies:
1324 + "@jest/console" "^27.5.1"
1325 + "@jest/reporters" "^27.5.1"
1326 + "@jest/test-result" "^27.5.1"
1327 + "@jest/transform" "^27.5.1"
1328 + "@jest/types" "^27.5.1"
1329 + "@types/node" "*"
1330 + ansi-escapes "^4.2.1"
1331 + chalk "^4.0.0"
1332 + emittery "^0.8.1"
1333 + exit "^0.1.2"
1334 + graceful-fs "^4.2.9"
1335 + jest-changed-files "^27.5.1"
1336 + jest-config "^27.5.1"
1337 + jest-haste-map "^27.5.1"
1338 + jest-message-util "^27.5.1"
1339 + jest-regex-util "^27.5.1"
1340 + jest-resolve "^27.5.1"
1341 + jest-resolve-dependencies "^27.5.1"
1342 + jest-runner "^27.5.1"
1343 + jest-runtime "^27.5.1"
1344 + jest-snapshot "^27.5.1"
1345 + jest-util "^27.5.1"
1346 + jest-validate "^27.5.1"
1347 + jest-watcher "^27.5.1"
1348 + micromatch "^4.0.4"
1349 + rimraf "^3.0.0"
1350 + slash "^3.0.0"
1351 + strip-ansi "^6.0.0"
1352 +
1353 +"@jest/environment@^27.5.1":
1354 + version "27.5.1"
1355 + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.5.1.tgz#d7425820511fe7158abbecc010140c3fd3be9c74"
1356 + integrity sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==
1357 + dependencies:
1358 + "@jest/fake-timers" "^27.5.1"
1359 + "@jest/types" "^27.5.1"
1360 + "@types/node" "*"
1361 + jest-mock "^27.5.1"
1362 +
1363 +"@jest/fake-timers@^27.5.1":
1364 + version "27.5.1"
1365 + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz#76979745ce0579c8a94a4678af7a748eda8ada74"
1366 + integrity sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==
1367 + dependencies:
1368 + "@jest/types" "^27.5.1"
1369 + "@sinonjs/fake-timers" "^8.0.1"
1370 + "@types/node" "*"
1371 + jest-message-util "^27.5.1"
1372 + jest-mock "^27.5.1"
1373 + jest-util "^27.5.1"
1374 +
1375 +"@jest/globals@^27.5.1":
1376 + version "27.5.1"
1377 + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.5.1.tgz#7ac06ce57ab966566c7963431cef458434601b2b"
1378 + integrity sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==
1379 + dependencies:
1380 + "@jest/environment" "^27.5.1"
1381 + "@jest/types" "^27.5.1"
1382 + expect "^27.5.1"
1383 +
1384 +"@jest/reporters@^27.5.1":
1385 + version "27.5.1"
1386 + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.5.1.tgz#ceda7be96170b03c923c37987b64015812ffec04"
1387 + integrity sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==
1388 + dependencies:
1389 + "@bcoe/v8-coverage" "^0.2.3"
1390 + "@jest/console" "^27.5.1"
1391 + "@jest/test-result" "^27.5.1"
1392 + "@jest/transform" "^27.5.1"
1393 + "@jest/types" "^27.5.1"
1394 + "@types/node" "*"
1395 + chalk "^4.0.0"
1396 + collect-v8-coverage "^1.0.0"
1397 + exit "^0.1.2"
1398 + glob "^7.1.2"
1399 + graceful-fs "^4.2.9"
1400 + istanbul-lib-coverage "^3.0.0"
1401 + istanbul-lib-instrument "^5.1.0"
1402 + istanbul-lib-report "^3.0.0"
1403 + istanbul-lib-source-maps "^4.0.0"
1404 + istanbul-reports "^3.1.3"
1405 + jest-haste-map "^27.5.1"
1406 + jest-resolve "^27.5.1"
1407 + jest-util "^27.5.1"
1408 + jest-worker "^27.5.1"
1409 + slash "^3.0.0"
1410 + source-map "^0.6.0"
1411 + string-length "^4.0.1"
1412 + terminal-link "^2.0.0"
1413 + v8-to-istanbul "^8.1.0"
1414 +
1415 +"@jest/schemas@^28.1.3":
1416 + version "28.1.3"
1417 + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-28.1.3.tgz#ad8b86a66f11f33619e3d7e1dcddd7f2d40ff905"
1418 + integrity sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==
1419 + dependencies:
1420 + "@sinclair/typebox" "^0.24.1"
1421 +
1422 +"@jest/source-map@^27.5.1":
1423 + version "27.5.1"
1424 + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.5.1.tgz#6608391e465add4205eae073b55e7f279e04e8cf"
1425 + integrity sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==
1426 + dependencies:
1427 + callsites "^3.0.0"
1428 + graceful-fs "^4.2.9"
1429 + source-map "^0.6.0"
1430 +
1431 +"@jest/test-result@^27.5.1":
1432 + version "27.5.1"
1433 + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.5.1.tgz#56a6585fa80f7cdab72b8c5fc2e871d03832f5bb"
1434 + integrity sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==
1435 + dependencies:
1436 + "@jest/console" "^27.5.1"
1437 + "@jest/types" "^27.5.1"
1438 + "@types/istanbul-lib-coverage" "^2.0.0"
1439 + collect-v8-coverage "^1.0.0"
1440 +
1441 +"@jest/test-result@^28.1.3":
1442 + version "28.1.3"
1443 + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-28.1.3.tgz#5eae945fd9f4b8fcfce74d239e6f725b6bf076c5"
1444 + integrity sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==
1445 + dependencies:
1446 + "@jest/console" "^28.1.3"
1447 + "@jest/types" "^28.1.3"
1448 + "@types/istanbul-lib-coverage" "^2.0.0"
1449 + collect-v8-coverage "^1.0.0"
1450 +
1451 +"@jest/test-sequencer@^27.5.1":
1452 + version "27.5.1"
1453 + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz#4057e0e9cea4439e544c6353c6affe58d095745b"
1454 + integrity sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==
1455 + dependencies:
1456 + "@jest/test-result" "^27.5.1"
1457 + graceful-fs "^4.2.9"
1458 + jest-haste-map "^27.5.1"
1459 + jest-runtime "^27.5.1"
1460 +
1461 +"@jest/transform@^27.5.1":
1462 + version "27.5.1"
1463 + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.5.1.tgz#6c3501dcc00c4c08915f292a600ece5ecfe1f409"
1464 + integrity sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==
1465 + dependencies:
1466 + "@babel/core" "^7.1.0"
1467 + "@jest/types" "^27.5.1"
1468 + babel-plugin-istanbul "^6.1.1"
1469 + chalk "^4.0.0"
1470 + convert-source-map "^1.4.0"
1471 + fast-json-stable-stringify "^2.0.0"
1472 + graceful-fs "^4.2.9"
1473 + jest-haste-map "^27.5.1"
1474 + jest-regex-util "^27.5.1"
1475 + jest-util "^27.5.1"
1476 + micromatch "^4.0.4"
1477 + pirates "^4.0.4"
1478 + slash "^3.0.0"
1479 + source-map "^0.6.1"
1480 + write-file-atomic "^3.0.0"
1481 +
1482 +"@jest/types@^27.5.1":
1483 + version "27.5.1"
1484 + resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.5.1.tgz#3c79ec4a8ba61c170bf937bcf9e98a9df175ec80"
1485 + integrity sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==
1486 + dependencies:
1487 + "@types/istanbul-lib-coverage" "^2.0.0"
1488 + "@types/istanbul-reports" "^3.0.0"
1489 + "@types/node" "*"
1490 + "@types/yargs" "^16.0.0"
1491 + chalk "^4.0.0"
1492 +
1493 +"@jest/types@^28.1.3":
1494 + version "28.1.3"
1495 + resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.1.3.tgz#b05de80996ff12512bc5ceb1d208285a7d11748b"
1496 + integrity sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==
1497 + dependencies:
1498 + "@jest/schemas" "^28.1.3"
1499 + "@types/istanbul-lib-coverage" "^2.0.0"
1500 + "@types/istanbul-reports" "^3.0.0"
1501 + "@types/node" "*"
1502 + "@types/yargs" "^17.0.8"
1503 + chalk "^4.0.0"
1504 +
1505 +"@jridgewell/gen-mapping@^0.3.2", "@jridgewell/gen-mapping@^0.3.5":
1506 + version "0.3.8"
1507 + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz#4f0e06362e01362f823d348f1872b08f666d8142"
1508 + integrity sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==
1509 + dependencies:
1510 + "@jridgewell/set-array" "^1.2.1"
1511 + "@jridgewell/sourcemap-codec" "^1.4.10"
1512 + "@jridgewell/trace-mapping" "^0.3.24"
1513 +
1514 +"@jridgewell/resolve-uri@^3.1.0":
1515 + version "3.1.2"
1516 + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6"
1517 + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==
1518 +
1519 +"@jridgewell/set-array@^1.2.1":
1520 + version "1.2.1"
1521 + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280"
1522 + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==
1523 +
1524 +"@jridgewell/source-map@^0.3.3":
1525 + version "0.3.6"
1526 + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a"
1527 + integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==
1528 + dependencies:
1529 + "@jridgewell/gen-mapping" "^0.3.5"
1530 + "@jridgewell/trace-mapping" "^0.3.25"
1531 +
1532 +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14":
1533 + version "1.5.0"
1534 + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a"
1535 + integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==
1536 +
1537 +"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25":
1538 + version "0.3.25"
1539 + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0"
1540 + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==
1541 + dependencies:
1542 + "@jridgewell/resolve-uri" "^3.1.0"
1543 + "@jridgewell/sourcemap-codec" "^1.4.14"
1544 +
1545 +"@leichtgewicht/ip-codec@^2.0.1":
1546 + version "2.0.5"
1547 + resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz#4fc56c15c580b9adb7dc3c333a134e540b44bfb1"
1548 + integrity sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==
1549 +
1550 +"@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1":
1551 + version "5.1.1-v1"
1552 + resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz#dbf733a965ca47b1973177dc0bb6c889edcfb129"
1553 + integrity sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==
1554 + dependencies:
1555 + eslint-scope "5.1.1"
1556 +
1557 +"@nodelib/fs.scandir@2.1.5":
1558 + version "2.1.5"
1559 + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
1560 + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
1561 + dependencies:
1562 + "@nodelib/fs.stat" "2.0.5"
1563 + run-parallel "^1.1.9"
1564 +
1565 +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
1566 + version "2.0.5"
1567 + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
1568 + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
1569 +
1570 +"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
1571 + version "1.2.8"
1572 + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
1573 + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
1574 + dependencies:
1575 + "@nodelib/fs.scandir" "2.1.5"
1576 + fastq "^1.6.0"
1577 +
1578 +"@pkgjs/parseargs@^0.11.0":
1579 + version "0.11.0"
1580 + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
1581 + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
1582 +
1583 +"@pmmmwh/react-refresh-webpack-plugin@^0.5.3":
1584 + version "0.5.15"
1585 + resolved "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.15.tgz#f126be97c30b83ed777e2aeabd518bc592e6e7c4"
1586 + integrity sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==
1587 + dependencies:
1588 + ansi-html "^0.0.9"
1589 + core-js-pure "^3.23.3"
1590 + error-stack-parser "^2.0.6"
1591 + html-entities "^2.1.0"
1592 + loader-utils "^2.0.4"
1593 + schema-utils "^4.2.0"
1594 + source-map "^0.7.3"
1595 +
1596 +"@rollup/plugin-babel@^5.2.0":
1597 + version "5.3.1"
1598 + resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz#04bc0608f4aa4b2e4b1aebf284344d0f68fda283"
1599 + integrity sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==
1600 + dependencies:
1601 + "@babel/helper-module-imports" "^7.10.4"
1602 + "@rollup/pluginutils" "^3.1.0"
1603 +
1604 +"@rollup/plugin-node-resolve@^11.2.1":
1605 + version "11.2.1"
1606 + resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz#82aa59397a29cd4e13248b106e6a4a1880362a60"
1607 + integrity sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==
1608 + dependencies:
1609 + "@rollup/pluginutils" "^3.1.0"
1610 + "@types/resolve" "1.17.1"
1611 + builtin-modules "^3.1.0"
1612 + deepmerge "^4.2.2"
1613 + is-module "^1.0.0"
1614 + resolve "^1.19.0"
1615 +
1616 +"@rollup/plugin-replace@^2.4.1":
1617 + version "2.4.2"
1618 + resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz#a2d539314fbc77c244858faa523012825068510a"
1619 + integrity sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==
1620 + dependencies:
1621 + "@rollup/pluginutils" "^3.1.0"
1622 + magic-string "^0.25.7"
1623 +
1624 +"@rollup/pluginutils@^3.1.0":
1625 + version "3.1.0"
1626 + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b"
1627 + integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==
1628 + dependencies:
1629 + "@types/estree" "0.0.39"
1630 + estree-walker "^1.0.1"
1631 + picomatch "^2.2.2"
1632 +
1633 +"@rtsao/scc@^1.1.0":
1634 + version "1.1.0"
1635 + resolved "https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz#927dd2fae9bc3361403ac2c7a00c32ddce9ad7e8"
1636 + integrity sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==
1637 +
1638 +"@rushstack/eslint-patch@^1.1.0":
1639 + version "1.10.4"
1640 + resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.10.4.tgz#427d5549943a9c6fce808e39ea64dbe60d4047f1"
1641 + integrity sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==
1642 +
1643 +"@sinclair/typebox@^0.24.1":
1644 + version "0.24.51"
1645 + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.51.tgz#645f33fe4e02defe26f2f5c0410e1c094eac7f5f"
1646 + integrity sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==
1647 +
1648 +"@sinonjs/commons@^1.7.0":
1649 + version "1.8.6"
1650 + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.6.tgz#80c516a4dc264c2a69115e7578d62581ff455ed9"
1651 + integrity sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==
1652 + dependencies:
1653 + type-detect "4.0.8"
1654 +
1655 +"@sinonjs/fake-timers@^8.0.1":
1656 + version "8.1.0"
1657 + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz#3fdc2b6cb58935b21bfb8d1625eb1300484316e7"
1658 + integrity sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==
1659 + dependencies:
1660 + "@sinonjs/commons" "^1.7.0"
1661 +
1662 +"@surma/rollup-plugin-off-main-thread@^2.2.3":
1663 + version "2.2.3"
1664 + resolved "https://registry.yarnpkg.com/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz#ee34985952ca21558ab0d952f00298ad2190c053"
1665 + integrity sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==
1666 + dependencies:
1667 + ejs "^3.1.6"
1668 + json5 "^2.2.0"
1669 + magic-string "^0.25.0"
1670 + string.prototype.matchall "^4.0.6"
1671 +
1672 +"@svgr/babel-plugin-add-jsx-attribute@^5.4.0":
1673 + version "5.4.0"
1674 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz#81ef61947bb268eb9d50523446f9c638fb355906"
1675 + integrity sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==
1676 +
1677 +"@svgr/babel-plugin-remove-jsx-attribute@^5.4.0":
1678 + version "5.4.0"
1679 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz#6b2c770c95c874654fd5e1d5ef475b78a0a962ef"
1680 + integrity sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==
1681 +
1682 +"@svgr/babel-plugin-remove-jsx-empty-expression@^5.0.1":
1683 + version "5.0.1"
1684 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz#25621a8915ed7ad70da6cea3d0a6dbc2ea933efd"
1685 + integrity sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==
1686 +
1687 +"@svgr/babel-plugin-replace-jsx-attribute-value@^5.0.1":
1688 + version "5.0.1"
1689 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz#0b221fc57f9fcd10e91fe219e2cd0dd03145a897"
1690 + integrity sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==
1691 +
1692 +"@svgr/babel-plugin-svg-dynamic-title@^5.4.0":
1693 + version "5.4.0"
1694 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz#139b546dd0c3186b6e5db4fefc26cb0baea729d7"
1695 + integrity sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==
1696 +
1697 +"@svgr/babel-plugin-svg-em-dimensions@^5.4.0":
1698 + version "5.4.0"
1699 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz#6543f69526632a133ce5cabab965deeaea2234a0"
1700 + integrity sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==
1701 +
1702 +"@svgr/babel-plugin-transform-react-native-svg@^5.4.0":
1703 + version "5.4.0"
1704 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz#00bf9a7a73f1cad3948cdab1f8dfb774750f8c80"
1705 + integrity sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==
1706 +
1707 +"@svgr/babel-plugin-transform-svg-component@^5.5.0":
1708 + version "5.5.0"
1709 + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz#583a5e2a193e214da2f3afeb0b9e8d3250126b4a"
1710 + integrity sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==
1711 +
1712 +"@svgr/babel-preset@^5.5.0":
1713 + version "5.5.0"
1714 + resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-5.5.0.tgz#8af54f3e0a8add7b1e2b0fcd5a882c55393df327"
1715 + integrity sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==
1716 + dependencies:
1717 + "@svgr/babel-plugin-add-jsx-attribute" "^5.4.0"
1718 + "@svgr/babel-plugin-remove-jsx-attribute" "^5.4.0"
1719 + "@svgr/babel-plugin-remove-jsx-empty-expression" "^5.0.1"
1720 + "@svgr/babel-plugin-replace-jsx-attribute-value" "^5.0.1"
1721 + "@svgr/babel-plugin-svg-dynamic-title" "^5.4.0"
1722 + "@svgr/babel-plugin-svg-em-dimensions" "^5.4.0"
1723 + "@svgr/babel-plugin-transform-react-native-svg" "^5.4.0"
1724 + "@svgr/babel-plugin-transform-svg-component" "^5.5.0"
1725 +
1726 +"@svgr/core@^5.5.0":
1727 + version "5.5.0"
1728 + resolved "https://registry.yarnpkg.com/@svgr/core/-/core-5.5.0.tgz#82e826b8715d71083120fe8f2492ec7d7874a579"
1729 + integrity sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==
1730 + dependencies:
1731 + "@svgr/plugin-jsx" "^5.5.0"
1732 + camelcase "^6.2.0"
1733 + cosmiconfig "^7.0.0"
1734 +
1735 +"@svgr/hast-util-to-babel-ast@^5.5.0":
1736 + version "5.5.0"
1737 + resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz#5ee52a9c2533f73e63f8f22b779f93cd432a5461"
1738 + integrity sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==
1739 + dependencies:
1740 + "@babel/types" "^7.12.6"
1741 +
1742 +"@svgr/plugin-jsx@^5.5.0":
1743 + version "5.5.0"
1744 + resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz#1aa8cd798a1db7173ac043466d7b52236b369000"
1745 + integrity sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==
1746 + dependencies:
1747 + "@babel/core" "^7.12.3"
1748 + "@svgr/babel-preset" "^5.5.0"
1749 + "@svgr/hast-util-to-babel-ast" "^5.5.0"
1750 + svg-parser "^2.0.2"
1751 +
1752 +"@svgr/plugin-svgo@^5.5.0":
1753 + version "5.5.0"
1754 + resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz#02da55d85320549324e201c7b2e53bf431fcc246"
1755 + integrity sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==
1756 + dependencies:
1757 + cosmiconfig "^7.0.0"
1758 + deepmerge "^4.2.2"
1759 + svgo "^1.2.2"
1760 +
1761 +"@svgr/webpack@^5.5.0":
1762 + version "5.5.0"
1763 + resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-5.5.0.tgz#aae858ee579f5fa8ce6c3166ef56c6a1b381b640"
1764 + integrity sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==
1765 + dependencies:
1766 + "@babel/core" "^7.12.3"
1767 + "@babel/plugin-transform-react-constant-elements" "^7.12.1"
1768 + "@babel/preset-env" "^7.12.1"
1769 + "@babel/preset-react" "^7.12.5"
1770 + "@svgr/core" "^5.5.0"
1771 + "@svgr/plugin-jsx" "^5.5.0"
1772 + "@svgr/plugin-svgo" "^5.5.0"
1773 + loader-utils "^2.0.0"
1774 +
1775 +"@tootallnate/once@1":
1776 + version "1.1.2"
1777 + resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82"
1778 + integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
1779 +
1780 +"@trysound/sax@0.2.0":
1781 + version "0.2.0"
1782 + resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
1783 + integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==
1784 +
1785 +"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14":
1786 + version "7.20.5"
1787 + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017"
1788 + integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==
1789 + dependencies:
1790 + "@babel/parser" "^7.20.7"
1791 + "@babel/types" "^7.20.7"
1792 + "@types/babel__generator" "*"
1793 + "@types/babel__template" "*"
1794 + "@types/babel__traverse" "*"
1795 +
1796 +"@types/babel__generator@*":
1797 + version "7.6.8"
1798 + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab"
1799 + integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==
1800 + dependencies:
1801 + "@babel/types" "^7.0.0"
1802 +
1803 +"@types/babel__template@*":
1804 + version "7.4.4"
1805 + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f"
1806 + integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==
1807 + dependencies:
1808 + "@babel/parser" "^7.1.0"
1809 + "@babel/types" "^7.0.0"
1810 +
1811 +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6":
1812 + version "7.20.6"
1813 + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.6.tgz#8dc9f0ae0f202c08d8d4dab648912c8d6038e3f7"
1814 + integrity sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==
1815 + dependencies:
1816 + "@babel/types" "^7.20.7"
1817 +
1818 +"@types/body-parser@*":
1819 + version "1.19.5"
1820 + resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.5.tgz#04ce9a3b677dc8bd681a17da1ab9835dc9d3ede4"
1821 + integrity sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==
1822 + dependencies:
1823 + "@types/connect" "*"
1824 + "@types/node" "*"
1825 +
1826 +"@types/bonjour@^3.5.9":
1827 + version "3.5.13"
1828 + resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.13.tgz#adf90ce1a105e81dd1f9c61fdc5afda1bfb92956"
1829 + integrity sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==
1830 + dependencies:
1831 + "@types/node" "*"
1832 +
1833 +"@types/connect-history-api-fallback@^1.3.5":
1834 + version "1.5.4"
1835 + resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz#7de71645a103056b48ac3ce07b3520b819c1d5b3"
1836 + integrity sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==
1837 + dependencies:
1838 + "@types/express-serve-static-core" "*"
1839 + "@types/node" "*"
1840 +
1841 +"@types/connect@*":
1842 + version "3.4.38"
1843 + resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz#5ba7f3bc4fbbdeaff8dded952e5ff2cc53f8d858"
1844 + integrity sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==
1845 + dependencies:
1846 + "@types/node" "*"
1847 +
1848 +"@types/eslint-scope@^3.7.7":
1849 + version "3.7.7"
1850 + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.7.tgz#3108bd5f18b0cdb277c867b3dd449c9ed7079ac5"
1851 + integrity sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==
1852 + dependencies:
1853 + "@types/eslint" "*"
1854 + "@types/estree" "*"
1855 +
1856 +"@types/eslint@*":
1857 + version "9.6.1"
1858 + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-9.6.1.tgz#d5795ad732ce81715f27f75da913004a56751584"
1859 + integrity sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==
1860 + dependencies:
1861 + "@types/estree" "*"
1862 + "@types/json-schema" "*"
1863 +
1864 +"@types/eslint@^7.29.0 || ^8.4.1":
1865 + version "8.56.12"
1866 + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.56.12.tgz#1657c814ffeba4d2f84c0d4ba0f44ca7ea1ca53a"
1867 + integrity sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==
1868 + dependencies:
1869 + "@types/estree" "*"
1870 + "@types/json-schema" "*"
1871
23 -acorn-globals@^3.1.0:
24 - version "3.1.0"
25 - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf"
26 - integrity sha1-/YJw9x+7SZawBPqIDuXUZXOnMb8=
1872 +"@types/estree@*", "@types/estree@^1.0.6":
1873 + version "1.0.6"
1874 + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50"
1875 + integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==
1876 +
1877 +"@types/estree@0.0.39":
1878 + version "0.0.39"
1879 + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
1880 + integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
1881 +
1882 +"@types/express-serve-static-core@*", "@types/express-serve-static-core@^5.0.0":
1883 + version "5.0.3"
1884 + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-5.0.3.tgz#04174d3f0836863467b7fbcbbbcd69441d205715"
1885 + integrity sha512-JEhMNwUJt7bw728CydvYzntD0XJeTmDnvwLlbfbAhE7Tbslm/ax6bdIiUwTgeVlZTsJQPwZwKpAkyDtIjsvx3g==
1886 + dependencies:
1887 + "@types/node" "*"
1888 + "@types/qs" "*"
1889 + "@types/range-parser" "*"
1890 + "@types/send" "*"
1891 +
1892 +"@types/express-serve-static-core@^4.17.33":
1893 + version "4.19.6"
1894 + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz#e01324c2a024ff367d92c66f48553ced0ab50267"
1895 + integrity sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==
1896 + dependencies:
1897 + "@types/node" "*"
1898 + "@types/qs" "*"
1899 + "@types/range-parser" "*"
1900 + "@types/send" "*"
1901 +
1902 +"@types/express@*":
1903 + version "5.0.0"
1904 + resolved "https://registry.yarnpkg.com/@types/express/-/express-5.0.0.tgz#13a7d1f75295e90d19ed6e74cab3678488eaa96c"
1905 + integrity sha512-DvZriSMehGHL1ZNLzi6MidnsDhUZM/x2pRdDIKdwbUNqqwHxMlRdkxtn6/EPKyqKpHqTl/4nRZsRNLpZxZRpPQ==
1906 + dependencies:
1907 + "@types/body-parser" "*"
1908 + "@types/express-serve-static-core" "^5.0.0"
1909 + "@types/qs" "*"
1910 + "@types/serve-static" "*"
1911 +
1912 +"@types/express@^4.17.13":
1913 + version "4.17.21"
1914 + resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.21.tgz#c26d4a151e60efe0084b23dc3369ebc631ed192d"
1915 + integrity sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==
1916 dependencies:
28 - acorn "^4.0.4"
1917 + "@types/body-parser" "*"
1918 + "@types/express-serve-static-core" "^4.17.33"
1919 + "@types/qs" "*"
1920 + "@types/serve-static" "*"
1921
30 -acorn-jsx@^3.0.0:
31 - version "3.0.1"
32 - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
33 - integrity sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=
1922 +"@types/graceful-fs@^4.1.2":
1923 + version "4.1.9"
1924 + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.9.tgz#2a06bc0f68a20ab37b3e36aa238be6abdf49e8b4"
1925 + integrity sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==
1926 dependencies:
35 - acorn "^3.0.4"
1927 + "@types/node" "*"
1928
37 -acorn@^3.0.0, acorn@^3.0.4:
38 - version "3.3.0"
39 - resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
40 - integrity sha1-ReN/s56No/JbruP/U2niu18iAXo=
1929 +"@types/html-minifier-terser@^6.0.0":
1930 + version "6.1.0"
1931 + resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35"
1932 + integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==
1933
42 -acorn@^4.0.4:
43 - version "4.0.13"
44 - resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
45 - integrity sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=
1934 +"@types/http-errors@*":
1935 + version "2.0.4"
1936 + resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.4.tgz#7eb47726c391b7345a6ec35ad7f4de469cf5ba4f"
1937 + integrity sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==
1938
47 -acorn@^5.5.0:
48 - version "5.7.4"
49 - resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e"
50 - integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==
1939 +"@types/http-proxy@^1.17.15", "@types/http-proxy@^1.17.8":
1940 + version "1.17.15"
1941 + resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.15.tgz#12118141ce9775a6499ecb4c01d02f90fc839d36"
1942 + integrity sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==
1943 + dependencies:
1944 + "@types/node" "*"
1945
52 -ajv-keywords@^1.0.0:
53 - version "1.5.1"
54 - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
55 - integrity sha1-MU3QpLM2j609/NxU7eYXG4htrzw=
1946 +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
1947 + version "2.0.6"
1948 + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7"
1949 + integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==
1950
57 -ajv@^4.7.0, ajv@^4.9.1:
58 - version "4.11.8"
59 - resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
60 - integrity sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=
1951 +"@types/istanbul-lib-report@*":
1952 + version "3.0.3"
1953 + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf"
1954 + integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==
1955 dependencies:
62 - co "^4.6.0"
63 - json-stable-stringify "^1.0.1"
1956 + "@types/istanbul-lib-coverage" "*"
1957
65 -ajv@^6.12.3:
66 - version "6.12.6"
67 - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
68 - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
1958 +"@types/istanbul-reports@^3.0.0":
1959 + version "3.0.4"
1960 + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54"
1961 + integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==
1962 dependencies:
70 - fast-deep-equal "^3.1.1"
71 - fast-json-stable-stringify "^2.0.0"
72 - json-schema-traverse "^0.4.1"
73 - uri-js "^4.2.2"
1963 + "@types/istanbul-lib-report" "*"
1964
75 -align-text@^0.1.1, align-text@^0.1.3:
76 - version "0.1.4"
77 - resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
78 - integrity sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=
79 - dependencies:
80 - kind-of "^3.0.2"
81 - longest "^1.0.1"
82 - repeat-string "^1.5.2"
1965 +"@types/json-schema@*", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
1966 + version "7.0.15"
1967 + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
1968 + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
1969
84 -alphanum-sort@^1.0.1, alphanum-sort@^1.0.2:
85 - version "1.0.2"
86 - resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
87 - integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=
1970 +"@types/json5@^0.0.29":
1971 + version "0.0.29"
1972 + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
1973 + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
1974
89 -amdefine@>=0.0.4:
90 - version "1.0.1"
91 - resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
92 - integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=
1975 +"@types/mime@^1":
1976 + version "1.3.5"
1977 + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.5.tgz#1ef302e01cf7d2b5a0fa526790c9123bf1d06690"
1978 + integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==
1979
94 -ansi-escapes@^1.1.0, ansi-escapes@^1.4.0:
95 - version "1.4.0"
96 - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
97 - integrity sha1-06ioOzGapneTZisT52HHkRQiMG4=
1980 +"@types/node-forge@^1.3.0":
1981 + version "1.3.11"
1982 + resolved "https://registry.yarnpkg.com/@types/node-forge/-/node-forge-1.3.11.tgz#0972ea538ddb0f4d9c2fa0ec5db5724773a604da"
1983 + integrity sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==
1984 + dependencies:
1985 + "@types/node" "*"
1986
99 -ansi-escapes@^3.1.0:
100 - version "3.2.0"
101 - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
102 - integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
1987 +"@types/node@*":
1988 + version "22.10.5"
1989 + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.10.5.tgz#95af89a3fb74a2bb41ef9927f206e6472026e48b"
1990 + integrity sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==
1991 + dependencies:
1992 + undici-types "~6.20.0"
1993
104 -ansi-html@0.0.5:
105 - version "0.0.5"
106 - resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.5.tgz#0dcaa5a081206866bc240a3b773a184ea3b88b64"
107 - integrity sha1-DcqloIEgaGa8JAo7dzoYTqO4i2Q=
1994 +"@types/parse-json@^4.0.0":
1995 + version "4.0.2"
1996 + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239"
1997 + integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==
1998
109 -ansi-regex@^0.2.0, ansi-regex@^0.2.1:
110 - version "0.2.1"
111 - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-0.2.1.tgz#0d8e946967a3d8143f93e24e298525fc1b2235f9"
112 - integrity sha1-DY6UaWej2BQ/k+JOKYUl/BsiNfk=
1999 +"@types/prettier@^2.1.5":
2000 + version "2.7.3"
2001 + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.3.tgz#3e51a17e291d01d17d3fc61422015a933af7a08f"
2002 + integrity sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==
2003
114 -ansi-regex@^2.0.0:
115 - version "2.1.1"
116 - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
117 - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
2004 +"@types/q@^1.5.1":
2005 + version "1.5.8"
2006 + resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.8.tgz#95f6c6a08f2ad868ba230ead1d2d7f7be3db3837"
2007 + integrity sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==
2008
119 -ansi-regex@^3.0.0:
120 - version "3.0.0"
121 - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
122 - integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
2009 +"@types/qs@*":
2010 + version "6.9.17"
2011 + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.17.tgz#fc560f60946d0aeff2f914eb41679659d3310e1a"
2012 + integrity sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==
2013
124 -ansi-styles@^1.1.0:
125 - version "1.1.0"
126 - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.1.0.tgz#eaecbf66cd706882760b2f4691582b8f55d7a7de"
127 - integrity sha1-6uy/Zs1waIJ2Cy9GkVgrj1XXp94=
2014 +"@types/range-parser@*":
2015 + version "1.2.7"
2016 + resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.7.tgz#50ae4353eaaddc04044279812f52c8c65857dbcb"
2017 + integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==
2018
129 -ansi-styles@^2.2.1:
130 - version "2.2.1"
131 - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
132 - integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
2019 +"@types/resolve@1.17.1":
2020 + version "1.17.1"
2021 + resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6"
2022 + integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==
2023 + dependencies:
2024 + "@types/node" "*"
2025
134 -ansi-styles@^3.2.1:
135 - version "3.2.1"
136 - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
137 - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
2026 +"@types/retry@0.12.0":
2027 + version "0.12.0"
2028 + resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d"
2029 + integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==
2030 +
2031 +"@types/semver@^7.3.12":
2032 + version "7.5.8"
2033 + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.8.tgz#8268a8c57a3e4abd25c165ecd36237db7948a55e"
2034 + integrity sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==
2035 +
2036 +"@types/send@*":
2037 + version "0.17.4"
2038 + resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.4.tgz#6619cd24e7270793702e4e6a4b958a9010cfc57a"
2039 + integrity sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==
2040 dependencies:
139 - color-convert "^1.9.0"
2041 + "@types/mime" "^1"
2042 + "@types/node" "*"
2043
141 -ansicolors@~0.3.2:
142 - version "0.3.2"
143 - resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979"
144 - integrity sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=
2044 +"@types/serve-index@^1.9.1":
2045 + version "1.9.4"
2046 + resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.4.tgz#e6ae13d5053cb06ed36392110b4f9a49ac4ec898"
2047 + integrity sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==
2048 + dependencies:
2049 + "@types/express" "*"
2050
146 -anymatch@^1.3.0:
147 - version "1.3.2"
148 - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
149 - integrity sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==
2051 +"@types/serve-static@*", "@types/serve-static@^1.13.10":
2052 + version "1.15.7"
2053 + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.7.tgz#22174bbd74fb97fe303109738e9b5c2f3064f714"
2054 + integrity sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==
2055 dependencies:
151 - micromatch "^2.1.5"
152 - normalize-path "^2.0.0"
2056 + "@types/http-errors" "*"
2057 + "@types/node" "*"
2058 + "@types/send" "*"
2059
154 -append-transform@^0.4.0:
155 - version "0.4.0"
156 - resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991"
157 - integrity sha1-126/jKlNJ24keja61EpLdKthGZE=
2060 +"@types/sockjs@^0.3.33":
2061 + version "0.3.36"
2062 + resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.36.tgz#ce322cf07bcc119d4cbf7f88954f3a3bd0f67535"
2063 + integrity sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==
2064 dependencies:
159 - default-require-extensions "^1.0.0"
2065 + "@types/node" "*"
2066
161 -aproba@^1.0.3:
162 - version "1.2.0"
163 - resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
164 - integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
2067 +"@types/stack-utils@^2.0.0":
2068 + version "2.0.3"
2069 + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8"
2070 + integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==
2071 +
2072 +"@types/trusted-types@^2.0.2":
2073 + version "2.0.7"
2074 + resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.7.tgz#baccb07a970b91707df3a3e8ba6896c57ead2d11"
2075 + integrity sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==
2076 +
2077 +"@types/ws@^8.5.5":
2078 + version "8.5.13"
2079 + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.13.tgz#6414c280875e2691d0d1e080b05addbf5cb91e20"
2080 + integrity sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==
2081 + dependencies:
2082 + "@types/node" "*"
2083 +
2084 +"@types/yargs-parser@*":
2085 + version "21.0.3"
2086 + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15"
2087 + integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==
2088 +
2089 +"@types/yargs@^16.0.0":
2090 + version "16.0.9"
2091 + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.9.tgz#ba506215e45f7707e6cbcaf386981155b7ab956e"
2092 + integrity sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==
2093 + dependencies:
2094 + "@types/yargs-parser" "*"
2095 +
2096 +"@types/yargs@^17.0.8":
2097 + version "17.0.33"
2098 + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.33.tgz#8c32303da83eec050a84b3c7ae7b9f922d13e32d"
2099 + integrity sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==
2100 + dependencies:
2101 + "@types/yargs-parser" "*"
2102 +
2103 +"@typescript-eslint/eslint-plugin@^5.5.0":
2104 + version "5.62.0"
2105 + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz#aeef0328d172b9e37d9bab6dbc13b87ed88977db"
2106 + integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==
2107 + dependencies:
2108 + "@eslint-community/regexpp" "^4.4.0"
2109 + "@typescript-eslint/scope-manager" "5.62.0"
2110 + "@typescript-eslint/type-utils" "5.62.0"
2111 + "@typescript-eslint/utils" "5.62.0"
2112 + debug "^4.3.4"
2113 + graphemer "^1.4.0"
2114 + ignore "^5.2.0"
2115 + natural-compare-lite "^1.4.0"
2116 + semver "^7.3.7"
2117 + tsutils "^3.21.0"
2118 +
2119 +"@typescript-eslint/experimental-utils@^5.0.0":
2120 + version "5.62.0"
2121 + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz#14559bf73383a308026b427a4a6129bae2146741"
2122 + integrity sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==
2123 + dependencies:
2124 + "@typescript-eslint/utils" "5.62.0"
2125 +
2126 +"@typescript-eslint/parser@^5.5.0":
2127 + version "5.62.0"
2128 + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7"
2129 + integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==
2130 + dependencies:
2131 + "@typescript-eslint/scope-manager" "5.62.0"
2132 + "@typescript-eslint/types" "5.62.0"
2133 + "@typescript-eslint/typescript-estree" "5.62.0"
2134 + debug "^4.3.4"
2135 +
2136 +"@typescript-eslint/scope-manager@5.62.0":
2137 + version "5.62.0"
2138 + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c"
2139 + integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==
2140 + dependencies:
2141 + "@typescript-eslint/types" "5.62.0"
2142 + "@typescript-eslint/visitor-keys" "5.62.0"
2143 +
2144 +"@typescript-eslint/type-utils@5.62.0":
2145 + version "5.62.0"
2146 + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz#286f0389c41681376cdad96b309cedd17d70346a"
2147 + integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==
2148 + dependencies:
2149 + "@typescript-eslint/typescript-estree" "5.62.0"
2150 + "@typescript-eslint/utils" "5.62.0"
2151 + debug "^4.3.4"
2152 + tsutils "^3.21.0"
2153 +
2154 +"@typescript-eslint/types@5.62.0":
2155 + version "5.62.0"
2156 + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f"
2157 + integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==
2158 +
2159 +"@typescript-eslint/typescript-estree@5.62.0":
2160 + version "5.62.0"
2161 + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b"
2162 + integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==
2163 + dependencies:
2164 + "@typescript-eslint/types" "5.62.0"
2165 + "@typescript-eslint/visitor-keys" "5.62.0"
2166 + debug "^4.3.4"
2167 + globby "^11.1.0"
2168 + is-glob "^4.0.3"
2169 + semver "^7.3.7"
2170 + tsutils "^3.21.0"
2171 +
2172 +"@typescript-eslint/utils@5.62.0", "@typescript-eslint/utils@^5.58.0":
2173 + version "5.62.0"
2174 + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.62.0.tgz#141e809c71636e4a75daa39faed2fb5f4b10df86"
2175 + integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==
2176 + dependencies:
2177 + "@eslint-community/eslint-utils" "^4.2.0"
2178 + "@types/json-schema" "^7.0.9"
2179 + "@types/semver" "^7.3.12"
2180 + "@typescript-eslint/scope-manager" "5.62.0"
2181 + "@typescript-eslint/types" "5.62.0"
2182 + "@typescript-eslint/typescript-estree" "5.62.0"
2183 + eslint-scope "^5.1.1"
2184 + semver "^7.3.7"
2185 +
2186 +"@typescript-eslint/visitor-keys@5.62.0":
2187 + version "5.62.0"
2188 + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e"
2189 + integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==
2190 + dependencies:
2191 + "@typescript-eslint/types" "5.62.0"
2192 + eslint-visitor-keys "^3.3.0"
2193 +
2194 +"@ungap/structured-clone@^1.2.0":
2195 + version "1.2.1"
2196 + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.1.tgz#28fa185f67daaf7b7a1a8c1d445132c5d979f8bd"
2197 + integrity sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==
2198
166 -are-we-there-yet@~1.1.2:
167 - version "1.1.5"
168 - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
169 - integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==
2199 +"@webassemblyjs/ast@1.14.1", "@webassemblyjs/ast@^1.14.1":
2200 + version "1.14.1"
2201 + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.14.1.tgz#a9f6a07f2b03c95c8d38c4536a1fdfb521ff55b6"
2202 + integrity sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==
2203 dependencies:
171 - delegates "^1.0.0"
172 - readable-stream "^2.0.6"
2204 + "@webassemblyjs/helper-numbers" "1.13.2"
2205 + "@webassemblyjs/helper-wasm-bytecode" "1.13.2"
2206
174 -argparse@^1.0.7:
175 - version "1.0.10"
176 - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
177 - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
2207 +"@webassemblyjs/floating-point-hex-parser@1.13.2":
2208 + version "1.13.2"
2209 + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz#fcca1eeddb1cc4e7b6eed4fc7956d6813b21b9fb"
2210 + integrity sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==
2211 +
2212 +"@webassemblyjs/helper-api-error@1.13.2":
2213 + version "1.13.2"
2214 + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz#e0a16152248bc38daee76dd7e21f15c5ef3ab1e7"
2215 + integrity sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==
2216 +
2217 +"@webassemblyjs/helper-buffer@1.14.1":
2218 + version "1.14.1"
2219 + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz#822a9bc603166531f7d5df84e67b5bf99b72b96b"
2220 + integrity sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==
2221 +
2222 +"@webassemblyjs/helper-numbers@1.13.2":
2223 + version "1.13.2"
2224 + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz#dbd932548e7119f4b8a7877fd5a8d20e63490b2d"
2225 + integrity sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==
2226 dependencies:
179 - sprintf-js "~1.0.2"
2227 + "@webassemblyjs/floating-point-hex-parser" "1.13.2"
2228 + "@webassemblyjs/helper-api-error" "1.13.2"
2229 + "@xtuc/long" "4.2.2"
2230
181 -aria-query@^0.3.0:
182 - version "0.3.0"
183 - resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.3.0.tgz#cb8a9984e2862711c83c80ade5b8f5ca0de2b467"
184 - integrity sha1-y4qZhOKGJxHIPICt5bj1yg3itGc=
2231 +"@webassemblyjs/helper-wasm-bytecode@1.13.2":
2232 + version "1.13.2"
2233 + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz#e556108758f448aae84c850e593ce18a0eb31e0b"
2234 + integrity sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==
2235 +
2236 +"@webassemblyjs/helper-wasm-section@1.14.1":
2237 + version "1.14.1"
2238 + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz#9629dda9c4430eab54b591053d6dc6f3ba050348"
2239 + integrity sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==
2240 dependencies:
186 - ast-types-flow "0.0.7"
2241 + "@webassemblyjs/ast" "1.14.1"
2242 + "@webassemblyjs/helper-buffer" "1.14.1"
2243 + "@webassemblyjs/helper-wasm-bytecode" "1.13.2"
2244 + "@webassemblyjs/wasm-gen" "1.14.1"
2245
188 -arr-diff@^2.0.0:
189 - version "2.0.0"
190 - resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
191 - integrity sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=
2246 +"@webassemblyjs/ieee754@1.13.2":
2247 + version "1.13.2"
2248 + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz#1c5eaace1d606ada2c7fd7045ea9356c59ee0dba"
2249 + integrity sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==
2250 dependencies:
193 - arr-flatten "^1.0.1"
2251 + "@xtuc/ieee754" "^1.2.0"
2252
195 -arr-diff@^4.0.0:
196 - version "4.0.0"
197 - resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
198 - integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
2253 +"@webassemblyjs/leb128@1.13.2":
2254 + version "1.13.2"
2255 + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.13.2.tgz#57c5c3deb0105d02ce25fa3fd74f4ebc9fd0bbb0"
2256 + integrity sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==
2257 + dependencies:
2258 + "@xtuc/long" "4.2.2"
2259
200 -arr-flatten@^1.0.1, arr-flatten@^1.1.0:
201 - version "1.1.0"
202 - resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
203 - integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
2260 +"@webassemblyjs/utf8@1.13.2":
2261 + version "1.13.2"
2262 + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.13.2.tgz#917a20e93f71ad5602966c2d685ae0c6c21f60f1"
2263 + integrity sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==
2264
205 -arr-union@^3.1.0:
206 - version "3.1.0"
207 - resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
208 - integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
2265 +"@webassemblyjs/wasm-edit@^1.14.1":
2266 + version "1.14.1"
2267 + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz#ac6689f502219b59198ddec42dcd496b1004d597"
2268 + integrity sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==
2269 + dependencies:
2270 + "@webassemblyjs/ast" "1.14.1"
2271 + "@webassemblyjs/helper-buffer" "1.14.1"
2272 + "@webassemblyjs/helper-wasm-bytecode" "1.13.2"
2273 + "@webassemblyjs/helper-wasm-section" "1.14.1"
2274 + "@webassemblyjs/wasm-gen" "1.14.1"
2275 + "@webassemblyjs/wasm-opt" "1.14.1"
2276 + "@webassemblyjs/wasm-parser" "1.14.1"
2277 + "@webassemblyjs/wast-printer" "1.14.1"
2278 +
2279 +"@webassemblyjs/wasm-gen@1.14.1":
2280 + version "1.14.1"
2281 + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz#991e7f0c090cb0bb62bbac882076e3d219da9570"
2282 + integrity sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==
2283 + dependencies:
2284 + "@webassemblyjs/ast" "1.14.1"
2285 + "@webassemblyjs/helper-wasm-bytecode" "1.13.2"
2286 + "@webassemblyjs/ieee754" "1.13.2"
2287 + "@webassemblyjs/leb128" "1.13.2"
2288 + "@webassemblyjs/utf8" "1.13.2"
2289
210 -array-equal@^1.0.0:
211 - version "1.0.0"
212 - resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
213 - integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=
2290 +"@webassemblyjs/wasm-opt@1.14.1":
2291 + version "1.14.1"
2292 + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz#e6f71ed7ccae46781c206017d3c14c50efa8106b"
2293 + integrity sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==
2294 + dependencies:
2295 + "@webassemblyjs/ast" "1.14.1"
2296 + "@webassemblyjs/helper-buffer" "1.14.1"
2297 + "@webassemblyjs/wasm-gen" "1.14.1"
2298 + "@webassemblyjs/wasm-parser" "1.14.1"
2299
215 -array-flatten@1.1.1:
216 - version "1.1.1"
217 - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
218 - integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=
2300 +"@webassemblyjs/wasm-parser@1.14.1", "@webassemblyjs/wasm-parser@^1.14.1":
2301 + version "1.14.1"
2302 + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz#b3e13f1893605ca78b52c68e54cf6a865f90b9fb"
2303 + integrity sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==
2304 + dependencies:
2305 + "@webassemblyjs/ast" "1.14.1"
2306 + "@webassemblyjs/helper-api-error" "1.13.2"
2307 + "@webassemblyjs/helper-wasm-bytecode" "1.13.2"
2308 + "@webassemblyjs/ieee754" "1.13.2"
2309 + "@webassemblyjs/leb128" "1.13.2"
2310 + "@webassemblyjs/utf8" "1.13.2"
2311
220 -array-unique@^0.2.1:
221 - version "0.2.1"
222 - resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
223 - integrity sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=
2312 +"@webassemblyjs/wast-printer@1.14.1":
2313 + version "1.14.1"
2314 + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz#3bb3e9638a8ae5fdaf9610e7a06b4d9f9aa6fe07"
2315 + integrity sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==
2316 + dependencies:
2317 + "@webassemblyjs/ast" "1.14.1"
2318 + "@xtuc/long" "4.2.2"
2319
225 -array-unique@^0.3.2:
226 - version "0.3.2"
227 - resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
228 - integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
2320 +"@xtuc/ieee754@^1.2.0":
2321 + version "1.2.0"
2322 + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
2323 + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
2324
230 -arrify@^1.0.1:
231 - version "1.0.1"
232 - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
233 - integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
2325 +"@xtuc/long@4.2.2":
2326 + version "4.2.2"
2327 + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d"
2328 + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
2329
235 -asap@~2.0.3:
2330 +abab@^2.0.3, abab@^2.0.5:
2331 version "2.0.6"
237 - resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
238 - integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
2332 + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291"
2333 + integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==
2334
240 -asn1@~0.2.3:
241 - version "0.2.4"
242 - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136"
243 - integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==
2335 +accepts@~1.3.4, accepts@~1.3.8:
2336 + version "1.3.8"
2337 + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e"
2338 + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==
2339 dependencies:
245 - safer-buffer "~2.1.0"
2340 + mime-types "~2.1.34"
2341 + negotiator "0.6.3"
2342
247 -assert-plus@1.0.0, assert-plus@^1.0.0:
248 - version "1.0.0"
249 - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
250 - integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=
2343 +acorn-globals@^6.0.0:
2344 + version "6.0.0"
2345 + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45"
2346 + integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==
2347 + dependencies:
2348 + acorn "^7.1.1"
2349 + acorn-walk "^7.1.1"
2350
252 -assert-plus@^0.2.0:
253 - version "0.2.0"
254 - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
255 - integrity sha1-104bh+ev/A24qttwIfP+SBAasjQ=
2351 +acorn-jsx@^5.3.2:
2352 + version "5.3.2"
2353 + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
2354 + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
2355
257 -assert@^1.1.1:
258 - version "1.5.0"
259 - resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
260 - integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
261 - dependencies:
262 - object-assign "^4.1.1"
263 - util "0.10.3"
2356 +acorn-walk@^7.1.1:
2357 + version "7.2.0"
2358 + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
2359 + integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
2360
265 -assign-symbols@^1.0.0:
266 - version "1.0.0"
267 - resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
268 - integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
2361 +acorn@^7.1.1:
2362 + version "7.4.1"
2363 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
2364 + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
2365
270 -ast-types-flow@0.0.7:
271 - version "0.0.7"
272 - resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
273 - integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
2366 +acorn@^8.14.0, acorn@^8.2.4, acorn@^8.8.2, acorn@^8.9.0:
2367 + version "8.14.0"
2368 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0"
2369 + integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==
2370
275 -async-each@^1.0.0:
276 - version "1.0.3"
277 - resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
278 - integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
2371 +address@^1.0.1, address@^1.1.2:
2372 + version "1.2.2"
2373 + resolved "https://registry.yarnpkg.com/address/-/address-1.2.2.tgz#2b5248dac5485a6390532c6a517fda2e3faac89e"
2374 + integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==
2375
280 -async@^0.9.0:
281 - version "0.9.2"
282 - resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d"
283 - integrity sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=
2376 +adjust-sourcemap-loader@^4.0.0:
2377 + version "4.0.0"
2378 + resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz#fc4a0fd080f7d10471f30a7320f25560ade28c99"
2379 + integrity sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==
2380 + dependencies:
2381 + loader-utils "^2.0.0"
2382 + regex-parser "^2.2.11"
2383
285 -async@^1.3.0, async@^1.5.0:
286 - version "1.5.2"
287 - resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
288 - integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=
2384 +agent-base@6:
2385 + version "6.0.2"
2386 + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
2387 + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==
2388 + dependencies:
2389 + debug "4"
2390
290 -async@^2.1.4:
291 - version "2.6.3"
292 - resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
293 - integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==
2391 +ajv-formats@^2.1.1:
2392 + version "2.1.1"
2393 + resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520"
2394 + integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==
2395 dependencies:
295 - lodash "^4.17.14"
2396 + ajv "^8.0.0"
2397
297 -async@~0.2.6:
298 - version "0.2.10"
299 - resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1"
300 - integrity sha1-trvgsGdLnXGXCMo43owjfLUmw9E=
2398 +ajv-keywords@^3.4.1, ajv-keywords@^3.5.2:
2399 + version "3.5.2"
2400 + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
2401 + integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
2402
302 -asynckit@^0.4.0:
303 - version "0.4.0"
304 - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
305 - integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
2403 +ajv-keywords@^5.1.0:
2404 + version "5.1.0"
2405 + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16"
2406 + integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==
2407 + dependencies:
2408 + fast-deep-equal "^3.1.3"
2409
307 -atob@^2.1.2:
308 - version "2.1.2"
309 - resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
310 - integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
2410 +ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5:
2411 + version "6.12.6"
2412 + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
2413 + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
2414 + dependencies:
2415 + fast-deep-equal "^3.1.1"
2416 + fast-json-stable-stringify "^2.0.0"
2417 + json-schema-traverse "^0.4.1"
2418 + uri-js "^4.2.2"
2419
312 -autoprefixer@6.7.2:
313 - version "6.7.2"
314 - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.2.tgz#172ab07b998ae9b957530928a59a40be54a45023"
315 - integrity sha1-Fyqwe5mK6blXUwkopZpAvlSkUCM=
2420 +ajv@^8.0.0, ajv@^8.6.0, ajv@^8.9.0:
2421 + version "8.17.1"
2422 + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6"
2423 + integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==
2424 dependencies:
317 - browserslist "^1.7.1"
318 - caniuse-db "^1.0.30000618"
319 - normalize-range "^0.1.2"
320 - num2fraction "^1.2.2"
321 - postcss "^5.2.11"
322 - postcss-value-parser "^3.2.3"
2425 + fast-deep-equal "^3.1.3"
2426 + fast-uri "^3.0.1"
2427 + json-schema-traverse "^1.0.0"
2428 + require-from-string "^2.0.2"
2429
324 -autoprefixer@^6.3.1:
325 - version "6.7.7"
326 - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014"
327 - integrity sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=
2430 +ansi-escapes@^4.2.1, ansi-escapes@^4.3.1:
2431 + version "4.3.2"
2432 + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
2433 + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
2434 dependencies:
329 - browserslist "^1.7.6"
330 - caniuse-db "^1.0.30000634"
331 - normalize-range "^0.1.2"
332 - num2fraction "^1.2.2"
333 - postcss "^5.2.16"
334 - postcss-value-parser "^3.2.3"
2435 + type-fest "^0.21.3"
2436
336 -aws-sign2@~0.6.0:
337 - version "0.6.0"
338 - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
339 - integrity sha1-FDQt0428yU0OW4fXY81jYSwOeU8=
2437 +ansi-html-community@^0.0.8:
2438 + version "0.0.8"
2439 + resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41"
2440 + integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==
2441
341 -aws-sign2@~0.7.0:
342 - version "0.7.0"
343 - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
344 - integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
2442 +ansi-html@^0.0.9:
2443 + version "0.0.9"
2444 + resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.9.tgz#6512d02342ae2cc68131952644a129cb734cd3f0"
2445 + integrity sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==
2446
346 -aws4@^1.2.1, aws4@^1.8.0:
347 - version "1.11.0"
348 - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59"
349 - integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==
2447 +ansi-regex@^0.2.0, ansi-regex@^0.2.1:
2448 + version "0.2.1"
2449 + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-0.2.1.tgz#0d8e946967a3d8143f93e24e298525fc1b2235f9"
2450 + integrity sha512-sGwIGMjhYdW26/IhwK2gkWWI8DRCVO6uj3hYgHT+zD+QL1pa37tM3ujhyfcJIYSbsxp7Gxhy7zrRW/1AHm4BmA==
2451
351 -babel-code-frame@^6.11.0, babel-code-frame@^6.16.0, babel-code-frame@^6.22.0, babel-code-frame@^6.26.0:
352 - version "6.26.0"
353 - resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
354 - integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=
355 - dependencies:
356 - chalk "^1.1.3"
357 - esutils "^2.0.2"
358 - js-tokens "^3.0.2"
359 -
360 -babel-core@6.22.1:
361 - version "6.22.1"
362 - resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.22.1.tgz#9c5fd658ba1772d28d721f6d25d968fc7ae21648"
363 - integrity sha1-nF/WWLoXctKNch9tJdlo/HriFkg=
364 - dependencies:
365 - babel-code-frame "^6.22.0"
366 - babel-generator "^6.22.0"
367 - babel-helpers "^6.22.0"
368 - babel-messages "^6.22.0"
369 - babel-register "^6.22.0"
370 - babel-runtime "^6.22.0"
371 - babel-template "^6.22.0"
372 - babel-traverse "^6.22.1"
373 - babel-types "^6.22.0"
374 - babylon "^6.11.0"
375 - convert-source-map "^1.1.0"
376 - debug "^2.1.1"
377 - json5 "^0.5.0"
378 - lodash "^4.2.0"
379 - minimatch "^3.0.2"
380 - path-is-absolute "^1.0.0"
381 - private "^0.1.6"
382 - slash "^1.0.0"
383 - source-map "^0.5.0"
384 -
385 -babel-core@^6.0.0, babel-core@^6.26.0:
386 - version "6.26.3"
387 - resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207"
388 - integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==
389 - dependencies:
390 - babel-code-frame "^6.26.0"
391 - babel-generator "^6.26.0"
392 - babel-helpers "^6.24.1"
393 - babel-messages "^6.23.0"
394 - babel-register "^6.26.0"
395 - babel-runtime "^6.26.0"
396 - babel-template "^6.26.0"
397 - babel-traverse "^6.26.0"
398 - babel-types "^6.26.0"
399 - babylon "^6.18.0"
400 - convert-source-map "^1.5.1"
401 - debug "^2.6.9"
402 - json5 "^0.5.1"
403 - lodash "^4.17.4"
404 - minimatch "^3.0.4"
405 - path-is-absolute "^1.0.1"
406 - private "^0.1.8"
407 - slash "^1.0.0"
408 - source-map "^0.5.7"
2452 +ansi-regex@^5.0.1:
2453 + version "5.0.1"
2454 + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
2455 + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
2456
410 -babel-eslint@7.1.1:
411 - version "7.1.1"
412 - resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.1.tgz#8a6a884f085aa7060af69cfc77341c2f99370fb2"
413 - integrity sha1-imqITwhapwYK9pz8dzQcL5k3D7I=
414 - dependencies:
415 - babel-code-frame "^6.16.0"
416 - babel-traverse "^6.15.0"
417 - babel-types "^6.15.0"
418 - babylon "^6.13.0"
419 - lodash.pickby "^4.6.0"
420 -
421 -babel-generator@^6.18.0, babel-generator@^6.22.0, babel-generator@^6.26.0:
422 - version "6.26.1"
423 - resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90"
424 - integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==
425 - dependencies:
426 - babel-messages "^6.23.0"
427 - babel-runtime "^6.26.0"
428 - babel-types "^6.26.0"
429 - detect-indent "^4.0.0"
430 - jsesc "^1.3.0"
431 - lodash "^4.17.4"
432 - source-map "^0.5.7"
433 - trim-right "^1.0.1"
434 -
435 -babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
436 - version "6.24.1"
437 - resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
438 - integrity sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=
439 - dependencies:
440 - babel-helper-explode-assignable-expression "^6.24.1"
441 - babel-runtime "^6.22.0"
442 - babel-types "^6.24.1"
443 -
444 -babel-helper-builder-react-jsx@^6.22.0, babel-helper-builder-react-jsx@^6.24.1:
445 - version "6.26.0"
446 - resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0"
447 - integrity sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=
448 - dependencies:
449 - babel-runtime "^6.26.0"
450 - babel-types "^6.26.0"
451 - esutils "^2.0.2"
2457 +ansi-regex@^6.0.1:
2458 + version "6.1.0"
2459 + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.1.0.tgz#95ec409c69619d6cb1b8b34f14b660ef28ebd654"
2460 + integrity sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==
2461
453 -babel-helper-call-delegate@^6.24.1:
454 - version "6.24.1"
455 - resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
456 - integrity sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=
457 - dependencies:
458 - babel-helper-hoist-variables "^6.24.1"
459 - babel-runtime "^6.22.0"
460 - babel-traverse "^6.24.1"
461 - babel-types "^6.24.1"
462 -
463 -babel-helper-define-map@^6.24.1:
464 - version "6.26.0"
465 - resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
466 - integrity sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=
467 - dependencies:
468 - babel-helper-function-name "^6.24.1"
469 - babel-runtime "^6.26.0"
470 - babel-types "^6.26.0"
471 - lodash "^4.17.4"
472 -
473 -babel-helper-explode-assignable-expression@^6.24.1:
474 - version "6.24.1"
475 - resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
476 - integrity sha1-8luCz33BBDPFX3BZLVdGQArCLKo=
477 - dependencies:
478 - babel-runtime "^6.22.0"
479 - babel-traverse "^6.24.1"
480 - babel-types "^6.24.1"
481 -
482 -babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.24.1:
483 - version "6.24.1"
484 - resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
485 - integrity sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=
486 - dependencies:
487 - babel-helper-get-function-arity "^6.24.1"
488 - babel-runtime "^6.22.0"
489 - babel-template "^6.24.1"
490 - babel-traverse "^6.24.1"
491 - babel-types "^6.24.1"
492 -
493 -babel-helper-get-function-arity@^6.24.1:
494 - version "6.24.1"
495 - resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
496 - integrity sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=
497 - dependencies:
498 - babel-runtime "^6.22.0"
499 - babel-types "^6.24.1"
500 -
501 -babel-helper-hoist-variables@^6.24.1:
502 - version "6.24.1"
503 - resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
504 - integrity sha1-HssnaJydJVE+rbyZFKc/VAi+enY=
505 - dependencies:
506 - babel-runtime "^6.22.0"
507 - babel-types "^6.24.1"
508 -
509 -babel-helper-optimise-call-expression@^6.24.1:
510 - version "6.24.1"
511 - resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
512 - integrity sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=
513 - dependencies:
514 - babel-runtime "^6.22.0"
515 - babel-types "^6.24.1"
516 -
517 -babel-helper-regex@^6.24.1:
518 - version "6.26.0"
519 - resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
520 - integrity sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=
521 - dependencies:
522 - babel-runtime "^6.26.0"
523 - babel-types "^6.26.0"
524 - lodash "^4.17.4"
525 -
526 -babel-helper-remap-async-to-generator@^6.24.1:
527 - version "6.24.1"
528 - resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
529 - integrity sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=
530 - dependencies:
531 - babel-helper-function-name "^6.24.1"
532 - babel-runtime "^6.22.0"
533 - babel-template "^6.24.1"
534 - babel-traverse "^6.24.1"
535 - babel-types "^6.24.1"
536 -
537 -babel-helper-replace-supers@^6.24.1:
538 - version "6.24.1"
539 - resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
540 - integrity sha1-v22/5Dk40XNpohPKiov3S2qQqxo=
541 - dependencies:
542 - babel-helper-optimise-call-expression "^6.24.1"
543 - babel-messages "^6.23.0"
544 - babel-runtime "^6.22.0"
545 - babel-template "^6.24.1"
546 - babel-traverse "^6.24.1"
547 - babel-types "^6.24.1"
548 -
549 -babel-helpers@^6.22.0, babel-helpers@^6.24.1:
550 - version "6.24.1"
551 - resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
552 - integrity sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=
553 - dependencies:
554 - babel-runtime "^6.22.0"
555 - babel-template "^6.24.1"
556 -
557 -babel-jest@18.0.0, babel-jest@^18.0.0:
558 - version "18.0.0"
559 - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-18.0.0.tgz#17ebba8cb3285c906d859e8707e4e79795fb65e3"
560 - integrity sha1-F+u6jLMoXJBthZ6HB+Tnl5X7ZeM=
561 - dependencies:
562 - babel-core "^6.0.0"
563 - babel-plugin-istanbul "^3.0.0"
564 - babel-preset-jest "^18.0.0"
565 -
566 -babel-loader@6.2.10:
567 - version "6.2.10"
568 - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.2.10.tgz#adefc2b242320cd5d15e65b31cea0e8b1b02d4b0"
569 - integrity sha1-re/CskIyDNXRXmWzHOoOixsC1LA=
570 - dependencies:
571 - find-cache-dir "^0.1.1"
572 - loader-utils "^0.2.11"
573 - mkdirp "^0.5.1"
574 - object-assign "^4.0.1"
2462 +ansi-styles@^1.1.0:
2463 + version "1.1.0"
2464 + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.1.0.tgz#eaecbf66cd706882760b2f4691582b8f55d7a7de"
2465 + integrity sha512-f2PKUkN5QngiSemowa6Mrk9MPCdtFiOSmibjZ+j1qhLGHHYsqZwmBMRF3IRMVXo8sybDqx2fJl2d/8OphBoWkA==
2466
576 -babel-messages@^6.22.0, babel-messages@^6.23.0:
577 - version "6.23.0"
578 - resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
579 - integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=
2467 +ansi-styles@^3.2.1:
2468 + version "3.2.1"
2469 + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
2470 + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
2471 dependencies:
581 - babel-runtime "^6.22.0"
2472 + color-convert "^1.9.0"
2473
583 -babel-plugin-check-es2015-constants@^6.3.13:
584 - version "6.22.0"
585 - resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
586 - integrity sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=
2474 +ansi-styles@^4.0.0, ansi-styles@^4.1.0:
2475 + version "4.3.0"
2476 + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
2477 + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
2478 dependencies:
588 - babel-runtime "^6.22.0"
2479 + color-convert "^2.0.1"
2480
590 -babel-plugin-istanbul@^3.0.0:
591 - version "3.1.2"
592 - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-3.1.2.tgz#11d5abde18425ec24b5d648c7e0b5d25cd354a22"
593 - integrity sha1-EdWr3hhCXsJLXWSMfgtdJc01SiI=
594 - dependencies:
595 - find-up "^1.1.2"
596 - istanbul-lib-instrument "^1.4.2"
597 - object-assign "^4.1.0"
598 - test-exclude "^3.3.0"
2481 +ansi-styles@^5.0.0:
2482 + version "5.2.0"
2483 + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b"
2484 + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
2485
600 -babel-plugin-jest-hoist@^18.0.0:
601 - version "18.0.0"
602 - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-18.0.0.tgz#4150e70ecab560e6e7344adc849498072d34e12a"
603 - integrity sha1-QVDnDsq1YObnNErchJSYBy004So=
2486 +ansi-styles@^6.1.0:
2487 + version "6.2.1"
2488 + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5"
2489 + integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
2490
605 -babel-plugin-syntax-async-functions@^6.8.0:
606 - version "6.13.0"
607 - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
608 - integrity sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=
2491 +any-promise@^1.0.0:
2492 + version "1.3.0"
2493 + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
2494 + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==
2495
610 -babel-plugin-syntax-class-properties@^6.8.0:
611 - version "6.13.0"
612 - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
613 - integrity sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=
2496 +anymatch@^3.0.3, anymatch@~3.1.2:
2497 + version "3.1.3"
2498 + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
2499 + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
2500 + dependencies:
2501 + normalize-path "^3.0.0"
2502 + picomatch "^2.0.4"
2503
615 -babel-plugin-syntax-exponentiation-operator@^6.8.0:
616 - version "6.13.0"
617 - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
618 - integrity sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=
2504 +arg@^5.0.2:
2505 + version "5.0.2"
2506 + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c"
2507 + integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==
2508 +
2509 +argparse@^1.0.7:
2510 + version "1.0.10"
2511 + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
2512 + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
2513 + dependencies:
2514 + sprintf-js "~1.0.2"
2515
620 -babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.3.13:
621 - version "6.18.0"
622 - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
623 - integrity sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=
2516 +argparse@^2.0.1:
2517 + version "2.0.1"
2518 + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
2519 + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
2520
625 -babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0:
626 - version "6.18.0"
627 - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
628 - integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=
2521 +aria-query@^5.3.2:
2522 + version "5.3.2"
2523 + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.2.tgz#93f81a43480e33a338f19163a3d10a50c01dcd59"
2524 + integrity sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==
2525
630 -babel-plugin-syntax-object-rest-spread@^6.8.0:
631 - version "6.13.0"
632 - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
633 - integrity sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=
634 -
635 -babel-plugin-syntax-trailing-function-commas@^6.13.0:
636 - version "6.22.0"
637 - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
638 - integrity sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=
639 -
640 -babel-plugin-transform-async-to-generator@^6.8.0:
641 - version "6.24.1"
642 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
643 - integrity sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=
644 - dependencies:
645 - babel-helper-remap-async-to-generator "^6.24.1"
646 - babel-plugin-syntax-async-functions "^6.8.0"
647 - babel-runtime "^6.22.0"
648 -
649 -babel-plugin-transform-class-properties@6.22.0:
650 - version "6.22.0"
651 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.22.0.tgz#aa78f8134495c7de06c097118ba061844e1dc1d8"
652 - integrity sha1-qnj4E0SVx94GwJcRi6BhhE4dwdg=
653 - dependencies:
654 - babel-helper-function-name "^6.22.0"
655 - babel-plugin-syntax-class-properties "^6.8.0"
656 - babel-runtime "^6.22.0"
657 - babel-template "^6.22.0"
658 -
659 -babel-plugin-transform-es2015-arrow-functions@^6.3.13:
660 - version "6.22.0"
661 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
662 - integrity sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=
663 - dependencies:
664 - babel-runtime "^6.22.0"
665 -
666 -babel-plugin-transform-es2015-block-scoped-functions@^6.3.13:
667 - version "6.22.0"
668 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
669 - integrity sha1-u8UbSflk1wy42OC5ToICRs46YUE=
670 - dependencies:
671 - babel-runtime "^6.22.0"
672 -
673 -babel-plugin-transform-es2015-block-scoping@^6.6.0:
674 - version "6.26.0"
675 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
676 - integrity sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=
677 - dependencies:
678 - babel-runtime "^6.26.0"
679 - babel-template "^6.26.0"
680 - babel-traverse "^6.26.0"
681 - babel-types "^6.26.0"
682 - lodash "^4.17.4"
683 -
684 -babel-plugin-transform-es2015-classes@^6.6.0:
685 - version "6.24.1"
686 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
687 - integrity sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=
688 - dependencies:
689 - babel-helper-define-map "^6.24.1"
690 - babel-helper-function-name "^6.24.1"
691 - babel-helper-optimise-call-expression "^6.24.1"
692 - babel-helper-replace-supers "^6.24.1"
693 - babel-messages "^6.23.0"
694 - babel-runtime "^6.22.0"
695 - babel-template "^6.24.1"
696 - babel-traverse "^6.24.1"
697 - babel-types "^6.24.1"
698 -
699 -babel-plugin-transform-es2015-computed-properties@^6.3.13:
700 - version "6.24.1"
701 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
702 - integrity sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=
703 - dependencies:
704 - babel-runtime "^6.22.0"
705 - babel-template "^6.24.1"
706 -
707 -babel-plugin-transform-es2015-destructuring@^6.6.0:
708 - version "6.23.0"
709 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
710 - integrity sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=
711 - dependencies:
712 - babel-runtime "^6.22.0"
713 -
714 -babel-plugin-transform-es2015-duplicate-keys@^6.6.0:
715 - version "6.24.1"
716 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
717 - integrity sha1-c+s9MQypaePvnskcU3QabxV2Qj4=
718 - dependencies:
719 - babel-runtime "^6.22.0"
720 - babel-types "^6.24.1"
721 -
722 -babel-plugin-transform-es2015-for-of@^6.6.0:
723 - version "6.23.0"
724 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
725 - integrity sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=
726 - dependencies:
727 - babel-runtime "^6.22.0"
728 -
729 -babel-plugin-transform-es2015-function-name@^6.3.13:
730 - version "6.24.1"
731 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
732 - integrity sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=
733 - dependencies:
734 - babel-helper-function-name "^6.24.1"
735 - babel-runtime "^6.22.0"
736 - babel-types "^6.24.1"
737 -
738 -babel-plugin-transform-es2015-literals@^6.3.13:
739 - version "6.22.0"
740 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
741 - integrity sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=
742 - dependencies:
743 - babel-runtime "^6.22.0"
744 -
745 -babel-plugin-transform-es2015-modules-amd@^6.24.1, babel-plugin-transform-es2015-modules-amd@^6.8.0:
746 - version "6.24.1"
747 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
748 - integrity sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=
749 - dependencies:
750 - babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
751 - babel-runtime "^6.22.0"
752 - babel-template "^6.24.1"
753 -
754 -babel-plugin-transform-es2015-modules-commonjs@^6.24.1, babel-plugin-transform-es2015-modules-commonjs@^6.6.0:
755 - version "6.26.2"
756 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3"
757 - integrity sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==
758 - dependencies:
759 - babel-plugin-transform-strict-mode "^6.24.1"
760 - babel-runtime "^6.26.0"
761 - babel-template "^6.26.0"
762 - babel-types "^6.26.0"
763 -
764 -babel-plugin-transform-es2015-modules-systemjs@^6.12.0:
765 - version "6.24.1"
766 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
767 - integrity sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=
768 - dependencies:
769 - babel-helper-hoist-variables "^6.24.1"
770 - babel-runtime "^6.22.0"
771 - babel-template "^6.24.1"
772 -
773 -babel-plugin-transform-es2015-modules-umd@^6.12.0:
774 - version "6.24.1"
775 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
776 - integrity sha1-rJl+YoXNGO1hdq22B9YCNErThGg=
777 - dependencies:
778 - babel-plugin-transform-es2015-modules-amd "^6.24.1"
779 - babel-runtime "^6.22.0"
780 - babel-template "^6.24.1"
781 -
782 -babel-plugin-transform-es2015-object-super@^6.3.13:
783 - version "6.24.1"
784 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
785 - integrity sha1-JM72muIcuDp/hgPa0CH1cusnj40=
786 - dependencies:
787 - babel-helper-replace-supers "^6.24.1"
788 - babel-runtime "^6.22.0"
789 -
790 -babel-plugin-transform-es2015-parameters@^6.6.0:
791 - version "6.24.1"
792 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
793 - integrity sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=
794 - dependencies:
795 - babel-helper-call-delegate "^6.24.1"
796 - babel-helper-get-function-arity "^6.24.1"
797 - babel-runtime "^6.22.0"
798 - babel-template "^6.24.1"
799 - babel-traverse "^6.24.1"
800 - babel-types "^6.24.1"
801 -
802 -babel-plugin-transform-es2015-shorthand-properties@^6.3.13:
803 - version "6.24.1"
804 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
805 - integrity sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=
806 - dependencies:
807 - babel-runtime "^6.22.0"
808 - babel-types "^6.24.1"
809 -
810 -babel-plugin-transform-es2015-spread@^6.3.13:
811 - version "6.22.0"
812 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
813 - integrity sha1-1taKmfia7cRTbIGlQujdnxdG+NE=
814 - dependencies:
815 - babel-runtime "^6.22.0"
816 -
817 -babel-plugin-transform-es2015-sticky-regex@^6.3.13:
818 - version "6.24.1"
819 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
820 - integrity sha1-AMHNsaynERLN8M9hJsLta0V8zbw=
821 - dependencies:
822 - babel-helper-regex "^6.24.1"
823 - babel-runtime "^6.22.0"
824 - babel-types "^6.24.1"
825 -
826 -babel-plugin-transform-es2015-template-literals@^6.6.0:
827 - version "6.22.0"
828 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
829 - integrity sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=
830 - dependencies:
831 - babel-runtime "^6.22.0"
832 -
833 -babel-plugin-transform-es2015-typeof-symbol@^6.6.0:
834 - version "6.23.0"
835 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
836 - integrity sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=
837 - dependencies:
838 - babel-runtime "^6.22.0"
839 -
840 -babel-plugin-transform-es2015-unicode-regex@^6.3.13:
841 - version "6.24.1"
842 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
843 - integrity sha1-04sS9C6nMj9yk4fxinxa4frrNek=
844 - dependencies:
845 - babel-helper-regex "^6.24.1"
846 - babel-runtime "^6.22.0"
847 - regexpu-core "^2.0.0"
848 -
849 -babel-plugin-transform-exponentiation-operator@^6.8.0:
850 - version "6.24.1"
851 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
852 - integrity sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=
2526 +array-buffer-byte-length@^1.0.1, array-buffer-byte-length@^1.0.2:
2527 + version "1.0.2"
2528 + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz#384d12a37295aec3769ab022ad323a18a51ccf8b"
2529 + integrity sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==
2530 dependencies:
854 - babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
855 - babel-plugin-syntax-exponentiation-operator "^6.8.0"
856 - babel-runtime "^6.22.0"
2531 + call-bound "^1.0.3"
2532 + is-array-buffer "^3.0.5"
2533
858 -babel-plugin-transform-flow-strip-types@^6.22.0:
859 - version "6.22.0"
860 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
861 - integrity sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=
862 - dependencies:
863 - babel-plugin-syntax-flow "^6.18.0"
864 - babel-runtime "^6.22.0"
2534 +array-flatten@1.1.1:
2535 + version "1.1.1"
2536 + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
2537 + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==
2538
866 -babel-plugin-transform-object-rest-spread@6.22.0:
867 - version "6.22.0"
868 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.22.0.tgz#1d419b55e68d2e4f64a5ff3373bd67d73c8e83bc"
869 - integrity sha1-HUGbVeaNLk9kpf8zc71n1zyOg7w=
2539 +array-includes@^3.1.6, array-includes@^3.1.8:
2540 + version "3.1.8"
2541 + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.8.tgz#5e370cbe172fdd5dd6530c1d4aadda25281ba97d"
2542 + integrity sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==
2543 dependencies:
871 - babel-plugin-syntax-object-rest-spread "^6.8.0"
872 - babel-runtime "^6.22.0"
2544 + call-bind "^1.0.7"
2545 + define-properties "^1.2.1"
2546 + es-abstract "^1.23.2"
2547 + es-object-atoms "^1.0.0"
2548 + get-intrinsic "^1.2.4"
2549 + is-string "^1.0.7"
2550
874 -babel-plugin-transform-react-constant-elements@6.22.0:
875 - version "6.22.0"
876 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-constant-elements/-/babel-plugin-transform-react-constant-elements-6.22.0.tgz#4af456f80d283e8be00f00f12852354defa08ee1"
877 - integrity sha1-SvRW+A0oPovgDwDxKFI1Te+gjuE=
2551 +array-union@^2.1.0:
2552 + version "2.1.0"
2553 + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
2554 + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
2555 +
2556 +array.prototype.findlast@^1.2.5:
2557 + version "1.2.5"
2558 + resolved "https://registry.yarnpkg.com/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz#3e4fbcb30a15a7f5bf64cf2faae22d139c2e4904"
2559 + integrity sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==
2560 dependencies:
879 - babel-runtime "^6.22.0"
2561 + call-bind "^1.0.7"
2562 + define-properties "^1.2.1"
2563 + es-abstract "^1.23.2"
2564 + es-errors "^1.3.0"
2565 + es-object-atoms "^1.0.0"
2566 + es-shim-unscopables "^1.0.2"
2567
881 -babel-plugin-transform-react-display-name@^6.22.0:
882 - version "6.25.0"
883 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1"
884 - integrity sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE=
2568 +array.prototype.findlastindex@^1.2.5:
2569 + version "1.2.5"
2570 + resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz#8c35a755c72908719453f87145ca011e39334d0d"
2571 + integrity sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==
2572 dependencies:
886 - babel-runtime "^6.22.0"
2573 + call-bind "^1.0.7"
2574 + define-properties "^1.2.1"
2575 + es-abstract "^1.23.2"
2576 + es-errors "^1.3.0"
2577 + es-object-atoms "^1.0.0"
2578 + es-shim-unscopables "^1.0.2"
2579
888 -babel-plugin-transform-react-jsx-self@6.22.0, babel-plugin-transform-react-jsx-self@^6.22.0:
889 - version "6.22.0"
890 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e"
891 - integrity sha1-322AqdomEqEh5t3XVYvL7PBuY24=
2580 +array.prototype.flat@^1.3.1, array.prototype.flat@^1.3.2:
2581 + version "1.3.3"
2582 + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz#534aaf9e6e8dd79fb6b9a9917f839ef1ec63afe5"
2583 + integrity sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==
2584 dependencies:
893 - babel-plugin-syntax-jsx "^6.8.0"
894 - babel-runtime "^6.22.0"
2585 + call-bind "^1.0.8"
2586 + define-properties "^1.2.1"
2587 + es-abstract "^1.23.5"
2588 + es-shim-unscopables "^1.0.2"
2589
896 -babel-plugin-transform-react-jsx-source@6.22.0, babel-plugin-transform-react-jsx-source@^6.22.0:
897 - version "6.22.0"
898 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"
899 - integrity sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=
2590 +array.prototype.flatmap@^1.3.2, array.prototype.flatmap@^1.3.3:
2591 + version "1.3.3"
2592 + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz#712cc792ae70370ae40586264629e33aab5dd38b"
2593 + integrity sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==
2594 dependencies:
901 - babel-plugin-syntax-jsx "^6.8.0"
902 - babel-runtime "^6.22.0"
2595 + call-bind "^1.0.8"
2596 + define-properties "^1.2.1"
2597 + es-abstract "^1.23.5"
2598 + es-shim-unscopables "^1.0.2"
2599
904 -babel-plugin-transform-react-jsx@6.22.0:
905 - version "6.22.0"
906 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.22.0.tgz#48556b7dd4c3fe97d1c943bcd54fc3f2561c1817"
907 - integrity sha1-SFVrfdTD/pfRyUO81U/D8lYcGBc=
2600 +array.prototype.reduce@^1.0.6:
2601 + version "1.0.7"
2602 + resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.7.tgz#6aadc2f995af29cb887eb866d981dc85ab6f7dc7"
2603 + integrity sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==
2604 + dependencies:
2605 + call-bind "^1.0.7"
2606 + define-properties "^1.2.1"
2607 + es-abstract "^1.23.2"
2608 + es-array-method-boxes-properly "^1.0.0"
2609 + es-errors "^1.3.0"
2610 + es-object-atoms "^1.0.0"
2611 + is-string "^1.0.7"
2612 +
2613 +array.prototype.tosorted@^1.1.4:
2614 + version "1.1.4"
2615 + resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz#fe954678ff53034e717ea3352a03f0b0b86f7ffc"
2616 + integrity sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==
2617 dependencies:
909 - babel-helper-builder-react-jsx "^6.22.0"
910 - babel-plugin-syntax-jsx "^6.8.0"
911 - babel-runtime "^6.22.0"
2618 + call-bind "^1.0.7"
2619 + define-properties "^1.2.1"
2620 + es-abstract "^1.23.3"
2621 + es-errors "^1.3.0"
2622 + es-shim-unscopables "^1.0.2"
2623
913 -babel-plugin-transform-react-jsx@^6.22.0:
914 - version "6.24.1"
915 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3"
916 - integrity sha1-hAoCjn30YN/DotKfDA2R9jduZqM=
2624 +arraybuffer.prototype.slice@^1.0.4:
2625 + version "1.0.4"
2626 + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz#9d760d84dbdd06d0cbf92c8849615a1a7ab3183c"
2627 + integrity sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==
2628 + dependencies:
2629 + array-buffer-byte-length "^1.0.1"
2630 + call-bind "^1.0.8"
2631 + define-properties "^1.2.1"
2632 + es-abstract "^1.23.5"
2633 + es-errors "^1.3.0"
2634 + get-intrinsic "^1.2.6"
2635 + is-array-buffer "^3.0.4"
2636 +
2637 +asap@~2.0.6:
2638 + version "2.0.6"
2639 + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
2640 + integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==
2641 +
2642 +ast-types-flow@^0.0.8:
2643 + version "0.0.8"
2644 + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.8.tgz#0a85e1c92695769ac13a428bb653e7538bea27d6"
2645 + integrity sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==
2646 +
2647 +async@^3.2.3:
2648 + version "3.2.6"
2649 + resolved "https://registry.yarnpkg.com/async/-/async-3.2.6.tgz#1b0728e14929d51b85b449b7f06e27c1145e38ce"
2650 + integrity sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==
2651 +
2652 +asynckit@^0.4.0:
2653 + version "0.4.0"
2654 + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
2655 + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==
2656 +
2657 +at-least-node@^1.0.0:
2658 + version "1.0.0"
2659 + resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
2660 + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
2661 +
2662 +autoprefixer@^10.4.13:
2663 + version "10.4.20"
2664 + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.20.tgz#5caec14d43976ef42e32dcb4bd62878e96be5b3b"
2665 + integrity sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==
2666 dependencies:
918 - babel-helper-builder-react-jsx "^6.24.1"
919 - babel-plugin-syntax-jsx "^6.8.0"
920 - babel-runtime "^6.22.0"
2667 + browserslist "^4.23.3"
2668 + caniuse-lite "^1.0.30001646"
2669 + fraction.js "^4.3.7"
2670 + normalize-range "^0.1.2"
2671 + picocolors "^1.0.1"
2672 + postcss-value-parser "^4.2.0"
2673
922 -babel-plugin-transform-regenerator@6.22.0:
923 - version "6.22.0"
924 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6"
925 - integrity sha1-ZXQFk6MZxEUiFXU41pC4QJRhfqY=
2674 +available-typed-arrays@^1.0.7:
2675 + version "1.0.7"
2676 + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846"
2677 + integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==
2678 dependencies:
927 - regenerator-transform "0.9.8"
2679 + possible-typed-array-names "^1.0.0"
2680
929 -babel-plugin-transform-regenerator@^6.6.0:
930 - version "6.26.0"
931 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
932 - integrity sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=
2681 +axe-core@^4.10.0:
2682 + version "4.10.2"
2683 + resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.10.2.tgz#85228e3e1d8b8532a27659b332e39b7fa0e022df"
2684 + integrity sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==
2685 +
2686 +axobject-query@^4.1.0:
2687 + version "4.1.0"
2688 + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-4.1.0.tgz#28768c76d0e3cff21bc62a9e2d0b6ac30042a1ee"
2689 + integrity sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==
2690 +
2691 +babel-jest@^27.4.2, babel-jest@^27.5.1:
2692 + version "27.5.1"
2693 + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.5.1.tgz#a1bf8d61928edfefd21da27eb86a695bfd691444"
2694 + integrity sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==
2695 + dependencies:
2696 + "@jest/transform" "^27.5.1"
2697 + "@jest/types" "^27.5.1"
2698 + "@types/babel__core" "^7.1.14"
2699 + babel-plugin-istanbul "^6.1.1"
2700 + babel-preset-jest "^27.5.1"
2701 + chalk "^4.0.0"
2702 + graceful-fs "^4.2.9"
2703 + slash "^3.0.0"
2704 +
2705 +babel-loader@^8.2.3:
2706 + version "8.4.1"
2707 + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.4.1.tgz#6ccb75c66e62c3b144e1c5f2eaec5b8f6c08c675"
2708 + integrity sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==
2709 + dependencies:
2710 + find-cache-dir "^3.3.1"
2711 + loader-utils "^2.0.4"
2712 + make-dir "^3.1.0"
2713 + schema-utils "^2.6.5"
2714 +
2715 +babel-plugin-istanbul@^6.1.1:
2716 + version "6.1.1"
2717 + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73"
2718 + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==
2719 + dependencies:
2720 + "@babel/helper-plugin-utils" "^7.0.0"
2721 + "@istanbuljs/load-nyc-config" "^1.0.0"
2722 + "@istanbuljs/schema" "^0.1.2"
2723 + istanbul-lib-instrument "^5.0.4"
2724 + test-exclude "^6.0.0"
2725 +
2726 +babel-plugin-jest-hoist@^27.5.1:
2727 + version "27.5.1"
2728 + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz#9be98ecf28c331eb9f5df9c72d6f89deb8181c2e"
2729 + integrity sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==
2730 + dependencies:
2731 + "@babel/template" "^7.3.3"
2732 + "@babel/types" "^7.3.3"
2733 + "@types/babel__core" "^7.0.0"
2734 + "@types/babel__traverse" "^7.0.6"
2735 +
2736 +babel-plugin-macros@^3.1.0:
2737 + version "3.1.0"
2738 + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1"
2739 + integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==
2740 dependencies:
934 - regenerator-transform "^0.10.0"
2741 + "@babel/runtime" "^7.12.5"
2742 + cosmiconfig "^7.0.0"
2743 + resolve "^1.19.0"
2744 +
2745 +babel-plugin-named-asset-import@^0.3.8:
2746 + version "0.3.8"
2747 + resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz#6b7fa43c59229685368683c28bc9734f24524cc2"
2748 + integrity sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==
2749
936 -babel-plugin-transform-runtime@6.22.0:
937 - version "6.22.0"
938 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.22.0.tgz#10968d760bbf6517243081eec778e10fa828551c"
939 - integrity sha1-EJaNdgu/ZRckMIHux3jhD6goVRw=
2750 +babel-plugin-polyfill-corejs2@^0.4.10:
2751 + version "0.4.12"
2752 + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz#ca55bbec8ab0edeeef3d7b8ffd75322e210879a9"
2753 + integrity sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==
2754 dependencies:
941 - babel-runtime "^6.22.0"
2755 + "@babel/compat-data" "^7.22.6"
2756 + "@babel/helper-define-polyfill-provider" "^0.6.3"
2757 + semver "^6.3.1"
2758
943 -babel-plugin-transform-strict-mode@^6.24.1:
944 - version "6.24.1"
945 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
946 - integrity sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=
2759 +babel-plugin-polyfill-corejs3@^0.10.6:
2760 + version "0.10.6"
2761 + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz#2deda57caef50f59c525aeb4964d3b2f867710c7"
2762 + integrity sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==
2763 dependencies:
948 - babel-runtime "^6.22.0"
949 - babel-types "^6.24.1"
2764 + "@babel/helper-define-polyfill-provider" "^0.6.2"
2765 + core-js-compat "^3.38.0"
2766
951 -babel-preset-env@1.2.1:
952 - version "1.2.1"
953 - resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.2.1.tgz#659178f54df74a74765f796be4d290b5beeb3f5f"
954 - integrity sha1-ZZF49U33SnR2X3lr5NKQtb7rP18=
955 - dependencies:
956 - babel-plugin-check-es2015-constants "^6.3.13"
957 - babel-plugin-syntax-trailing-function-commas "^6.13.0"
958 - babel-plugin-transform-async-to-generator "^6.8.0"
959 - babel-plugin-transform-es2015-arrow-functions "^6.3.13"
960 - babel-plugin-transform-es2015-block-scoped-functions "^6.3.13"
961 - babel-plugin-transform-es2015-block-scoping "^6.6.0"
962 - babel-plugin-transform-es2015-classes "^6.6.0"
963 - babel-plugin-transform-es2015-computed-properties "^6.3.13"
964 - babel-plugin-transform-es2015-destructuring "^6.6.0"
965 - babel-plugin-transform-es2015-duplicate-keys "^6.6.0"
966 - babel-plugin-transform-es2015-for-of "^6.6.0"
967 - babel-plugin-transform-es2015-function-name "^6.3.13"
968 - babel-plugin-transform-es2015-literals "^6.3.13"
969 - babel-plugin-transform-es2015-modules-amd "^6.8.0"
970 - babel-plugin-transform-es2015-modules-commonjs "^6.6.0"
971 - babel-plugin-transform-es2015-modules-systemjs "^6.12.0"
972 - babel-plugin-transform-es2015-modules-umd "^6.12.0"
973 - babel-plugin-transform-es2015-object-super "^6.3.13"
974 - babel-plugin-transform-es2015-parameters "^6.6.0"
975 - babel-plugin-transform-es2015-shorthand-properties "^6.3.13"
976 - babel-plugin-transform-es2015-spread "^6.3.13"
977 - babel-plugin-transform-es2015-sticky-regex "^6.3.13"
978 - babel-plugin-transform-es2015-template-literals "^6.6.0"
979 - babel-plugin-transform-es2015-typeof-symbol "^6.6.0"
980 - babel-plugin-transform-es2015-unicode-regex "^6.3.13"
981 - babel-plugin-transform-exponentiation-operator "^6.8.0"
982 - babel-plugin-transform-regenerator "^6.6.0"
983 - browserslist "^1.4.0"
984 - electron-to-chromium "^1.1.0"
985 - invariant "^2.2.2"
986 -
987 -babel-preset-jest@^18.0.0:
988 - version "18.0.0"
989 - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-18.0.0.tgz#84faf8ca3ec65aba7d5e3f59bbaed935ab24049e"
990 - integrity sha1-hPr4yj7GWrp9Xj9Zu67ZNaskBJ4=
991 - dependencies:
992 - babel-plugin-jest-hoist "^18.0.0"
993 -
994 -babel-preset-react-app@^2.2.0:
995 - version "2.2.0"
996 - resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-2.2.0.tgz#3143bcf316049f78b5f9d0422fd7822ca4715ca4"
997 - integrity sha1-MUO88xYEn3i1+dBCL9eCLKRxXKQ=
998 - dependencies:
999 - babel-plugin-transform-class-properties "6.22.0"
1000 - babel-plugin-transform-object-rest-spread "6.22.0"
1001 - babel-plugin-transform-react-constant-elements "6.22.0"
1002 - babel-plugin-transform-react-jsx "6.22.0"
1003 - babel-plugin-transform-react-jsx-self "6.22.0"
1004 - babel-plugin-transform-react-jsx-source "6.22.0"
1005 - babel-plugin-transform-regenerator "6.22.0"
1006 - babel-plugin-transform-runtime "6.22.0"
1007 - babel-preset-env "1.2.1"
1008 - babel-preset-react "6.22.0"
1009 - babel-runtime "6.22.0"
1010 -
1011 -babel-preset-react@6.22.0:
1012 - version "6.22.0"
1013 - resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.22.0.tgz#7bc97e2d73eec4b980fb6b4e4e0884e81ccdc165"
1014 - integrity sha1-e8l+LXPuxLmA+2tOTgiE6BzNwWU=
1015 - dependencies:
1016 - babel-plugin-syntax-flow "^6.3.13"
1017 - babel-plugin-syntax-jsx "^6.3.13"
1018 - babel-plugin-transform-flow-strip-types "^6.22.0"
1019 - babel-plugin-transform-react-display-name "^6.22.0"
1020 - babel-plugin-transform-react-jsx "^6.22.0"
1021 - babel-plugin-transform-react-jsx-self "^6.22.0"
1022 - babel-plugin-transform-react-jsx-source "^6.22.0"
1023 -
1024 -babel-register@^6.22.0, babel-register@^6.26.0:
1025 - version "6.26.0"
1026 - resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
1027 - integrity sha1-btAhFz4vy0htestFxgCahW9kcHE=
1028 - dependencies:
1029 - babel-core "^6.26.0"
1030 - babel-runtime "^6.26.0"
1031 - core-js "^2.5.0"
1032 - home-or-tmp "^2.0.0"
1033 - lodash "^4.17.4"
1034 - mkdirp "^0.5.1"
1035 - source-map-support "^0.4.15"
1036 -
1037 -babel-runtime@6.22.0:
1038 - version "6.22.0"
1039 - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611"
1040 - integrity sha1-HPi0rGfHek3bDbKuH3TeUqxMphE=
1041 - dependencies:
1042 - core-js "^2.4.0"
1043 - regenerator-runtime "^0.10.0"
1044 -
1045 -babel-runtime@^6.18.0, babel-runtime@^6.20.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
1046 - version "6.26.0"
1047 - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
1048 - integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
1049 - dependencies:
1050 - core-js "^2.4.0"
1051 - regenerator-runtime "^0.11.0"
1052 -
1053 -babel-template@^6.16.0, babel-template@^6.22.0, babel-template@^6.24.1, babel-template@^6.26.0:
1054 - version "6.26.0"
1055 - resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
1056 - integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=
1057 - dependencies:
1058 - babel-runtime "^6.26.0"
1059 - babel-traverse "^6.26.0"
1060 - babel-types "^6.26.0"
1061 - babylon "^6.18.0"
1062 - lodash "^4.17.4"
1063 -
1064 -babel-traverse@^6.15.0, babel-traverse@^6.18.0, babel-traverse@^6.22.1, babel-traverse@^6.24.1, babel-traverse@^6.26.0:
1065 - version "6.26.0"
1066 - resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
1067 - integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=
1068 - dependencies:
1069 - babel-code-frame "^6.26.0"
1070 - babel-messages "^6.23.0"
1071 - babel-runtime "^6.26.0"
1072 - babel-types "^6.26.0"
1073 - babylon "^6.18.0"
1074 - debug "^2.6.8"
1075 - globals "^9.18.0"
1076 - invariant "^2.2.2"
1077 - lodash "^4.17.4"
1078 -
1079 -babel-types@^6.15.0, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.24.1, babel-types@^6.26.0:
1080 - version "6.26.0"
1081 - resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
1082 - integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=
1083 - dependencies:
1084 - babel-runtime "^6.26.0"
1085 - esutils "^2.0.2"
1086 - lodash "^4.17.4"
1087 - to-fast-properties "^1.0.3"
2767 +babel-plugin-polyfill-regenerator@^0.6.1:
2768 + version "0.6.3"
2769 + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz#abeb1f3f1c762eace37587f42548b08b57789bc8"
2770 + integrity sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==
2771 + dependencies:
2772 + "@babel/helper-define-polyfill-provider" "^0.6.3"
2773
1089 -babylon@^6.11.0, babylon@^6.13.0, babylon@^6.18.0:
1090 - version "6.18.0"
1091 - resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
1092 - integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==
2774 +babel-plugin-transform-react-remove-prop-types@^0.4.24:
2775 + version "0.4.24"
2776 + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a"
2777 + integrity sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==
2778
1094 -balanced-match@^0.4.2:
1095 - version "0.4.2"
1096 - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
1097 - integrity sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=
2779 +babel-preset-current-node-syntax@^1.0.0:
2780 + version "1.1.0"
2781 + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz#9a929eafece419612ef4ae4f60b1862ebad8ef30"
2782 + integrity sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==
2783 + dependencies:
2784 + "@babel/plugin-syntax-async-generators" "^7.8.4"
2785 + "@babel/plugin-syntax-bigint" "^7.8.3"
2786 + "@babel/plugin-syntax-class-properties" "^7.12.13"
2787 + "@babel/plugin-syntax-class-static-block" "^7.14.5"
2788 + "@babel/plugin-syntax-import-attributes" "^7.24.7"
2789 + "@babel/plugin-syntax-import-meta" "^7.10.4"
2790 + "@babel/plugin-syntax-json-strings" "^7.8.3"
2791 + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
2792 + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
2793 + "@babel/plugin-syntax-numeric-separator" "^7.10.4"
2794 + "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
2795 + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
2796 + "@babel/plugin-syntax-optional-chaining" "^7.8.3"
2797 + "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
2798 + "@babel/plugin-syntax-top-level-await" "^7.14.5"
2799 +
2800 +babel-preset-jest@^27.5.1:
2801 + version "27.5.1"
2802 + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz#91f10f58034cb7989cb4f962b69fa6eef6a6bc81"
2803 + integrity sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==
2804 + dependencies:
2805 + babel-plugin-jest-hoist "^27.5.1"
2806 + babel-preset-current-node-syntax "^1.0.0"
2807 +
2808 +babel-preset-react-app@^10.0.1:
2809 + version "10.0.1"
2810 + resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz#ed6005a20a24f2c88521809fa9aea99903751584"
2811 + integrity sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==
2812 + dependencies:
2813 + "@babel/core" "^7.16.0"
2814 + "@babel/plugin-proposal-class-properties" "^7.16.0"
2815 + "@babel/plugin-proposal-decorators" "^7.16.4"
2816 + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.0"
2817 + "@babel/plugin-proposal-numeric-separator" "^7.16.0"
2818 + "@babel/plugin-proposal-optional-chaining" "^7.16.0"
2819 + "@babel/plugin-proposal-private-methods" "^7.16.0"
2820 + "@babel/plugin-transform-flow-strip-types" "^7.16.0"
2821 + "@babel/plugin-transform-react-display-name" "^7.16.0"
2822 + "@babel/plugin-transform-runtime" "^7.16.4"
2823 + "@babel/preset-env" "^7.16.4"
2824 + "@babel/preset-react" "^7.16.0"
2825 + "@babel/preset-typescript" "^7.16.0"
2826 + "@babel/runtime" "^7.16.3"
2827 + babel-plugin-macros "^3.1.0"
2828 + babel-plugin-transform-react-remove-prop-types "^0.4.24"
2829
2830 balanced-match@^1.0.0:
2831 version "1.0.2"
2832 resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
2833 integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
2834
1104 -base64-js@^1.0.2:
1105 - version "1.5.1"
1106 - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
1107 - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
1108 -
1109 -base@^0.11.1:
1110 - version "0.11.2"
1111 - resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
1112 - integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
1113 - dependencies:
1114 - cache-base "^1.0.1"
1115 - class-utils "^0.3.5"
1116 - component-emitter "^1.2.1"
1117 - define-property "^1.0.0"
1118 - isobject "^3.0.1"
1119 - mixin-deep "^1.2.0"
1120 - pascalcase "^0.1.1"
1121 -
2835 batch@0.6.1:
2836 version "0.6.1"
2837 resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
1125 - integrity sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=
2838 + integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==
2839
1127 -bcrypt-pbkdf@^1.0.0:
1128 - version "1.0.2"
1129 - resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
1130 - integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=
2840 +bfj@^7.0.2:
2841 + version "7.1.0"
2842 + resolved "https://registry.yarnpkg.com/bfj/-/bfj-7.1.0.tgz#c5177d522103f9040e1b12980fe8c38cf41d3f8b"
2843 + integrity sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==
2844 dependencies:
1132 - tweetnacl "^0.14.3"
1133 -
1134 -big.js@^3.1.3:
1135 - version "3.2.0"
1136 - resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e"
1137 - integrity sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==
1138 -
1139 -binary-extensions@^1.0.0:
1140 - version "1.13.1"
1141 - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
1142 - integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
2845 + bluebird "^3.7.2"
2846 + check-types "^11.2.3"
2847 + hoopy "^0.1.4"
2848 + jsonpath "^1.1.1"
2849 + tryer "^1.0.1"
2850
1144 -bindings@^1.5.0:
1145 - version "1.5.0"
1146 - resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
1147 - integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
1148 - dependencies:
1149 - file-uri-to-path "1.0.0"
2851 +big.js@^5.2.2:
2852 + version "5.2.2"
2853 + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
2854 + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
2855
1151 -block-stream@*:
1152 - version "0.0.9"
1153 - resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
1154 - integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=
1155 - dependencies:
1156 - inherits "~2.0.0"
2856 +binary-extensions@^2.0.0:
2857 + version "2.3.0"
2858 + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522"
2859 + integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==
2860
2861 bluebird@2.9.6:
2862 version "2.9.6"
2863 resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.9.6.tgz#1fc3a6b1685267dc121b5ec89b32ce069d81ab7d"
1161 - integrity sha1-H8OmsWhSZ9wSG17ImzLOBp2Bq30=
2864 + integrity sha512-SVwAE1qajO/OS4N1eM94cO41Vs60sDsqq7RvPYbNeQmI7iH/+ndxLTu0PIMgopNH9q94nw1pGg+FclCj2hnfoA==
2865
1163 -bluebird@^3.4.6:
2866 +bluebird@^3.7.2:
2867 version "3.7.2"
2868 resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
2869 integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
2870
1168 -body-parser@1.19.0:
1169 - version "1.19.0"
1170 - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a"
1171 - integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==
2871 +body-parser@1.20.3:
2872 + version "1.20.3"
2873 + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.3.tgz#1953431221c6fb5cd63c4b36d53fab0928e548c6"
2874 + integrity sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==
2875 dependencies:
1173 - bytes "3.1.0"
1174 - content-type "~1.0.4"
2876 + bytes "3.1.2"
2877 + content-type "~1.0.5"
2878 debug "2.6.9"
1176 - depd "~1.1.2"
1177 - http-errors "1.7.2"
2879 + depd "2.0.0"
2880 + destroy "1.2.0"
2881 + http-errors "2.0.0"
2882 iconv-lite "0.4.24"
1179 - on-finished "~2.3.0"
1180 - qs "6.7.0"
1181 - raw-body "2.4.0"
1182 - type-is "~1.6.17"
2883 + on-finished "2.4.1"
2884 + qs "6.13.0"
2885 + raw-body "2.5.2"
2886 + type-is "~1.6.18"
2887 + unpipe "1.0.0"
2888 +
2889 +bonjour-service@^1.0.11:
2890 + version "1.3.0"
2891 + resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.3.0.tgz#80d867430b5a0da64e82a8047fc1e355bdb71722"
2892 + integrity sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==
2893 + dependencies:
2894 + fast-deep-equal "^3.1.3"
2895 + multicast-dns "^7.2.5"
2896
2897 boolbase@^1.0.0, boolbase@~1.0.0:
2898 version "1.0.0"
2899 resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
1187 - integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
2900 + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==
2901
1189 -boom@2.x.x:
1190 - version "2.10.1"
1191 - resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
1192 - integrity sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=
1193 - dependencies:
1194 - hoek "2.x.x"
1195 -
1196 -brace-expansion@^1.0.0, brace-expansion@^1.1.7:
2902 +brace-expansion@^1.1.7:
2903 version "1.1.11"
2904 resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
2905 integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
@@ -1201,196 +2907,135 @@ brace-expansion@^1.0.0, brace-expansion@^1.1.7:
2907 balanced-match "^1.0.0"
2908 concat-map "0.0.1"
2909
1204 -braces@^1.8.2:
1205 - version "1.8.5"
1206 - resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
1207 - integrity sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=
1208 - dependencies:
1209 - expand-range "^1.8.1"
1210 - preserve "^0.2.0"
1211 - repeat-element "^1.1.2"
1212 -
1213 -braces@^2.3.1:
1214 - version "2.3.2"
1215 - resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
1216 - integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
1217 - dependencies:
1218 - arr-flatten "^1.1.0"
1219 - array-unique "^0.3.2"
1220 - extend-shallow "^2.0.1"
1221 - fill-range "^4.0.0"
1222 - isobject "^3.0.1"
1223 - repeat-element "^1.1.2"
1224 - snapdragon "^0.8.1"
1225 - snapdragon-node "^2.0.1"
1226 - split-string "^3.0.2"
1227 - to-regex "^3.0.1"
1228 -
1229 -browser-resolve@^1.11.2:
1230 - version "1.11.3"
1231 - resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6"
1232 - integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==
2910 +brace-expansion@^2.0.1:
2911 + version "2.0.1"
2912 + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
2913 + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
2914 dependencies:
1234 - resolve "1.1.7"
2915 + balanced-match "^1.0.0"
2916
1236 -browserify-aes@0.4.0:
1237 - version "0.4.0"
1238 - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-0.4.0.tgz#067149b668df31c4b58533e02d01e806d8608e2c"
1239 - integrity sha1-BnFJtmjfMcS1hTPgLQHoBthgjiw=
2917 +braces@^3.0.3, braces@~3.0.2:
2918 + version "3.0.3"
2919 + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
2920 + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
2921 dependencies:
1241 - inherits "^2.0.1"
2922 + fill-range "^7.1.1"
2923
1243 -browserify-zlib@^0.1.4:
1244 - version "0.1.4"
1245 - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
1246 - integrity sha1-uzX4pRn2AOD6a4SFJByXnQFB+y0=
1247 - dependencies:
1248 - pako "~0.2.0"
2924 +browser-process-hrtime@^1.0.0:
2925 + version "1.0.0"
2926 + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
2927 + integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
2928
1250 -browserslist@^1.3.6, browserslist@^1.4.0, browserslist@^1.5.2, browserslist@^1.7.1, browserslist@^1.7.6:
1251 - version "1.7.7"
1252 - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9"
1253 - integrity sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=
2929 +browserslist@^4.0.0, browserslist@^4.18.1, browserslist@^4.21.4, browserslist@^4.23.3, browserslist@^4.24.0, browserslist@^4.24.2:
2930 + version "4.24.3"
2931 + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.3.tgz#5fc2725ca8fb3c1432e13dac278c7cc103e026d2"
2932 + integrity sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==
2933 dependencies:
1255 - caniuse-db "^1.0.30000639"
1256 - electron-to-chromium "^1.2.7"
2934 + caniuse-lite "^1.0.30001688"
2935 + electron-to-chromium "^1.5.73"
2936 + node-releases "^2.0.19"
2937 + update-browserslist-db "^1.1.1"
2938
1258 -bser@1.0.2:
1259 - version "1.0.2"
1260 - resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169"
1261 - integrity sha1-OBEWlwsqbe6lZG3RXdcnhES1YWk=
2939 +bser@2.1.1:
2940 + version "2.1.1"
2941 + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
2942 + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==
2943 dependencies:
2944 node-int64 "^0.4.0"
2945
2946 buffer-from@^1.0.0:
1266 - version "1.1.1"
1267 - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
1268 - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
1269 -
1270 -buffer@^4.9.0:
1271 - version "4.9.2"
1272 - resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
1273 - integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
1274 - dependencies:
1275 - base64-js "^1.0.2"
1276 - ieee754 "^1.1.4"
1277 - isarray "^1.0.0"
2947 + version "1.1.2"
2948 + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
2949 + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
2950
1279 -builtin-modules@^1.1.1:
1280 - version "1.1.1"
1281 - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
1282 - integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=
2951 +builtin-modules@^3.1.0:
2952 + version "3.3.0"
2953 + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6"
2954 + integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==
2955
1284 -builtin-status-codes@^3.0.0:
1285 - version "3.0.0"
1286 - resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
1287 - integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
2956 +bytes@3.1.2:
2957 + version "3.1.2"
2958 + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5"
2959 + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==
2960
1289 -bytes@3.0.0:
1290 - version "3.0.0"
1291 - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
1292 - integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
2961 +call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1:
2962 + version "1.0.1"
2963 + resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz#32e5892e6361b29b0b545ba6f7763378daca2840"
2964 + integrity sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==
2965 + dependencies:
2966 + es-errors "^1.3.0"
2967 + function-bind "^1.1.2"
2968
1294 -bytes@3.1.0:
1295 - version "3.1.0"
1296 - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
1297 - integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
2969 +call-bind@^1.0.7, call-bind@^1.0.8:
2970 + version "1.0.8"
2971 + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c"
2972 + integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==
2973 + dependencies:
2974 + call-bind-apply-helpers "^1.0.0"
2975 + es-define-property "^1.0.0"
2976 + get-intrinsic "^1.2.4"
2977 + set-function-length "^1.2.2"
2978
1299 -cache-base@^1.0.1:
1300 - version "1.0.1"
1301 - resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
1302 - integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
2979 +call-bound@^1.0.2, call-bound@^1.0.3:
2980 + version "1.0.3"
2981 + resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.3.tgz#41cfd032b593e39176a71533ab4f384aa04fd681"
2982 + integrity sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==
2983 dependencies:
1304 - collection-visit "^1.0.0"
1305 - component-emitter "^1.2.1"
1306 - get-value "^2.0.6"
1307 - has-value "^1.0.0"
1308 - isobject "^3.0.1"
1309 - set-value "^2.0.0"
1310 - to-object-path "^0.3.0"
1311 - union-value "^1.0.0"
1312 - unset-value "^1.0.0"
2984 + call-bind-apply-helpers "^1.0.1"
2985 + get-intrinsic "^1.2.6"
2986 +
2987 +callsites@^3.0.0:
2988 + version "3.1.0"
2989 + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
2990 + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
2991
1314 -caller-path@^0.1.0:
1315 - version "0.1.0"
1316 - resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
1317 - integrity sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=
2992 +camel-case@^4.1.2:
2993 + version "4.1.2"
2994 + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a"
2995 + integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==
2996 dependencies:
1319 - callsites "^0.2.0"
1320 -
1321 -callsites@^0.2.0:
1322 - version "0.2.0"
1323 - resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
1324 - integrity sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=
2997 + pascal-case "^3.1.2"
2998 + tslib "^2.0.3"
2999
1326 -callsites@^2.0.0:
1327 - version "2.0.0"
1328 - resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
1329 - integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
3000 +camelcase-css@^2.0.1:
3001 + version "2.0.1"
3002 + resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
3003 + integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
3004
1331 -camel-case@3.0.x:
1332 - version "3.0.0"
1333 - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73"
1334 - integrity sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=
1335 - dependencies:
1336 - no-case "^2.2.0"
1337 - upper-case "^1.1.1"
3005 +camelcase@^5.3.1:
3006 + version "5.3.1"
3007 + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
3008 + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
3009
1339 -camelcase@^1.0.2:
1340 - version "1.2.1"
1341 - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
1342 - integrity sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=
3010 +camelcase@^6.2.0, camelcase@^6.2.1:
3011 + version "6.3.0"
3012 + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
3013 + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
3014
1344 -camelcase@^3.0.0:
3015 +caniuse-api@^3.0.0:
3016 version "3.0.0"
1346 - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
1347 - integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo=
1348 -
1349 -caniuse-api@^1.5.2:
1350 - version "1.6.1"
1351 - resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c"
1352 - integrity sha1-tTTnxzTE+B7F++isoq0kNUuWLGw=
3017 + resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0"
3018 + integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==
3019 dependencies:
1354 - browserslist "^1.3.6"
1355 - caniuse-db "^1.0.30000529"
3020 + browserslist "^4.0.0"
3021 + caniuse-lite "^1.0.0"
3022 lodash.memoize "^4.1.2"
3023 lodash.uniq "^4.5.0"
3024
1359 -caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000618, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639:
1360 - version "1.0.30001208"
1361 - resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30001208.tgz#8ddfaddceab26486ffe3f258e5cc43d4fa8728d4"
1362 - integrity sha512-GAfBXnzg9WDo0z/Noiio2KknZzxbrqQhbYMwPDb9ZEbVwttGA2T1+LqSt7enFdzbu7ykYuNfswgXJW7vdaUfZQ==
1363 -
1364 -cardinal@^2.1.1:
1365 - version "2.1.1"
1366 - resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-2.1.1.tgz#7cc1055d822d212954d07b085dea251cc7bc5505"
1367 - integrity sha1-fMEFXYItISlU0HsIXeolHMe8VQU=
1368 - dependencies:
1369 - ansicolors "~0.3.2"
1370 - redeyed "~2.1.0"
1371 -
1372 -case-sensitive-paths-webpack-plugin@1.1.4:
1373 - version "1.1.4"
1374 - resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-1.1.4.tgz#8aaedd5699a86cac2b34cf40d9b4145758978472"
1375 - integrity sha1-iq7dVpmobKwrNM9A2bQUV1iXhHI=
1376 -
1377 -caseless@~0.12.0:
1378 - version "0.12.0"
1379 - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
1380 - integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
3025 +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001688:
3026 + version "1.0.30001690"
3027 + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001690.tgz#f2d15e3aaf8e18f76b2b8c1481abde063b8104c8"
3028 + integrity sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==
3029
1382 -center-align@^0.1.1:
1383 - version "0.1.3"
1384 - resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
1385 - integrity sha1-qg0yYptu6XIgBBHL1EYckHvCt60=
1386 - dependencies:
1387 - align-text "^0.1.3"
1388 - lazy-cache "^1.0.3"
3030 +case-sensitive-paths-webpack-plugin@^2.4.0:
3031 + version "2.4.0"
3032 + resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz#db64066c6422eed2e08cc14b986ca43796dbc6d4"
3033 + integrity sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==
3034
3035 chalk@0.5.1:
3036 version "0.5.1"
3037 resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.5.1.tgz#663b3a648b68b55d04690d49167aa837858f2174"
1393 - integrity sha1-Zjs6ZItotV0EaQ1JFnqoN4WPIXQ=
3038 + integrity sha512-bIKA54hP8iZhyDT81TOsJiQvR1gW+ZYSXFaZUAvoD4wCHdbHY2actmpTE4x344ZlFqHbvoxKOaESULTZN2gstg==
3039 dependencies:
3040 ansi-styles "^1.1.0"
3041 escape-string-regexp "^1.0.0"
@@ -1398,17 +3043,6 @@ chalk@0.5.1:
3043 strip-ansi "^0.3.0"
3044 supports-color "^0.2.0"
3045
1401 -chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3:
1402 - version "1.1.3"
1403 - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
1404 - integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
1405 - dependencies:
1406 - ansi-styles "^2.2.1"
1407 - escape-string-regexp "^1.0.2"
1408 - has-ansi "^2.0.0"
1409 - strip-ansi "^3.0.0"
1410 - supports-color "^2.0.0"
1411 -
3046 chalk@^2.4.1:
3047 version "2.4.2"
3048 resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
@@ -1418,254 +3052,208 @@ chalk@^2.4.1:
3052 escape-string-regexp "^1.0.5"
3053 supports-color "^5.3.0"
3054
1421 -chokidar@^1.0.0:
1422 - version "1.7.0"
1423 - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
1424 - integrity sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=
3055 +chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.2:
3056 + version "4.1.2"
3057 + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
3058 + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
3059 dependencies:
1426 - anymatch "^1.3.0"
1427 - async-each "^1.0.0"
1428 - glob-parent "^2.0.0"
1429 - inherits "^2.0.1"
1430 - is-binary-path "^1.0.0"
1431 - is-glob "^2.0.0"
1432 - path-is-absolute "^1.0.0"
1433 - readdirp "^2.0.0"
1434 - optionalDependencies:
1435 - fsevents "^1.0.0"
3060 + ansi-styles "^4.1.0"
3061 + supports-color "^7.1.0"
3062
1437 -ci-info@^1.5.0:
1438 - version "1.6.0"
1439 - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497"
1440 - integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==
3063 +char-regex@^1.0.2:
3064 + version "1.0.2"
3065 + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
3066 + integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
3067
1442 -circular-json@^0.3.1:
1443 - version "0.3.3"
1444 - resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
1445 - integrity sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==
3068 +char-regex@^2.0.0:
3069 + version "2.0.2"
3070 + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-2.0.2.tgz#81385bb071af4df774bff8721d0ca15ef29ea0bb"
3071 + integrity sha512-cbGOjAptfM2LVmWhwRFHEKTPkLwNddVmuqYZQt895yXwAsWsXObCG+YN4DGQ/JBtT4GP1a1lPPdio2z413LmTg==
3072
1447 -clap@^1.0.9:
1448 - version "1.2.3"
1449 - resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51"
1450 - integrity sha512-4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==
1451 - dependencies:
1452 - chalk "^1.1.3"
3073 +check-types@^11.2.3:
3074 + version "11.2.3"
3075 + resolved "https://registry.yarnpkg.com/check-types/-/check-types-11.2.3.tgz#1ffdf68faae4e941fce252840b1787b8edc93b71"
3076 + integrity sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==
3077
1454 -class-utils@^0.3.5:
1455 - version "0.3.6"
1456 - resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
1457 - integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
1458 - dependencies:
1459 - arr-union "^3.1.0"
1460 - define-property "^0.2.5"
1461 - isobject "^3.0.0"
1462 - static-extend "^0.1.1"
3078 +chokidar@^3.4.2, chokidar@^3.5.3, chokidar@^3.6.0:
3079 + version "3.6.0"
3080 + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b"
3081 + integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==
3082 + dependencies:
3083 + anymatch "~3.1.2"
3084 + braces "~3.0.2"
3085 + glob-parent "~5.1.2"
3086 + is-binary-path "~2.1.0"
3087 + is-glob "~4.0.1"
3088 + normalize-path "~3.0.0"
3089 + readdirp "~3.6.0"
3090 + optionalDependencies:
3091 + fsevents "~2.3.2"
3092
1464 -clean-css@4.2.x:
1465 - version "4.2.3"
1466 - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78"
1467 - integrity sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==
1468 - dependencies:
1469 - source-map "~0.6.0"
3093 +chrome-trace-event@^1.0.2:
3094 + version "1.0.4"
3095 + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz#05bffd7ff928465093314708c93bdfa9bd1f0f5b"
3096 + integrity sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==
3097
1471 -cli-cursor@^1.0.1:
1472 - version "1.0.2"
1473 - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
1474 - integrity sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=
1475 - dependencies:
1476 - restore-cursor "^1.0.1"
3098 +ci-info@^3.2.0:
3099 + version "3.9.0"
3100 + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4"
3101 + integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==
3102
1478 -cli-table@^0.3.1:
1479 - version "0.3.6"
1480 - resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.6.tgz#e9d6aa859c7fe636981fd3787378c2a20bce92fc"
1481 - integrity sha512-ZkNZbnZjKERTY5NwC2SeMeLeifSPq/pubeRoTpdr3WchLlnZg6hEgvHkK5zL7KNFdd9PmHN8lxrENUwI3cE8vQ==
1482 - dependencies:
1483 - colors "1.0.3"
3103 +cjs-module-lexer@^1.0.0:
3104 + version "1.4.1"
3105 + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz#707413784dbb3a72aa11c2f2b042a0bef4004170"
3106 + integrity sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==
3107
1485 -cli-usage@^0.1.1:
1486 - version "0.1.10"
1487 - resolved "https://registry.yarnpkg.com/cli-usage/-/cli-usage-0.1.10.tgz#2c9d30a3824b48d161580a8f8d5dfe53d66b00d2"
1488 - integrity sha512-Q/s1S4Jz5LYI0LQ+XiFQCXkhMzn244ddyIffni8JIq/kL95DvQomVQ0cJC41c76hH9/FmZGY7rZB53y/bXHtRA==
3108 +clean-css@^5.2.2:
3109 + version "5.3.3"
3110 + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.3.tgz#b330653cd3bd6b75009cc25c714cae7b93351ccd"
3111 + integrity sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==
3112 dependencies:
1490 - marked "^0.7.0"
1491 - marked-terminal "^3.3.0"
1492 -
1493 -cli-width@^2.0.0:
1494 - version "2.2.1"
1495 - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48"
1496 - integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==
3113 + source-map "~0.6.0"
3114
1498 -cliui@^2.1.0:
1499 - version "2.1.0"
1500 - resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
1501 - integrity sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=
3115 +cliui@^7.0.2:
3116 + version "7.0.4"
3117 + resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
3118 + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
3119 dependencies:
1503 - center-align "^0.1.1"
1504 - right-align "^0.1.1"
1505 - wordwrap "0.0.2"
3120 + string-width "^4.2.0"
3121 + strip-ansi "^6.0.0"
3122 + wrap-ansi "^7.0.0"
3123
1507 -cliui@^3.2.0:
1508 - version "3.2.0"
1509 - resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
1510 - integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=
3124 +clone-deep@^4.0.1:
3125 + version "4.0.1"
3126 + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
3127 + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
3128 dependencies:
1512 - string-width "^1.0.1"
1513 - strip-ansi "^3.0.1"
1514 - wrap-ansi "^2.0.0"
1515 -
1516 -clone@^1.0.2:
1517 - version "1.0.4"
1518 - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
1519 - integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
3129 + is-plain-object "^2.0.4"
3130 + kind-of "^6.0.2"
3131 + shallow-clone "^3.0.0"
3132
3133 co@^4.6.0:
3134 version "4.6.0"
3135 resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
1524 - integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
3136 + integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==
3137
1526 -coa@~1.0.1:
1527 - version "1.0.4"
1528 - resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd"
1529 - integrity sha1-qe8VNmDWqGqL3sAomlxoTSF0Mv0=
3138 +coa@^2.0.2:
3139 + version "2.0.2"
3140 + resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3"
3141 + integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==
3142 dependencies:
3143 + "@types/q" "^1.5.1"
3144 + chalk "^2.4.1"
3145 q "^1.1.2"
3146
1533 -code-point-at@^1.0.0:
1534 - version "1.1.0"
1535 - resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
1536 - integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
1537 -
1538 -collection-visit@^1.0.0:
1539 - version "1.0.0"
1540 - resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
1541 - integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
1542 - dependencies:
1543 - map-visit "^1.0.0"
1544 - object-visit "^1.0.0"
3147 +collect-v8-coverage@^1.0.0:
3148 + version "1.0.2"
3149 + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9"
3150 + integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==
3151
1546 -color-convert@^1.3.0, color-convert@^1.9.0:
3152 +color-convert@^1.9.0:
3153 version "1.9.3"
3154 resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
3155 integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
3156 dependencies:
3157 color-name "1.1.3"
3158
3159 +color-convert@^2.0.1:
3160 + version "2.0.1"
3161 + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
3162 + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
3163 + dependencies:
3164 + color-name "~1.1.4"
3165 +
3166 color-name@1.1.3:
3167 version "1.1.3"
3168 resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1556 - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
3169 + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
3170
1558 -color-name@^1.0.0:
3171 +color-name@~1.1.4:
3172 version "1.1.4"
3173 resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
3174 integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
3175
1563 -color-string@^0.3.0:
1564 - version "0.3.0"
1565 - resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991"
1566 - integrity sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=
1567 - dependencies:
1568 - color-name "^1.0.0"
1569 -
1570 -color@^0.11.0:
1571 - version "0.11.4"
1572 - resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764"
1573 - integrity sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=
1574 - dependencies:
1575 - clone "^1.0.2"
1576 - color-convert "^1.3.0"
1577 - color-string "^0.3.0"
1578 -
1579 -colormin@^1.0.5:
1580 - version "1.1.2"
1581 - resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133"
1582 - integrity sha1-6i90IKcrlogaOKrlnsEkpvcpgTM=
1583 - dependencies:
1584 - color "^0.11.0"
1585 - css-color-names "0.0.4"
1586 - has "^1.0.1"
1587 -
1588 -colors@1.0.3:
1589 - version "1.0.3"
1590 - resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b"
1591 - integrity sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=
3176 +colord@^2.9.1:
3177 + version "2.9.3"
3178 + resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43"
3179 + integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==
3180
1593 -colors@~1.1.2:
1594 - version "1.1.2"
1595 - resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
1596 - integrity sha1-FopHAXVran9RoSzgyXv6KMCE7WM=
3181 +colorette@^2.0.10:
3182 + version "2.0.20"
3183 + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a"
3184 + integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==
3185
1598 -combined-stream@^1.0.5, combined-stream@^1.0.6, combined-stream@~1.0.5, combined-stream@~1.0.6:
3186 +combined-stream@^1.0.8:
3187 version "1.0.8"
3188 resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
3189 integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
3190 dependencies:
3191 delayed-stream "~1.0.0"
3192
1605 -commander@2.17.x:
1606 - version "2.17.1"
1607 - resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf"
1608 - integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==
1609 -
3193 commander@2.6.0:
3194 version "2.6.0"
3195 resolved "https://registry.yarnpkg.com/commander/-/commander-2.6.0.tgz#9df7e52fb2a0cb0fb89058ee80c3104225f37e1d"
1613 - integrity sha1-nfflL7Kgyw+4kFjugMMQQiXzfh0=
3196 + integrity sha512-PhbTMT+ilDXZKqH8xbvuUY2ZEQNef0Q7DKxgoEKb4ccytsdvVVJmYqR0sGbi96nxU6oGrwEIQnclpK2NBZuQlg==
3197 +
3198 +commander@^2.20.0:
3199 + version "2.20.3"
3200 + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
3201 + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
3202 +
3203 +commander@^4.0.0:
3204 + version "4.1.1"
3205 + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
3206 + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
3207
1615 -commander@~2.19.0:
1616 - version "2.19.0"
1617 - resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a"
1618 - integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==
3208 +commander@^7.2.0:
3209 + version "7.2.0"
3210 + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
3211 + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
3212 +
3213 +commander@^8.3.0:
3214 + version "8.3.0"
3215 + resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66"
3216 + integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==
3217 +
3218 +common-tags@^1.8.0:
3219 + version "1.8.2"
3220 + resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz#94ebb3c076d26032745fd54face7f688ef5ac9c6"
3221 + integrity sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==
3222
3223 commondir@^1.0.1:
3224 version "1.0.1"
3225 resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
1623 - integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
1624 -
1625 -component-emitter@^1.2.1:
1626 - version "1.3.0"
1627 - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
1628 - integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
3226 + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==
3227
1630 -compressible@~2.0.16:
3228 +compressible@~2.0.18:
3229 version "2.0.18"
3230 resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba"
3231 integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
3232 dependencies:
3233 mime-db ">= 1.43.0 < 2"
3234
1637 -compression@^1.5.2:
1638 - version "1.7.4"
1639 - resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f"
1640 - integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
3235 +compression@^1.7.4:
3236 + version "1.7.5"
3237 + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.5.tgz#fdd256c0a642e39e314c478f6c2cd654edd74c93"
3238 + integrity sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==
3239 dependencies:
1642 - accepts "~1.3.5"
1643 - bytes "3.0.0"
1644 - compressible "~2.0.16"
3240 + bytes "3.1.2"
3241 + compressible "~2.0.18"
3242 debug "2.6.9"
3243 + negotiator "~0.6.4"
3244 on-headers "~1.0.2"
1647 - safe-buffer "5.1.2"
3245 + safe-buffer "5.2.1"
3246 vary "~1.1.2"
3247
3248 concat-map@0.0.1:
3249 version "0.0.1"
3250 resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1653 - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
1654 -
1655 -concat-stream@^1.4.6:
1656 - version "1.6.2"
1657 - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
1658 - integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
1659 - dependencies:
1660 - buffer-from "^1.0.0"
1661 - inherits "^2.0.3"
1662 - readable-stream "^2.2.2"
1663 - typedarray "^0.0.6"
3251 + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
3252
3253 concurrently@3.1.0:
3254 version "3.1.0"
3255 resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-3.1.0.tgz#dc5ef0459090012604756668894c04b434ef90d1"
1668 - integrity sha1-3F7wRZCQASYEdWZoiUwEtDTvkNE=
3256 + integrity sha512-memNK1sQh47EUHEkLY0aVjpzdNT0c+paC+lYzb2sSVU9evCaM50ZIlsCQDLbFIwf4Jo8gRq61eU+Yv4wnNTe2A==
3257 dependencies:
3258 bluebird "2.9.6"
3259 chalk "0.5.1"
@@ -1676,147 +3264,162 @@ concurrently@3.1.0:
3264 spawn-default-shell "^1.1.0"
3265 tree-kill "^1.1.0"
3266
1679 -connect-history-api-fallback@1.3.0:
1680 - version "1.3.0"
1681 - resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169"
1682 - integrity sha1-5R0X+PDvDbkKZP20feMFFVbp8Wk=
1683 -
1684 -connect-history-api-fallback@^1.3.0:
1685 - version "1.6.0"
1686 - resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc"
1687 - integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==
1688 -
1689 -console-browserify@^1.1.0:
1690 - version "1.2.0"
1691 - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
1692 - integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
1693 -
1694 -console-control-strings@^1.0.0, console-control-strings@~1.1.0:
1695 - version "1.1.0"
1696 - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
1697 - integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
1698 -
1699 -constants-browserify@^1.0.0:
1700 - version "1.0.0"
1701 - resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
1702 - integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
3267 +confusing-browser-globals@^1.0.11:
3268 + version "1.0.11"
3269 + resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz#ae40e9b57cdd3915408a2805ebd3a5585608dc81"
3270 + integrity sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==
3271
1704 -contains-path@^0.1.0:
1705 - version "0.1.0"
1706 - resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
1707 - integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=
3272 +connect-history-api-fallback@^2.0.0:
3273 + version "2.0.0"
3274 + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8"
3275 + integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==
3276
1709 -content-disposition@0.5.3:
1710 - version "0.5.3"
1711 - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd"
1712 - integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==
3277 +content-disposition@0.5.4:
3278 + version "0.5.4"
3279 + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe"
3280 + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==
3281 dependencies:
1714 - safe-buffer "5.1.2"
3282 + safe-buffer "5.2.1"
3283
1716 -content-type-parser@^1.0.1:
1717 - version "1.0.2"
1718 - resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7"
1719 - integrity sha512-lM4l4CnMEwOLHAHr/P6MEZwZFPJFtAAKgL6pogbXmVZggIqXhdB6RbBtPOTsw2FcXwYhehRGERJmRrjOiIB8pQ==
3284 +content-type@~1.0.4, content-type@~1.0.5:
3285 + version "1.0.5"
3286 + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918"
3287 + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
3288
1721 -content-type@~1.0.4:
1722 - version "1.0.4"
1723 - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
1724 - integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
3289 +convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
3290 + version "1.9.0"
3291 + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
3292 + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
3293
1726 -convert-source-map@^1.1.0, convert-source-map@^1.5.1:
1727 - version "1.7.0"
1728 - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
1729 - integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
1730 - dependencies:
1731 - safe-buffer "~5.1.1"
3294 +convert-source-map@^2.0.0:
3295 + version "2.0.0"
3296 + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
3297 + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
3298
3299 cookie-signature@1.0.6:
3300 version "1.0.6"
3301 resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
1736 - integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw=
3302 + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==
3303
1738 -cookie@0.4.0:
1739 - version "0.4.0"
1740 - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba"
1741 - integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==
3304 +cookie@0.7.1:
3305 + version "0.7.1"
3306 + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.1.tgz#2f73c42142d5d5cf71310a74fc4ae61670e5dbc9"
3307 + integrity sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==
3308
1743 -copy-descriptor@^0.1.0:
1744 - version "0.1.1"
1745 - resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
1746 - integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
3309 +core-js-compat@^3.38.0, core-js-compat@^3.38.1:
3310 + version "3.39.0"
3311 + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.39.0.tgz#b12dccb495f2601dc860bdbe7b4e3ffa8ba63f61"
3312 + integrity sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==
3313 + dependencies:
3314 + browserslist "^4.24.2"
3315
1748 -core-js@^2.4.0, core-js@^2.5.0:
1749 - version "2.6.12"
1750 - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec"
1751 - integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
3316 +core-js-pure@^3.23.3:
3317 + version "3.39.0"
3318 + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.39.0.tgz#aa0d54d70a15bdc13e7c853db87c10abc30d68f3"
3319 + integrity sha512-7fEcWwKI4rJinnK+wLTezeg2smbFFdSBP6E2kQZNbnzM2s1rpKQ6aaRteZSSg7FLU3P0HGGVo/gbpfanU36urg==
3320
1753 -core-util-is@1.0.2, core-util-is@~1.0.0:
1754 - version "1.0.2"
1755 - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1756 - integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
3321 +core-js@^3.19.2:
3322 + version "3.39.0"
3323 + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.39.0.tgz#57f7647f4d2d030c32a72ea23a0555b2eaa30f83"
3324 + integrity sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==
3325
1758 -cosmiconfig@^2.1.0, cosmiconfig@^2.1.1:
1759 - version "2.2.2"
1760 - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892"
1761 - integrity sha512-GiNXLwAFPYHy25XmTPpafYvn3CLAkJ8FLsscq78MQd1Kh0OU6Yzhn4eV2MVF4G9WEQZoWEGltatdR+ntGPMl5A==
1762 - dependencies:
1763 - is-directory "^0.3.1"
1764 - js-yaml "^3.4.3"
1765 - minimist "^1.2.0"
1766 - object-assign "^4.1.0"
1767 - os-homedir "^1.0.1"
1768 - parse-json "^2.2.0"
1769 - require-from-string "^1.1.0"
3326 +core-util-is@~1.0.0:
3327 + version "1.0.3"
3328 + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
3329 + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
3330 +
3331 +cosmiconfig@^6.0.0:
3332 + version "6.0.0"
3333 + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
3334 + integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
3335 + dependencies:
3336 + "@types/parse-json" "^4.0.0"
3337 + import-fresh "^3.1.0"
3338 + parse-json "^5.0.0"
3339 + path-type "^4.0.0"
3340 + yaml "^1.7.2"
3341 +
3342 +cosmiconfig@^7.0.0:
3343 + version "7.1.0"
3344 + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6"
3345 + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==
3346 + dependencies:
3347 + "@types/parse-json" "^4.0.0"
3348 + import-fresh "^3.2.1"
3349 + parse-json "^5.0.0"
3350 + path-type "^4.0.0"
3351 + yaml "^1.10.0"
3352 +
3353 +cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
3354 + version "7.0.6"
3355 + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f"
3356 + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==
3357 + dependencies:
3358 + path-key "^3.1.0"
3359 + shebang-command "^2.0.0"
3360 + which "^2.0.1"
3361 +
3362 +crypto-random-string@^2.0.0:
3363 + version "2.0.0"
3364 + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5"
3365 + integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==
3366
1771 -cross-spawn@4.0.2:
1772 - version "4.0.2"
1773 - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41"
1774 - integrity sha1-e5JHYhwjrf3ThWAEqCPL45dCTUE=
3367 +css-blank-pseudo@^3.0.3:
3368 + version "3.0.3"
3369 + resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz#36523b01c12a25d812df343a32c322d2a2324561"
3370 + integrity sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==
3371 dependencies:
1776 - lru-cache "^4.0.1"
1777 - which "^1.2.9"
3372 + postcss-selector-parser "^6.0.9"
3373
1779 -cryptiles@2.x.x:
1780 - version "2.0.5"
1781 - resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
1782 - integrity sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=
1783 - dependencies:
1784 - boom "2.x.x"
3374 +css-declaration-sorter@^6.3.1:
3375 + version "6.4.1"
3376 + resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz#28beac7c20bad7f1775be3a7129d7eae409a3a71"
3377 + integrity sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==
3378
1786 -crypto-browserify@3.3.0:
1787 - version "3.3.0"
1788 - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.3.0.tgz#b9fc75bb4a0ed61dcf1cd5dae96eb30c9c3e506c"
1789 - integrity sha1-ufx1u0oO1h3PHNXa6W6zDJw+UGw=
1790 - dependencies:
1791 - browserify-aes "0.4.0"
1792 - pbkdf2-compat "2.0.1"
1793 - ripemd160 "0.2.0"
1794 - sha.js "2.2.6"
1795 -
1796 -css-color-names@0.0.4:
1797 - version "0.0.4"
1798 - resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
1799 - integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=
1800 -
1801 -css-loader@0.26.1:
1802 - version "0.26.1"
1803 - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.26.1.tgz#2ba7f20131b93597496b3e9bb500785a49cd29ea"
1804 - integrity sha1-K6fyATG5NZdJaz6btQB4WknNKeo=
1805 - dependencies:
1806 - babel-code-frame "^6.11.0"
1807 - css-selector-tokenizer "^0.7.0"
1808 - cssnano ">=2.6.1 <4"
1809 - loader-utils "~0.2.2"
1810 - lodash.camelcase "^4.3.0"
1811 - object-assign "^4.0.1"
1812 - postcss "^5.0.6"
1813 - postcss-modules-extract-imports "^1.0.0"
1814 - postcss-modules-local-by-default "^1.0.1"
1815 - postcss-modules-scope "^1.0.0"
1816 - postcss-modules-values "^1.1.0"
1817 - source-list-map "^0.1.4"
1818 -
1819 -css-select@^2.0.2:
3379 +css-has-pseudo@^3.0.4:
3380 + version "3.0.4"
3381 + resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz#57f6be91ca242d5c9020ee3e51bbb5b89fc7af73"
3382 + integrity sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==
3383 + dependencies:
3384 + postcss-selector-parser "^6.0.9"
3385 +
3386 +css-loader@^6.5.1:
3387 + version "6.11.0"
3388 + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.11.0.tgz#33bae3bf6363d0a7c2cf9031c96c744ff54d85ba"
3389 + integrity sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==
3390 + dependencies:
3391 + icss-utils "^5.1.0"
3392 + postcss "^8.4.33"
3393 + postcss-modules-extract-imports "^3.1.0"
3394 + postcss-modules-local-by-default "^4.0.5"
3395 + postcss-modules-scope "^3.2.0"
3396 + postcss-modules-values "^4.0.0"
3397 + postcss-value-parser "^4.2.0"
3398 + semver "^7.5.4"
3399 +
3400 +css-minimizer-webpack-plugin@^3.2.0:
3401 + version "3.4.1"
3402 + resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz#ab78f781ced9181992fe7b6e4f3422e76429878f"
3403 + integrity sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==
3404 + dependencies:
3405 + cssnano "^5.0.6"
3406 + jest-worker "^27.0.2"
3407 + postcss "^8.3.5"
3408 + schema-utils "^4.0.0"
3409 + serialize-javascript "^6.0.0"
3410 + source-map "^0.6.1"
3411 +
3412 +css-prefers-color-scheme@^6.0.3:
3413 + version "6.0.3"
3414 + resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz#ca8a22e5992c10a5b9d315155e7caee625903349"
3415 + integrity sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==
3416 +
3417 +css-select-base-adapter@^0.1.1:
3418 + version "0.1.1"
3419 + resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7"
3420 + integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==
3421 +
3422 +css-select@^2.0.0:
3423 version "2.1.0"
3424 resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef"
3425 integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==
@@ -1826,238 +3429,320 @@ css-select@^2.0.2:
3429 domutils "^1.7.0"
3430 nth-check "^1.0.2"
3431
1829 -css-selector-tokenizer@^0.7.0:
1830 - version "0.7.3"
1831 - resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz#735f26186e67c749aaf275783405cf0661fae8f1"
1832 - integrity sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==
3432 +css-select@^4.1.3:
3433 + version "4.3.0"
3434 + resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b"
3435 + integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==
3436 dependencies:
1834 - cssesc "^3.0.0"
1835 - fastparse "^1.1.2"
3437 + boolbase "^1.0.0"
3438 + css-what "^6.0.1"
3439 + domhandler "^4.3.1"
3440 + domutils "^2.8.0"
3441 + nth-check "^2.0.1"
3442 +
3443 +css-tree@1.0.0-alpha.37:
3444 + version "1.0.0-alpha.37"
3445 + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22"
3446 + integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==
3447 + dependencies:
3448 + mdn-data "2.0.4"
3449 + source-map "^0.6.1"
3450 +
3451 +css-tree@^1.1.2, css-tree@^1.1.3:
3452 + version "1.1.3"
3453 + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d"
3454 + integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==
3455 + dependencies:
3456 + mdn-data "2.0.14"
3457 + source-map "^0.6.1"
3458
3459 css-what@^3.2.1:
3460 version "3.4.2"
3461 resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4"
3462 integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==
3463
3464 +css-what@^6.0.1:
3465 + version "6.1.0"
3466 + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4"
3467 + integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==
3468 +
3469 +cssdb@^7.1.0:
3470 + version "7.11.2"
3471 + resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.11.2.tgz#127a2f5b946ee653361a5af5333ea85a39df5ae5"
3472 + integrity sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==
3473 +
3474 cssesc@^3.0.0:
3475 version "3.0.0"
3476 resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
3477 integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
3478
1847 -"cssnano@>=2.6.1 <4":
1848 - version "3.10.0"
1849 - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38"
1850 - integrity sha1-Tzj2zqK5sX+gFJDyPx3GjqZcHDg=
3479 +cssnano-preset-default@^5.2.14:
3480 + version "5.2.14"
3481 + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz#309def4f7b7e16d71ab2438052093330d9ab45d8"
3482 + integrity sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==
3483 + dependencies:
3484 + css-declaration-sorter "^6.3.1"
3485 + cssnano-utils "^3.1.0"
3486 + postcss-calc "^8.2.3"

This file is too large to show in full.

packages/react-art/src/ReactFiberConfigART.js
+1 -1
@@ -455,7 +455,7 @@ export function unhideTextInstance(textInstance, text): void {
455 // Noop
456 }
457
458 -export function applyViewTransitionName(instance, name) {
458 +export function applyViewTransitionName(instance, name, className) {
459 // Noop
460 }
461
packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js
+23 -1
@@ -124,6 +124,8 @@ export type Props = {
124 display?: string,
125 viewTransitionName?: string,
126 'view-transition-name'?: string,
127 + viewTransitionClass?: string,
128 + 'view-transition-class'?: string,
129 ...
130 },
131 bottom?: null | number,
@@ -987,10 +989,15 @@ export function unhideTextInstance(
989 export function applyViewTransitionName(
990 instance: Instance,
991 name: string,
992 + className: ?string,
993 ): void {
994 instance = ((instance: any): HTMLElement);
995 // $FlowFixMe[prop-missing]
996 instance.style.viewTransitionName = name;
997 + if (className != null) {
998 + // $FlowFixMe[prop-missing]
999 + instance.style.viewTransitionClass = className;
1000 + }
1001 }
1002
1003 export function restoreViewTransitionName(
@@ -1000,7 +1007,7 @@ export function restoreViewTransitionName(
1007 instance = ((instance: any): HTMLElement);
1008 const styleProp = props[STYLE];
1009 const viewTransitionName =
1003 - styleProp !== undefined && styleProp !== null
1010 + styleProp != null
1011 ? styleProp.hasOwnProperty('viewTransitionName')
1012 ? styleProp.viewTransitionName
1013 : styleProp.hasOwnProperty('view-transition-name')
@@ -1014,6 +1021,21 @@ export function restoreViewTransitionName(
1021 : // The value would've errored already if it wasn't safe.
1022 // eslint-disable-next-line react-internal/safe-string-coercion
1023 ('' + viewTransitionName).trim();
1024 + const viewTransitionClass =
1025 + styleProp != null
1026 + ? styleProp.hasOwnProperty('viewTransitionClass')
1027 + ? styleProp.viewTransitionClass
1028 + : styleProp.hasOwnProperty('view-transition-class')
1029 + ? styleProp['view-transition-class']
1030 + : null
1031 + : null;
1032 + // $FlowFixMe[prop-missing]
1033 + instance.style.viewTransitionClass =
1034 + viewTransitionClass == null || typeof viewTransitionClass === 'boolean'
1035 + ? ''
1036 + : // The value would've errored already if it wasn't safe.
1037 + // eslint-disable-next-line react-internal/safe-string-coercion
1038 + ('' + viewTransitionClass).trim();
1039 }
1040
1041 export function cancelViewTransitionName(
packages/react-native-renderer/src/ReactFiberConfigNative.js
+1
@@ -525,6 +525,7 @@ export function unhideInstance(instance: Instance, props: Props): void {
525 export function applyViewTransitionName(
526 instance: Instance,
527 name: string,
528 + className: ?string,
529 ): void {
530 // Not yet implemented
531 }
packages/react-noop-renderer/src/createReactNoop.js
+5 -1
@@ -732,7 +732,11 @@ function createReactNoop(reconciler: Function, useMutation: boolean) {
732 textInstance.hidden = false;
733 },
734
735 - applyViewTransitionName(instance: Instance, name: string): void {},
735 + applyViewTransitionName(
736 + instance: Instance,
737 + name: string,
738 + className: ?string,
739 + ): void {},
740
741 restoreViewTransitionName(instance: Instance, props: Props): void {},
742
packages/react-reconciler/src/ReactFiberCommitWork.js
+18 -7
@@ -545,6 +545,7 @@ let viewTransitionHostInstanceIdx = 0;
545 function applyViewTransitionToHostInstances(
546 child: null | Fiber,
547 name: string,
548 + className: ?string,
549 collectMeasurements: null | Array<InstanceMeasurement>,
550 stopAtNestedViewTransitions: boolean,
551 ): boolean {
@@ -574,6 +575,7 @@ function applyViewTransitionToHostInstances(
575 : // If we have multiple Host Instances below, we add a suffix to the name to give
576 // each one a unique name.
577 name + '_' + viewTransitionHostInstanceIdx,
578 + className,
579 );
580 viewTransitionHostInstanceIdx++;
581 } else if (
@@ -592,6 +594,7 @@ function applyViewTransitionToHostInstances(
594 applyViewTransitionToHostInstances(
595 child.child,
596 name,
597 + className,
598 collectMeasurements,
599 stopAtNestedViewTransitions,
600 )
@@ -664,6 +667,7 @@ function commitAppearingPairViewTransitions(placement: Fiber): void {
667 const inViewport = applyViewTransitionToHostInstances(
668 child.child,
669 props.name,
670 + props.className,
671 null,
672 false,
673 );
@@ -686,14 +690,13 @@ function commitAppearingPairViewTransitions(placement: Fiber): void {
690
691 function commitEnterViewTransitions(placement: Fiber): void {
692 if (placement.tag === ViewTransitionComponent) {
689 - const name = getViewTransitionName(
690 - placement.memoizedProps,
691 - placement.stateNode,
692 - );
693 + const props: ViewTransitionProps = placement.memoizedProps;
694 + const name = getViewTransitionName(props, placement.stateNode);
695 viewTransitionHostInstanceIdx = 0;
696 const inViewport = applyViewTransitionToHostInstances(
697 placement.child,
698 name,
699 + props.className,
700 null,
701 false,
702 );
@@ -747,6 +750,7 @@ function commitDeletedPairViewTransitions(
750 const inViewport = applyViewTransitionToHostInstances(
751 child.child,
752 name,
753 + props.className,
754 null,
755 false,
756 );
@@ -787,6 +791,7 @@ function commitExitViewTransitions(
791 const inViewport = applyViewTransitionToHostInstances(
792 deletion.child,
793 name,
794 + props.className,
795 null,
796 false,
797 );
@@ -840,11 +845,13 @@ function commitBeforeUpdateViewTransition(current: Fiber): void {
845 // be unexpected but it is in line with the semantics that the ViewTransition is its
846 // own layer that cross-fades its content when it updates. If you want to reorder then
847 // each child needs its own ViewTransition.
843 - const name = getViewTransitionName(current.memoizedProps, current.stateNode);
848 + const props: ViewTransitionProps = current.memoizedProps;
849 + const name = getViewTransitionName(props, current.stateNode);
850 viewTransitionHostInstanceIdx = 0;
851 applyViewTransitionToHostInstances(
852 current.child,
853 name,
854 + props.className,
855 (current.memoizedState = []),
856 true,
857 );
@@ -856,11 +863,13 @@ function commitNestedViewTransitions(changedParent: Fiber): void {
863 if (child.tag === ViewTransitionComponent) {
864 // In this case the outer ViewTransition component wins but if there
865 // was an update through this component then the inner one wins.
859 - const name = getViewTransitionName(child.memoizedProps, child.stateNode);
866 + const props: ViewTransitionProps = child.memoizedProps;
867 + const name = getViewTransitionName(props, child.stateNode);
868 viewTransitionHostInstanceIdx = 0;
869 applyViewTransitionToHostInstances(
870 child.child,
871 name,
872 + props.className,
873 (child.memoizedState = []),
874 false,
875 );
@@ -1002,9 +1011,10 @@ function measureViewTransitionHostInstances(
1011 parentViewTransition.flags |= AffectedParentLayout;
1012 }
1013 if ((parentViewTransition.flags & Update) !== NoFlags) {
1014 + const props: ViewTransitionProps = parentViewTransition.memoizedProps;
1015 // We might update this node so we need to apply its new name for the new state.
1016 const newName = getViewTransitionName(
1007 - parentViewTransition.memoizedProps,
1017 + props,
1018 parentViewTransition.stateNode,
1019 );
1020 applyViewTransitionName(
@@ -1014,6 +1024,7 @@ function measureViewTransitionHostInstances(
1024 : // If we have multiple Host Instances below, we add a suffix to the name to give
1025 // each one a unique name.
1026 newName + '_' + viewTransitionHostInstanceIdx,
1027 + props.className,
1028 );
1029 }
1030 if (!inViewport || (parentViewTransition.flags & Update) === NoFlags) {
packages/react-reconciler/src/ReactFiberViewTransitionComponent.js
+1
@@ -18,6 +18,7 @@ import {getTreeId} from './ReactFiberTreeContext';
18
19 export type ViewTransitionProps = {
20 name?: string,
21 + className?: string,
22 children?: ReactNodeList,
23 };
24
packages/react-test-renderer/src/ReactFiberConfigTestHost.js
+1
@@ -308,6 +308,7 @@ export function unhideTextInstance(
308 export function applyViewTransitionName(
309 instance: Instance,
310 name: string,
311 + className: ?string,
312 ): void {
313 // Noop
314 }