├── .eslintrc.json
├── .github
└── preview.png
├── .gitignore
├── LICENSE
├── README.md
├── next-env.d.ts
├── next.config.js
├── package-lock.json
├── package.json
├── public
├── favicon.png
└── images
│ ├── car.png
│ ├── chevrolet.svg
│ ├── close.svg
│ ├── logo.svg
│ ├── search-mobile.svg
│ └── search.svg
├── src
├── data
│ └── errorCodes.ts
├── hooks
│ └── useMatchMedia.ts
├── pages
│ ├── _app.tsx
│ ├── _document.tsx
│ └── index.tsx
└── styles
│ ├── global.ts
│ ├── index.ts
│ └── pages
│ └── index.ts
├── tsconfig.json
└── yarn.lock
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/.github/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/birobirobiro/my-onix-web/395e56c53128d15f2a9edb6b52d5579154cfb1ca/.github/preview.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 |
27 | # local env files
28 | .env.local
29 | .env.development.local
30 | .env.test.local
31 | .env.production.local
32 |
33 | # vercel
34 | .vercel
35 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2022 João Inácio Neto
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | ## 🧪 Technologies
20 |
21 | This project was developed using the following technologies:
22 |
23 | - [NextJS](https://nextjs.org/)
24 | - [Stitches](https://stitches.dev/)
25 |
26 | ## 🚀 Getting started
27 |
28 | Clone the project and access the folder.
29 |
30 | ```bash
31 | git clone https://github.com/birobirobiro/my-onix-web.git
32 |
33 | cd my-onix-web
34 | ```
35 |
36 | Run this command to install the dependencies.
37 |
38 | ```bash
39 | yarn install
40 |
41 | yarn dev
42 | ```
43 |
44 | ## 🔖 Layout
45 |
46 | You can view the project through the links below:
47 |
48 | - [Live Preview](https://myonix.vercel.app/)
49 |
50 | - [Figma](https://www.figma.com/file/lbP6LDjR1s9g6NbnYnwNdY/myOnix/duplicate)
51 |
52 | Remembering that you need to have a [Figma](http://figma.com/) account to access it.
53 |
54 | ## 📝 License
55 |
56 | This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
57 |
58 | ---
59 |
60 | Made with 💜 by [birobirobiro](https://www.birobirobiro.dev) 👋
61 |
--------------------------------------------------------------------------------
/next-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 |
4 | // NOTE: This file should not be edited
5 | // see https://nextjs.org/docs/basic-features/typescript for more information.
6 |
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | reactStrictMode: true,
3 | compress: true
4 | }
5 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "my-onix-web",
3 | "private": true,
4 | "scripts": {
5 | "dev": "next dev",
6 | "build": "next build",
7 | "start": "next start",
8 | "lint": "next lint"
9 | },
10 | "dependencies": {
11 | "@stitches/react": "^1.2.6",
12 | "@types/node": "^17.0.18",
13 | "next": "12.0.10",
14 | "react": "17.0.2",
15 | "react-dom": "17.0.2"
16 | },
17 | "devDependencies": {
18 | "@types/react": "^17.0.39",
19 | "eslint": "8.9.0",
20 | "eslint-config-next": "12.0.10",
21 | "typescript": "^4.5.5"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/public/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/birobirobiro/my-onix-web/395e56c53128d15f2a9edb6b52d5579154cfb1ca/public/favicon.png
--------------------------------------------------------------------------------
/public/images/car.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/birobirobiro/my-onix-web/395e56c53128d15f2a9edb6b52d5579154cfb1ca/public/images/car.png
--------------------------------------------------------------------------------
/public/images/chevrolet.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/public/images/close.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/public/images/logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/public/images/search-mobile.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/public/images/search.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/data/errorCodes.ts:
--------------------------------------------------------------------------------
1 | export const errorCodes = [
2 | {
3 | id: "1",
4 | error: {
5 | code: "2",
6 | message: `Nenhum controle remoto detectado, pressione a embreagem para reinicializar`,
7 | },
8 | },
9 | {
10 | id: "2",
11 | error: {
12 | code: "4",
13 | message: `Ar-condicionado desligado devido à alta temperatura do motor`,
14 | },
15 | },
16 | {
17 | id: "3",
18 | error: {
19 | code: "5",
20 | message: `A coluna da direção está travada`,
21 | },
22 | },
23 | {
24 | id: "4",
25 | error: {
26 | code: "7",
27 | message: `Gire o volante, desligue a chave e depois ligue novamente`,
28 | },
29 | },
30 | {
31 | id: "5",
32 | error: {
33 | code: "9",
34 | message: `Gire o volante, ligue o veículo novamente`,
35 | },
36 | },
37 | {
38 | id: "6",
39 | error: {
40 | code: "10",
41 | message: `Freios superaquecidos`,
42 | },
43 | },
44 | {
45 | id: "7",
46 | error: {
47 | code: "15",
48 | message: `Falha da luz de freio auxiliar`,
49 | },
50 | },
51 | {
52 | id: "8",
53 | error: {
54 | code: "16",
55 | message: `Manutenção de luzes de freio`,
56 | },
57 | },
58 | {
59 | id: "9",
60 | error: {
61 | code: "17",
62 | message: `Funcionamento incorreto da função de nivelamento dos faróis`,
63 | },
64 | },
65 | {
66 | id: "10",
67 | error: {
68 | code: "18",
69 | message: `Falha no farol baixo esquerdo`,
70 | },
71 | },
72 | {
73 | id: "11",
74 | error: {
75 | code: "20",
76 | message: `Falha no farol baixo direito`,
77 | },
78 | },
79 | {
80 | id: "12",
81 | error: {
82 | code: "21",
83 | message: `Falha na luz de seta esquerda`,
84 | },
85 | },
86 | {
87 | id: "13",
88 | error: {
89 | code: "22",
90 | message: `Falha na luz de seta direita`,
91 | },
92 | },
93 | {
94 | id: "14",
95 | error: {
96 | code: "23",
97 | message: `Falha na luz de ré`,
98 | },
99 | },
100 | {
101 | id: "15",
102 | error: {
103 | code: "24",
104 | message: `Falha na luz da placa de licença`,
105 | },
106 | },
107 | {
108 | id: "16",
109 | error: {
110 | code: "25",
111 | message: `Falha no sinalizador de direção dianteiro esquerdo`,
112 | },
113 | },
114 | {
115 | id: "17",
116 | error: {
117 | code: "26",
118 | message: `Falha no sinalizador de direção traseiro esquerdo`,
119 | },
120 | },
121 | {
122 | id: "18",
123 | error: {
124 | code: "27",
125 | message: `Falha no sinalizador de direção dianteiro direito`,
126 | },
127 | },
128 | {
129 | id: "19",
130 | error: {
131 | code: "28",
132 | message: `Falha no sinalizador de direção traseiro direito`,
133 | },
134 | },
135 | {
136 | id: "20",
137 | error: {
138 | code: "35",
139 | message: `Substitua a bateria do controle remoto da chave`,
140 | },
141 | },
142 | {
143 | id: "21",
144 | error: {
145 | code: "49",
146 | message: `Aviso de mudança de faixa indisponível`,
147 | },
148 | },
149 | {
150 | id: "22",
151 | error: {
152 | code: "52",
153 | message: `Substitua a correia sincronizadora`,
154 | },
155 | },
156 | {
157 | id: "23",
158 | error: {
159 | code: "53",
160 | message: `Aperte a tampa do bocal de abastecimento de combustível`,
161 | },
162 | },
163 | {
164 | id: "24",
165 | error: {
166 | code: "59",
167 | message: `Abra e depois feche o vidro do motorista`,
168 | },
169 | },
170 | {
171 | id: "25",
172 | error: {
173 | code: "60",
174 | message: `Abra e depois feche o vidro do passageiro`,
175 | },
176 | },
177 | {
178 | id: "26",
179 | error: {
180 | code: "61",
181 | message: `Abra e depois feche o vidro traseiro esquerdo`,
182 | },
183 | },
184 | {
185 | id: "27",
186 | error: {
187 | code: "62",
188 | message: `Abra e depois feche o vidro traseiro direito`,
189 | },
190 | },
191 | {
192 | id: "28",
193 | error: {
194 | code: "65",
195 | message: `Tentativa de furto detectado`,
196 | },
197 | },
198 | {
199 | id: "29",
200 | error: {
201 | code: "66",
202 | message: `Falha do alarme antifurto`,
203 | },
204 | },
205 | {
206 | id: "30",
207 | error: {
208 | code: "67",
209 | message: `Repare a trava da coluna da direção`,
210 | },
211 | },
212 | {
213 | id: "31",
214 | error: {
215 | code: "68",
216 | message: `Repare o EPS / direção assistida, dirija com cuidado`,
217 | },
218 | },
219 | {
220 | id: "32",
221 | error: {
222 | code: "75",
223 | message: `Verifique o sistema do ar-condicionado`,
224 | },
225 | },
226 | {
227 | id: "33",
228 | error: {
229 | code: "77",
230 | message: `Repare a câmera dianteira`,
231 | },
232 | },
233 | {
234 | id: "34",
235 | error: {
236 | code: "79",
237 | message: `Verifique o óleo do motor`,
238 | },
239 | },
240 | {
241 | id: "35",
242 | error: {
243 | code: "81",
244 | message: `Verifique a transmissão automática`,
245 | },
246 | },
247 | {
248 | id: "36",
249 | error: {
250 | code: "82",
251 | message: `Troque o óleo do motor em breve`,
252 | },
253 | },
254 | {
255 | id: "37",
256 | error: {
257 | code: "84",
258 | message: `A potência do motor está reduzida`,
259 | },
260 | },
261 | {
262 | id: "38",
263 | error: {
264 | code: "89",
265 | message: `Luz indicadora de anomalia/manutenção do veículo em breve`,
266 | },
267 | },
268 | {
269 | id: "39",
270 | error: {
271 | code: "90",
272 | message: `Repare a assistência de frenagem`,
273 | },
274 | },
275 | {
276 | id: "40",
277 | error: {
278 | code: "91",
279 | message: `Nenhum controle remoto detectado`,
280 | },
281 | },
282 | {
283 | id: "41",
284 | error: {
285 | code: "94",
286 | message: `Coloque a alavanca da transmissão na posição “P”`,
287 | },
288 | },
289 | {
290 | id: "42",
291 | error: {
292 | code: "95",
293 | message: `Falha do airbag`,
294 | },
295 | },
296 | {
297 | id: "43",
298 | error: {
299 | code: "128",
300 | message: `Capô aberto`,
301 | },
302 | },
303 | {
304 | id: "44",
305 | error: {
306 | code: "134",
307 | message: `Falha no assistente de estacionamento — limpe o para-choque`,
308 | },
309 | },
310 | {
311 | id: "45",
312 | error: {
313 | code: "136",
314 | message: `Reparar o Assistente de estacionamento`,
315 | },
316 | },
317 | {
318 | id: "46",
319 | error: {
320 | code: "174",
321 | message: `Bateria fraca`,
322 | },
323 | },
324 | {
325 | id: "47",
326 | error: {
327 | code: "258",
328 | message: `Assistente de estacionamento desligado`,
329 | },
330 | },
331 | {
332 | id: "48",
333 | error: {
334 | code: "352",
335 | message: `Superaquecimento do motor – desligue o motor`,
336 | },
337 | },
338 | {
339 | id: "49",
340 | error: {
341 | code: "353",
342 | message: `Superaquecimento do motor – deixe o motor em marcha lenta`,
343 | },
344 | },
345 | {
346 | id: "50",
347 | error: {
348 | code: "358",
349 | message: `Óleo do motor quente, deixe o motor em marcha lenta`,
350 | },
351 | },
352 | ];
353 |
--------------------------------------------------------------------------------
/src/hooks/useMatchMedia.ts:
--------------------------------------------------------------------------------
1 | import { useEffect, useState } from "react";
2 |
3 | export default function useMatchMedia(contidtion: string): boolean {
4 | const [isMatched, setIsMatched] = useState(false);
5 |
6 | useEffect(() => {
7 | function listener({ matches }: MediaQueryListEvent) {
8 | setIsMatched(matches);
9 | }
10 |
11 | const matchMedia = window.matchMedia(`(${contidtion})`);
12 |
13 | setIsMatched(matchMedia.matches);
14 |
15 | try {
16 | matchMedia.addEventListener("change", listener);
17 |
18 | return () => matchMedia.removeEventListener("change", listener);
19 | } catch (_) {
20 | matchMedia.addListener(listener);
21 |
22 | return () => matchMedia.removeListener(listener);
23 | }
24 | }, []);
25 |
26 | return isMatched;
27 | }
28 |
--------------------------------------------------------------------------------
/src/pages/_app.tsx:
--------------------------------------------------------------------------------
1 | import { globalStyles } from "../styles/global"
2 |
3 | function MyApp({ Component, pageProps }) {
4 | return (
5 | <>
6 |
7 | {globalStyles()}
8 | >
9 | )
10 | }
11 |
12 | export default MyApp
13 |
--------------------------------------------------------------------------------
/src/pages/_document.tsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import NextDocument, { Html, Head, Main, NextScript } from "next/document";
3 | import { getCssText } from "../styles";
4 |
5 | export default class Document extends NextDocument {
6 | render() {
7 | return (
8 |
9 |
10 |
14 |
15 |
16 |
21 |
22 |
26 |
30 |
31 |
36 |
37 |
38 |
39 |
40 |
41 |
42 | );
43 | }
44 | }
45 |
--------------------------------------------------------------------------------
/src/pages/index.tsx:
--------------------------------------------------------------------------------
1 | /* eslint-disable @next/next/no-img-element */
2 | import * as S from '../styles/pages'
3 | import Head from 'next/head'
4 | import { errorCodes } from '../data/errorCodes'
5 | import { useState, FormEvent } from "react"
6 | import useMatchMedia from '../hooks/useMatchMedia'
7 |
8 | export default function Home() {
9 |
10 | const matchedWidthMobile = useMatchMedia('max-width: 550px')
11 |
12 | const [errorCode, setErrorCode] = useState('')
13 | const [errorMessage, setErrorMessage] = useState('')
14 |
15 | function handleSearch(event?: FormEvent) {
16 | event?.preventDefault()
17 |
18 | const result = errorCodes.find(({ error }) => error.code === errorCode)
19 | setErrorMessage(result ? result.error.message : `Código de erro ${errorCode} não encontrado`)
20 | }
21 |
22 | function handleBlur() {
23 | if (errorCode.length && matchedWidthMobile) {
24 | handleSearch()
25 | }
26 | }
27 |
28 | return (
29 | <>
30 |
31 | myOnix
32 |
33 |
34 |
35 | myOnix
36 |
37 | {/* Meta Tags */}
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 | MyOnix
66 |
67 |
68 |
69 |
70 |
71 | Saiba o significado do código que aparece no painel do seu Chevrolet.
72 | S.Description>
73 |
74 |
75 |
76 |
77 |
78 | setErrorCode(event.target.value)} />
79 |
80 | {
81 | matchedWidthMobile ? ( { setErrorCode('') }}>
82 |
83 | ) : (
84 | Pesquisar
85 | )
86 | }
87 |
88 | S.Form>
89 |
90 | {errorMessage && (
91 |
92 |
93 |
94 | {
95 | errorMessage
96 | }
97 |
98 |
99 |
100 | )}
101 |
102 |
103 | Confira a relação de códigos que podem aparecer no painel dos Chevrolet. Algumas mensagens podem não estar disponíveis para determinados modelos de veículos.
104 |
105 |
106 |
107 |
108 |
109 |
110 | CHEVROLET
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 | Code: birobirobiro
119 |
120 | Design: Kennedy
121 |
122 |
123 |
124 |
125 |
126 | MyOnix
127 |
128 |
129 |
130 | >
131 | )
132 | }
133 |
--------------------------------------------------------------------------------
/src/styles/global.ts:
--------------------------------------------------------------------------------
1 | import { globalCss } from ".";
2 |
3 | export const globalStyles = globalCss({
4 | "*": { margin: 0, padding: 0, boxSizing: "border-box" },
5 | "body, button": {
6 | fontFamily: "'Roboto', sans-serif",
7 | overflowX: "hidden",
8 | },
9 | "h1, h2": {
10 | fontFamily: "'Poppins', sans-serif",
11 | },
12 | a: {
13 | textDecoration: "none",
14 | color: "inherit",
15 | },
16 | });
17 |
--------------------------------------------------------------------------------
/src/styles/index.ts:
--------------------------------------------------------------------------------
1 | import { createStitches } from "@stitches/react";
2 |
3 | export const {
4 | styled,
5 | css,
6 | globalCss,
7 | keyframes,
8 | getCssText,
9 | theme,
10 | createTheme,
11 | config,
12 | } = createStitches({
13 | theme: {
14 | colors: {
15 | gray50: "#EDF3F6",
16 | gray100: "#B4B8BD",
17 | gray200: "#C4C4C4",
18 | gray150: "#747474",
19 | gray400: "#444D5B",
20 | gray500: "#323A46",
21 | gray900: "#131313",
22 | button: "#242424",
23 | },
24 | },
25 | media: {
26 | desktopLG: "(max-width: 1500px)",
27 | mobileLG: "(max-width: 550px)",
28 | },
29 |
30 | utils: {
31 | marginX: (value) => ({ marginLeft: value, marginRight: value }),
32 |
33 | marginY: (value) => ({ marginTop: value, marginBottom: value }),
34 |
35 | pa: (value) => ({ padding: value }),
36 | },
37 | });
38 |
--------------------------------------------------------------------------------
/src/styles/pages/index.ts:
--------------------------------------------------------------------------------
1 | import { url } from "inspector";
2 | import { keyframes, styled } from "..";
3 |
4 | function pixelToRem(...values: number[]) {
5 | return values
6 | .reduce((acc, current) => (acc += current / 16 + `rem `), "")
7 | .trim();
8 | }
9 |
10 | const slideCar = keyframes({
11 | "0%": {
12 | transform: "translateX(100%)",
13 | },
14 | "100%": {
15 | transform: "translateX(0)",
16 | },
17 | });
18 |
19 | const slideTextOnix = keyframes({
20 | "0%": {
21 | transform: "translateY(100%)",
22 | opacity: 0,
23 | },
24 | "100%": {
25 | transform: "translateY(0)",
26 | opacity: 0.6,
27 | },
28 | });
29 |
30 | export const Container = styled("div", {
31 | display: "flex",
32 | flexDirection: "column",
33 | maxWidth: pixelToRem(1255),
34 | background: "linear-gradient(180deg, #2D343E 0%, #1D2127 100%)",
35 | clipPath: "polygon(0 0, 100% 0%, 75% 100%, 0% 100%)",
36 | padding: pixelToRem(47, 92, 0),
37 | minHeight: "100vh",
38 |
39 | "@desktopLG": {
40 | alignItems: "center",
41 | clipPath: "polygon(0 0, 100% 0, 84% 100%, 0% 100%)",
42 | },
43 |
44 | "@mobileLG": {
45 | padding: pixelToRem(28, 50),
46 | alignItems: "center",
47 | },
48 | });
49 |
50 | export const Header = styled("header", {
51 | display: "flex",
52 | gap: "0.625rem",
53 | flexDirection: "column",
54 |
55 | "@desktopLG": {
56 | alignItems: "center",
57 | },
58 | });
59 |
60 | export const LogoContainer = styled("div", {
61 | display: "flex",
62 | alignItems: "center",
63 | gap: pixelToRem(10),
64 |
65 | "@desktopLG": {
66 | justifyContent: "center",
67 | },
68 | });
69 |
70 | export const HeaderImage = styled("img", {
71 | width: "3.125rem",
72 | height: "1rem",
73 |
74 | "@desktopLG": {
75 | width: pixelToRem(80),
76 | height: pixelToRem(40),
77 | },
78 | });
79 |
80 | export const TitleHeader = styled("h1", {
81 | fontSize: pixelToRem(22),
82 | fontWeight: "600",
83 | color: "$gray50",
84 | fontStyle: "italic",
85 |
86 | "@desktopLG": {
87 | fontSize: pixelToRem(30),
88 | },
89 | });
90 |
91 | export const Content = styled("section", {
92 | display: "flex",
93 | flexDirection: "column",
94 | maxWidth: pixelToRem(450),
95 | width: "100%",
96 |
97 | "@desktopLG": {
98 | maxWidth: pixelToRem(550),
99 | alignItems: "center",
100 | },
101 | });
102 |
103 | export const Description = styled("div", {
104 | paddingBottom: "3.4375rem",
105 | display: "flex",
106 | alignItems: "center",
107 | fontFamily: "Poppins, sans-serif",
108 | textAlign: "left",
109 | maxWidth: pixelToRem(550),
110 | marginTop: pixelToRem(112),
111 |
112 | "@desktopLG": {
113 | textAlign: "center",
114 | maxWidth: pixelToRem(480),
115 | },
116 |
117 | "@mobileLG": {
118 | marginTop: pixelToRem(53),
119 | textAlign: "center",
120 | maxWidth: pixelToRem(315),
121 | },
122 | });
123 |
124 | export const LightText = styled("p", {
125 | color: "$gray50",
126 | fontSize: pixelToRem(26),
127 | fontWeight: "600",
128 |
129 | "@desktopLG": {
130 | fontSize: pixelToRem(20),
131 | },
132 |
133 | "@mobileLG": {
134 | fontSize: pixelToRem(15),
135 | },
136 | });
137 |
138 | export const Form = styled("form", {
139 | display: "flex",
140 |
141 | "@desktopLG": {
142 | flexDirection: "column",
143 | alignItems: "center",
144 | },
145 |
146 | "@mobileLG": {
147 | flexDirection: "row",
148 | alignItems: "initial",
149 | },
150 | });
151 |
152 | export const Onix = styled("aside", {
153 | position: "absolute",
154 | right: 100,
155 | top: "35vh",
156 | zIndex: 2,
157 | display: "flex",
158 | flexDirection: "column",
159 |
160 | animation: `${slideCar} 1s ease-in-out`,
161 |
162 | "@desktopLG": {
163 | display: "none",
164 | },
165 |
166 | "@mobileLG": {
167 | top: 500,
168 | right: 500,
169 | display: "initial",
170 |
171 | animation: `${slideCar} 1.5s ease-in-out`,
172 | },
173 | });
174 |
175 | export const textOnix = styled("span", {
176 | fontSize: pixelToRem(96),
177 | fontWeight: "600",
178 | background:
179 | "linear-gradient(94.64deg, rgba(220, 211, 211, 0.27) 17.12%, rgba(62, 50, 50, 0.274427) 48.86%, rgba(0, 0, 0, 0.28) 88.82%)",
180 | "-webkit-background-clip": "text",
181 | "-webkit-text-fill-color": "transparent",
182 | opacity: 0.6,
183 | marginTop: pixelToRem(20),
184 | position: "absolute",
185 | zIndex: 1,
186 | top: 260,
187 | right: 412,
188 |
189 | "@desktopLG": {
190 | display: "none",
191 | },
192 |
193 | animation: `${slideTextOnix} 1s ease-in-out `,
194 | });
195 |
196 | export const Input = styled("input", {
197 | border: "solid 1px $gray150",
198 | borderRight: "0",
199 | borderRadius: "5px 0 0 5px",
200 | width: pixelToRem(350),
201 | height: pixelToRem(41),
202 | background: "$gray400 url(images/search.svg) no-repeat scroll 15px 10px",
203 | paddingLeft: pixelToRem(44),
204 | outline: "none",
205 | display: "flex",
206 | color: "$gray50",
207 |
208 | "&::placeholder": {
209 | color: "$gray50",
210 | opacity: 0.5,
211 | },
212 |
213 | "@desktopLG": {
214 | border: "solid 1px $gray150",
215 | borderRadius: pixelToRem(5),
216 | },
217 |
218 | "@mobileLG": {
219 | display: "inline-block",
220 | width: "100%",
221 | height: pixelToRem(40),
222 | background:
223 | "$gray400 url(images/search-mobile.svg) no-repeat scroll 15px 12px",
224 | paddingLeft: pixelToRem(36),
225 | borderRight: "0",
226 | borderRadius: "5px 0 0 5px",
227 | },
228 | });
229 |
230 | export const Button = styled("button", {
231 | backgroundColor: "$button",
232 | border: "none",
233 | width: pixelToRem(100),
234 | height: pixelToRem(41),
235 | borderRadius: "0 5px 5px 0",
236 | fontFamily: "Poppins, sans-serif",
237 | fontSize: pixelToRem(13),
238 | fontWeight: "600",
239 | color: "$gray50",
240 |
241 | "@desktopLG": {
242 | marginTop: pixelToRem(20),
243 | width: pixelToRem(350),
244 | },
245 |
246 | "@mobileLG": {
247 | backgroundColor: "$gray400",
248 | border: "solid 1px $gray150",
249 | borderLeft: "0",
250 | height: pixelToRem(40),
251 | padding: pixelToRem(15, 10),
252 | width: "auto",
253 | display: "flex",
254 | alignItems: "center",
255 | overflow: "hidden",
256 | marginTop: 0,
257 | },
258 | });
259 |
260 | export const SearchResult = styled("section", {
261 | display: "flex",
262 | justifyContent: "center",
263 | alignItems: "center",
264 | backgroundColor: "$gray400",
265 | maxWidth: pixelToRem(494),
266 | maxHeight: pixelToRem(189),
267 | borderRadius: pixelToRem(5),
268 | marginTop: pixelToRem(70),
269 | pa: pixelToRem(30),
270 | border: "solid 1px $gray150",
271 |
272 | "@desktopLG": {
273 | width: "100%",
274 | maxWidth: pixelToRem(400),
275 | },
276 |
277 | "@mobileLG": {
278 | marginTop: pixelToRem(35),
279 | maxWidth: pixelToRem(300),
280 | },
281 | });
282 |
283 | export const TextSearchResult = styled("p", {
284 | fontSize: pixelToRem(14),
285 | fontFamily: "Roboto, sans-serif",
286 | color: "$gray100",
287 | });
288 |
289 | export const InfoText = styled("div", {
290 | display: "flex",
291 | });
292 |
293 | export const TextInfo = styled("p", {
294 | fontSize: pixelToRem(13),
295 | fontFamily: "Roboto, sans-serif",
296 | color: "$gray100",
297 | paddingTop: pixelToRem(55),
298 |
299 | "@desktopLG": {
300 | textAlign: "center",
301 | },
302 |
303 | "@mobileLG": {
304 | paddingTop: pixelToRem(25),
305 | color: "$gray150",
306 | },
307 | });
308 |
309 | export const Footer = styled("footer", {
310 | display: "flex",
311 | justifyContent: "space-between",
312 | alignItems: "center",
313 | padding: pixelToRem(0, 50),
314 | backgroundColor: "$gray500",
315 |
316 | "@mobileLG": {
317 | display: "none",
318 | },
319 | });
320 |
321 | export const Designed = styled("div", {
322 | display: "flex",
323 | color: "$gray200",
324 | gap: pixelToRem(10),
325 | });
326 |
327 | export const FooterLogo = styled("div", {
328 | display: "flex",
329 | alignItems: "center",
330 | gap: pixelToRem(8),
331 | });
332 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": [
5 | "dom",
6 | "dom.iterable",
7 | "esnext"
8 | ],
9 | "allowJs": true,
10 | "skipLibCheck": true,
11 | "strict": false,
12 | "forceConsistentCasingInFileNames": true,
13 | "noEmit": true,
14 | "incremental": true,
15 | "esModuleInterop": true,
16 | "module": "esnext",
17 | "moduleResolution": "node",
18 | "resolveJsonModule": true,
19 | "isolatedModules": true,
20 | "jsx": "preserve"
21 | },
22 | "include": [
23 | "next-env.d.ts",
24 | "**/*.ts",
25 | "**/*.tsx"
26 | ],
27 | "exclude": [
28 | "node_modules"
29 | ]
30 | }
31 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/runtime-corejs3@^7.10.2":
6 | version "7.17.2"
7 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.17.2.tgz#fdca2cd05fba63388babe85d349b6801b008fd13"
8 | integrity sha512-NcKtr2epxfIrNM4VOmPKO46TvDMCBhgi2CrSHaEarrz+Plk2K5r9QemmOFTGpZaoKnWoGH5MO+CzeRsih/Fcgg==
9 | dependencies:
10 | core-js-pure "^3.20.2"
11 | regenerator-runtime "^0.13.4"
12 |
13 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.16.3":
14 | version "7.17.2"
15 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.2.tgz#66f68591605e59da47523c631416b18508779941"
16 | integrity sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==
17 | dependencies:
18 | regenerator-runtime "^0.13.4"
19 |
20 | "@eslint/eslintrc@^1.1.0":
21 | version "1.1.0"
22 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.1.0.tgz#583d12dbec5d4f22f333f9669f7d0b7c7815b4d3"
23 | integrity sha512-C1DfL7XX4nPqGd6jcP01W9pVM1HYCuUkFk1432D7F0v3JSlUIeOYn9oCoi3eoLZ+iwBSb29BMFxxny0YrrEZqg==
24 | dependencies:
25 | ajv "^6.12.4"
26 | debug "^4.3.2"
27 | espree "^9.3.1"
28 | globals "^13.9.0"
29 | ignore "^4.0.6"
30 | import-fresh "^3.2.1"
31 | js-yaml "^4.1.0"
32 | minimatch "^3.0.4"
33 | strip-json-comments "^3.1.1"
34 |
35 | "@humanwhocodes/config-array@^0.9.2":
36 | version "0.9.3"
37 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.3.tgz#f2564c744b387775b436418491f15fce6601f63e"
38 | integrity sha512-3xSMlXHh03hCcCmFc0rbKp3Ivt2PFEJnQUJDDMTJQ2wkECZWdq4GePs2ctc5H8zV+cHPaq8k2vU8mrQjA6iHdQ==
39 | dependencies:
40 | "@humanwhocodes/object-schema" "^1.2.1"
41 | debug "^4.1.1"
42 | minimatch "^3.0.4"
43 |
44 | "@humanwhocodes/object-schema@^1.2.1":
45 | version "1.2.1"
46 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
47 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
48 |
49 | "@next/env@12.0.10":
50 | version "12.0.10"
51 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.0.10.tgz#561640fd62279218ccd2798ae907bae8d94a7730"
52 | integrity sha512-mQVj0K6wQ5WEk/sL9SZ+mJXJUaG7el8CpZ6io1uFe9GgNTSC7EgUyNGqM6IQovIFc5ukF4O/hqsdh3S/DCgT2g==
53 |
54 | "@next/eslint-plugin-next@12.0.10":
55 | version "12.0.10"
56 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.0.10.tgz#521ab5d05a89e818528668df8a3edb8f9df2c547"
57 | integrity sha512-PbGRnV5HGSfRGLjf8uTh1MaWgLwnjKjWiGVjK752ifITJbZ28/5AmLAFT2shDYeux8BHgpgVll5QXu7GN3YLFw==
58 | dependencies:
59 | glob "7.1.7"
60 |
61 | "@next/swc-android-arm64@12.0.10":
62 | version "12.0.10"
63 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.0.10.tgz#fd9d716433cc9d361021b0052f8b002bcaff948d"
64 | integrity sha512-xYwXGkNhzZZsM5MD7KRwF5ZNiC8OLPtVMUiagpPnwENg8Hb0GSQo/NbYWXM8YrawEwp9LaZ7OXiuRKPh2JyBdA==
65 |
66 | "@next/swc-darwin-arm64@12.0.10":
67 | version "12.0.10"
68 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.0.10.tgz#34b2d0dc62eb89efb9176af111e3820a11fdb3f0"
69 | integrity sha512-f2zngulkpIJKWHckhRi7X8GZ+J/tNgFF7lYIh7Qx15JH0OTBsjkqxORlkzy+VZyHJ5sWTCaI6HYYd3ow6qkEEg==
70 |
71 | "@next/swc-darwin-x64@12.0.10":
72 | version "12.0.10"
73 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.0.10.tgz#a4306795159293c7d4d58a2c88ce1710ff0a8baa"
74 | integrity sha512-Qykcu/gVC5oTvOQoRBhyuS5GYm5SbcgrFTsaLFkGBmEkg9eMQRiaCswk4IafpDXVzITkVFurzSM28q3tLW2qUw==
75 |
76 | "@next/swc-linux-arm-gnueabihf@12.0.10":
77 | version "12.0.10"
78 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.0.10.tgz#1ad15af3d5fca2fef57894d61e16f73aee61ec2e"
79 | integrity sha512-EhqrTFsIXAXN9B/fiiW/QKUK/lSLCXRsLalkUp58KDfMqVLLlj1ORbESAcswiNQOChLuHQSldGEEtOBPQZcd9A==
80 |
81 | "@next/swc-linux-arm64-gnu@12.0.10":
82 | version "12.0.10"
83 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.0.10.tgz#a84a92d0e1a179c4346c9ed8f22e26f708101ad6"
84 | integrity sha512-kqGtC72g3+JYXZbY2ca6digXR5U6AQ6Dzv4eAxYluMePLHjI/Xye1mf9dwVsgmeXfrD/IRDp5K/3A6UNvBm4oQ==
85 |
86 | "@next/swc-linux-arm64-musl@12.0.10":
87 | version "12.0.10"
88 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.0.10.tgz#973ec96c77f845bd0a6eecbf1892caa1ee4defaf"
89 | integrity sha512-bG9zTSNwnSgc1Un/7oz1ZVN4UeXsTWrsQhAGWU78lLLCn4Zj9HQoUCRCGLt0OVs2DBZ+WC8CzzFliQ1SKipVbg==
90 |
91 | "@next/swc-linux-x64-gnu@12.0.10":
92 | version "12.0.10"
93 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.0.10.tgz#efcc7f8252ea8225834760eaf09350f1bead73f7"
94 | integrity sha512-c79PcfWtyThiYRa1+3KVfDq0zXaI8o1d6dQWNVqDrtLz5HKM/rbjLdvoNuxDwUeZhxI/d9CtyH6GbuKPw5l/5A==
95 |
96 | "@next/swc-linux-x64-musl@12.0.10":
97 | version "12.0.10"
98 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.0.10.tgz#c2a73d939dfd310acc1892a0a132762500dd5757"
99 | integrity sha512-g/scgn+21/MLfizOCZOZt+MxNj2/8Tdlwjvy+QZcSUPZRUI2Y5o3HwBvI1f/bSci+NGRU+bUAO0NFtRJ9MzH5w==
100 |
101 | "@next/swc-win32-arm64-msvc@12.0.10":
102 | version "12.0.10"
103 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.0.10.tgz#2316af5f612cde1691abdf2571ff40ec32ea3429"
104 | integrity sha512-gl6B/ravwMeY5Nv4Il2/ARYJQ6u+KPRwGMjS1ZrNudIKlNn4YBeXh5A4cIVm+dHaff6/O/lGOa5/SUYDMZpkww==
105 |
106 | "@next/swc-win32-ia32-msvc@12.0.10":
107 | version "12.0.10"
108 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.0.10.tgz#98a4f74d164871cfaccb0df6efddf2b7bcbaa54b"
109 | integrity sha512-7RVpZ3tSThC6j+iZB0CUYmFiA3kXmN+pE7QcfyAxFaflKlaZoWNMKHIEZDuxSJc6YmQ6kyxsjqxVay2F5+/YCg==
110 |
111 | "@next/swc-win32-x64-msvc@12.0.10":
112 | version "12.0.10"
113 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.0.10.tgz#5c0ba98b695c4be44d8793aff42971a0dac65c2d"
114 | integrity sha512-oUIWRKd24jFLRWUYO1CZmML5+32BcpVfqhimGaaZIXcOkfQW+iqiAzdqsv688zaGtyKGeB9ZtiK3NDf+Q0v+Vw==
115 |
116 | "@nodelib/fs.scandir@2.1.5":
117 | version "2.1.5"
118 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
119 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
120 | dependencies:
121 | "@nodelib/fs.stat" "2.0.5"
122 | run-parallel "^1.1.9"
123 |
124 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
125 | version "2.0.5"
126 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
127 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
128 |
129 | "@nodelib/fs.walk@^1.2.3":
130 | version "1.2.8"
131 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
132 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
133 | dependencies:
134 | "@nodelib/fs.scandir" "2.1.5"
135 | fastq "^1.6.0"
136 |
137 | "@rushstack/eslint-patch@^1.0.8":
138 | version "1.1.0"
139 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.1.0.tgz#7f698254aadf921e48dda8c0a6b304026b8a9323"
140 | integrity sha512-JLo+Y592QzIE+q7Dl2pMUtt4q8SKYI5jDrZxrozEQxnGVOyYE+GWK9eLkwTaeN9DDctlaRAQ3TBmzZ1qdLE30A==
141 |
142 | "@stitches/react@^1.2.6":
143 | version "1.2.6"
144 | resolved "https://registry.yarnpkg.com/@stitches/react/-/react-1.2.6.tgz#61f2a3d1110334ecd33bcb7463650127d42470cb"
145 | integrity sha512-gRVITYj8W4jJmoiVxWDv72yCvd12VvtUUAnTzs07EqmtvGCVgKZu3Dx0x5KVCcb0b6tfgvvNH2L84YrzdM4Mag==
146 |
147 | "@types/json5@^0.0.29":
148 | version "0.0.29"
149 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
150 | integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
151 |
152 | "@types/node@^17.0.18":
153 | version "17.0.18"
154 | resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.18.tgz#3b4fed5cfb58010e3a2be4b6e74615e4847f1074"
155 | integrity sha512-eKj4f/BsN/qcculZiRSujogjvp5O/k4lOW5m35NopjZM/QwLOR075a8pJW5hD+Rtdm2DaCVPENS6KtSQnUD6BA==
156 |
157 | "@types/prop-types@*":
158 | version "15.7.4"
159 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11"
160 | integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==
161 |
162 | "@types/react@^17.0.39":
163 | version "17.0.39"
164 | resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.39.tgz#d0f4cde092502a6db00a1cded6e6bf2abb7633ce"
165 | integrity sha512-UVavlfAxDd/AgAacMa60Azl7ygyQNRwC/DsHZmKgNvPmRR5p70AJ5Q9EAmL2NWOJmeV+vVUI4IAP7GZrN8h8Ug==
166 | dependencies:
167 | "@types/prop-types" "*"
168 | "@types/scheduler" "*"
169 | csstype "^3.0.2"
170 |
171 | "@types/scheduler@*":
172 | version "0.16.2"
173 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
174 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
175 |
176 | "@typescript-eslint/parser@^5.0.0":
177 | version "5.12.0"
178 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.12.0.tgz#0ca669861813df99ce54916f66f524c625ed2434"
179 | integrity sha512-MfSwg9JMBojMUoGjUmX+D2stoQj1CBYTCP0qnnVtu9A+YQXVKNtLjasYh+jozOcrb/wau8TCfWOkQTiOAruBog==
180 | dependencies:
181 | "@typescript-eslint/scope-manager" "5.12.0"
182 | "@typescript-eslint/types" "5.12.0"
183 | "@typescript-eslint/typescript-estree" "5.12.0"
184 | debug "^4.3.2"
185 |
186 | "@typescript-eslint/scope-manager@5.12.0":
187 | version "5.12.0"
188 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.12.0.tgz#59619e6e5e2b1ce6cb3948b56014d3a24da83f5e"
189 | integrity sha512-GAMobtIJI8FGf1sLlUWNUm2IOkIjvn7laFWyRx7CLrv6nLBI7su+B7lbStqVlK5NdLvHRFiJo2HhiDF7Ki01WQ==
190 | dependencies:
191 | "@typescript-eslint/types" "5.12.0"
192 | "@typescript-eslint/visitor-keys" "5.12.0"
193 |
194 | "@typescript-eslint/types@5.12.0":
195 | version "5.12.0"
196 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.12.0.tgz#5b4030a28222ee01e851836562c07769eecda0b8"
197 | integrity sha512-JowqbwPf93nvf8fZn5XrPGFBdIK8+yx5UEGs2QFAYFI8IWYfrzz+6zqlurGr2ctShMaJxqwsqmra3WXWjH1nRQ==
198 |
199 | "@typescript-eslint/typescript-estree@5.12.0":
200 | version "5.12.0"
201 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.12.0.tgz#cabf545fd592722f0e2b4104711e63bf89525cd2"
202 | integrity sha512-Dd9gVeOqt38QHR0BEA8oRaT65WYqPYbIc5tRFQPkfLquVEFPD1HAtbZT98TLBkEcCkvwDYOAvuSvAD9DnQhMfQ==
203 | dependencies:
204 | "@typescript-eslint/types" "5.12.0"
205 | "@typescript-eslint/visitor-keys" "5.12.0"
206 | debug "^4.3.2"
207 | globby "^11.0.4"
208 | is-glob "^4.0.3"
209 | semver "^7.3.5"
210 | tsutils "^3.21.0"
211 |
212 | "@typescript-eslint/visitor-keys@5.12.0":
213 | version "5.12.0"
214 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.12.0.tgz#1ac9352ed140b07ba144ebf371b743fdf537ec16"
215 | integrity sha512-cFwTlgnMV6TgezQynx2c/4/tx9Tufbuo9LPzmWqyRC3QC4qTGkAG1C6pBr0/4I10PAI/FlYunI3vJjIcu+ZHMg==
216 | dependencies:
217 | "@typescript-eslint/types" "5.12.0"
218 | eslint-visitor-keys "^3.0.0"
219 |
220 | acorn-jsx@^5.3.1:
221 | version "5.3.2"
222 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
223 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
224 |
225 | acorn@^8.7.0:
226 | version "8.7.0"
227 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf"
228 | integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==
229 |
230 | ajv@^6.10.0, ajv@^6.12.4:
231 | version "6.12.6"
232 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
233 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
234 | dependencies:
235 | fast-deep-equal "^3.1.1"
236 | fast-json-stable-stringify "^2.0.0"
237 | json-schema-traverse "^0.4.1"
238 | uri-js "^4.2.2"
239 |
240 | ansi-regex@^5.0.1:
241 | version "5.0.1"
242 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
243 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
244 |
245 | ansi-styles@^4.1.0:
246 | version "4.3.0"
247 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
248 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
249 | dependencies:
250 | color-convert "^2.0.1"
251 |
252 | argparse@^2.0.1:
253 | version "2.0.1"
254 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
255 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
256 |
257 | aria-query@^4.2.2:
258 | version "4.2.2"
259 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
260 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
261 | dependencies:
262 | "@babel/runtime" "^7.10.2"
263 | "@babel/runtime-corejs3" "^7.10.2"
264 |
265 | array-includes@^3.1.3, array-includes@^3.1.4:
266 | version "3.1.4"
267 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz#f5b493162c760f3539631f005ba2bb46acb45ba9"
268 | integrity sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==
269 | dependencies:
270 | call-bind "^1.0.2"
271 | define-properties "^1.1.3"
272 | es-abstract "^1.19.1"
273 | get-intrinsic "^1.1.1"
274 | is-string "^1.0.7"
275 |
276 | array-union@^2.1.0:
277 | version "2.1.0"
278 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
279 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
280 |
281 | array.prototype.flat@^1.2.5:
282 | version "1.2.5"
283 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz#07e0975d84bbc7c48cd1879d609e682598d33e13"
284 | integrity sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==
285 | dependencies:
286 | call-bind "^1.0.2"
287 | define-properties "^1.1.3"
288 | es-abstract "^1.19.0"
289 |
290 | array.prototype.flatmap@^1.2.5:
291 | version "1.2.5"
292 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz#908dc82d8a406930fdf38598d51e7411d18d4446"
293 | integrity sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==
294 | dependencies:
295 | call-bind "^1.0.0"
296 | define-properties "^1.1.3"
297 | es-abstract "^1.19.0"
298 |
299 | ast-types-flow@^0.0.7:
300 | version "0.0.7"
301 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
302 | integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
303 |
304 | axe-core@^4.3.5:
305 | version "4.4.1"
306 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.1.tgz#7dbdc25989298f9ad006645cd396782443757413"
307 | integrity sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw==
308 |
309 | axobject-query@^2.2.0:
310 | version "2.2.0"
311 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
312 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
313 |
314 | balanced-match@^1.0.0:
315 | version "1.0.2"
316 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
317 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
318 |
319 | brace-expansion@^1.1.7:
320 | version "1.1.11"
321 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
322 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
323 | dependencies:
324 | balanced-match "^1.0.0"
325 | concat-map "0.0.1"
326 |
327 | braces@^3.0.1:
328 | version "3.0.2"
329 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
330 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
331 | dependencies:
332 | fill-range "^7.0.1"
333 |
334 | call-bind@^1.0.0, call-bind@^1.0.2:
335 | version "1.0.2"
336 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
337 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
338 | dependencies:
339 | function-bind "^1.1.1"
340 | get-intrinsic "^1.0.2"
341 |
342 | callsites@^3.0.0:
343 | version "3.1.0"
344 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
345 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
346 |
347 | caniuse-lite@^1.0.30001283:
348 | version "1.0.30001312"
349 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001312.tgz#e11eba4b87e24d22697dae05455d5aea28550d5f"
350 | integrity sha512-Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==
351 |
352 | chalk@^4.0.0:
353 | version "4.1.2"
354 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
355 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
356 | dependencies:
357 | ansi-styles "^4.1.0"
358 | supports-color "^7.1.0"
359 |
360 | color-convert@^2.0.1:
361 | version "2.0.1"
362 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
363 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
364 | dependencies:
365 | color-name "~1.1.4"
366 |
367 | color-name@~1.1.4:
368 | version "1.1.4"
369 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
370 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
371 |
372 | concat-map@0.0.1:
373 | version "0.0.1"
374 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
375 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
376 |
377 | core-js-pure@^3.20.2:
378 | version "3.21.0"
379 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.21.0.tgz#819adc8dfb808205ce25b51d50591becd615db7e"
380 | integrity sha512-VaJUunCZLnxuDbo1rNOzwbet9E1K9joiXS5+DQMPtgxd24wfsZbJZMMfQLGYMlCUvSxLfsRUUhoOR2x28mFfeg==
381 |
382 | cross-spawn@^7.0.2:
383 | version "7.0.3"
384 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
385 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
386 | dependencies:
387 | path-key "^3.1.0"
388 | shebang-command "^2.0.0"
389 | which "^2.0.1"
390 |
391 | csstype@^3.0.2:
392 | version "3.0.10"
393 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.10.tgz#2ad3a7bed70f35b965707c092e5f30b327c290e5"
394 | integrity sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==
395 |
396 | damerau-levenshtein@^1.0.7:
397 | version "1.0.8"
398 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7"
399 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==
400 |
401 | debug@^2.6.9:
402 | version "2.6.9"
403 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
404 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
405 | dependencies:
406 | ms "2.0.0"
407 |
408 | debug@^3.2.7:
409 | version "3.2.7"
410 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
411 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
412 | dependencies:
413 | ms "^2.1.1"
414 |
415 | debug@^4.1.1, debug@^4.3.1, debug@^4.3.2:
416 | version "4.3.3"
417 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664"
418 | integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
419 | dependencies:
420 | ms "2.1.2"
421 |
422 | deep-is@^0.1.3:
423 | version "0.1.4"
424 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
425 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
426 |
427 | define-properties@^1.1.3:
428 | version "1.1.3"
429 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
430 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
431 | dependencies:
432 | object-keys "^1.0.12"
433 |
434 | dir-glob@^3.0.1:
435 | version "3.0.1"
436 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
437 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
438 | dependencies:
439 | path-type "^4.0.0"
440 |
441 | doctrine@^2.1.0:
442 | version "2.1.0"
443 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
444 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
445 | dependencies:
446 | esutils "^2.0.2"
447 |
448 | doctrine@^3.0.0:
449 | version "3.0.0"
450 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
451 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
452 | dependencies:
453 | esutils "^2.0.2"
454 |
455 | emoji-regex@^9.2.2:
456 | version "9.2.2"
457 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
458 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
459 |
460 | es-abstract@^1.19.0, es-abstract@^1.19.1:
461 | version "1.19.1"
462 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz#d4885796876916959de78edaa0df456627115ec3"
463 | integrity sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==
464 | dependencies:
465 | call-bind "^1.0.2"
466 | es-to-primitive "^1.2.1"
467 | function-bind "^1.1.1"
468 | get-intrinsic "^1.1.1"
469 | get-symbol-description "^1.0.0"
470 | has "^1.0.3"
471 | has-symbols "^1.0.2"
472 | internal-slot "^1.0.3"
473 | is-callable "^1.2.4"
474 | is-negative-zero "^2.0.1"
475 | is-regex "^1.1.4"
476 | is-shared-array-buffer "^1.0.1"
477 | is-string "^1.0.7"
478 | is-weakref "^1.0.1"
479 | object-inspect "^1.11.0"
480 | object-keys "^1.1.1"
481 | object.assign "^4.1.2"
482 | string.prototype.trimend "^1.0.4"
483 | string.prototype.trimstart "^1.0.4"
484 | unbox-primitive "^1.0.1"
485 |
486 | es-to-primitive@^1.2.1:
487 | version "1.2.1"
488 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
489 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
490 | dependencies:
491 | is-callable "^1.1.4"
492 | is-date-object "^1.0.1"
493 | is-symbol "^1.0.2"
494 |
495 | escape-string-regexp@^4.0.0:
496 | version "4.0.0"
497 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
498 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
499 |
500 | eslint-config-next@12.0.10:
501 | version "12.0.10"
502 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.0.10.tgz#f201f8f4514018f7ef46f454f56b81cf5c790379"
503 | integrity sha512-l1er6mwSo1bltjLwmd71p5BdT6k/NQxV1n4lKZI6xt3MDMrq7ChUBr+EecxOry8GC/rCRUtPpH8Ygs0BJc5YLg==
504 | dependencies:
505 | "@next/eslint-plugin-next" "12.0.10"
506 | "@rushstack/eslint-patch" "^1.0.8"
507 | "@typescript-eslint/parser" "^5.0.0"
508 | eslint-import-resolver-node "^0.3.4"
509 | eslint-import-resolver-typescript "^2.4.0"
510 | eslint-plugin-import "^2.25.2"
511 | eslint-plugin-jsx-a11y "^6.5.1"
512 | eslint-plugin-react "^7.27.0"
513 | eslint-plugin-react-hooks "^4.3.0"
514 |
515 | eslint-import-resolver-node@^0.3.4, eslint-import-resolver-node@^0.3.6:
516 | version "0.3.6"
517 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
518 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==
519 | dependencies:
520 | debug "^3.2.7"
521 | resolve "^1.20.0"
522 |
523 | eslint-import-resolver-typescript@^2.4.0:
524 | version "2.5.0"
525 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.5.0.tgz#07661966b272d14ba97f597b51e1a588f9722f0a"
526 | integrity sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ==
527 | dependencies:
528 | debug "^4.3.1"
529 | glob "^7.1.7"
530 | is-glob "^4.0.1"
531 | resolve "^1.20.0"
532 | tsconfig-paths "^3.9.0"
533 |
534 | eslint-module-utils@^2.7.2:
535 | version "2.7.3"
536 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz#ad7e3a10552fdd0642e1e55292781bd6e34876ee"
537 | integrity sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==
538 | dependencies:
539 | debug "^3.2.7"
540 | find-up "^2.1.0"
541 |
542 | eslint-plugin-import@^2.25.2:
543 | version "2.25.4"
544 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.25.4.tgz#322f3f916a4e9e991ac7af32032c25ce313209f1"
545 | integrity sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==
546 | dependencies:
547 | array-includes "^3.1.4"
548 | array.prototype.flat "^1.2.5"
549 | debug "^2.6.9"
550 | doctrine "^2.1.0"
551 | eslint-import-resolver-node "^0.3.6"
552 | eslint-module-utils "^2.7.2"
553 | has "^1.0.3"
554 | is-core-module "^2.8.0"
555 | is-glob "^4.0.3"
556 | minimatch "^3.0.4"
557 | object.values "^1.1.5"
558 | resolve "^1.20.0"
559 | tsconfig-paths "^3.12.0"
560 |
561 | eslint-plugin-jsx-a11y@^6.5.1:
562 | version "6.5.1"
563 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz#cdbf2df901040ca140b6ec14715c988889c2a6d8"
564 | integrity sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==
565 | dependencies:
566 | "@babel/runtime" "^7.16.3"
567 | aria-query "^4.2.2"
568 | array-includes "^3.1.4"
569 | ast-types-flow "^0.0.7"
570 | axe-core "^4.3.5"
571 | axobject-query "^2.2.0"
572 | damerau-levenshtein "^1.0.7"
573 | emoji-regex "^9.2.2"
574 | has "^1.0.3"
575 | jsx-ast-utils "^3.2.1"
576 | language-tags "^1.0.5"
577 | minimatch "^3.0.4"
578 |
579 | eslint-plugin-react-hooks@^4.3.0:
580 | version "4.3.0"
581 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz#318dbf312e06fab1c835a4abef00121751ac1172"
582 | integrity sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==
583 |
584 | eslint-plugin-react@^7.27.0:
585 | version "7.28.0"
586 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.28.0.tgz#8f3ff450677571a659ce76efc6d80b6a525adbdf"
587 | integrity sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==
588 | dependencies:
589 | array-includes "^3.1.4"
590 | array.prototype.flatmap "^1.2.5"
591 | doctrine "^2.1.0"
592 | estraverse "^5.3.0"
593 | jsx-ast-utils "^2.4.1 || ^3.0.0"
594 | minimatch "^3.0.4"
595 | object.entries "^1.1.5"
596 | object.fromentries "^2.0.5"
597 | object.hasown "^1.1.0"
598 | object.values "^1.1.5"
599 | prop-types "^15.7.2"
600 | resolve "^2.0.0-next.3"
601 | semver "^6.3.0"
602 | string.prototype.matchall "^4.0.6"
603 |
604 | eslint-scope@^7.1.1:
605 | version "7.1.1"
606 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642"
607 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==
608 | dependencies:
609 | esrecurse "^4.3.0"
610 | estraverse "^5.2.0"
611 |
612 | eslint-utils@^3.0.0:
613 | version "3.0.0"
614 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
615 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
616 | dependencies:
617 | eslint-visitor-keys "^2.0.0"
618 |
619 | eslint-visitor-keys@^2.0.0:
620 | version "2.1.0"
621 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
622 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
623 |
624 | eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0:
625 | version "3.3.0"
626 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
627 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
628 |
629 | eslint@8.9.0:
630 | version "8.9.0"
631 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.9.0.tgz#a2a8227a99599adc4342fd9b854cb8d8d6412fdb"
632 | integrity sha512-PB09IGwv4F4b0/atrbcMFboF/giawbBLVC7fyDamk5Wtey4Jh2K+rYaBhCAbUyEI4QzB1ly09Uglc9iCtFaG2Q==
633 | dependencies:
634 | "@eslint/eslintrc" "^1.1.0"
635 | "@humanwhocodes/config-array" "^0.9.2"
636 | ajv "^6.10.0"
637 | chalk "^4.0.0"
638 | cross-spawn "^7.0.2"
639 | debug "^4.3.2"
640 | doctrine "^3.0.0"
641 | escape-string-regexp "^4.0.0"
642 | eslint-scope "^7.1.1"
643 | eslint-utils "^3.0.0"
644 | eslint-visitor-keys "^3.3.0"
645 | espree "^9.3.1"
646 | esquery "^1.4.0"
647 | esutils "^2.0.2"
648 | fast-deep-equal "^3.1.3"
649 | file-entry-cache "^6.0.1"
650 | functional-red-black-tree "^1.0.1"
651 | glob-parent "^6.0.1"
652 | globals "^13.6.0"
653 | ignore "^5.2.0"
654 | import-fresh "^3.0.0"
655 | imurmurhash "^0.1.4"
656 | is-glob "^4.0.0"
657 | js-yaml "^4.1.0"
658 | json-stable-stringify-without-jsonify "^1.0.1"
659 | levn "^0.4.1"
660 | lodash.merge "^4.6.2"
661 | minimatch "^3.0.4"
662 | natural-compare "^1.4.0"
663 | optionator "^0.9.1"
664 | regexpp "^3.2.0"
665 | strip-ansi "^6.0.1"
666 | strip-json-comments "^3.1.0"
667 | text-table "^0.2.0"
668 | v8-compile-cache "^2.0.3"
669 |
670 | espree@^9.3.1:
671 | version "9.3.1"
672 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.1.tgz#8793b4bc27ea4c778c19908e0719e7b8f4115bcd"
673 | integrity sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==
674 | dependencies:
675 | acorn "^8.7.0"
676 | acorn-jsx "^5.3.1"
677 | eslint-visitor-keys "^3.3.0"
678 |
679 | esquery@^1.4.0:
680 | version "1.4.0"
681 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
682 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
683 | dependencies:
684 | estraverse "^5.1.0"
685 |
686 | esrecurse@^4.3.0:
687 | version "4.3.0"
688 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
689 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
690 | dependencies:
691 | estraverse "^5.2.0"
692 |
693 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
694 | version "5.3.0"
695 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
696 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
697 |
698 | esutils@^2.0.2:
699 | version "2.0.3"
700 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
701 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
702 |
703 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
704 | version "3.1.3"
705 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
706 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
707 |
708 | fast-glob@^3.2.9:
709 | version "3.2.11"
710 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9"
711 | integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==
712 | dependencies:
713 | "@nodelib/fs.stat" "^2.0.2"
714 | "@nodelib/fs.walk" "^1.2.3"
715 | glob-parent "^5.1.2"
716 | merge2 "^1.3.0"
717 | micromatch "^4.0.4"
718 |
719 | fast-json-stable-stringify@^2.0.0:
720 | version "2.1.0"
721 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
722 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
723 |
724 | fast-levenshtein@^2.0.6:
725 | version "2.0.6"
726 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
727 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
728 |
729 | fastq@^1.6.0:
730 | version "1.13.0"
731 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
732 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
733 | dependencies:
734 | reusify "^1.0.4"
735 |
736 | file-entry-cache@^6.0.1:
737 | version "6.0.1"
738 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
739 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
740 | dependencies:
741 | flat-cache "^3.0.4"
742 |
743 | fill-range@^7.0.1:
744 | version "7.0.1"
745 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
746 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
747 | dependencies:
748 | to-regex-range "^5.0.1"
749 |
750 | find-up@^2.1.0:
751 | version "2.1.0"
752 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
753 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
754 | dependencies:
755 | locate-path "^2.0.0"
756 |
757 | flat-cache@^3.0.4:
758 | version "3.0.4"
759 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
760 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
761 | dependencies:
762 | flatted "^3.1.0"
763 | rimraf "^3.0.2"
764 |
765 | flatted@^3.1.0:
766 | version "3.2.5"
767 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3"
768 | integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==
769 |
770 | fs.realpath@^1.0.0:
771 | version "1.0.0"
772 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
773 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
774 |
775 | function-bind@^1.1.1:
776 | version "1.1.1"
777 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
778 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
779 |
780 | functional-red-black-tree@^1.0.1:
781 | version "1.0.1"
782 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
783 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
784 |
785 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
786 | version "1.1.1"
787 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
788 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
789 | dependencies:
790 | function-bind "^1.1.1"
791 | has "^1.0.3"
792 | has-symbols "^1.0.1"
793 |
794 | get-symbol-description@^1.0.0:
795 | version "1.0.0"
796 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
797 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
798 | dependencies:
799 | call-bind "^1.0.2"
800 | get-intrinsic "^1.1.1"
801 |
802 | glob-parent@^5.1.2:
803 | version "5.1.2"
804 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
805 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
806 | dependencies:
807 | is-glob "^4.0.1"
808 |
809 | glob-parent@^6.0.1:
810 | version "6.0.2"
811 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
812 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
813 | dependencies:
814 | is-glob "^4.0.3"
815 |
816 | glob@7.1.7:
817 | version "7.1.7"
818 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
819 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
820 | dependencies:
821 | fs.realpath "^1.0.0"
822 | inflight "^1.0.4"
823 | inherits "2"
824 | minimatch "^3.0.4"
825 | once "^1.3.0"
826 | path-is-absolute "^1.0.0"
827 |
828 | glob@^7.1.3, glob@^7.1.7:
829 | version "7.2.0"
830 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
831 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
832 | dependencies:
833 | fs.realpath "^1.0.0"
834 | inflight "^1.0.4"
835 | inherits "2"
836 | minimatch "^3.0.4"
837 | once "^1.3.0"
838 | path-is-absolute "^1.0.0"
839 |
840 | globals@^13.6.0, globals@^13.9.0:
841 | version "13.12.1"
842 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.12.1.tgz#ec206be932e6c77236677127577aa8e50bf1c5cb"
843 | integrity sha512-317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw==
844 | dependencies:
845 | type-fest "^0.20.2"
846 |
847 | globby@^11.0.4:
848 | version "11.1.0"
849 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
850 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
851 | dependencies:
852 | array-union "^2.1.0"
853 | dir-glob "^3.0.1"
854 | fast-glob "^3.2.9"
855 | ignore "^5.2.0"
856 | merge2 "^1.4.1"
857 | slash "^3.0.0"
858 |
859 | has-bigints@^1.0.1:
860 | version "1.0.1"
861 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
862 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
863 |
864 | has-flag@^4.0.0:
865 | version "4.0.0"
866 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
867 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
868 |
869 | has-symbols@^1.0.1, has-symbols@^1.0.2:
870 | version "1.0.2"
871 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
872 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
873 |
874 | has-tostringtag@^1.0.0:
875 | version "1.0.0"
876 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
877 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
878 | dependencies:
879 | has-symbols "^1.0.2"
880 |
881 | has@^1.0.3:
882 | version "1.0.3"
883 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
884 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
885 | dependencies:
886 | function-bind "^1.1.1"
887 |
888 | ignore@^4.0.6:
889 | version "4.0.6"
890 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
891 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
892 |
893 | ignore@^5.2.0:
894 | version "5.2.0"
895 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
896 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
897 |
898 | import-fresh@^3.0.0, import-fresh@^3.2.1:
899 | version "3.3.0"
900 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
901 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
902 | dependencies:
903 | parent-module "^1.0.0"
904 | resolve-from "^4.0.0"
905 |
906 | imurmurhash@^0.1.4:
907 | version "0.1.4"
908 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
909 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
910 |
911 | inflight@^1.0.4:
912 | version "1.0.6"
913 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
914 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
915 | dependencies:
916 | once "^1.3.0"
917 | wrappy "1"
918 |
919 | inherits@2:
920 | version "2.0.4"
921 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
922 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
923 |
924 | internal-slot@^1.0.3:
925 | version "1.0.3"
926 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
927 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
928 | dependencies:
929 | get-intrinsic "^1.1.0"
930 | has "^1.0.3"
931 | side-channel "^1.0.4"
932 |
933 | is-bigint@^1.0.1:
934 | version "1.0.4"
935 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
936 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
937 | dependencies:
938 | has-bigints "^1.0.1"
939 |
940 | is-boolean-object@^1.1.0:
941 | version "1.1.2"
942 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
943 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
944 | dependencies:
945 | call-bind "^1.0.2"
946 | has-tostringtag "^1.0.0"
947 |
948 | is-callable@^1.1.4, is-callable@^1.2.4:
949 | version "1.2.4"
950 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"
951 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==
952 |
953 | is-core-module@^2.2.0, is-core-module@^2.8.0, is-core-module@^2.8.1:
954 | version "2.8.1"
955 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211"
956 | integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==
957 | dependencies:
958 | has "^1.0.3"
959 |
960 | is-date-object@^1.0.1:
961 | version "1.0.5"
962 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
963 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
964 | dependencies:
965 | has-tostringtag "^1.0.0"
966 |
967 | is-extglob@^2.1.1:
968 | version "2.1.1"
969 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
970 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
971 |
972 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3:
973 | version "4.0.3"
974 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
975 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
976 | dependencies:
977 | is-extglob "^2.1.1"
978 |
979 | is-negative-zero@^2.0.1:
980 | version "2.0.2"
981 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
982 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
983 |
984 | is-number-object@^1.0.4:
985 | version "1.0.6"
986 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz#6a7aaf838c7f0686a50b4553f7e54a96494e89f0"
987 | integrity sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==
988 | dependencies:
989 | has-tostringtag "^1.0.0"
990 |
991 | is-number@^7.0.0:
992 | version "7.0.0"
993 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
994 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
995 |
996 | is-regex@^1.1.4:
997 | version "1.1.4"
998 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
999 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
1000 | dependencies:
1001 | call-bind "^1.0.2"
1002 | has-tostringtag "^1.0.0"
1003 |
1004 | is-shared-array-buffer@^1.0.1:
1005 | version "1.0.1"
1006 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz#97b0c85fbdacb59c9c446fe653b82cf2b5b7cfe6"
1007 | integrity sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==
1008 |
1009 | is-string@^1.0.5, is-string@^1.0.7:
1010 | version "1.0.7"
1011 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
1012 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
1013 | dependencies:
1014 | has-tostringtag "^1.0.0"
1015 |
1016 | is-symbol@^1.0.2, is-symbol@^1.0.3:
1017 | version "1.0.4"
1018 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
1019 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
1020 | dependencies:
1021 | has-symbols "^1.0.2"
1022 |
1023 | is-weakref@^1.0.1:
1024 | version "1.0.2"
1025 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
1026 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
1027 | dependencies:
1028 | call-bind "^1.0.2"
1029 |
1030 | isexe@^2.0.0:
1031 | version "2.0.0"
1032 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1033 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
1034 |
1035 | "js-tokens@^3.0.0 || ^4.0.0":
1036 | version "4.0.0"
1037 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1038 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1039 |
1040 | js-yaml@^4.1.0:
1041 | version "4.1.0"
1042 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
1043 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
1044 | dependencies:
1045 | argparse "^2.0.1"
1046 |
1047 | json-schema-traverse@^0.4.1:
1048 | version "0.4.1"
1049 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
1050 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
1051 |
1052 | json-stable-stringify-without-jsonify@^1.0.1:
1053 | version "1.0.1"
1054 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
1055 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
1056 |
1057 | json5@^1.0.1:
1058 | version "1.0.1"
1059 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
1060 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
1061 | dependencies:
1062 | minimist "^1.2.0"
1063 |
1064 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.2.1:
1065 | version "3.2.1"
1066 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz#720b97bfe7d901b927d87c3773637ae8ea48781b"
1067 | integrity sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==
1068 | dependencies:
1069 | array-includes "^3.1.3"
1070 | object.assign "^4.1.2"
1071 |
1072 | language-subtag-registry@~0.3.2:
1073 | version "0.3.21"
1074 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a"
1075 | integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==
1076 |
1077 | language-tags@^1.0.5:
1078 | version "1.0.5"
1079 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
1080 | integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=
1081 | dependencies:
1082 | language-subtag-registry "~0.3.2"
1083 |
1084 | levn@^0.4.1:
1085 | version "0.4.1"
1086 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
1087 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
1088 | dependencies:
1089 | prelude-ls "^1.2.1"
1090 | type-check "~0.4.0"
1091 |
1092 | locate-path@^2.0.0:
1093 | version "2.0.0"
1094 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1095 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
1096 | dependencies:
1097 | p-locate "^2.0.0"
1098 | path-exists "^3.0.0"
1099 |
1100 | lodash.merge@^4.6.2:
1101 | version "4.6.2"
1102 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
1103 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
1104 |
1105 | loose-envify@^1.1.0, loose-envify@^1.4.0:
1106 | version "1.4.0"
1107 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1108 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
1109 | dependencies:
1110 | js-tokens "^3.0.0 || ^4.0.0"
1111 |
1112 | lru-cache@^6.0.0:
1113 | version "6.0.0"
1114 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
1115 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1116 | dependencies:
1117 | yallist "^4.0.0"
1118 |
1119 | merge2@^1.3.0, merge2@^1.4.1:
1120 | version "1.4.1"
1121 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
1122 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
1123 |
1124 | micromatch@^4.0.4:
1125 | version "4.0.4"
1126 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
1127 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
1128 | dependencies:
1129 | braces "^3.0.1"
1130 | picomatch "^2.2.3"
1131 |
1132 | minimatch@^3.0.4:
1133 | version "3.1.1"
1134 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.1.tgz#879ad447200773912898b46cd516a7abbb5e50b0"
1135 | integrity sha512-reLxBcKUPNBnc/sVtAbxgRVFSegoGeLaSjmphNhcwcolhYLRgtJscn5mRl6YRZNQv40Y7P6JM2YhSIsbL9OB5A==
1136 | dependencies:
1137 | brace-expansion "^1.1.7"
1138 |
1139 | minimist@^1.2.0:
1140 | version "1.2.5"
1141 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
1142 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
1143 |
1144 | ms@2.0.0:
1145 | version "2.0.0"
1146 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1147 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
1148 |
1149 | ms@2.1.2:
1150 | version "2.1.2"
1151 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1152 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1153 |
1154 | ms@^2.1.1:
1155 | version "2.1.3"
1156 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
1157 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
1158 |
1159 | nanoid@^3.1.30:
1160 | version "3.3.0"
1161 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.0.tgz#5906f776fd886c66c24f3653e0c46fcb1d4ad6b0"
1162 | integrity sha512-JzxqqT5u/x+/KOFSd7JP15DOo9nOoHpx6DYatqIHUW2+flybkm+mdcraotSQR5WcnZr+qhGVh8Ted0KdfSMxlg==
1163 |
1164 | natural-compare@^1.4.0:
1165 | version "1.4.0"
1166 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1167 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
1168 |
1169 | next@12.0.10:
1170 | version "12.0.10"
1171 | resolved "https://registry.yarnpkg.com/next/-/next-12.0.10.tgz#fcc4584177418bd777ce157f3165b7ba5e7708f7"
1172 | integrity sha512-1y3PpGzpb/EZzz1jgne+JfZXKAVJUjYXwxzrADf/LWN+8yi9o79vMLXpW3mevvCHkEF2sBnIdjzNn16TJrINUw==
1173 | dependencies:
1174 | "@next/env" "12.0.10"
1175 | caniuse-lite "^1.0.30001283"
1176 | postcss "8.4.5"
1177 | styled-jsx "5.0.0"
1178 | use-subscription "1.5.1"
1179 | optionalDependencies:
1180 | "@next/swc-android-arm64" "12.0.10"
1181 | "@next/swc-darwin-arm64" "12.0.10"
1182 | "@next/swc-darwin-x64" "12.0.10"
1183 | "@next/swc-linux-arm-gnueabihf" "12.0.10"
1184 | "@next/swc-linux-arm64-gnu" "12.0.10"
1185 | "@next/swc-linux-arm64-musl" "12.0.10"
1186 | "@next/swc-linux-x64-gnu" "12.0.10"
1187 | "@next/swc-linux-x64-musl" "12.0.10"
1188 | "@next/swc-win32-arm64-msvc" "12.0.10"
1189 | "@next/swc-win32-ia32-msvc" "12.0.10"
1190 | "@next/swc-win32-x64-msvc" "12.0.10"
1191 |
1192 | object-assign@^4.1.1:
1193 | version "4.1.1"
1194 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1195 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
1196 |
1197 | object-inspect@^1.11.0, object-inspect@^1.9.0:
1198 | version "1.12.0"
1199 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0"
1200 | integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==
1201 |
1202 | object-keys@^1.0.12, object-keys@^1.1.1:
1203 | version "1.1.1"
1204 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
1205 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
1206 |
1207 | object.assign@^4.1.2:
1208 | version "4.1.2"
1209 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
1210 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
1211 | dependencies:
1212 | call-bind "^1.0.0"
1213 | define-properties "^1.1.3"
1214 | has-symbols "^1.0.1"
1215 | object-keys "^1.1.1"
1216 |
1217 | object.entries@^1.1.5:
1218 | version "1.1.5"
1219 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861"
1220 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==
1221 | dependencies:
1222 | call-bind "^1.0.2"
1223 | define-properties "^1.1.3"
1224 | es-abstract "^1.19.1"
1225 |
1226 | object.fromentries@^2.0.5:
1227 | version "2.0.5"
1228 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251"
1229 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==
1230 | dependencies:
1231 | call-bind "^1.0.2"
1232 | define-properties "^1.1.3"
1233 | es-abstract "^1.19.1"
1234 |
1235 | object.hasown@^1.1.0:
1236 | version "1.1.0"
1237 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.0.tgz#7232ed266f34d197d15cac5880232f7a4790afe5"
1238 | integrity sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==
1239 | dependencies:
1240 | define-properties "^1.1.3"
1241 | es-abstract "^1.19.1"
1242 |
1243 | object.values@^1.1.5:
1244 | version "1.1.5"
1245 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac"
1246 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==
1247 | dependencies:
1248 | call-bind "^1.0.2"
1249 | define-properties "^1.1.3"
1250 | es-abstract "^1.19.1"
1251 |
1252 | once@^1.3.0:
1253 | version "1.4.0"
1254 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1255 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
1256 | dependencies:
1257 | wrappy "1"
1258 |
1259 | optionator@^0.9.1:
1260 | version "0.9.1"
1261 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
1262 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
1263 | dependencies:
1264 | deep-is "^0.1.3"
1265 | fast-levenshtein "^2.0.6"
1266 | levn "^0.4.1"
1267 | prelude-ls "^1.2.1"
1268 | type-check "^0.4.0"
1269 | word-wrap "^1.2.3"
1270 |
1271 | p-limit@^1.1.0:
1272 | version "1.3.0"
1273 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
1274 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
1275 | dependencies:
1276 | p-try "^1.0.0"
1277 |
1278 | p-locate@^2.0.0:
1279 | version "2.0.0"
1280 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
1281 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
1282 | dependencies:
1283 | p-limit "^1.1.0"
1284 |
1285 | p-try@^1.0.0:
1286 | version "1.0.0"
1287 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
1288 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
1289 |
1290 | parent-module@^1.0.0:
1291 | version "1.0.1"
1292 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
1293 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
1294 | dependencies:
1295 | callsites "^3.0.0"
1296 |
1297 | path-exists@^3.0.0:
1298 | version "3.0.0"
1299 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1300 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
1301 |
1302 | path-is-absolute@^1.0.0:
1303 | version "1.0.1"
1304 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1305 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
1306 |
1307 | path-key@^3.1.0:
1308 | version "3.1.1"
1309 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
1310 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
1311 |
1312 | path-parse@^1.0.6, path-parse@^1.0.7:
1313 | version "1.0.7"
1314 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
1315 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1316 |
1317 | path-type@^4.0.0:
1318 | version "4.0.0"
1319 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
1320 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
1321 |
1322 | picocolors@^1.0.0:
1323 | version "1.0.0"
1324 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
1325 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
1326 |
1327 | picomatch@^2.2.3:
1328 | version "2.3.1"
1329 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
1330 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
1331 |
1332 | postcss@8.4.5:
1333 | version "8.4.5"
1334 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95"
1335 | integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==
1336 | dependencies:
1337 | nanoid "^3.1.30"
1338 | picocolors "^1.0.0"
1339 | source-map-js "^1.0.1"
1340 |
1341 | prelude-ls@^1.2.1:
1342 | version "1.2.1"
1343 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
1344 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
1345 |
1346 | prop-types@^15.7.2:
1347 | version "15.8.1"
1348 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
1349 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
1350 | dependencies:
1351 | loose-envify "^1.4.0"
1352 | object-assign "^4.1.1"
1353 | react-is "^16.13.1"
1354 |
1355 | punycode@^2.1.0:
1356 | version "2.1.1"
1357 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
1358 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
1359 |
1360 | queue-microtask@^1.2.2:
1361 | version "1.2.3"
1362 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
1363 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
1364 |
1365 | react-dom@17.0.2:
1366 | version "17.0.2"
1367 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23"
1368 | integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==
1369 | dependencies:
1370 | loose-envify "^1.1.0"
1371 | object-assign "^4.1.1"
1372 | scheduler "^0.20.2"
1373 |
1374 | react-is@^16.13.1:
1375 | version "16.13.1"
1376 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
1377 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
1378 |
1379 | react@17.0.2:
1380 | version "17.0.2"
1381 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037"
1382 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==
1383 | dependencies:
1384 | loose-envify "^1.1.0"
1385 | object-assign "^4.1.1"
1386 |
1387 | regenerator-runtime@^0.13.4:
1388 | version "0.13.9"
1389 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
1390 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
1391 |
1392 | regexp.prototype.flags@^1.3.1:
1393 | version "1.4.1"
1394 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz#b3f4c0059af9e47eca9f3f660e51d81307e72307"
1395 | integrity sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ==
1396 | dependencies:
1397 | call-bind "^1.0.2"
1398 | define-properties "^1.1.3"
1399 |
1400 | regexpp@^3.2.0:
1401 | version "3.2.0"
1402 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
1403 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
1404 |
1405 | resolve-from@^4.0.0:
1406 | version "4.0.0"
1407 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
1408 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
1409 |
1410 | resolve@^1.20.0:
1411 | version "1.22.0"
1412 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198"
1413 | integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==
1414 | dependencies:
1415 | is-core-module "^2.8.1"
1416 | path-parse "^1.0.7"
1417 | supports-preserve-symlinks-flag "^1.0.0"
1418 |
1419 | resolve@^2.0.0-next.3:
1420 | version "2.0.0-next.3"
1421 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
1422 | integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==
1423 | dependencies:
1424 | is-core-module "^2.2.0"
1425 | path-parse "^1.0.6"
1426 |
1427 | reusify@^1.0.4:
1428 | version "1.0.4"
1429 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
1430 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
1431 |
1432 | rimraf@^3.0.2:
1433 | version "3.0.2"
1434 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
1435 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
1436 | dependencies:
1437 | glob "^7.1.3"
1438 |
1439 | run-parallel@^1.1.9:
1440 | version "1.2.0"
1441 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
1442 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
1443 | dependencies:
1444 | queue-microtask "^1.2.2"
1445 |
1446 | scheduler@^0.20.2:
1447 | version "0.20.2"
1448 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91"
1449 | integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==
1450 | dependencies:
1451 | loose-envify "^1.1.0"
1452 | object-assign "^4.1.1"
1453 |
1454 | semver@^6.3.0:
1455 | version "6.3.0"
1456 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
1457 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
1458 |
1459 | semver@^7.3.5:
1460 | version "7.3.5"
1461 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
1462 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
1463 | dependencies:
1464 | lru-cache "^6.0.0"
1465 |
1466 | shebang-command@^2.0.0:
1467 | version "2.0.0"
1468 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
1469 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
1470 | dependencies:
1471 | shebang-regex "^3.0.0"
1472 |
1473 | shebang-regex@^3.0.0:
1474 | version "3.0.0"
1475 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
1476 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
1477 |
1478 | side-channel@^1.0.4:
1479 | version "1.0.4"
1480 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
1481 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
1482 | dependencies:
1483 | call-bind "^1.0.0"
1484 | get-intrinsic "^1.0.2"
1485 | object-inspect "^1.9.0"
1486 |
1487 | slash@^3.0.0:
1488 | version "3.0.0"
1489 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
1490 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
1491 |
1492 | source-map-js@^1.0.1:
1493 | version "1.0.2"
1494 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
1495 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
1496 |
1497 | string.prototype.matchall@^4.0.6:
1498 | version "4.0.6"
1499 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz#5abb5dabc94c7b0ea2380f65ba610b3a544b15fa"
1500 | integrity sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==
1501 | dependencies:
1502 | call-bind "^1.0.2"
1503 | define-properties "^1.1.3"
1504 | es-abstract "^1.19.1"
1505 | get-intrinsic "^1.1.1"
1506 | has-symbols "^1.0.2"
1507 | internal-slot "^1.0.3"
1508 | regexp.prototype.flags "^1.3.1"
1509 | side-channel "^1.0.4"
1510 |
1511 | string.prototype.trimend@^1.0.4:
1512 | version "1.0.4"
1513 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
1514 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
1515 | dependencies:
1516 | call-bind "^1.0.2"
1517 | define-properties "^1.1.3"
1518 |
1519 | string.prototype.trimstart@^1.0.4:
1520 | version "1.0.4"
1521 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
1522 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
1523 | dependencies:
1524 | call-bind "^1.0.2"
1525 | define-properties "^1.1.3"
1526 |
1527 | strip-ansi@^6.0.1:
1528 | version "6.0.1"
1529 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
1530 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
1531 | dependencies:
1532 | ansi-regex "^5.0.1"
1533 |
1534 | strip-bom@^3.0.0:
1535 | version "3.0.0"
1536 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
1537 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
1538 |
1539 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
1540 | version "3.1.1"
1541 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
1542 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
1543 |
1544 | styled-jsx@5.0.0:
1545 | version "5.0.0"
1546 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.0.tgz#816b4b92e07b1786c6b7111821750e0ba4d26e77"
1547 | integrity sha512-qUqsWoBquEdERe10EW8vLp3jT25s/ssG1/qX5gZ4wu15OZpmSMFI2v+fWlRhLfykA5rFtlJ1ME8A8pm/peV4WA==
1548 |
1549 | supports-color@^7.1.0:
1550 | version "7.2.0"
1551 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
1552 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
1553 | dependencies:
1554 | has-flag "^4.0.0"
1555 |
1556 | supports-preserve-symlinks-flag@^1.0.0:
1557 | version "1.0.0"
1558 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
1559 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
1560 |
1561 | text-table@^0.2.0:
1562 | version "0.2.0"
1563 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
1564 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
1565 |
1566 | to-regex-range@^5.0.1:
1567 | version "5.0.1"
1568 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
1569 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
1570 | dependencies:
1571 | is-number "^7.0.0"
1572 |
1573 | tsconfig-paths@^3.12.0, tsconfig-paths@^3.9.0:
1574 | version "3.12.0"
1575 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.12.0.tgz#19769aca6ee8f6a1a341e38c8fa45dd9fb18899b"
1576 | integrity sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==
1577 | dependencies:
1578 | "@types/json5" "^0.0.29"
1579 | json5 "^1.0.1"
1580 | minimist "^1.2.0"
1581 | strip-bom "^3.0.0"
1582 |
1583 | tslib@^1.8.1:
1584 | version "1.14.1"
1585 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
1586 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
1587 |
1588 | tsutils@^3.21.0:
1589 | version "3.21.0"
1590 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
1591 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
1592 | dependencies:
1593 | tslib "^1.8.1"
1594 |
1595 | type-check@^0.4.0, type-check@~0.4.0:
1596 | version "0.4.0"
1597 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
1598 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
1599 | dependencies:
1600 | prelude-ls "^1.2.1"
1601 |
1602 | type-fest@^0.20.2:
1603 | version "0.20.2"
1604 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
1605 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
1606 |
1607 | typescript@^4.5.5:
1608 | version "4.5.5"
1609 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.5.5.tgz#d8c953832d28924a9e3d37c73d729c846c5896f3"
1610 | integrity sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==
1611 |
1612 | unbox-primitive@^1.0.1:
1613 | version "1.0.1"
1614 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
1615 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
1616 | dependencies:
1617 | function-bind "^1.1.1"
1618 | has-bigints "^1.0.1"
1619 | has-symbols "^1.0.2"
1620 | which-boxed-primitive "^1.0.2"
1621 |
1622 | uri-js@^4.2.2:
1623 | version "4.4.1"
1624 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
1625 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
1626 | dependencies:
1627 | punycode "^2.1.0"
1628 |
1629 | use-subscription@1.5.1:
1630 | version "1.5.1"
1631 | resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.5.1.tgz#73501107f02fad84c6dd57965beb0b75c68c42d1"
1632 | integrity sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==
1633 | dependencies:
1634 | object-assign "^4.1.1"
1635 |
1636 | v8-compile-cache@^2.0.3:
1637 | version "2.3.0"
1638 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
1639 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
1640 |
1641 | which-boxed-primitive@^1.0.2:
1642 | version "1.0.2"
1643 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
1644 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
1645 | dependencies:
1646 | is-bigint "^1.0.1"
1647 | is-boolean-object "^1.1.0"
1648 | is-number-object "^1.0.4"
1649 | is-string "^1.0.5"
1650 | is-symbol "^1.0.3"
1651 |
1652 | which@^2.0.1:
1653 | version "2.0.2"
1654 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
1655 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
1656 | dependencies:
1657 | isexe "^2.0.0"
1658 |
1659 | word-wrap@^1.2.3:
1660 | version "1.2.3"
1661 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
1662 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
1663 |
1664 | wrappy@1:
1665 | version "1.0.2"
1666 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1667 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
1668 |
1669 | yallist@^4.0.0:
1670 | version "4.0.0"
1671 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
1672 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
1673 |
--------------------------------------------------------------------------------