├── .gitignore
├── .npmignore
├── .vercelignore
├── LICENSE
├── README.md
├── docs
├── next.config.js
├── package.json
├── pages
│ ├── api
│ │ └── icons
│ │ │ └── [color]
│ │ │ └── [glyph].js
│ └── index.js
└── yarn.lock
├── package.json
├── src
└── index.tsx
├── tsconfig.json
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | dist/
2 | node_modules/
3 | .DS_Store
4 | .next/
5 | .vercel/
6 |
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | *
2 | !dist
3 | !src
4 | !package.json
5 | !yarn.lock
6 | !README.md
7 | !LICENSE
8 |
--------------------------------------------------------------------------------
/.vercelignore:
--------------------------------------------------------------------------------
1 | svg/
2 | dist/
3 | .next/
4 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright 2018 Space Program Inc.
2 |
3 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4 |
5 | 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
6 |
7 | 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8 |
9 | 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10 |
11 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # `@hackclub/icons`
2 |
3 | Hack Club’s icons are a superset of [Spectrum](https://github.com/withspectrum/spectrum)’s incredible collection (also published as [`supercons`](https://supercons.vercel.app/)). Designed for use with our [Design System](https://github.com/hackclub/design-system).
4 |
5 | [See them all](https://hackclub-icons.now.sh)
6 |
7 | ## Usage
8 |
9 | ### With React
10 |
11 | ```sh
12 | npm i @hackclub/icons
13 | ```
14 |
15 | ```js
16 | import React from 'react'
17 | import Icon from '@hackclub/icons'
18 |
19 | export default () => (
20 |
21 |
22 |
23 |
24 |
25 | )
26 | ```
27 |
28 | ### With the API
29 |
30 | `https://icons.hackclub.com/api/icons/:color/:glyph`
31 | - `:glyph` - A glyph from [icons.hackclub.com](https://icons.hackclub.com).
32 | - `:color` - Any valid HTML color or [Hack Club Theme](https://theme.hackclub.com) color prefixed with `hackclub-`. Replace `#` with `0x` when using a hexadecimal color.
33 |
34 | All responses are SVGs with the MIME type `image/svg+xml`. You can optionally include the .svg file extension.
35 |
36 | Examples:
37 |
38 | ```html
39 |
40 |
41 |
42 | ```
43 |
44 | ### In Figma
45 |
46 | Copy and paste the Hack Club Icon component from the Figma file: [figma.com/file/u8evOObGA4HCzUKlrVra1q/Hack-Club-Icon-Component](https://www.figma.com/file/u8evOObGA4HCzUKlrVra1q/Hack-Club-Icon-Component)
47 |
48 | Choose the icon you'd like by modifying the `Glyph`.
49 |
50 | ## Development Setup
51 |
52 | 1. Clone & enter the repo.
53 |
54 | ```sh
55 | $ git clone https://github.com/hackclub/icons.git
56 | $ cd icons
57 | ```
58 |
59 | 2. Install dependencies.
60 |
61 | ```sh
62 | $ yarn
63 | ```
64 |
65 | 3. Build library.
66 |
67 | ```sh
68 | yarn run prepare
69 | ```
70 |
71 | 4. Run docs locally.
72 |
73 | ```sh
74 | yarn run dev
75 | ```
76 |
77 | ## Adding an icon
78 |
79 | If you’d like to add an icon, the Figma file is [Hack Club Icons](https://www.figma.com/file/H2wiriGOtV3txSx6fwVTwsPz/Hack-Club-icons?node-id=0%3A1&t=m5yDilUsUNQxrUUu-1). Try to design the icon only out of components of other icons, to keep consistency high, with those small square canvas sizes. When you’re done, clone your new icon, flatten all the layers into one shape for the simplest/smallest code/rendering, then export as an SVG with no background. Open the file, copy the ``, then in the Icon source file, add a new one (alphabetically), using a wrapping `` if you have several ``s. Make sure to remove the fill attribute from all paths, & ensure you’re formatting props correctly as JSX (replacing hyphens with camelCase).
80 |
81 | After publishing, remember to update the package dependency on the docs site so it’s showing the latest iconset.
82 |
--------------------------------------------------------------------------------
/docs/next.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | experimental: { esmExternals: true }
3 | }
--------------------------------------------------------------------------------
/docs/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@hackclub/icons-docs",
3 | "version": "0.0.1",
4 | "scripts": {
5 | "dev": "next",
6 | "build": "next build",
7 | "start": "next"
8 | },
9 | "author": "Lachlan Campbell ",
10 | "license": "MIT",
11 | "dependencies": {
12 | "@hackclub/icons": "latest",
13 | "@hackclub/theme": "^0.3.3",
14 | "next": "^10.0.0",
15 | "react": "^17.0.1",
16 | "react-dom": "^17.0.1"
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/docs/pages/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import Head from "next/head";
3 | import Icon, { glyphNames } from "@hackclub/icons";
4 |
5 | const title = "@hackclub/icons";
6 | const description =
7 | "Hack Club’s iconset as React components, published on npm as @hackclub/icons.";
8 |
9 | const hidden = ["sus", "android"];
10 |
11 | const Docs = () => (
12 |
13 |
14 | {title}
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
75 |
76 | @hackclub/icons
77 |
78 |
79 | GitHub
80 | npm
81 | Figma
82 |
83 |
84 | {glyphNames.sort().map(
85 | (key) =>
86 | !hidden.includes(key) && (
87 |
91 | )
92 | )}
93 |
94 |
95 | );
96 |
97 | export default Docs;
98 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@hackclub/icons",
3 | "version": "0.0.14",
4 | "description": "Hack Club’s iconset, a superset of spectrum-icons",
5 | "main": "dist/index.js",
6 | "types": "dist/index.d.ts",
7 | "files": [
8 | "dist"
9 | ],
10 | "keywords": [
11 | "icon",
12 | "react"
13 | ],
14 | "author": "Lachlan Campbell ",
15 | "scripts": {
16 | "build": "next build",
17 | "dev": "next",
18 | "prepare": "tsc && babel src/index.tsx --extensions .tsx --out-dir dist --presets @babel/env,@babel/react,@babel/typescript"
19 | },
20 | "peerDependencies": {
21 | "react": "^18.2.0"
22 | },
23 | "devDependencies": {
24 | "@babel/cli": "^7.11.6",
25 | "@babel/core": "^7.11.6",
26 | "@babel/preset-env": "^7.11.5",
27 | "@babel/preset-react": "^7.10.4",
28 | "@babel/preset-typescript": "^7.12.7",
29 | "@types/prop-types": "^15.7.3",
30 | "@types/react": "^17.0.0",
31 | "prop-types": "^15.7.2",
32 | "react": "^16.13.1",
33 | "react-dom": "^16.13.1",
34 | "typescript": "^4.1.3"
35 | },
36 | "repository": {
37 | "type": "git",
38 | "url": "git+https://github.com/hackclub/icons.git"
39 | },
40 | "bugs": {
41 | "url": "https://github.com/hackclub/icons/issues"
42 | },
43 | "homepage": "https://icons.hackclub.com"
44 | }
45 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "alwaysStrict": true,
4 | "esModuleInterop": true,
5 | "forceConsistentCasingInFileNames": true,
6 | "isolatedModules": true,
7 | "jsx": "preserve",
8 | "lib": [
9 | "ES2017"
10 | ],
11 | "module": "commonjs",
12 | "moduleResolution": "node",
13 | "emitDeclarationOnly": true,
14 | "declaration": true,
15 | "declarationMap": true,
16 | "outDir": "./dist",
17 | "skipLibCheck": true,
18 | "strict": true,
19 | "target": "ES2017"
20 | },
21 | "include": [
22 | "src/**.ts",
23 | "src/**.tsx",
24 | ]
25 | }
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@ampproject/remapping@^2.1.0":
6 | version "2.2.0"
7 | resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
8 | integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==
9 | dependencies:
10 | "@jridgewell/gen-mapping" "^0.1.0"
11 | "@jridgewell/trace-mapping" "^0.3.9"
12 |
13 | "@babel/cli@^7.11.6":
14 | version "7.19.3"
15 | resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.19.3.tgz#55914ed388e658e0b924b3a95da1296267e278e2"
16 | integrity sha512-643/TybmaCAe101m2tSVHi9UKpETXP9c/Ff4mD2tAwkdP6esKIfaauZFc67vGEM6r9fekbEGid+sZhbEnSe3dg==
17 | dependencies:
18 | "@jridgewell/trace-mapping" "^0.3.8"
19 | commander "^4.0.1"
20 | convert-source-map "^1.1.0"
21 | fs-readdir-recursive "^1.1.0"
22 | glob "^7.2.0"
23 | make-dir "^2.1.0"
24 | slash "^2.0.0"
25 | optionalDependencies:
26 | "@nicolo-ribaudo/chokidar-2" "2.1.8-no-fsevents.3"
27 | chokidar "^3.4.0"
28 |
29 | "@babel/code-frame@^7.18.6":
30 | version "7.18.6"
31 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"
32 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
33 | dependencies:
34 | "@babel/highlight" "^7.18.6"
35 |
36 | "@babel/code-frame@^7.24.7":
37 | version "7.24.7"
38 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465"
39 | integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==
40 | dependencies:
41 | "@babel/highlight" "^7.24.7"
42 | picocolors "^1.0.0"
43 |
44 | "@babel/compat-data@^7.17.7", "@babel/compat-data@^7.19.4", "@babel/compat-data@^7.20.0":
45 | version "7.20.1"
46 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.1.tgz#f2e6ef7790d8c8dbf03d379502dcc246dcce0b30"
47 | integrity sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==
48 |
49 | "@babel/core@^7.11.6":
50 | version "7.19.6"
51 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.6.tgz#7122ae4f5c5a37c0946c066149abd8e75f81540f"
52 | integrity sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==
53 | dependencies:
54 | "@ampproject/remapping" "^2.1.0"
55 | "@babel/code-frame" "^7.18.6"
56 | "@babel/generator" "^7.19.6"
57 | "@babel/helper-compilation-targets" "^7.19.3"
58 | "@babel/helper-module-transforms" "^7.19.6"
59 | "@babel/helpers" "^7.19.4"
60 | "@babel/parser" "^7.19.6"
61 | "@babel/template" "^7.18.10"
62 | "@babel/traverse" "^7.19.6"
63 | "@babel/types" "^7.19.4"
64 | convert-source-map "^1.7.0"
65 | debug "^4.1.0"
66 | gensync "^1.0.0-beta.2"
67 | json5 "^2.2.1"
68 | semver "^6.3.0"
69 |
70 | "@babel/generator@^7.19.6":
71 | version "7.20.1"
72 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.1.tgz#ef32ecd426222624cbd94871a7024639cf61a9fa"
73 | integrity sha512-u1dMdBUmA7Z0rBB97xh8pIhviK7oItYOkjbsCxTWMknyvbQRBwX7/gn4JXurRdirWMFh+ZtYARqkA6ydogVZpg==
74 | dependencies:
75 | "@babel/types" "^7.20.0"
76 | "@jridgewell/gen-mapping" "^0.3.2"
77 | jsesc "^2.5.1"
78 |
79 | "@babel/generator@^7.25.0":
80 | version "7.25.0"
81 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.0.tgz#f858ddfa984350bc3d3b7f125073c9af6988f18e"
82 | integrity sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==
83 | dependencies:
84 | "@babel/types" "^7.25.0"
85 | "@jridgewell/gen-mapping" "^0.3.5"
86 | "@jridgewell/trace-mapping" "^0.3.25"
87 | jsesc "^2.5.1"
88 |
89 | "@babel/helper-annotate-as-pure@^7.18.6":
90 | version "7.18.6"
91 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb"
92 | integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==
93 | dependencies:
94 | "@babel/types" "^7.18.6"
95 |
96 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6":
97 | version "7.18.9"
98 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb"
99 | integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==
100 | dependencies:
101 | "@babel/helper-explode-assignable-expression" "^7.18.6"
102 | "@babel/types" "^7.18.9"
103 |
104 | "@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.19.0", "@babel/helper-compilation-targets@^7.19.3":
105 | version "7.20.0"
106 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a"
107 | integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==
108 | dependencies:
109 | "@babel/compat-data" "^7.20.0"
110 | "@babel/helper-validator-option" "^7.18.6"
111 | browserslist "^4.21.3"
112 | semver "^6.3.0"
113 |
114 | "@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.19.0":
115 | version "7.19.0"
116 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz#bfd6904620df4e46470bae4850d66be1054c404b"
117 | integrity sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==
118 | dependencies:
119 | "@babel/helper-annotate-as-pure" "^7.18.6"
120 | "@babel/helper-environment-visitor" "^7.18.9"
121 | "@babel/helper-function-name" "^7.19.0"
122 | "@babel/helper-member-expression-to-functions" "^7.18.9"
123 | "@babel/helper-optimise-call-expression" "^7.18.6"
124 | "@babel/helper-replace-supers" "^7.18.9"
125 | "@babel/helper-split-export-declaration" "^7.18.6"
126 |
127 | "@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.19.0":
128 | version "7.19.0"
129 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz#7976aca61c0984202baca73d84e2337a5424a41b"
130 | integrity sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==
131 | dependencies:
132 | "@babel/helper-annotate-as-pure" "^7.18.6"
133 | regexpu-core "^5.1.0"
134 |
135 | "@babel/helper-define-polyfill-provider@^0.3.3":
136 | version "0.3.3"
137 | resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz#8612e55be5d51f0cd1f36b4a5a83924e89884b7a"
138 | integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==
139 | dependencies:
140 | "@babel/helper-compilation-targets" "^7.17.7"
141 | "@babel/helper-plugin-utils" "^7.16.7"
142 | debug "^4.1.1"
143 | lodash.debounce "^4.0.8"
144 | resolve "^1.14.2"
145 | semver "^6.1.2"
146 |
147 | "@babel/helper-environment-visitor@^7.18.9":
148 | version "7.18.9"
149 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be"
150 | integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
151 |
152 | "@babel/helper-explode-assignable-expression@^7.18.6":
153 | version "7.18.6"
154 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096"
155 | integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==
156 | dependencies:
157 | "@babel/types" "^7.18.6"
158 |
159 | "@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0":
160 | version "7.19.0"
161 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c"
162 | integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==
163 | dependencies:
164 | "@babel/template" "^7.18.10"
165 | "@babel/types" "^7.19.0"
166 |
167 | "@babel/helper-hoist-variables@^7.18.6":
168 | version "7.18.6"
169 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678"
170 | integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==
171 | dependencies:
172 | "@babel/types" "^7.18.6"
173 |
174 | "@babel/helper-member-expression-to-functions@^7.18.9":
175 | version "7.18.9"
176 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz#1531661e8375af843ad37ac692c132841e2fd815"
177 | integrity sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==
178 | dependencies:
179 | "@babel/types" "^7.18.9"
180 |
181 | "@babel/helper-module-imports@^7.18.6":
182 | version "7.18.6"
183 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
184 | integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
185 | dependencies:
186 | "@babel/types" "^7.18.6"
187 |
188 | "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.6":
189 | version "7.19.6"
190 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz#6c52cc3ac63b70952d33ee987cbee1c9368b533f"
191 | integrity sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==
192 | dependencies:
193 | "@babel/helper-environment-visitor" "^7.18.9"
194 | "@babel/helper-module-imports" "^7.18.6"
195 | "@babel/helper-simple-access" "^7.19.4"
196 | "@babel/helper-split-export-declaration" "^7.18.6"
197 | "@babel/helper-validator-identifier" "^7.19.1"
198 | "@babel/template" "^7.18.10"
199 | "@babel/traverse" "^7.19.6"
200 | "@babel/types" "^7.19.4"
201 |
202 | "@babel/helper-optimise-call-expression@^7.18.6":
203 | version "7.18.6"
204 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe"
205 | integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==
206 | dependencies:
207 | "@babel/types" "^7.18.6"
208 |
209 | "@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.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
210 | version "7.19.0"
211 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz#4796bb14961521f0f8715990bee2fb6e51ce21bf"
212 | integrity sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==
213 |
214 | "@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9":
215 | version "7.18.9"
216 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519"
217 | integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==
218 | dependencies:
219 | "@babel/helper-annotate-as-pure" "^7.18.6"
220 | "@babel/helper-environment-visitor" "^7.18.9"
221 | "@babel/helper-wrap-function" "^7.18.9"
222 | "@babel/types" "^7.18.9"
223 |
224 | "@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.18.9":
225 | version "7.19.1"
226 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz#e1592a9b4b368aa6bdb8784a711e0bcbf0612b78"
227 | integrity sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==
228 | dependencies:
229 | "@babel/helper-environment-visitor" "^7.18.9"
230 | "@babel/helper-member-expression-to-functions" "^7.18.9"
231 | "@babel/helper-optimise-call-expression" "^7.18.6"
232 | "@babel/traverse" "^7.19.1"
233 | "@babel/types" "^7.19.0"
234 |
235 | "@babel/helper-simple-access@^7.19.4":
236 | version "7.19.4"
237 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7"
238 | integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==
239 | dependencies:
240 | "@babel/types" "^7.19.4"
241 |
242 | "@babel/helper-skip-transparent-expression-wrappers@^7.18.9":
243 | version "7.20.0"
244 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684"
245 | integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==
246 | dependencies:
247 | "@babel/types" "^7.20.0"
248 |
249 | "@babel/helper-split-export-declaration@^7.18.6":
250 | version "7.18.6"
251 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075"
252 | integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==
253 | dependencies:
254 | "@babel/types" "^7.18.6"
255 |
256 | "@babel/helper-string-parser@^7.19.4":
257 | version "7.19.4"
258 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
259 | integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
260 |
261 | "@babel/helper-string-parser@^7.24.8":
262 | version "7.24.8"
263 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d"
264 | integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==
265 |
266 | "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
267 | version "7.19.1"
268 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
269 | integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
270 |
271 | "@babel/helper-validator-identifier@^7.24.7":
272 | version "7.24.7"
273 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db"
274 | integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==
275 |
276 | "@babel/helper-validator-option@^7.18.6":
277 | version "7.18.6"
278 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
279 | integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
280 |
281 | "@babel/helper-wrap-function@^7.18.9":
282 | version "7.19.0"
283 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz#89f18335cff1152373222f76a4b37799636ae8b1"
284 | integrity sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==
285 | dependencies:
286 | "@babel/helper-function-name" "^7.19.0"
287 | "@babel/template" "^7.18.10"
288 | "@babel/traverse" "^7.19.0"
289 | "@babel/types" "^7.19.0"
290 |
291 | "@babel/helpers@^7.19.4":
292 | version "7.20.1"
293 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.1.tgz#2ab7a0fcb0a03b5bf76629196ed63c2d7311f4c9"
294 | integrity sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==
295 | dependencies:
296 | "@babel/template" "^7.18.10"
297 | "@babel/traverse" "^7.20.1"
298 | "@babel/types" "^7.20.0"
299 |
300 | "@babel/highlight@^7.18.6":
301 | version "7.18.6"
302 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf"
303 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==
304 | dependencies:
305 | "@babel/helper-validator-identifier" "^7.18.6"
306 | chalk "^2.0.0"
307 | js-tokens "^4.0.0"
308 |
309 | "@babel/highlight@^7.24.7":
310 | version "7.24.7"
311 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d"
312 | integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==
313 | dependencies:
314 | "@babel/helper-validator-identifier" "^7.24.7"
315 | chalk "^2.4.2"
316 | js-tokens "^4.0.0"
317 | picocolors "^1.0.0"
318 |
319 | "@babel/parser@^7.18.10", "@babel/parser@^7.19.6":
320 | version "7.20.1"
321 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.1.tgz#3e045a92f7b4623cafc2425eddcb8cf2e54f9cc5"
322 | integrity sha512-hp0AYxaZJhxULfM1zyp7Wgr+pSUKBcP3M+PHnSzWGdXOzg/kHWIgiUWARvubhUKGOEw3xqY4x+lyZ9ytBVcELw==
323 |
324 | "@babel/parser@^7.25.0", "@babel/parser@^7.25.3":
325 | version "7.25.3"
326 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.3.tgz#91fb126768d944966263f0657ab222a642b82065"
327 | integrity sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==
328 | dependencies:
329 | "@babel/types" "^7.25.2"
330 |
331 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6":
332 | version "7.18.6"
333 | 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.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2"
334 | integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==
335 | dependencies:
336 | "@babel/helper-plugin-utils" "^7.18.6"
337 |
338 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9":
339 | version "7.18.9"
340 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz#a11af19aa373d68d561f08e0a57242350ed0ec50"
341 | integrity sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==
342 | dependencies:
343 | "@babel/helper-plugin-utils" "^7.18.9"
344 | "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
345 | "@babel/plugin-proposal-optional-chaining" "^7.18.9"
346 |
347 | "@babel/plugin-proposal-async-generator-functions@^7.19.1":
348 | version "7.20.1"
349 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz#352f02baa5d69f4e7529bdac39aaa02d41146af9"
350 | integrity sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==
351 | dependencies:
352 | "@babel/helper-environment-visitor" "^7.18.9"
353 | "@babel/helper-plugin-utils" "^7.19.0"
354 | "@babel/helper-remap-async-to-generator" "^7.18.9"
355 | "@babel/plugin-syntax-async-generators" "^7.8.4"
356 |
357 | "@babel/plugin-proposal-class-properties@^7.18.6":
358 | version "7.18.6"
359 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3"
360 | integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
361 | dependencies:
362 | "@babel/helper-create-class-features-plugin" "^7.18.6"
363 | "@babel/helper-plugin-utils" "^7.18.6"
364 |
365 | "@babel/plugin-proposal-class-static-block@^7.18.6":
366 | version "7.18.6"
367 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz#8aa81d403ab72d3962fc06c26e222dacfc9b9020"
368 | integrity sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==
369 | dependencies:
370 | "@babel/helper-create-class-features-plugin" "^7.18.6"
371 | "@babel/helper-plugin-utils" "^7.18.6"
372 | "@babel/plugin-syntax-class-static-block" "^7.14.5"
373 |
374 | "@babel/plugin-proposal-dynamic-import@^7.18.6":
375 | version "7.18.6"
376 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94"
377 | integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==
378 | dependencies:
379 | "@babel/helper-plugin-utils" "^7.18.6"
380 | "@babel/plugin-syntax-dynamic-import" "^7.8.3"
381 |
382 | "@babel/plugin-proposal-export-namespace-from@^7.18.9":
383 | version "7.18.9"
384 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203"
385 | integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==
386 | dependencies:
387 | "@babel/helper-plugin-utils" "^7.18.9"
388 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
389 |
390 | "@babel/plugin-proposal-json-strings@^7.18.6":
391 | version "7.18.6"
392 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b"
393 | integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==
394 | dependencies:
395 | "@babel/helper-plugin-utils" "^7.18.6"
396 | "@babel/plugin-syntax-json-strings" "^7.8.3"
397 |
398 | "@babel/plugin-proposal-logical-assignment-operators@^7.18.9":
399 | version "7.18.9"
400 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz#8148cbb350483bf6220af06fa6db3690e14b2e23"
401 | integrity sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==
402 | dependencies:
403 | "@babel/helper-plugin-utils" "^7.18.9"
404 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
405 |
406 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6":
407 | version "7.18.6"
408 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1"
409 | integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==
410 | dependencies:
411 | "@babel/helper-plugin-utils" "^7.18.6"
412 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
413 |
414 | "@babel/plugin-proposal-numeric-separator@^7.18.6":
415 | version "7.18.6"
416 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75"
417 | integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==
418 | dependencies:
419 | "@babel/helper-plugin-utils" "^7.18.6"
420 | "@babel/plugin-syntax-numeric-separator" "^7.10.4"
421 |
422 | "@babel/plugin-proposal-object-rest-spread@^7.19.4":
423 | version "7.19.4"
424 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.19.4.tgz#a8fc86e8180ff57290c91a75d83fe658189b642d"
425 | integrity sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==
426 | dependencies:
427 | "@babel/compat-data" "^7.19.4"
428 | "@babel/helper-compilation-targets" "^7.19.3"
429 | "@babel/helper-plugin-utils" "^7.19.0"
430 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
431 | "@babel/plugin-transform-parameters" "^7.18.8"
432 |
433 | "@babel/plugin-proposal-optional-catch-binding@^7.18.6":
434 | version "7.18.6"
435 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb"
436 | integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==
437 | dependencies:
438 | "@babel/helper-plugin-utils" "^7.18.6"
439 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
440 |
441 | "@babel/plugin-proposal-optional-chaining@^7.18.9":
442 | version "7.18.9"
443 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz#e8e8fe0723f2563960e4bf5e9690933691915993"
444 | integrity sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==
445 | dependencies:
446 | "@babel/helper-plugin-utils" "^7.18.9"
447 | "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
448 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
449 |
450 | "@babel/plugin-proposal-private-methods@^7.18.6":
451 | version "7.18.6"
452 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea"
453 | integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==
454 | dependencies:
455 | "@babel/helper-create-class-features-plugin" "^7.18.6"
456 | "@babel/helper-plugin-utils" "^7.18.6"
457 |
458 | "@babel/plugin-proposal-private-property-in-object@^7.18.6":
459 | version "7.18.6"
460 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz#a64137b232f0aca3733a67eb1a144c192389c503"
461 | integrity sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==
462 | dependencies:
463 | "@babel/helper-annotate-as-pure" "^7.18.6"
464 | "@babel/helper-create-class-features-plugin" "^7.18.6"
465 | "@babel/helper-plugin-utils" "^7.18.6"
466 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
467 |
468 | "@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
469 | version "7.18.6"
470 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e"
471 | integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==
472 | dependencies:
473 | "@babel/helper-create-regexp-features-plugin" "^7.18.6"
474 | "@babel/helper-plugin-utils" "^7.18.6"
475 |
476 | "@babel/plugin-syntax-async-generators@^7.8.4":
477 | version "7.8.4"
478 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
479 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
480 | dependencies:
481 | "@babel/helper-plugin-utils" "^7.8.0"
482 |
483 | "@babel/plugin-syntax-class-properties@^7.12.13":
484 | version "7.12.13"
485 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
486 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
487 | dependencies:
488 | "@babel/helper-plugin-utils" "^7.12.13"
489 |
490 | "@babel/plugin-syntax-class-static-block@^7.14.5":
491 | version "7.14.5"
492 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406"
493 | integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
494 | dependencies:
495 | "@babel/helper-plugin-utils" "^7.14.5"
496 |
497 | "@babel/plugin-syntax-dynamic-import@^7.8.3":
498 | version "7.8.3"
499 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
500 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
501 | dependencies:
502 | "@babel/helper-plugin-utils" "^7.8.0"
503 |
504 | "@babel/plugin-syntax-export-namespace-from@^7.8.3":
505 | version "7.8.3"
506 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
507 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
508 | dependencies:
509 | "@babel/helper-plugin-utils" "^7.8.3"
510 |
511 | "@babel/plugin-syntax-import-assertions@^7.18.6":
512 | version "7.20.0"
513 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4"
514 | integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==
515 | dependencies:
516 | "@babel/helper-plugin-utils" "^7.19.0"
517 |
518 | "@babel/plugin-syntax-json-strings@^7.8.3":
519 | version "7.8.3"
520 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
521 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
522 | dependencies:
523 | "@babel/helper-plugin-utils" "^7.8.0"
524 |
525 | "@babel/plugin-syntax-jsx@^7.18.6":
526 | version "7.18.6"
527 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0"
528 | integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==
529 | dependencies:
530 | "@babel/helper-plugin-utils" "^7.18.6"
531 |
532 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
533 | version "7.10.4"
534 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
535 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
536 | dependencies:
537 | "@babel/helper-plugin-utils" "^7.10.4"
538 |
539 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
540 | version "7.8.3"
541 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
542 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
543 | dependencies:
544 | "@babel/helper-plugin-utils" "^7.8.0"
545 |
546 | "@babel/plugin-syntax-numeric-separator@^7.10.4":
547 | version "7.10.4"
548 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
549 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
550 | dependencies:
551 | "@babel/helper-plugin-utils" "^7.10.4"
552 |
553 | "@babel/plugin-syntax-object-rest-spread@^7.8.3":
554 | version "7.8.3"
555 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
556 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
557 | dependencies:
558 | "@babel/helper-plugin-utils" "^7.8.0"
559 |
560 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
561 | version "7.8.3"
562 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
563 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
564 | dependencies:
565 | "@babel/helper-plugin-utils" "^7.8.0"
566 |
567 | "@babel/plugin-syntax-optional-chaining@^7.8.3":
568 | version "7.8.3"
569 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
570 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
571 | dependencies:
572 | "@babel/helper-plugin-utils" "^7.8.0"
573 |
574 | "@babel/plugin-syntax-private-property-in-object@^7.14.5":
575 | version "7.14.5"
576 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad"
577 | integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
578 | dependencies:
579 | "@babel/helper-plugin-utils" "^7.14.5"
580 |
581 | "@babel/plugin-syntax-top-level-await@^7.14.5":
582 | version "7.14.5"
583 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
584 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
585 | dependencies:
586 | "@babel/helper-plugin-utils" "^7.14.5"
587 |
588 | "@babel/plugin-syntax-typescript@^7.20.0":
589 | version "7.20.0"
590 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz#4e9a0cfc769c85689b77a2e642d24e9f697fc8c7"
591 | integrity sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==
592 | dependencies:
593 | "@babel/helper-plugin-utils" "^7.19.0"
594 |
595 | "@babel/plugin-transform-arrow-functions@^7.18.6":
596 | version "7.18.6"
597 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz#19063fcf8771ec7b31d742339dac62433d0611fe"
598 | integrity sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==
599 | dependencies:
600 | "@babel/helper-plugin-utils" "^7.18.6"
601 |
602 | "@babel/plugin-transform-async-to-generator@^7.18.6":
603 | version "7.18.6"
604 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz#ccda3d1ab9d5ced5265fdb13f1882d5476c71615"
605 | integrity sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==
606 | dependencies:
607 | "@babel/helper-module-imports" "^7.18.6"
608 | "@babel/helper-plugin-utils" "^7.18.6"
609 | "@babel/helper-remap-async-to-generator" "^7.18.6"
610 |
611 | "@babel/plugin-transform-block-scoped-functions@^7.18.6":
612 | version "7.18.6"
613 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8"
614 | integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==
615 | dependencies:
616 | "@babel/helper-plugin-utils" "^7.18.6"
617 |
618 | "@babel/plugin-transform-block-scoping@^7.19.4":
619 | version "7.20.0"
620 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.0.tgz#91fe5e6ffc9ba13cb6c95ed7f0b1204f68c988c5"
621 | integrity sha512-sXOohbpHZSk7GjxK9b3dKB7CfqUD5DwOH+DggKzOQ7TXYP+RCSbRykfjQmn/zq+rBjycVRtLf9pYhAaEJA786w==
622 | dependencies:
623 | "@babel/helper-plugin-utils" "^7.19.0"
624 |
625 | "@babel/plugin-transform-classes@^7.19.0":
626 | version "7.19.0"
627 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz#0e61ec257fba409c41372175e7c1e606dc79bb20"
628 | integrity sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==
629 | dependencies:
630 | "@babel/helper-annotate-as-pure" "^7.18.6"
631 | "@babel/helper-compilation-targets" "^7.19.0"
632 | "@babel/helper-environment-visitor" "^7.18.9"
633 | "@babel/helper-function-name" "^7.19.0"
634 | "@babel/helper-optimise-call-expression" "^7.18.6"
635 | "@babel/helper-plugin-utils" "^7.19.0"
636 | "@babel/helper-replace-supers" "^7.18.9"
637 | "@babel/helper-split-export-declaration" "^7.18.6"
638 | globals "^11.1.0"
639 |
640 | "@babel/plugin-transform-computed-properties@^7.18.9":
641 | version "7.18.9"
642 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz#2357a8224d402dad623caf6259b611e56aec746e"
643 | integrity sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==
644 | dependencies:
645 | "@babel/helper-plugin-utils" "^7.18.9"
646 |
647 | "@babel/plugin-transform-destructuring@^7.19.4":
648 | version "7.20.0"
649 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.0.tgz#712829ef4825d9cc04bb379de316f981e9a6f648"
650 | integrity sha512-1dIhvZfkDVx/zn2S1aFwlruspTt4189j7fEkH0Y0VyuDM6bQt7bD6kLcz3l4IlLG+e5OReaBz9ROAbttRtUHqA==
651 | dependencies:
652 | "@babel/helper-plugin-utils" "^7.19.0"
653 |
654 | "@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4":
655 | version "7.18.6"
656 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8"
657 | integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==
658 | dependencies:
659 | "@babel/helper-create-regexp-features-plugin" "^7.18.6"
660 | "@babel/helper-plugin-utils" "^7.18.6"
661 |
662 | "@babel/plugin-transform-duplicate-keys@^7.18.9":
663 | version "7.18.9"
664 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e"
665 | integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==
666 | dependencies:
667 | "@babel/helper-plugin-utils" "^7.18.9"
668 |
669 | "@babel/plugin-transform-exponentiation-operator@^7.18.6":
670 | version "7.18.6"
671 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd"
672 | integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==
673 | dependencies:
674 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6"
675 | "@babel/helper-plugin-utils" "^7.18.6"
676 |
677 | "@babel/plugin-transform-for-of@^7.18.8":
678 | version "7.18.8"
679 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1"
680 | integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==
681 | dependencies:
682 | "@babel/helper-plugin-utils" "^7.18.6"
683 |
684 | "@babel/plugin-transform-function-name@^7.18.9":
685 | version "7.18.9"
686 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0"
687 | integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==
688 | dependencies:
689 | "@babel/helper-compilation-targets" "^7.18.9"
690 | "@babel/helper-function-name" "^7.18.9"
691 | "@babel/helper-plugin-utils" "^7.18.9"
692 |
693 | "@babel/plugin-transform-literals@^7.18.9":
694 | version "7.18.9"
695 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc"
696 | integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==
697 | dependencies:
698 | "@babel/helper-plugin-utils" "^7.18.9"
699 |
700 | "@babel/plugin-transform-member-expression-literals@^7.18.6":
701 | version "7.18.6"
702 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e"
703 | integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==
704 | dependencies:
705 | "@babel/helper-plugin-utils" "^7.18.6"
706 |
707 | "@babel/plugin-transform-modules-amd@^7.18.6":
708 | version "7.19.6"
709 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz#aca391801ae55d19c4d8d2ebfeaa33df5f2a2cbd"
710 | integrity sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==
711 | dependencies:
712 | "@babel/helper-module-transforms" "^7.19.6"
713 | "@babel/helper-plugin-utils" "^7.19.0"
714 |
715 | "@babel/plugin-transform-modules-commonjs@^7.18.6":
716 | version "7.19.6"
717 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz#25b32feef24df8038fc1ec56038917eacb0b730c"
718 | integrity sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==
719 | dependencies:
720 | "@babel/helper-module-transforms" "^7.19.6"
721 | "@babel/helper-plugin-utils" "^7.19.0"
722 | "@babel/helper-simple-access" "^7.19.4"
723 |
724 | "@babel/plugin-transform-modules-systemjs@^7.19.0":
725 | version "7.19.6"
726 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz#59e2a84064b5736a4471b1aa7b13d4431d327e0d"
727 | integrity sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==
728 | dependencies:
729 | "@babel/helper-hoist-variables" "^7.18.6"
730 | "@babel/helper-module-transforms" "^7.19.6"
731 | "@babel/helper-plugin-utils" "^7.19.0"
732 | "@babel/helper-validator-identifier" "^7.19.1"
733 |
734 | "@babel/plugin-transform-modules-umd@^7.18.6":
735 | version "7.18.6"
736 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9"
737 | integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==
738 | dependencies:
739 | "@babel/helper-module-transforms" "^7.18.6"
740 | "@babel/helper-plugin-utils" "^7.18.6"
741 |
742 | "@babel/plugin-transform-named-capturing-groups-regex@^7.19.1":
743 | version "7.19.1"
744 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz#ec7455bab6cd8fb05c525a94876f435a48128888"
745 | integrity sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==
746 | dependencies:
747 | "@babel/helper-create-regexp-features-plugin" "^7.19.0"
748 | "@babel/helper-plugin-utils" "^7.19.0"
749 |
750 | "@babel/plugin-transform-new-target@^7.18.6":
751 | version "7.18.6"
752 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8"
753 | integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==
754 | dependencies:
755 | "@babel/helper-plugin-utils" "^7.18.6"
756 |
757 | "@babel/plugin-transform-object-super@^7.18.6":
758 | version "7.18.6"
759 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c"
760 | integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==
761 | dependencies:
762 | "@babel/helper-plugin-utils" "^7.18.6"
763 | "@babel/helper-replace-supers" "^7.18.6"
764 |
765 | "@babel/plugin-transform-parameters@^7.18.8":
766 | version "7.20.1"
767 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.1.tgz#9a5aa370fdcce36f110455e9369db7afca0f9eeb"
768 | integrity sha512-nDvKLrAvl+kf6BOy1UJ3MGwzzfTMgppxwiD2Jb4LO3xjYyZq30oQzDNJbCQpMdG9+j2IXHoiMrw5Cm/L6ZoxXQ==
769 | dependencies:
770 | "@babel/helper-plugin-utils" "^7.19.0"
771 |
772 | "@babel/plugin-transform-property-literals@^7.18.6":
773 | version "7.18.6"
774 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3"
775 | integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==
776 | dependencies:
777 | "@babel/helper-plugin-utils" "^7.18.6"
778 |
779 | "@babel/plugin-transform-react-display-name@^7.18.6":
780 | version "7.18.6"
781 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz#8b1125f919ef36ebdfff061d664e266c666b9415"
782 | integrity sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==
783 | dependencies:
784 | "@babel/helper-plugin-utils" "^7.18.6"
785 |
786 | "@babel/plugin-transform-react-jsx-development@^7.18.6":
787 | version "7.18.6"
788 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz#dbe5c972811e49c7405b630e4d0d2e1380c0ddc5"
789 | integrity sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==
790 | dependencies:
791 | "@babel/plugin-transform-react-jsx" "^7.18.6"
792 |
793 | "@babel/plugin-transform-react-jsx@^7.18.6":
794 | version "7.19.0"
795 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz#b3cbb7c3a00b92ec8ae1027910e331ba5c500eb9"
796 | integrity sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==
797 | dependencies:
798 | "@babel/helper-annotate-as-pure" "^7.18.6"
799 | "@babel/helper-module-imports" "^7.18.6"
800 | "@babel/helper-plugin-utils" "^7.19.0"
801 | "@babel/plugin-syntax-jsx" "^7.18.6"
802 | "@babel/types" "^7.19.0"
803 |
804 | "@babel/plugin-transform-react-pure-annotations@^7.18.6":
805 | version "7.18.6"
806 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz#561af267f19f3e5d59291f9950fd7b9663d0d844"
807 | integrity sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==
808 | dependencies:
809 | "@babel/helper-annotate-as-pure" "^7.18.6"
810 | "@babel/helper-plugin-utils" "^7.18.6"
811 |
812 | "@babel/plugin-transform-regenerator@^7.18.6":
813 | version "7.18.6"
814 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz#585c66cb84d4b4bf72519a34cfce761b8676ca73"
815 | integrity sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==
816 | dependencies:
817 | "@babel/helper-plugin-utils" "^7.18.6"
818 | regenerator-transform "^0.15.0"
819 |
820 | "@babel/plugin-transform-reserved-words@^7.18.6":
821 | version "7.18.6"
822 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a"
823 | integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==
824 | dependencies:
825 | "@babel/helper-plugin-utils" "^7.18.6"
826 |
827 | "@babel/plugin-transform-shorthand-properties@^7.18.6":
828 | version "7.18.6"
829 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9"
830 | integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==
831 | dependencies:
832 | "@babel/helper-plugin-utils" "^7.18.6"
833 |
834 | "@babel/plugin-transform-spread@^7.19.0":
835 | version "7.19.0"
836 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz#dd60b4620c2fec806d60cfaae364ec2188d593b6"
837 | integrity sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==
838 | dependencies:
839 | "@babel/helper-plugin-utils" "^7.19.0"
840 | "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
841 |
842 | "@babel/plugin-transform-sticky-regex@^7.18.6":
843 | version "7.18.6"
844 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc"
845 | integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==
846 | dependencies:
847 | "@babel/helper-plugin-utils" "^7.18.6"
848 |
849 | "@babel/plugin-transform-template-literals@^7.18.9":
850 | version "7.18.9"
851 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e"
852 | integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==
853 | dependencies:
854 | "@babel/helper-plugin-utils" "^7.18.9"
855 |
856 | "@babel/plugin-transform-typeof-symbol@^7.18.9":
857 | version "7.18.9"
858 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0"
859 | integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==
860 | dependencies:
861 | "@babel/helper-plugin-utils" "^7.18.9"
862 |
863 | "@babel/plugin-transform-typescript@^7.18.6":
864 | version "7.20.0"
865 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.0.tgz#2c7ec62b8bfc21482f3748789ba294a46a375169"
866 | integrity sha512-xOAsAFaun3t9hCwZ13Qe7gq423UgMZ6zAgmLxeGGapFqlT/X3L5qT2btjiVLlFn7gWtMaVyceS5VxGAuKbgizw==
867 | dependencies:
868 | "@babel/helper-create-class-features-plugin" "^7.19.0"
869 | "@babel/helper-plugin-utils" "^7.19.0"
870 | "@babel/plugin-syntax-typescript" "^7.20.0"
871 |
872 | "@babel/plugin-transform-unicode-escapes@^7.18.10":
873 | version "7.18.10"
874 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz#1ecfb0eda83d09bbcb77c09970c2dd55832aa246"
875 | integrity sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==
876 | dependencies:
877 | "@babel/helper-plugin-utils" "^7.18.9"
878 |
879 | "@babel/plugin-transform-unicode-regex@^7.18.6":
880 | version "7.18.6"
881 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca"
882 | integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==
883 | dependencies:
884 | "@babel/helper-create-regexp-features-plugin" "^7.18.6"
885 | "@babel/helper-plugin-utils" "^7.18.6"
886 |
887 | "@babel/preset-env@^7.11.5":
888 | version "7.19.4"
889 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.19.4.tgz#4c91ce2e1f994f717efb4237891c3ad2d808c94b"
890 | integrity sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg==
891 | dependencies:
892 | "@babel/compat-data" "^7.19.4"
893 | "@babel/helper-compilation-targets" "^7.19.3"
894 | "@babel/helper-plugin-utils" "^7.19.0"
895 | "@babel/helper-validator-option" "^7.18.6"
896 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6"
897 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9"
898 | "@babel/plugin-proposal-async-generator-functions" "^7.19.1"
899 | "@babel/plugin-proposal-class-properties" "^7.18.6"
900 | "@babel/plugin-proposal-class-static-block" "^7.18.6"
901 | "@babel/plugin-proposal-dynamic-import" "^7.18.6"
902 | "@babel/plugin-proposal-export-namespace-from" "^7.18.9"
903 | "@babel/plugin-proposal-json-strings" "^7.18.6"
904 | "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9"
905 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6"
906 | "@babel/plugin-proposal-numeric-separator" "^7.18.6"
907 | "@babel/plugin-proposal-object-rest-spread" "^7.19.4"
908 | "@babel/plugin-proposal-optional-catch-binding" "^7.18.6"
909 | "@babel/plugin-proposal-optional-chaining" "^7.18.9"
910 | "@babel/plugin-proposal-private-methods" "^7.18.6"
911 | "@babel/plugin-proposal-private-property-in-object" "^7.18.6"
912 | "@babel/plugin-proposal-unicode-property-regex" "^7.18.6"
913 | "@babel/plugin-syntax-async-generators" "^7.8.4"
914 | "@babel/plugin-syntax-class-properties" "^7.12.13"
915 | "@babel/plugin-syntax-class-static-block" "^7.14.5"
916 | "@babel/plugin-syntax-dynamic-import" "^7.8.3"
917 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
918 | "@babel/plugin-syntax-import-assertions" "^7.18.6"
919 | "@babel/plugin-syntax-json-strings" "^7.8.3"
920 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
921 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
922 | "@babel/plugin-syntax-numeric-separator" "^7.10.4"
923 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
924 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
925 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
926 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
927 | "@babel/plugin-syntax-top-level-await" "^7.14.5"
928 | "@babel/plugin-transform-arrow-functions" "^7.18.6"
929 | "@babel/plugin-transform-async-to-generator" "^7.18.6"
930 | "@babel/plugin-transform-block-scoped-functions" "^7.18.6"
931 | "@babel/plugin-transform-block-scoping" "^7.19.4"
932 | "@babel/plugin-transform-classes" "^7.19.0"
933 | "@babel/plugin-transform-computed-properties" "^7.18.9"
934 | "@babel/plugin-transform-destructuring" "^7.19.4"
935 | "@babel/plugin-transform-dotall-regex" "^7.18.6"
936 | "@babel/plugin-transform-duplicate-keys" "^7.18.9"
937 | "@babel/plugin-transform-exponentiation-operator" "^7.18.6"
938 | "@babel/plugin-transform-for-of" "^7.18.8"
939 | "@babel/plugin-transform-function-name" "^7.18.9"
940 | "@babel/plugin-transform-literals" "^7.18.9"
941 | "@babel/plugin-transform-member-expression-literals" "^7.18.6"
942 | "@babel/plugin-transform-modules-amd" "^7.18.6"
943 | "@babel/plugin-transform-modules-commonjs" "^7.18.6"
944 | "@babel/plugin-transform-modules-systemjs" "^7.19.0"
945 | "@babel/plugin-transform-modules-umd" "^7.18.6"
946 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.19.1"
947 | "@babel/plugin-transform-new-target" "^7.18.6"
948 | "@babel/plugin-transform-object-super" "^7.18.6"
949 | "@babel/plugin-transform-parameters" "^7.18.8"
950 | "@babel/plugin-transform-property-literals" "^7.18.6"
951 | "@babel/plugin-transform-regenerator" "^7.18.6"
952 | "@babel/plugin-transform-reserved-words" "^7.18.6"
953 | "@babel/plugin-transform-shorthand-properties" "^7.18.6"
954 | "@babel/plugin-transform-spread" "^7.19.0"
955 | "@babel/plugin-transform-sticky-regex" "^7.18.6"
956 | "@babel/plugin-transform-template-literals" "^7.18.9"
957 | "@babel/plugin-transform-typeof-symbol" "^7.18.9"
958 | "@babel/plugin-transform-unicode-escapes" "^7.18.10"
959 | "@babel/plugin-transform-unicode-regex" "^7.18.6"
960 | "@babel/preset-modules" "^0.1.5"
961 | "@babel/types" "^7.19.4"
962 | babel-plugin-polyfill-corejs2 "^0.3.3"
963 | babel-plugin-polyfill-corejs3 "^0.6.0"
964 | babel-plugin-polyfill-regenerator "^0.4.1"
965 | core-js-compat "^3.25.1"
966 | semver "^6.3.0"
967 |
968 | "@babel/preset-modules@^0.1.5":
969 | version "0.1.5"
970 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9"
971 | integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==
972 | dependencies:
973 | "@babel/helper-plugin-utils" "^7.0.0"
974 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
975 | "@babel/plugin-transform-dotall-regex" "^7.4.4"
976 | "@babel/types" "^7.4.4"
977 | esutils "^2.0.2"
978 |
979 | "@babel/preset-react@^7.10.4":
980 | version "7.18.6"
981 | resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.18.6.tgz#979f76d6277048dc19094c217b507f3ad517dd2d"
982 | integrity sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==
983 | dependencies:
984 | "@babel/helper-plugin-utils" "^7.18.6"
985 | "@babel/helper-validator-option" "^7.18.6"
986 | "@babel/plugin-transform-react-display-name" "^7.18.6"
987 | "@babel/plugin-transform-react-jsx" "^7.18.6"
988 | "@babel/plugin-transform-react-jsx-development" "^7.18.6"
989 | "@babel/plugin-transform-react-pure-annotations" "^7.18.6"
990 |
991 | "@babel/preset-typescript@^7.12.7":
992 | version "7.18.6"
993 | resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz#ce64be3e63eddc44240c6358daefac17b3186399"
994 | integrity sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==
995 | dependencies:
996 | "@babel/helper-plugin-utils" "^7.18.6"
997 | "@babel/helper-validator-option" "^7.18.6"
998 | "@babel/plugin-transform-typescript" "^7.18.6"
999 |
1000 | "@babel/runtime@^7.8.4":
1001 | version "7.20.1"
1002 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.1.tgz#1148bb33ab252b165a06698fde7576092a78b4a9"
1003 | integrity sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==
1004 | dependencies:
1005 | regenerator-runtime "^0.13.10"
1006 |
1007 | "@babel/template@^7.18.10":
1008 | version "7.18.10"
1009 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71"
1010 | integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==
1011 | dependencies:
1012 | "@babel/code-frame" "^7.18.6"
1013 | "@babel/parser" "^7.18.10"
1014 | "@babel/types" "^7.18.10"
1015 |
1016 | "@babel/template@^7.25.0":
1017 | version "7.25.0"
1018 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.0.tgz#e733dc3134b4fede528c15bc95e89cb98c52592a"
1019 | integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==
1020 | dependencies:
1021 | "@babel/code-frame" "^7.24.7"
1022 | "@babel/parser" "^7.25.0"
1023 | "@babel/types" "^7.25.0"
1024 |
1025 | "@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.19.6", "@babel/traverse@^7.20.1":
1026 | version "7.25.3"
1027 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.3.tgz#f1b901951c83eda2f3e29450ce92743783373490"
1028 | integrity sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==
1029 | dependencies:
1030 | "@babel/code-frame" "^7.24.7"
1031 | "@babel/generator" "^7.25.0"
1032 | "@babel/parser" "^7.25.3"
1033 | "@babel/template" "^7.25.0"
1034 | "@babel/types" "^7.25.2"
1035 | debug "^4.3.1"
1036 | globals "^11.1.0"
1037 |
1038 | "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.19.4", "@babel/types@^7.20.0", "@babel/types@^7.4.4":
1039 | version "7.20.0"
1040 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.0.tgz#52c94cf8a7e24e89d2a194c25c35b17a64871479"
1041 | integrity sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg==
1042 | dependencies:
1043 | "@babel/helper-string-parser" "^7.19.4"
1044 | "@babel/helper-validator-identifier" "^7.19.1"
1045 | to-fast-properties "^2.0.0"
1046 |
1047 | "@babel/types@^7.25.0", "@babel/types@^7.25.2":
1048 | version "7.25.2"
1049 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.2.tgz#55fb231f7dc958cd69ea141a4c2997e819646125"
1050 | integrity sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==
1051 | dependencies:
1052 | "@babel/helper-string-parser" "^7.24.8"
1053 | "@babel/helper-validator-identifier" "^7.24.7"
1054 | to-fast-properties "^2.0.0"
1055 |
1056 | "@jridgewell/gen-mapping@^0.1.0":
1057 | version "0.1.1"
1058 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996"
1059 | integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==
1060 | dependencies:
1061 | "@jridgewell/set-array" "^1.0.0"
1062 | "@jridgewell/sourcemap-codec" "^1.4.10"
1063 |
1064 | "@jridgewell/gen-mapping@^0.3.2":
1065 | version "0.3.2"
1066 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9"
1067 | integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==
1068 | dependencies:
1069 | "@jridgewell/set-array" "^1.0.1"
1070 | "@jridgewell/sourcemap-codec" "^1.4.10"
1071 | "@jridgewell/trace-mapping" "^0.3.9"
1072 |
1073 | "@jridgewell/gen-mapping@^0.3.5":
1074 | version "0.3.5"
1075 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36"
1076 | integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==
1077 | dependencies:
1078 | "@jridgewell/set-array" "^1.2.1"
1079 | "@jridgewell/sourcemap-codec" "^1.4.10"
1080 | "@jridgewell/trace-mapping" "^0.3.24"
1081 |
1082 | "@jridgewell/resolve-uri@3.1.0":
1083 | version "3.1.0"
1084 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
1085 | integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
1086 |
1087 | "@jridgewell/resolve-uri@^3.1.0":
1088 | version "3.1.2"
1089 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6"
1090 | integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==
1091 |
1092 | "@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1":
1093 | version "1.1.2"
1094 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
1095 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
1096 |
1097 | "@jridgewell/set-array@^1.2.1":
1098 | version "1.2.1"
1099 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280"
1100 | integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==
1101 |
1102 | "@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10":
1103 | version "1.4.14"
1104 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
1105 | integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
1106 |
1107 | "@jridgewell/sourcemap-codec@^1.4.14":
1108 | version "1.5.0"
1109 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a"
1110 | integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==
1111 |
1112 | "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25":
1113 | version "0.3.25"
1114 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0"
1115 | integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==
1116 | dependencies:
1117 | "@jridgewell/resolve-uri" "^3.1.0"
1118 | "@jridgewell/sourcemap-codec" "^1.4.14"
1119 |
1120 | "@jridgewell/trace-mapping@^0.3.8", "@jridgewell/trace-mapping@^0.3.9":
1121 | version "0.3.17"
1122 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985"
1123 | integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==
1124 | dependencies:
1125 | "@jridgewell/resolve-uri" "3.1.0"
1126 | "@jridgewell/sourcemap-codec" "1.4.14"
1127 |
1128 | "@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3":
1129 | version "2.1.8-no-fsevents.3"
1130 | resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz#323d72dd25103d0c4fbdce89dadf574a787b1f9b"
1131 | integrity sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==
1132 |
1133 | "@types/prop-types@*", "@types/prop-types@^15.7.3":
1134 | version "15.7.5"
1135 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf"
1136 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==
1137 |
1138 | "@types/react@^17.0.0":
1139 | version "17.0.52"
1140 | resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.52.tgz#10d8b907b5c563ac014a541f289ae8eaa9bf2e9b"
1141 | integrity sha512-vwk8QqVODi0VaZZpDXQCmEmiOuyjEFPY7Ttaw5vjM112LOq37yz1CDJGrRJwA1fYEq4Iitd5rnjd1yWAc/bT+A==
1142 | dependencies:
1143 | "@types/prop-types" "*"
1144 | "@types/scheduler" "*"
1145 | csstype "^3.0.2"
1146 |
1147 | "@types/scheduler@*":
1148 | version "0.16.2"
1149 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
1150 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
1151 |
1152 | ansi-styles@^3.2.1:
1153 | version "3.2.1"
1154 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
1155 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
1156 | dependencies:
1157 | color-convert "^1.9.0"
1158 |
1159 | anymatch@~3.1.2:
1160 | version "3.1.2"
1161 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
1162 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
1163 | dependencies:
1164 | normalize-path "^3.0.0"
1165 | picomatch "^2.0.4"
1166 |
1167 | babel-plugin-polyfill-corejs2@^0.3.3:
1168 | version "0.3.3"
1169 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122"
1170 | integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==
1171 | dependencies:
1172 | "@babel/compat-data" "^7.17.7"
1173 | "@babel/helper-define-polyfill-provider" "^0.3.3"
1174 | semver "^6.1.1"
1175 |
1176 | babel-plugin-polyfill-corejs3@^0.6.0:
1177 | version "0.6.0"
1178 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz#56ad88237137eade485a71b52f72dbed57c6230a"
1179 | integrity sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==
1180 | dependencies:
1181 | "@babel/helper-define-polyfill-provider" "^0.3.3"
1182 | core-js-compat "^3.25.1"
1183 |
1184 | babel-plugin-polyfill-regenerator@^0.4.1:
1185 | version "0.4.1"
1186 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747"
1187 | integrity sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==
1188 | dependencies:
1189 | "@babel/helper-define-polyfill-provider" "^0.3.3"
1190 |
1191 | balanced-match@^1.0.0:
1192 | version "1.0.2"
1193 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
1194 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
1195 |
1196 | binary-extensions@^2.0.0:
1197 | version "2.2.0"
1198 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
1199 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
1200 |
1201 | brace-expansion@^1.1.7:
1202 | version "1.1.11"
1203 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
1204 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
1205 | dependencies:
1206 | balanced-match "^1.0.0"
1207 | concat-map "0.0.1"
1208 |
1209 | braces@~3.0.2:
1210 | version "3.0.3"
1211 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
1212 | integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
1213 | dependencies:
1214 | fill-range "^7.1.1"
1215 |
1216 | browserslist@^4.21.3, browserslist@^4.21.4:
1217 | version "4.21.4"
1218 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987"
1219 | integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==
1220 | dependencies:
1221 | caniuse-lite "^1.0.30001400"
1222 | electron-to-chromium "^1.4.251"
1223 | node-releases "^2.0.6"
1224 | update-browserslist-db "^1.0.9"
1225 |
1226 | caniuse-lite@^1.0.30001400:
1227 | version "1.0.30001430"
1228 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001430.tgz#638a8ae00b5a8a97e66ff43733b2701f81b101fa"
1229 | integrity sha512-IB1BXTZKPDVPM7cnV4iaKaHxckvdr/3xtctB3f7Hmenx3qYBhGtTZ//7EllK66aKXW98Lx0+7Yr0kxBtIt3tzg==
1230 |
1231 | chalk@^2.0.0, chalk@^2.4.2:
1232 | version "2.4.2"
1233 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
1234 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
1235 | dependencies:
1236 | ansi-styles "^3.2.1"
1237 | escape-string-regexp "^1.0.5"
1238 | supports-color "^5.3.0"
1239 |
1240 | chokidar@^3.4.0:
1241 | version "3.5.3"
1242 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
1243 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
1244 | dependencies:
1245 | anymatch "~3.1.2"
1246 | braces "~3.0.2"
1247 | glob-parent "~5.1.2"
1248 | is-binary-path "~2.1.0"
1249 | is-glob "~4.0.1"
1250 | normalize-path "~3.0.0"
1251 | readdirp "~3.6.0"
1252 | optionalDependencies:
1253 | fsevents "~2.3.2"
1254 |
1255 | color-convert@^1.9.0:
1256 | version "1.9.3"
1257 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
1258 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
1259 | dependencies:
1260 | color-name "1.1.3"
1261 |
1262 | color-name@1.1.3:
1263 | version "1.1.3"
1264 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1265 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
1266 |
1267 | commander@^4.0.1:
1268 | version "4.1.1"
1269 | resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
1270 | integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
1271 |
1272 | concat-map@0.0.1:
1273 | version "0.0.1"
1274 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1275 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
1276 |
1277 | convert-source-map@^1.1.0, convert-source-map@^1.7.0:
1278 | version "1.9.0"
1279 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
1280 | integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
1281 |
1282 | core-js-compat@^3.25.1:
1283 | version "3.26.0"
1284 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.26.0.tgz#94e2cf8ba3e63800c4956ea298a6473bc9d62b44"
1285 | integrity sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==
1286 | dependencies:
1287 | browserslist "^4.21.4"
1288 |
1289 | csstype@^3.0.2:
1290 | version "3.1.1"
1291 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9"
1292 | integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==
1293 |
1294 | debug@^4.1.0, debug@^4.1.1:
1295 | version "4.3.4"
1296 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
1297 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
1298 | dependencies:
1299 | ms "2.1.2"
1300 |
1301 | debug@^4.3.1:
1302 | version "4.3.6"
1303 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b"
1304 | integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==
1305 | dependencies:
1306 | ms "2.1.2"
1307 |
1308 | electron-to-chromium@^1.4.251:
1309 | version "1.4.284"
1310 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592"
1311 | integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==
1312 |
1313 | escalade@^3.1.1:
1314 | version "3.1.1"
1315 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
1316 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
1317 |
1318 | escape-string-regexp@^1.0.5:
1319 | version "1.0.5"
1320 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1321 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
1322 |
1323 | esutils@^2.0.2:
1324 | version "2.0.3"
1325 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
1326 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
1327 |
1328 | fill-range@^7.1.1:
1329 | version "7.1.1"
1330 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292"
1331 | integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
1332 | dependencies:
1333 | to-regex-range "^5.0.1"
1334 |
1335 | fs-readdir-recursive@^1.1.0:
1336 | version "1.1.0"
1337 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
1338 | integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==
1339 |
1340 | fs.realpath@^1.0.0:
1341 | version "1.0.0"
1342 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1343 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
1344 |
1345 | fsevents@~2.3.2:
1346 | version "2.3.2"
1347 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
1348 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
1349 |
1350 | function-bind@^1.1.1:
1351 | version "1.1.1"
1352 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1353 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1354 |
1355 | gensync@^1.0.0-beta.2:
1356 | version "1.0.0-beta.2"
1357 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
1358 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
1359 |
1360 | glob-parent@~5.1.2:
1361 | version "5.1.2"
1362 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
1363 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
1364 | dependencies:
1365 | is-glob "^4.0.1"
1366 |
1367 | glob@^7.2.0:
1368 | version "7.2.3"
1369 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
1370 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
1371 | dependencies:
1372 | fs.realpath "^1.0.0"
1373 | inflight "^1.0.4"
1374 | inherits "2"
1375 | minimatch "^3.1.1"
1376 | once "^1.3.0"
1377 | path-is-absolute "^1.0.0"
1378 |
1379 | globals@^11.1.0:
1380 | version "11.12.0"
1381 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
1382 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
1383 |
1384 | has-flag@^3.0.0:
1385 | version "3.0.0"
1386 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1387 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
1388 |
1389 | has@^1.0.3:
1390 | version "1.0.3"
1391 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1392 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1393 | dependencies:
1394 | function-bind "^1.1.1"
1395 |
1396 | inflight@^1.0.4:
1397 | version "1.0.6"
1398 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1399 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
1400 | dependencies:
1401 | once "^1.3.0"
1402 | wrappy "1"
1403 |
1404 | inherits@2:
1405 | version "2.0.4"
1406 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1407 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1408 |
1409 | is-binary-path@~2.1.0:
1410 | version "2.1.0"
1411 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
1412 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
1413 | dependencies:
1414 | binary-extensions "^2.0.0"
1415 |
1416 | is-core-module@^2.9.0:
1417 | version "2.11.0"
1418 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144"
1419 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==
1420 | dependencies:
1421 | has "^1.0.3"
1422 |
1423 | is-extglob@^2.1.1:
1424 | version "2.1.1"
1425 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1426 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
1427 |
1428 | is-glob@^4.0.1, is-glob@~4.0.1:
1429 | version "4.0.3"
1430 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
1431 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
1432 | dependencies:
1433 | is-extglob "^2.1.1"
1434 |
1435 | is-number@^7.0.0:
1436 | version "7.0.0"
1437 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
1438 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1439 |
1440 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
1441 | version "4.0.0"
1442 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1443 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1444 |
1445 | jsesc@^2.5.1:
1446 | version "2.5.2"
1447 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
1448 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
1449 |
1450 | jsesc@~0.5.0:
1451 | version "0.5.0"
1452 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
1453 | integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==
1454 |
1455 | json5@^2.2.1:
1456 | version "2.2.3"
1457 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
1458 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
1459 |
1460 | lodash.debounce@^4.0.8:
1461 | version "4.0.8"
1462 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
1463 | integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==
1464 |
1465 | loose-envify@^1.1.0, loose-envify@^1.4.0:
1466 | version "1.4.0"
1467 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1468 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
1469 | dependencies:
1470 | js-tokens "^3.0.0 || ^4.0.0"
1471 |
1472 | make-dir@^2.1.0:
1473 | version "2.1.0"
1474 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
1475 | integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
1476 | dependencies:
1477 | pify "^4.0.1"
1478 | semver "^5.6.0"
1479 |
1480 | minimatch@^3.1.1:
1481 | version "3.1.2"
1482 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
1483 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1484 | dependencies:
1485 | brace-expansion "^1.1.7"
1486 |
1487 | ms@2.1.2:
1488 | version "2.1.2"
1489 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1490 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1491 |
1492 | node-releases@^2.0.6:
1493 | version "2.0.6"
1494 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503"
1495 | integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==
1496 |
1497 | normalize-path@^3.0.0, normalize-path@~3.0.0:
1498 | version "3.0.0"
1499 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
1500 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
1501 |
1502 | object-assign@^4.1.1:
1503 | version "4.1.1"
1504 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1505 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
1506 |
1507 | once@^1.3.0:
1508 | version "1.4.0"
1509 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1510 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
1511 | dependencies:
1512 | wrappy "1"
1513 |
1514 | path-is-absolute@^1.0.0:
1515 | version "1.0.1"
1516 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1517 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
1518 |
1519 | path-parse@^1.0.7:
1520 | version "1.0.7"
1521 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
1522 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1523 |
1524 | picocolors@^1.0.0:
1525 | version "1.0.0"
1526 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
1527 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
1528 |
1529 | picomatch@^2.0.4, picomatch@^2.2.1:
1530 | version "2.3.1"
1531 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
1532 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
1533 |
1534 | pify@^4.0.1:
1535 | version "4.0.1"
1536 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
1537 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
1538 |
1539 | prop-types@^15.6.2, prop-types@^15.7.2:
1540 | version "15.8.1"
1541 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
1542 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
1543 | dependencies:
1544 | loose-envify "^1.4.0"
1545 | object-assign "^4.1.1"
1546 | react-is "^16.13.1"
1547 |
1548 | react-dom@^16.13.1:
1549 | version "16.14.0"
1550 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.14.0.tgz#7ad838ec29a777fb3c75c3a190f661cf92ab8b89"
1551 | integrity sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==
1552 | dependencies:
1553 | loose-envify "^1.1.0"
1554 | object-assign "^4.1.1"
1555 | prop-types "^15.6.2"
1556 | scheduler "^0.19.1"
1557 |
1558 | react-is@^16.13.1:
1559 | version "16.13.1"
1560 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
1561 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
1562 |
1563 | react@^16.13.1:
1564 | version "16.14.0"
1565 | resolved "https://registry.yarnpkg.com/react/-/react-16.14.0.tgz#94d776ddd0aaa37da3eda8fc5b6b18a4c9a3114d"
1566 | integrity sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==
1567 | dependencies:
1568 | loose-envify "^1.1.0"
1569 | object-assign "^4.1.1"
1570 | prop-types "^15.6.2"
1571 |
1572 | readdirp@~3.6.0:
1573 | version "3.6.0"
1574 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
1575 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
1576 | dependencies:
1577 | picomatch "^2.2.1"
1578 |
1579 | regenerate-unicode-properties@^10.1.0:
1580 | version "10.1.0"
1581 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c"
1582 | integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==
1583 | dependencies:
1584 | regenerate "^1.4.2"
1585 |
1586 | regenerate@^1.4.2:
1587 | version "1.4.2"
1588 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
1589 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
1590 |
1591 | regenerator-runtime@^0.13.10:
1592 | version "0.13.10"
1593 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee"
1594 | integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==
1595 |
1596 | regenerator-transform@^0.15.0:
1597 | version "0.15.0"
1598 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.0.tgz#cbd9ead5d77fae1a48d957cf889ad0586adb6537"
1599 | integrity sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==
1600 | dependencies:
1601 | "@babel/runtime" "^7.8.4"
1602 |
1603 | regexpu-core@^5.1.0:
1604 | version "5.2.1"
1605 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.2.1.tgz#a69c26f324c1e962e9ffd0b88b055caba8089139"
1606 | integrity sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==
1607 | dependencies:
1608 | regenerate "^1.4.2"
1609 | regenerate-unicode-properties "^10.1.0"
1610 | regjsgen "^0.7.1"
1611 | regjsparser "^0.9.1"
1612 | unicode-match-property-ecmascript "^2.0.0"
1613 | unicode-match-property-value-ecmascript "^2.0.0"
1614 |
1615 | regjsgen@^0.7.1:
1616 | version "0.7.1"
1617 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.7.1.tgz#ee5ef30e18d3f09b7c369b76e7c2373ed25546f6"
1618 | integrity sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==
1619 |
1620 | regjsparser@^0.9.1:
1621 | version "0.9.1"
1622 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709"
1623 | integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==
1624 | dependencies:
1625 | jsesc "~0.5.0"
1626 |
1627 | resolve@^1.14.2:
1628 | version "1.22.1"
1629 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
1630 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
1631 | dependencies:
1632 | is-core-module "^2.9.0"
1633 | path-parse "^1.0.7"
1634 | supports-preserve-symlinks-flag "^1.0.0"
1635 |
1636 | scheduler@^0.19.1:
1637 | version "0.19.1"
1638 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196"
1639 | integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==
1640 | dependencies:
1641 | loose-envify "^1.1.0"
1642 | object-assign "^4.1.1"
1643 |
1644 | semver@^5.6.0:
1645 | version "5.7.2"
1646 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
1647 | integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
1648 |
1649 | semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
1650 | version "6.3.1"
1651 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
1652 | integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
1653 |
1654 | slash@^2.0.0:
1655 | version "2.0.0"
1656 | resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
1657 | integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
1658 |
1659 | supports-color@^5.3.0:
1660 | version "5.5.0"
1661 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
1662 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
1663 | dependencies:
1664 | has-flag "^3.0.0"
1665 |
1666 | supports-preserve-symlinks-flag@^1.0.0:
1667 | version "1.0.0"
1668 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
1669 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
1670 |
1671 | to-fast-properties@^2.0.0:
1672 | version "2.0.0"
1673 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
1674 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
1675 |
1676 | to-regex-range@^5.0.1:
1677 | version "5.0.1"
1678 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
1679 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
1680 | dependencies:
1681 | is-number "^7.0.0"
1682 |
1683 | typescript@^4.1.3:
1684 | version "4.8.4"
1685 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6"
1686 | integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==
1687 |
1688 | unicode-canonical-property-names-ecmascript@^2.0.0:
1689 | version "2.0.0"
1690 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
1691 | integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==
1692 |
1693 | unicode-match-property-ecmascript@^2.0.0:
1694 | version "2.0.0"
1695 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3"
1696 | integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==
1697 | dependencies:
1698 | unicode-canonical-property-names-ecmascript "^2.0.0"
1699 | unicode-property-aliases-ecmascript "^2.0.0"
1700 |
1701 | unicode-match-property-value-ecmascript@^2.0.0:
1702 | version "2.0.0"
1703 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714"
1704 | integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==
1705 |
1706 | unicode-property-aliases-ecmascript@^2.0.0:
1707 | version "2.1.0"
1708 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd"
1709 | integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==
1710 |
1711 | update-browserslist-db@^1.0.9:
1712 | version "1.0.10"
1713 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
1714 | integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==
1715 | dependencies:
1716 | escalade "^3.1.1"
1717 | picocolors "^1.0.0"
1718 |
1719 | wrappy@1:
1720 | version "1.0.2"
1721 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1722 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
1723 |
--------------------------------------------------------------------------------