├── .eslintrc.json ├── .gitignore ├── .husky └── pre-commit ├── .vscode └── settings.json ├── README.md ├── app ├── FiraCode-Bold.woff2 ├── FiraCode-Medium.woff2 ├── head.tsx ├── information │ ├── characters │ │ ├── models │ │ │ ├── character.model.ts │ │ │ └── index.ts │ │ ├── page.tsx │ │ └── services │ │ │ ├── characters.service.ts │ │ │ └── index.ts │ ├── information-layout.module.scss │ ├── layout.tsx │ └── locations │ │ ├── models │ │ ├── index.ts │ │ └── locations.model.ts │ │ ├── page.tsx │ │ └── services │ │ ├── index.ts │ │ └── locations.service.ts ├── layout.tsx ├── lib │ └── registry.tsx ├── login │ └── page.tsx ├── models │ ├── firacode.font.ts │ ├── index.ts │ └── mustachy.blur.ts ├── page.tsx └── tailwind-global.scss ├── components ├── Card │ ├── Card.module.css │ └── Card.tsx ├── Navigator │ └── Navigator.tsx └── index.ts ├── middleware.ts ├── models ├── index.ts └── routes.model.ts ├── next.config.js ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── favicon.ico ├── images │ └── mustachy_.png └── vercel.svg ├── styles ├── Home.module.css └── globals.css ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "airbnb-typescript/base", 4 | "next/core-web-vitals", 5 | "plugin:prettier/recommended" 6 | ], 7 | "parser": "@typescript-eslint/parser", 8 | "plugins": ["react", "@typescript-eslint", "prettier"], 9 | "parserOptions": { 10 | "ecmaVersion": "latest", 11 | "sourceType": "module", 12 | "project": "./tsconfig.json" 13 | }, 14 | "rules": { 15 | "max-len": ["error", 140], 16 | "quotes": [2, "double", { "avoidEscape": true }], 17 | "prettier/prettier": [ 18 | "error", 19 | { 20 | "endOfLine": "auto" 21 | } 22 | ] 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /.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 | .pnpm-debug.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | exec >/dev/tty 2>&1 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "typescript.tsdk": "node_modules\\.pnpm\\typescript@4.9.4\\node_modules\\typescript\\lib", 3 | "typescript.enablePromptUseWorkspaceTsdk": true 4 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). 2 | 3 | ## Getting Started 4 | 5 | First, run the development server: 6 | 7 | ```bash 8 | npm run dev 9 | # or 10 | yarn dev 11 | ``` 12 | 13 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 14 | 15 | You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file. 16 | 17 | [API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`. 18 | 19 | The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. 20 | 21 | ## Learn More 22 | 23 | To learn more about Next.js, take a look at the following resources: 24 | 25 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 26 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. 27 | 28 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! 29 | 30 | ## Deploy on Vercel 31 | 32 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. 33 | 34 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. 35 | -------------------------------------------------------------------------------- /app/FiraCode-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gentleman-Programming/GentlemanClass-NextJs13/302c7d81f791a9e014bf95e07159a13144caf49d/app/FiraCode-Bold.woff2 -------------------------------------------------------------------------------- /app/FiraCode-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gentleman-Programming/GentlemanClass-NextJs13/302c7d81f791a9e014bf95e07159a13144caf49d/app/FiraCode-Medium.woff2 -------------------------------------------------------------------------------- /app/head.tsx: -------------------------------------------------------------------------------- 1 | export default function Head() { 2 | return ( 3 | <> 4 | 5 | <meta content="width=device-width, initial-scale=1" name="viewport" /> 6 | <link rel="icon" href="/favicon.ico" /> 7 | </> 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /app/information/characters/models/character.model.ts: -------------------------------------------------------------------------------- 1 | export interface Character { 2 | id: number; 3 | name: string; 4 | status: string; 5 | species: string; 6 | type: string; 7 | gender: string; 8 | origin: Origin; 9 | location: Origin; 10 | image: string; 11 | episode: string[]; 12 | url: string; 13 | created: string; 14 | } 15 | 16 | export interface Origin { 17 | name: string; 18 | url: string; 19 | } 20 | -------------------------------------------------------------------------------- /app/information/characters/models/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./character.model"; 2 | -------------------------------------------------------------------------------- /app/information/characters/page.tsx: -------------------------------------------------------------------------------- 1 | import { Card, Navigator } from "../../../components"; 2 | import { Routes } from "../../../models"; 3 | import { getCharacters } from "./services"; 4 | 5 | async function fetchCharacters() { 6 | return getCharacters(); 7 | } 8 | 9 | async function Characters() { 10 | const characters = await fetchCharacters(); 11 | return ( 12 | <> 13 | <Navigator pathNames={[Routes.HOME, Routes.LOCATIONS]} /> 14 | {characters.map((character) => ( 15 | <Card key={character.id} data={character} /> 16 | ))} 17 | </> 18 | ); 19 | } 20 | export default Characters; 21 | -------------------------------------------------------------------------------- /app/information/characters/services/characters.service.ts: -------------------------------------------------------------------------------- 1 | import { Character } from "../models"; 2 | 3 | export const getCharacters = (): Promise<Character[]> => { 4 | const url = "https://rickandmortyapi.com/api/character"; 5 | return fetch(url) 6 | .then((response) => response.json()) 7 | .then((data) => data.results); 8 | }; 9 | -------------------------------------------------------------------------------- /app/information/characters/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./characters.service"; 2 | -------------------------------------------------------------------------------- /app/information/information-layout.module.scss: -------------------------------------------------------------------------------- 1 | .informationLayout { 2 | display: flex; 3 | flex-direction: row; 4 | flex-wrap: wrap; 5 | justify-content: center; 6 | align-items: center; 7 | gap: 15px; 8 | } 9 | 10 | -------------------------------------------------------------------------------- /app/information/layout.tsx: -------------------------------------------------------------------------------- 1 | import { firacode } from "../models"; 2 | import cardLayoutStyles from "./information-layout.module.scss"; 3 | 4 | function CardLayout({ children }: { children: React.ReactNode }) { 5 | return ( 6 | <div 7 | className={`${firacode.className} ${cardLayoutStyles.informationLayout}`} 8 | > 9 | {children} 10 | </div> 11 | ); 12 | } 13 | export default CardLayout; 14 | -------------------------------------------------------------------------------- /app/information/locations/models/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./locations.model"; 2 | -------------------------------------------------------------------------------- /app/information/locations/models/locations.model.ts: -------------------------------------------------------------------------------- 1 | export interface Location { 2 | id: number; 3 | name: string; 4 | type: string; 5 | dimension: string; 6 | residents: string[]; 7 | url: string; 8 | created: string; 9 | } 10 | -------------------------------------------------------------------------------- /app/information/locations/page.tsx: -------------------------------------------------------------------------------- 1 | import { Card, Navigator } from "../../../components"; 2 | import { Routes } from "../../../models"; 3 | import { getLocations } from "./services"; 4 | 5 | async function fetchLocations() { 6 | return getLocations(); 7 | } 8 | 9 | async function Locations() { 10 | const locations = await fetchLocations(); 11 | return ( 12 | <> 13 | <Navigator pathNames={[Routes.HOME, Routes.CHARACTERS]} /> 14 | {locations.map((location) => ( 15 | <Card key={location.id} data={location} /> 16 | ))} 17 | </> 18 | ); 19 | } 20 | export default Locations; 21 | -------------------------------------------------------------------------------- /app/information/locations/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./locations.service"; 2 | -------------------------------------------------------------------------------- /app/information/locations/services/locations.service.ts: -------------------------------------------------------------------------------- 1 | import { Location } from "../models"; 2 | 3 | export const getLocations = (): Promise<Location[]> => { 4 | const url = "https://rickandmortyapi.com/api/location"; 5 | return fetch(url) 6 | .then((response) => response.json()) 7 | .then((data) => data.results); 8 | }; 9 | -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- 1 | import { Roboto } from "@next/font/google"; 2 | import StyledComponentsRegistry from "./lib/registry"; 3 | import "./tailwind-global.scss"; 4 | 5 | const roboto = Roboto({ 6 | weight: ["400", "700"], 7 | style: ["italic", "normal"], 8 | subsets: ["latin"], 9 | variable: "--font-roboto", 10 | display: "optional", 11 | }); 12 | 13 | export default function RootLayout({ 14 | children, 15 | }: { 16 | children: React.ReactNode; 17 | }) { 18 | return ( 19 | <html lang="es"> 20 | <head lang="es" className={roboto.className} /> 21 | <body> 22 | <StyledComponentsRegistry>{children}</StyledComponentsRegistry> 23 | </body> 24 | </html> 25 | ); 26 | } 27 | -------------------------------------------------------------------------------- /app/lib/registry.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | import React, { useState } from "react"; 4 | import { useServerInsertedHTML } from "next/navigation"; 5 | import { ServerStyleSheet, StyleSheetManager } from "styled-components"; 6 | 7 | export default function StyledComponentsRegistry({ 8 | children, 9 | }: { 10 | children: React.ReactNode; 11 | }) { 12 | // Only create stylesheet once with lazy initial state 13 | // x-ref: https://reactjs.org/docs/hooks-reference.html#lazy-initial-state 14 | const [styledComponentsStyleSheet] = useState(() => new ServerStyleSheet()); 15 | 16 | useServerInsertedHTML(() => { 17 | const styles = styledComponentsStyleSheet.getStyleElement(); 18 | styledComponentsStyleSheet.instance.clearTag(); 19 | return <>{styles}</>; 20 | }); 21 | 22 | if (typeof window !== "undefined") return <>{children}</>; 23 | 24 | return ( 25 | <StyleSheetManager sheet={styledComponentsStyleSheet.instance}> 26 | {children} 27 | </StyleSheetManager> 28 | ); 29 | } 30 | -------------------------------------------------------------------------------- /app/login/page.tsx: -------------------------------------------------------------------------------- 1 | function Login() { 2 | return <div>Esto es un login</div>; 3 | } 4 | export default Login; 5 | -------------------------------------------------------------------------------- /app/models/firacode.font.ts: -------------------------------------------------------------------------------- 1 | import localFont from "@next/font/local"; 2 | 3 | export const firacode = localFont({ 4 | src: [ 5 | { 6 | path: "../FiraCode-Medium.woff2", 7 | weight: "400", 8 | style: "normal", 9 | }, 10 | { 11 | path: "../FiraCode-Bold.woff2", 12 | weight: "700", 13 | style: "normal", 14 | }, 15 | ], 16 | }); 17 | 18 | export default firacode; 19 | -------------------------------------------------------------------------------- /app/models/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./firacode.font"; 2 | export * from "./mustachy.blur"; 3 | -------------------------------------------------------------------------------- /app/models/mustachy.blur.ts: -------------------------------------------------------------------------------- 1 | export const mustachyBlur = 2 | // eslint-disable-next-line max-len 3 | "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gIoSUNDX1BST0ZJTEUAAQEAAAIYAAAAAAQwAABtbnRyUkdCIFhZWiAAAAAAAAAAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAAHRyWFlaAAABZAAAABRnWFlaAAABeAAAABRiWFlaAAABjAAAABRyVFJDAAABoAAAAChnVFJDAAABoAAAAChiVFJDAAABoAAAACh3dHB0AAAByAAAABRjcHJ0AAAB3AAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAFgAAAAcAHMAUgBHAEIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAAOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAAGNpYWVogAAAAAAAAJKAAAA+EAAC2z3BhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABYWVogAAAAAAAA9tYAAQAAAADTLW1sdWMAAAAAAAAAAQAAAAxlblVTAAAAIAAAABwARwBvAG8AZwBsAGUAIABJAG4AYwAuACAAMgAwADEANv/bAEMAFA4PEg8NFBIQEhcVFBgeMiEeHBwePSwuJDJJQExLR0BGRVBac2JQVW1WRUZkiGVtd3uBgoFOYI2XjH2Wc36BfP/bAEMBFRcXHhoeOyEhO3xTRlN8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fP/AABEIAuMC4wMBIgACEQEDEQH/xAAZAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAX/xAAYEAEBAQEBAAAAAAAAAAAAAAAAEQESAv/EABgBAQEBAQEAAAAAAAAAAAAAAAABAgME/8QAFREBAQAAAAAAAAAAAAAAAAAAABH/2gAMAwEAAhEDEQA/APlAK9QAAigiAKAACKgAAiAAIoIgAAAgAAAqAAgACgCKAAqKIoAKACgoCooCooCgKoCCgAKigACigAAAAKAAAAACoAoIoCAAgAqCoCCoAioAioKIqKAACKgAAAAIAw0ACACiAIACgioIAAIqAACCKgAAgAAAqAAigAACKACgAoKIKigKACgCgAoKKAqAACgAKAoAAKAigKgoCCoAAoIqCgAIAAioKIqAIqAIqAIoKgCiAAAAgqAAAgDCgAAACKAgACKCIAoIoCACAAIKCICiIKAAKgACgCCgAoAKAigoAKAqKAoCiioAACgAoAAoqKAAAAoKgAAACKAgqKqCgIigIACACoACAAgqAgqCiKKIAAAAACAMKgAAAAAIKggACCooACCKAgqCAAAAgAACiACgoCCooCgAoAKKACgCgCgAooIooAKgigKCgAAAKCCgqCgIACCgIKiqgqAIoCIoCIoKiKAiKAiKAiKAgAoigIKKIKAyAwAACKAgAAAIKgAAgiiiAAACCKAIoIAAAoiKCgoCCgAoAKKACgKACigAoAKAKIAKqgKgigACggoKgoCCgIKgCKCoKgIKigigIigIigIioKIoCIoCIoCAAgqAAAACsgMgAAAAigIKgAAiCgIAAigiCiiCgiCgIoCAKAAAoqoigAooAKAoAKKACgKACigiiioooIKACiCKAoAAKAgAIKAgoKyKAiKKIigIigIigIioCCgrIqAIoCIoCCoAigIKAyAwoigiCgIAoAAgqAAAACIKAgqKAoIgoCKAgCgAoAKICigKAKKCKKAooIooAKKCgCgAKACgAKKgoCCiCCgIKAgoCIoKiNICI0gIKiiCogiNICIooyKgIKgIKgoigIAAAAADADAAAAAIoCCoAAqCKAgoCAAACACgKAACAoAKAKAgoqgCgKACiigKAooIooAoAKACgoKAgoAKAgoCCgIKAiNIioKAyKAyKAyKAyKgIKgIjSAiKAiKAyKAiKAgAIKAgoowAwAAIKAgAAACKAgqAAKgAAAACggoqAACgAoAKKACqCgAooCigiigKKCKKAKCgoAKAiqAgoAKAgoCCgIKIrIoCI0gIKgIKgIjSAiNICIoDIqAiNICIoDIoCIoCAAgoCCgOYDIAAAAAAgoIgqAAAAAAKAAgAAKKAKACgAoAKAooAKoKKACgKKAoCiigiqACgAoCKKCCgIqgIKAgoKiKAgogyKAiKAiKAiKAyKgIjSAyKgIjSAiKAiKAiKAgAIKAgoDkKMIgoCCiiAAAAAAIoCCgIKKiKAAACgAKKAKACgKKACgKKoCgCiiiigCgCigiigiqACgIooIKCooAAAIoCCgIjSAgogyKAyKgIjSAiKAyjSAiKCMioCI0gIigIigIACCgIKA5AMAAAAAAIIoCAqiAAAACgIKKAACgAoKCgAoAoKAoqgoAKKKKKAoAKKAooIooIooqKKCKKCCgIKAgoCCgIKAiKAiNICI0iCI0gMioCI0gIigjKNICIqAiNICIoCIoggAIKAgoDkijKIKAgoCAAAAAKAAAAAAAKoAAKACgoKACigKACigKKqiigKigKKAooAKKKACigigAKAAoIKAgoCCgIKgIKAiKIMigMioCI0gMioIiNIDKNICIqAiNIgiKAiKgCKCIKgAAOQDAAKAAgACCgIKAgoogoCKAACgoCgoAoKCgCgoCigKCqKKAooCigKAKCiiigAoAoAKACgIoACgIKAgqAgoCIoCCogiNICIoDKNICIoIyjSAyKgIiogiNICIqCIKAiKAgAAAOIDCAAACgAAAAAAAAAoAAoAAKqgKAqKAoqgCgKKKKKoKigqooKCiiigKAKCgKACigigKKAAKCCgIKAgoCI0gIKgiCoCCogiNICIqAiKCMo0gIioCIqIIigIioIgqAgqAAAAA4AMMgAAAAAoAoAAAACigAACgAKKCiiooCgooKAooooqgqNAKiiqoAoKAooCgAoooCgCgAKCKAAAAACKAgqAIoDIoIiKiCI0gIioCIoIyjSAiKiCIqAiKCIioCAAgAIKIIKA4AMsgAAgAAAKgACgKCgAACigAKCgoCqCgKiqCiiiigKKoKKKKKAqKCqigoKAoooCgKAAoAKAAACgIAAACCgIigIigiIqIIjSAiKgIigjKKAyjSIMo0gIioIiKAiKiAigIAIAA4AMoAAAAIoCKAACgAAAKoCgCgAqgCiiooKCqooAqooKqKoqooqqigqooKqKKKKAooAKAoAKAAKAAACggAAAIKAiKAiKAyKiIiKAyKgIioCIqCIiogiLqCIKgIioCAIIKggioAADgAygAAAAAAAAAoAAAoACqKACgqigCgoCoqqqooKqKCqiqqqigqooKqKKqooCigKAKCgAooCgAoIoAAAACCKAgqAIqAgqAiNIgiKgiIoDKNIDIqCIiogiLqCIioCIqAIqICKggAAADzgMoAAAAAAAAAKAAKAAAqqACgKqgoCooKqKqiigYoCqqYqiqKAoooooCigKigoKKKCigAoAKAACgAIAAIKgCKCIACIoCIqAgqIiIqAiKgIi6giIqIIi6giIqAIqIIAIiKAgAAAPOAygAAAAAAAAAoAAoAoqKoAAoCqqooKAqqqKCqigqoqqqooKqKKqooKqKCqigoKqiooKACqigKigAoIoIAAAAAAIAAioIIqAgAIioiIioCIqaCIqCIiogiKgIKgiIqIIAIgAIAAADzgMoAAAgKIoAAACgACgCioKKAKqoqgqKCgCqqKoqooqqiqKqKCriKKqpigqooKqKqqqKAoAqooCooKIoCooAAAKCAIAACKgCKgCKgiAAiKiCIqCImqAymqmiImqmoIipoCAIiKiCAAgAiAAAA86AygAAAAACiKAAAAqqIoACigCqqCiqiiqAoqooqriKCqiqKqKKqouAqooKqKqqqKCqigoAKqKAqKAoAKigAAAAAAAICAAioAioCACIiogiKgiIqAiLqAiaqIiJqoCAggioggIACCAAAAPMAygAAAAAAACiKqgACoAoCqoAKAqqqKAqKoqooqqiguKiqqqigqooKqKKqoqiqigqooKIoKqKKKigKigKgCgAAAAAAIiAAIAIACAggioCIqagmoqCJqKgJqKiIiLqAiKgICCCKiAioIAACAPOAygAAAAAKAAAKKIoAAqiKoKigoiqqgAqoqqqooKqCq0rOKDS4zig0qKKqoA0qKoqsqDQiiqqKCiKCqgCgAoACoAogCggACACCAIAioAioCIqCCCICaAiIJoCBqCIIIIqAiKgggIIAAIAACPOgMgAAqAKIAogCgKAAqiKoKgCqgKqoqgqKKqoKKqKKqoqiqigqooqqigqoqiqigqooqqigoigqoAqooKIAqoAoigAAAACAACAgCIACIqAIIIIqIIioCaioIiLqAiKiIiKgCCAIqIgCAAAAA8wisoAAAAACgAACiiKAAqqIoKIqiiKKqoKKqKKqooKrKqNKyorSsqDSsqo0IoNKyoqqigqooKrKgqooCooqiKAqAKIogAAAAIAqAAgICCCAIAgAiKiIiKgIioCIqCCCICCCCACAgACIIAAAPMAyAAAAAACoKKICqAAqCigCqAoqoAqoqqoigqoqiqgK0rKg0rKg0rKqrSsqDSsqDQigqooKrKiqqANCKCiAKqAKIoAAAIIogACAqAgIIACCCACIqAMqiIgIAgggggCCICKgggAIAAgCiAPOIMAqAKgAogoogCgAAKqiKAqCiqgKqoAqoqiiKKqoqiqgDSsqK0rKqNKyoNKyoNCKCqiiqqANKyoKqAKqAKqAKIoKIAogCiAKgACAgCAAiAgAIIIIIAioIiKiCAgCCCCCICKgCAIIAAgCiAPOIMKogCiCiiAKIAoACoKKIooqCiqgCqgqqqKCiKoqooKrKitKyqjSsqDSsqCqiiqqKCqgDSsqCqgo0IoKIoKIoKIIKIAoAAICiAKggKgCCCIKggCAAgggggCCIgioCIqAIIIICAggKgACAKIA84gyqiAKIAogCiAKIqgqAKIKqqgCqgoqsqCqgK0IqiqyoNKyqjQigqoCtKyoNKyoNKyoNCKoqsqDSsqCqyoqqyoKrKgogDQyoiiCCiAAgCiAAgAICCCIKggCCAIqCCCAIIgIIIIACCAAggCIKgAAA84gy0ogCiAKIKKIAogCgKKICqrKgoiqKIoKrKqKqArSsqoqoA0rKg0rKg0rKg0IKNKyorSsqCqgDSsqCqyoKrKgqsqCiAKrKgogCiFQBAFEBAQAEABEBUERBAAQQBBBBBABBAQQQEAEABAABAUQB5xBlpRAFEAUAAAFEFFEBVEVRRAFVAFVBRVQBoRVFVlRWlZUFVAGlZUGlZVRpWVBVZUGlZUGhKA0rKgqs1aCqzVoKrNKDQlKCiUBoZAaGQFEoCoIgogAIUQQQFQQARBFQRAQQARAVBBBBAVBEAQAEAVAAAB5xBlpRAVRAFEFFEAUQBRBRoQBRFUUQBoQBoQUaVlQVWVBpWaoNCCq0rKg0tZUGqIA0rNWg0rNKDSs1aDQlKDQlKDQlKDQlKCqzVoLSpQFogCiFBaVEEaqVCgqFSoKggKlKgKiFEEEBUQoFQQAQqIIIAggKggKggKggiiAKIA84gy6RRAIogC0QUUQBRCgohVVoZUFEoDQgo0IA0IUGlrKqKrKg0rKiKrKg0rKg0rIDSsqDSsqo0MqDSsgNKyqCqyoKrKgqsgNCUoLSpSg1Ss0BqlZKCiUoLSpUoKIAUqUEKIlQVKVKCoIBRKgKgghUKgKiACUQFQQFRBBUEEUQBRAHmpUpUdYtKlKEWlSlCLSpSqRaVKUWNUrNKEapWaVSNUrNWhGqM0oRqrWaVUjVVmlCNLWatBqlZq0GlZKo0tZq0GqtZURpWKtBpWatBpWaUGlZUGlZAaWsrQapWatBqlZq0GqVmrQWrWaUGqVKA1Ss0oNFZpUGqVmlBqpUpQUSpRFpUpQWpUoCpUpQWolSgpUQFqVKCAiIKiFAQqUFRKUASlAEpQBKUFEqUGqM0B5aVkI7xqlZCEapWQhGqVkWEapWQhGqtYCEbpWFWEaq1gpCN0rFWkSN0rFWkI3VrnVqwjdWsVaRI3Ss0oRurWKtEjdKzVoNVazVqDVWsVaDdKzVojVWs0oN0rNWg1VrNKDVWs1aDVKzVoNUrNWg1Ss0oN0rNKDVKzVoLVrNKDVKzSiNUrNKC0qUoLSs0oLSpUoNVKlKgtSpSgtSpUoLSpUoLUqUoi1KlSgtSlSgtSpUoLSpUoLUqUoLUqUoLUqUoLSpSgtEoDygDuAAAAAAAAAKCgAAAAoAKCoAtWoA1VrApHSrXOrUiR0q1zzVpEjpVrFWhG6VmlEjdWsVag3VrFWg3Ss0ojdWsVaDVWsVaDVWs0oNVazSg1VrNKDVKzVoNUrNKDVKzSojVKzSg1SpUoNUrNKDVSpSgtKzSgtKlSgtKlSgtKlSgtKzSgtSpUoLSpUoLUqVKDVSpUoLUqUoRalSpQjVSpUoRqpUqVSNUrNKEaozQI4gMOoAoAAAAAAAAoiqAAACgAAAoKgCgKAAqlBRauayA6Zq1zq0iR0q1zz0uakSOlWudWkI6UrFWokbq1irQbpWKtBulZpRG6VmlBulZpUGqtYq0GqVmlBqlZpQbpWaUGqlZpQapWaUGqVmlEWlZpQaqVKlBqpUqUGqlSpQaqVmlCLSs1KEaqVKlCLSs1KLGqlZqVYRqpWanRCNUrFSrFjdSs0IRqpWQhGukqARaIBEAcmgAAAABQAAAAUAAFAAABQAAAUURQAFBUBVAUAAURVVavTIDeelrmtIkdKtcqvSQjrVrl0vREjpVrnVqQjdWudWkSN1axShG6VirQjdKxSoRulZpRI1Ss0oRqlZpQjVKzUoRupWaUI1Ss1KEapWalCN1KzUoRqlYpSLGqlZqdLCN1Kx0nRCN1KxUqxY30nTIQi1KgAAAgCACAAAAAACAOSgAAAAAACgACiKAAoAAAKAAAAACigAAKCoCqAoAAKgqqAAAAqALVrKir0vTII30dMBCOnR05lIR16OnOlIR0pXOlIR1p05UpCOvR05UpCOlOnOlSEdKdOdSrCOnR050IRvo6YQhG+k6ZAi9FQAoIAAiAAIAIAACCAAIAAAAAAAAgDk0AAAAACACigAigAAAAoAAAKAAACgqAKIqgAAAKoiqAAAAKIKqgAAAKgCiAqiAKIAoAAAAICiAKIAACAAAICoCAAIAAIAgAgIqAACAAAAAAAAAAIA5NAAAAKigIKgCoqoAAAAAKAAACgAAAAAoKgCgKAAAAqiCigAAAAAogKoiqAAAAAAAAAAAAAAAAAIgqAAAIAAAgKgIAAgCAAAACAAAAAIgqAIAAoDk2goCCooKigAAgqAoCoAAAKAAAAACgAAAoAAKgCgKAAAACoCqIqgAAAAAAAKKgCiAKIAogCiAKIAAAAAACAAAIgAAACAIAAAAIAAAIAgAAAAAACiDk0oAACiCoCgAAAAKgAAAAAoAAAKAAAAACgAAqAKAoAAAAACqIoACgAAAAAKAAAAAAAAAAAAACACACAAAACAIAAAAIAIAACKgAAAAAAgAAA5NqIoAACKKAAAAACgAIAAAKAAAAACgAAAoAAAAoigAKAAAAAAqiKAAoAAAAACgAAAACAAAAIAAAAgAAAAAgioAAAAiAAAACKgAAAAgAAAAA5NigAAAAoAAAAAKAAgAAAoAAAAAKAAACgAAAAoAAKAAAAAAooAAAAKAAAAoAAAAAgACAAAACAAAAAAAIIAAAACIAAAAIAAAAAgAAAD/2Q=="; 4 | -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- 1 | import Image from "next/image"; 2 | import { Navigator } from "../components"; 3 | import { Routes } from "../models"; 4 | import Mustachy from "../public/images/mustachy_.png"; 5 | import { mustachyBlur } from "./models"; 6 | 7 | function App() { 8 | return ( 9 | <div style={{ position: "relative" }}> 10 | <h1>Welcome to Rick and Morty app</h1> 11 | <h2>What do you want to see in the app?</h2> 12 | <Navigator pathNames={[Routes.CHARACTERS, Routes.LOCATIONS]} /> 13 | <Image 14 | src={Mustachy} 15 | blurDataURL={mustachyBlur} 16 | placeholder="blur" 17 | alt="Mustachy" 18 | priority 19 | /> 20 | </div> 21 | ); 22 | } 23 | export default App; 24 | -------------------------------------------------------------------------------- /app/tailwind-global.scss: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /components/Card/Card.module.css: -------------------------------------------------------------------------------- 1 | .Card { 2 | background-color: beige; 3 | padding: 15px; 4 | border-radius: 5px; 5 | width: fit-content; 6 | box-shadow: 0px 0px 1px -1px rgba(68, 51, 8, 1), 7 | 0px 2px 6px -2px rgba(68, 51, 8, 1); 8 | } 9 | -------------------------------------------------------------------------------- /components/Card/Card.tsx: -------------------------------------------------------------------------------- 1 | import Image from "next/image"; 2 | import cardStyles from "./Card.module.css"; 3 | 4 | export interface CardData { 5 | name: string; 6 | type?: string; 7 | created: string; 8 | image?: string; 9 | } 10 | 11 | interface Props { 12 | data: CardData; 13 | } 14 | 15 | function Card({ data }: Props) { 16 | let formattedType = data.type; 17 | formattedType ||= "No type"; 18 | return ( 19 | <div className={cardStyles.Card}> 20 | <p>Name: {data.name}</p> 21 | <p>Type: {formattedType}</p> 22 | <p>Created: {data.created}</p> 23 | {!!data.image && ( 24 | <Image width="100" height="100" alt="Image" src={data.image} /> 25 | )} 26 | </div> 27 | ); 28 | } 29 | export default Card; 30 | -------------------------------------------------------------------------------- /components/Navigator/Navigator.tsx: -------------------------------------------------------------------------------- 1 | import Link from "next/link"; 2 | import { Route } from "../../models"; 3 | 4 | interface Props { 5 | pathNames: Route[]; 6 | } 7 | 8 | function Navigator({ pathNames }: Props) { 9 | return ( 10 | <div style={{ display: "flex", gap: "15px", flexDirection: "row" }}> 11 | {pathNames.map((pathName) => ( 12 | <Link 13 | className="bg-fuchsia-500 hover:bg-sky-700" 14 | key={pathName.path} 15 | href={pathName.path} 16 | > 17 | {pathName.name} 18 | </Link> 19 | ))} 20 | </div> 21 | ); 22 | } 23 | export default Navigator; 24 | -------------------------------------------------------------------------------- /components/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Card } from "./Card/Card"; 2 | export { default as Navigator } from "./Navigator/Navigator"; 3 | -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- 1 | import { NextRequest, NextResponse } from "next/server"; 2 | 3 | export function middleware(request: NextRequest) { 4 | const requestHeaders = new Headers(request.headers); 5 | requestHeaders.set("nextjs-con-de-tuti", "Buenas-buenas-mi-gente"); 6 | 7 | const response = NextResponse.next({ 8 | request: { 9 | headers: requestHeaders, 10 | }, 11 | }); 12 | 13 | if (request.nextUrl.pathname.endsWith("/information")) { 14 | return NextResponse.redirect( 15 | new URL("/information/characters", request.url) 16 | ); 17 | } 18 | 19 | if (request.nextUrl.pathname.startsWith("/information")) { 20 | const user = { 21 | name: "John Doe", 22 | authenticated: process.env.NEXT_PUBLIC_AUTHENTICATED, 23 | }; 24 | if (user.authenticated !== "true") { 25 | return NextResponse.redirect(new URL("/login", request.url)); 26 | } 27 | } 28 | 29 | return response; 30 | } 31 | 32 | export const config = { 33 | matcher: [ 34 | "/information/:path*", 35 | "/((?!api|_next/static|_next/image|favicon.ico).*)", 36 | ], 37 | }; 38 | 39 | // "100 10 1".match(/\d0*/g) 100, 10, 1 40 | // "100 10 1".match(/\d0+/g) 100, 10 41 | -------------------------------------------------------------------------------- /models/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./routes.model"; 2 | -------------------------------------------------------------------------------- /models/routes.model.ts: -------------------------------------------------------------------------------- 1 | export const Routes = { 2 | HOME: { 3 | path: "/", 4 | name: "Home", 5 | }, 6 | CHARACTERS: { 7 | path: "information/characters", 8 | name: "Characters", 9 | }, 10 | LOCATIONS: { 11 | path: "information/locations", 12 | name: "Locations", 13 | }, 14 | }; 15 | 16 | export interface Route { 17 | path: string; 18 | name: string; 19 | } 20 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | swcMinify: true, 5 | skipTrailingSlashRedirect: true, 6 | skipMiddlewareUrlNormalize: true, 7 | experimental: { 8 | appDir: true, 9 | }, 10 | images: { 11 | remotePatterns: [ 12 | { 13 | hostname: "rickandmortyapi.com", 14 | }, 15 | ], 16 | }, 17 | }; 18 | 19 | module.exports = nextConfig; 20 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nextjscourse", 3 | "version": "0.1.0", 4 | "private": false, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint", 10 | "prepare": "husky install" 11 | }, 12 | "dependencies": { 13 | "@next/font": "^13.1.5", 14 | "@typescript-eslint/eslint-plugin": "^5.49.0", 15 | "@typescript-eslint/parser": "*", 16 | "airbnb": "^0.0.2", 17 | "eslint-config-airbnb": "^19.0.4", 18 | "eslint-config-airbnb-base": "^15.0.0", 19 | "eslint-config-airbnb-typescript": "^17.0.0", 20 | "eslint-module-utils": "^2.7.4", 21 | "eslint-plugin-import": "^2.25.3", 22 | "eslint-plugin-jsx-a11y": "^6.5.1", 23 | "eslint-plugin-react": "^7.28.0", 24 | "eslint-plugin-react-hooks": "^4.3.0", 25 | "next": "^13.1.5", 26 | "nextjscourse": "link:", 27 | "react": "18.2.0", 28 | "react-dom": "18.2.0", 29 | "sass": "^1.57.1", 30 | "styled-components": "6.0.0-beta.9" 31 | }, 32 | "devDependencies": { 33 | "@types/node": "18.11.18", 34 | "@types/react": "18.0.26", 35 | "@types/react-dom": "18.0.10", 36 | "autoprefixer": "^10.4.13", 37 | "eslint": "8.31.0", 38 | "eslint-config-next": "13.1.1", 39 | "eslint-config-node": "^4.1.0", 40 | "eslint-config-prettier": "^8.6.0", 41 | "eslint-plugin-node": "^11.1.0", 42 | "eslint-plugin-prettier": "^4.2.1", 43 | "husky": "^8.0.3", 44 | "postcss": "^8.4.21", 45 | "prettier": "^2.8.3", 46 | "tailwindcss": "^3.2.4", 47 | "typescript": "4.9.4" 48 | }, 49 | "lint-staged": { 50 | "*.(ts|tsx)": [ 51 | "eslint . --fix", 52 | "prettier --write" 53 | ] 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: 5.4 2 | 3 | specifiers: 4 | '@next/font': ^13.1.5 5 | '@types/node': 18.11.18 6 | '@types/react': 18.0.26 7 | '@types/react-dom': 18.0.10 8 | '@typescript-eslint/eslint-plugin': ^5.49.0 9 | '@typescript-eslint/parser': '*' 10 | airbnb: ^0.0.2 11 | autoprefixer: ^10.4.13 12 | eslint: 8.31.0 13 | eslint-config-airbnb: ^19.0.4 14 | eslint-config-airbnb-base: ^15.0.0 15 | eslint-config-airbnb-typescript: ^17.0.0 16 | eslint-config-next: 13.1.1 17 | eslint-config-node: ^4.1.0 18 | eslint-config-prettier: ^8.6.0 19 | eslint-module-utils: ^2.7.4 20 | eslint-plugin-import: ^2.25.3 21 | eslint-plugin-jsx-a11y: ^6.5.1 22 | eslint-plugin-node: ^11.1.0 23 | eslint-plugin-prettier: ^4.2.1 24 | eslint-plugin-react: ^7.28.0 25 | eslint-plugin-react-hooks: ^4.3.0 26 | husky: ^8.0.3 27 | next: ^13.1.5 28 | nextjscourse: 'link:' 29 | postcss: ^8.4.21 30 | prettier: ^2.8.3 31 | react: 18.2.0 32 | react-dom: 18.2.0 33 | sass: ^1.57.1 34 | styled-components: 6.0.0-beta.9 35 | tailwindcss: ^3.2.4 36 | typescript: 4.9.4 37 | 38 | dependencies: 39 | '@next/font': 13.1.5 40 | '@typescript-eslint/eslint-plugin': 5.49.0_z274t7mj3d3d3lkbtjv4yganzm 41 | '@typescript-eslint/parser': 5.48.2_iukboom6ndih5an6iafl45j2fe 42 | airbnb: 0.0.2 43 | eslint-config-airbnb: 19.0.4_kolgxp72khdioduxddi3qt7v64 44 | eslint-config-airbnb-base: 15.0.0_vz4tyq5r7fh66imfi352lmrvhq 45 | eslint-config-airbnb-typescript: 17.0.0_qzmkshlva5rxs6trhwmgtabqxq 46 | eslint-module-utils: 2.7.4_oa6nn542mmm7vqt7omjryoishq 47 | eslint-plugin-import: 2.27.5_oa6nn542mmm7vqt7omjryoishq 48 | eslint-plugin-jsx-a11y: 6.7.1_eslint@8.31.0 49 | eslint-plugin-react: 7.32.1_eslint@8.31.0 50 | eslint-plugin-react-hooks: 4.6.0_eslint@8.31.0 51 | next: 13.1.5_3duxcpitbtplz62feflag7fwby 52 | nextjscourse: 'link:' 53 | react: 18.2.0 54 | react-dom: 18.2.0_react@18.2.0 55 | sass: 1.57.1 56 | styled-components: 6.0.0-beta.9_biqbaboplfbrettd7655fr4n2y 57 | 58 | devDependencies: 59 | '@types/node': 18.11.18 60 | '@types/react': 18.0.26 61 | '@types/react-dom': 18.0.10 62 | autoprefixer: 10.4.13_postcss@8.4.21 63 | eslint: 8.31.0 64 | eslint-config-next: 13.1.1_iukboom6ndih5an6iafl45j2fe 65 | eslint-config-node: 4.1.0_oa6nn542mmm7vqt7omjryoishq 66 | eslint-config-prettier: 8.6.0_eslint@8.31.0 67 | eslint-plugin-node: 11.1.0_eslint@8.31.0 68 | eslint-plugin-prettier: 4.2.1_do5yx3dogbskqc4h5x5ilvlwyy 69 | husky: 8.0.3 70 | postcss: 8.4.21 71 | prettier: 2.8.3 72 | tailwindcss: 3.2.4_postcss@8.4.21 73 | typescript: 4.9.4 74 | 75 | packages: 76 | 77 | /@ampproject/remapping/2.2.0: 78 | resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} 79 | engines: {node: '>=6.0.0'} 80 | dependencies: 81 | '@jridgewell/gen-mapping': 0.1.1 82 | '@jridgewell/trace-mapping': 0.3.17 83 | dev: false 84 | 85 | /@babel/cli/7.20.7_@babel+core@7.20.12: 86 | resolution: {integrity: sha512-WylgcELHB66WwQqItxNILsMlaTd8/SO6SgTTjMp4uCI7P4QyH1r3nqgFmO3BfM4AtfniHgFMH3EpYFj/zynBkQ==} 87 | engines: {node: '>=6.9.0'} 88 | hasBin: true 89 | peerDependencies: 90 | '@babel/core': ^7.0.0-0 91 | dependencies: 92 | '@babel/core': 7.20.12 93 | '@jridgewell/trace-mapping': 0.3.17 94 | commander: 4.1.1 95 | convert-source-map: 1.9.0 96 | fs-readdir-recursive: 1.1.0 97 | glob: 7.2.3 98 | make-dir: 2.1.0 99 | slash: 2.0.0 100 | optionalDependencies: 101 | '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 102 | chokidar: 3.5.3 103 | dev: false 104 | 105 | /@babel/code-frame/7.18.6: 106 | resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} 107 | engines: {node: '>=6.9.0'} 108 | dependencies: 109 | '@babel/highlight': 7.18.6 110 | 111 | /@babel/compat-data/7.20.10: 112 | resolution: {integrity: sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==} 113 | engines: {node: '>=6.9.0'} 114 | dev: false 115 | 116 | /@babel/core/7.20.12: 117 | resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==} 118 | engines: {node: '>=6.9.0'} 119 | dependencies: 120 | '@ampproject/remapping': 2.2.0 121 | '@babel/code-frame': 7.18.6 122 | '@babel/generator': 7.20.7 123 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 124 | '@babel/helper-module-transforms': 7.20.11 125 | '@babel/helpers': 7.20.7 126 | '@babel/parser': 7.20.7 127 | '@babel/template': 7.20.7 128 | '@babel/traverse': 7.20.12 129 | '@babel/types': 7.20.7 130 | convert-source-map: 1.9.0 131 | debug: 4.3.4 132 | gensync: 1.0.0-beta.2 133 | json5: 2.2.3 134 | semver: 6.3.0 135 | transitivePeerDependencies: 136 | - supports-color 137 | dev: false 138 | 139 | /@babel/generator/7.20.7: 140 | resolution: {integrity: sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==} 141 | engines: {node: '>=6.9.0'} 142 | dependencies: 143 | '@babel/types': 7.20.7 144 | '@jridgewell/gen-mapping': 0.3.2 145 | jsesc: 2.5.2 146 | 147 | /@babel/helper-annotate-as-pure/7.18.6: 148 | resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} 149 | engines: {node: '>=6.9.0'} 150 | dependencies: 151 | '@babel/types': 7.20.7 152 | dev: false 153 | 154 | /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: 155 | resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} 156 | engines: {node: '>=6.9.0'} 157 | dependencies: 158 | '@babel/helper-explode-assignable-expression': 7.18.6 159 | '@babel/types': 7.20.7 160 | dev: false 161 | 162 | /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12: 163 | resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} 164 | engines: {node: '>=6.9.0'} 165 | peerDependencies: 166 | '@babel/core': ^7.0.0 167 | dependencies: 168 | '@babel/compat-data': 7.20.10 169 | '@babel/core': 7.20.12 170 | '@babel/helper-validator-option': 7.18.6 171 | browserslist: 4.21.4 172 | lru-cache: 5.1.1 173 | semver: 6.3.0 174 | dev: false 175 | 176 | /@babel/helper-create-class-features-plugin/7.20.12_@babel+core@7.20.12: 177 | resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==} 178 | engines: {node: '>=6.9.0'} 179 | peerDependencies: 180 | '@babel/core': ^7.0.0 181 | dependencies: 182 | '@babel/core': 7.20.12 183 | '@babel/helper-annotate-as-pure': 7.18.6 184 | '@babel/helper-environment-visitor': 7.18.9 185 | '@babel/helper-function-name': 7.19.0 186 | '@babel/helper-member-expression-to-functions': 7.20.7 187 | '@babel/helper-optimise-call-expression': 7.18.6 188 | '@babel/helper-replace-supers': 7.20.7 189 | '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 190 | '@babel/helper-split-export-declaration': 7.18.6 191 | transitivePeerDependencies: 192 | - supports-color 193 | dev: false 194 | 195 | /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.12: 196 | resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==} 197 | engines: {node: '>=6.9.0'} 198 | peerDependencies: 199 | '@babel/core': ^7.0.0 200 | dependencies: 201 | '@babel/core': 7.20.12 202 | '@babel/helper-annotate-as-pure': 7.18.6 203 | regexpu-core: 5.2.2 204 | dev: false 205 | 206 | /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.12: 207 | resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} 208 | peerDependencies: 209 | '@babel/core': ^7.4.0-0 210 | dependencies: 211 | '@babel/core': 7.20.12 212 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 213 | '@babel/helper-plugin-utils': 7.20.2 214 | debug: 4.3.4 215 | lodash.debounce: 4.0.8 216 | resolve: 1.22.1 217 | semver: 6.3.0 218 | transitivePeerDependencies: 219 | - supports-color 220 | dev: false 221 | 222 | /@babel/helper-environment-visitor/7.18.9: 223 | resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} 224 | engines: {node: '>=6.9.0'} 225 | 226 | /@babel/helper-explode-assignable-expression/7.18.6: 227 | resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} 228 | engines: {node: '>=6.9.0'} 229 | dependencies: 230 | '@babel/types': 7.20.7 231 | dev: false 232 | 233 | /@babel/helper-function-name/7.19.0: 234 | resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} 235 | engines: {node: '>=6.9.0'} 236 | dependencies: 237 | '@babel/template': 7.20.7 238 | '@babel/types': 7.20.7 239 | 240 | /@babel/helper-hoist-variables/7.18.6: 241 | resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} 242 | engines: {node: '>=6.9.0'} 243 | dependencies: 244 | '@babel/types': 7.20.7 245 | 246 | /@babel/helper-member-expression-to-functions/7.20.7: 247 | resolution: {integrity: sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==} 248 | engines: {node: '>=6.9.0'} 249 | dependencies: 250 | '@babel/types': 7.20.7 251 | dev: false 252 | 253 | /@babel/helper-module-imports/7.18.6: 254 | resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} 255 | engines: {node: '>=6.9.0'} 256 | dependencies: 257 | '@babel/types': 7.20.7 258 | dev: false 259 | 260 | /@babel/helper-module-transforms/7.20.11: 261 | resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==} 262 | engines: {node: '>=6.9.0'} 263 | dependencies: 264 | '@babel/helper-environment-visitor': 7.18.9 265 | '@babel/helper-module-imports': 7.18.6 266 | '@babel/helper-simple-access': 7.20.2 267 | '@babel/helper-split-export-declaration': 7.18.6 268 | '@babel/helper-validator-identifier': 7.19.1 269 | '@babel/template': 7.20.7 270 | '@babel/traverse': 7.20.12 271 | '@babel/types': 7.20.7 272 | transitivePeerDependencies: 273 | - supports-color 274 | dev: false 275 | 276 | /@babel/helper-optimise-call-expression/7.18.6: 277 | resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} 278 | engines: {node: '>=6.9.0'} 279 | dependencies: 280 | '@babel/types': 7.20.7 281 | dev: false 282 | 283 | /@babel/helper-plugin-utils/7.20.2: 284 | resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} 285 | engines: {node: '>=6.9.0'} 286 | dev: false 287 | 288 | /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.12: 289 | resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} 290 | engines: {node: '>=6.9.0'} 291 | peerDependencies: 292 | '@babel/core': ^7.0.0 293 | dependencies: 294 | '@babel/core': 7.20.12 295 | '@babel/helper-annotate-as-pure': 7.18.6 296 | '@babel/helper-environment-visitor': 7.18.9 297 | '@babel/helper-wrap-function': 7.20.5 298 | '@babel/types': 7.20.7 299 | transitivePeerDependencies: 300 | - supports-color 301 | dev: false 302 | 303 | /@babel/helper-replace-supers/7.20.7: 304 | resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==} 305 | engines: {node: '>=6.9.0'} 306 | dependencies: 307 | '@babel/helper-environment-visitor': 7.18.9 308 | '@babel/helper-member-expression-to-functions': 7.20.7 309 | '@babel/helper-optimise-call-expression': 7.18.6 310 | '@babel/template': 7.20.7 311 | '@babel/traverse': 7.20.12 312 | '@babel/types': 7.20.7 313 | transitivePeerDependencies: 314 | - supports-color 315 | dev: false 316 | 317 | /@babel/helper-simple-access/7.20.2: 318 | resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} 319 | engines: {node: '>=6.9.0'} 320 | dependencies: 321 | '@babel/types': 7.20.7 322 | dev: false 323 | 324 | /@babel/helper-skip-transparent-expression-wrappers/7.20.0: 325 | resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} 326 | engines: {node: '>=6.9.0'} 327 | dependencies: 328 | '@babel/types': 7.20.7 329 | dev: false 330 | 331 | /@babel/helper-split-export-declaration/7.18.6: 332 | resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} 333 | engines: {node: '>=6.9.0'} 334 | dependencies: 335 | '@babel/types': 7.20.7 336 | 337 | /@babel/helper-string-parser/7.19.4: 338 | resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} 339 | engines: {node: '>=6.9.0'} 340 | 341 | /@babel/helper-validator-identifier/7.19.1: 342 | resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} 343 | engines: {node: '>=6.9.0'} 344 | 345 | /@babel/helper-validator-option/7.18.6: 346 | resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} 347 | engines: {node: '>=6.9.0'} 348 | dev: false 349 | 350 | /@babel/helper-wrap-function/7.20.5: 351 | resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==} 352 | engines: {node: '>=6.9.0'} 353 | dependencies: 354 | '@babel/helper-function-name': 7.19.0 355 | '@babel/template': 7.20.7 356 | '@babel/traverse': 7.20.12 357 | '@babel/types': 7.20.7 358 | transitivePeerDependencies: 359 | - supports-color 360 | dev: false 361 | 362 | /@babel/helpers/7.20.7: 363 | resolution: {integrity: sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==} 364 | engines: {node: '>=6.9.0'} 365 | dependencies: 366 | '@babel/template': 7.20.7 367 | '@babel/traverse': 7.20.12 368 | '@babel/types': 7.20.7 369 | transitivePeerDependencies: 370 | - supports-color 371 | dev: false 372 | 373 | /@babel/highlight/7.18.6: 374 | resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} 375 | engines: {node: '>=6.9.0'} 376 | dependencies: 377 | '@babel/helper-validator-identifier': 7.19.1 378 | chalk: 2.4.2 379 | js-tokens: 4.0.0 380 | 381 | /@babel/parser/7.20.7: 382 | resolution: {integrity: sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==} 383 | engines: {node: '>=6.0.0'} 384 | hasBin: true 385 | dependencies: 386 | '@babel/types': 7.20.7 387 | 388 | /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.12: 389 | resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} 390 | engines: {node: '>=6.9.0'} 391 | peerDependencies: 392 | '@babel/core': ^7.0.0 393 | dependencies: 394 | '@babel/core': 7.20.12 395 | '@babel/helper-plugin-utils': 7.20.2 396 | dev: false 397 | 398 | /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.20.12: 399 | resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} 400 | engines: {node: '>=6.9.0'} 401 | peerDependencies: 402 | '@babel/core': ^7.13.0 403 | dependencies: 404 | '@babel/core': 7.20.12 405 | '@babel/helper-plugin-utils': 7.20.2 406 | '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 407 | '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12 408 | dev: false 409 | 410 | /@babel/plugin-external-helpers/7.18.6_@babel+core@7.20.12: 411 | resolution: {integrity: sha512-wNqc87qjLvsD1PIMQBzLn1bMuTlGzqLzM/1VGQ22Wm51cbCWS9k71ydp5iZS4hjwQNuTWSn/xbZkkusNENwtZg==} 412 | engines: {node: '>=6.9.0'} 413 | peerDependencies: 414 | '@babel/core': ^7.0.0-0 415 | dependencies: 416 | '@babel/core': 7.20.12 417 | '@babel/helper-plugin-utils': 7.20.2 418 | dev: false 419 | 420 | /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.12: 421 | resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} 422 | engines: {node: '>=6.9.0'} 423 | peerDependencies: 424 | '@babel/core': ^7.0.0-0 425 | dependencies: 426 | '@babel/core': 7.20.12 427 | '@babel/helper-environment-visitor': 7.18.9 428 | '@babel/helper-plugin-utils': 7.20.2 429 | '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 430 | '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 431 | transitivePeerDependencies: 432 | - supports-color 433 | dev: false 434 | 435 | /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.12: 436 | resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} 437 | engines: {node: '>=6.9.0'} 438 | peerDependencies: 439 | '@babel/core': ^7.0.0-0 440 | dependencies: 441 | '@babel/core': 7.20.12 442 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 443 | '@babel/helper-plugin-utils': 7.20.2 444 | transitivePeerDependencies: 445 | - supports-color 446 | dev: false 447 | 448 | /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.20.12: 449 | resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==} 450 | engines: {node: '>=6.9.0'} 451 | peerDependencies: 452 | '@babel/core': ^7.12.0 453 | dependencies: 454 | '@babel/core': 7.20.12 455 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 456 | '@babel/helper-plugin-utils': 7.20.2 457 | '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 458 | transitivePeerDependencies: 459 | - supports-color 460 | dev: false 461 | 462 | /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.12: 463 | resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} 464 | engines: {node: '>=6.9.0'} 465 | peerDependencies: 466 | '@babel/core': ^7.0.0-0 467 | dependencies: 468 | '@babel/core': 7.20.12 469 | '@babel/helper-plugin-utils': 7.20.2 470 | '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 471 | dev: false 472 | 473 | /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.12: 474 | resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} 475 | engines: {node: '>=6.9.0'} 476 | peerDependencies: 477 | '@babel/core': ^7.0.0-0 478 | dependencies: 479 | '@babel/core': 7.20.12 480 | '@babel/helper-plugin-utils': 7.20.2 481 | '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 482 | dev: false 483 | 484 | /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.12: 485 | resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} 486 | engines: {node: '>=6.9.0'} 487 | peerDependencies: 488 | '@babel/core': ^7.0.0-0 489 | dependencies: 490 | '@babel/core': 7.20.12 491 | '@babel/helper-plugin-utils': 7.20.2 492 | '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 493 | dev: false 494 | 495 | /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.12: 496 | resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} 497 | engines: {node: '>=6.9.0'} 498 | peerDependencies: 499 | '@babel/core': ^7.0.0-0 500 | dependencies: 501 | '@babel/core': 7.20.12 502 | '@babel/helper-plugin-utils': 7.20.2 503 | '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 504 | dev: false 505 | 506 | /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.12: 507 | resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} 508 | engines: {node: '>=6.9.0'} 509 | peerDependencies: 510 | '@babel/core': ^7.0.0-0 511 | dependencies: 512 | '@babel/core': 7.20.12 513 | '@babel/helper-plugin-utils': 7.20.2 514 | '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 515 | dev: false 516 | 517 | /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.12: 518 | resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} 519 | engines: {node: '>=6.9.0'} 520 | peerDependencies: 521 | '@babel/core': ^7.0.0-0 522 | dependencies: 523 | '@babel/core': 7.20.12 524 | '@babel/helper-plugin-utils': 7.20.2 525 | '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 526 | dev: false 527 | 528 | /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.12: 529 | resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} 530 | engines: {node: '>=6.9.0'} 531 | peerDependencies: 532 | '@babel/core': ^7.0.0-0 533 | dependencies: 534 | '@babel/compat-data': 7.20.10 535 | '@babel/core': 7.20.12 536 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 537 | '@babel/helper-plugin-utils': 7.20.2 538 | '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 539 | '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12 540 | dev: false 541 | 542 | /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.12: 543 | resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} 544 | engines: {node: '>=6.9.0'} 545 | peerDependencies: 546 | '@babel/core': ^7.0.0-0 547 | dependencies: 548 | '@babel/core': 7.20.12 549 | '@babel/helper-plugin-utils': 7.20.2 550 | '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 551 | dev: false 552 | 553 | /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.20.12: 554 | resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==} 555 | engines: {node: '>=6.9.0'} 556 | peerDependencies: 557 | '@babel/core': ^7.0.0-0 558 | dependencies: 559 | '@babel/core': 7.20.12 560 | '@babel/helper-plugin-utils': 7.20.2 561 | '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 562 | '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 563 | dev: false 564 | 565 | /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.12: 566 | resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} 567 | engines: {node: '>=6.9.0'} 568 | peerDependencies: 569 | '@babel/core': ^7.0.0-0 570 | dependencies: 571 | '@babel/core': 7.20.12 572 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 573 | '@babel/helper-plugin-utils': 7.20.2 574 | transitivePeerDependencies: 575 | - supports-color 576 | dev: false 577 | 578 | /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.12: 579 | resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==} 580 | engines: {node: '>=6.9.0'} 581 | peerDependencies: 582 | '@babel/core': ^7.0.0-0 583 | dependencies: 584 | '@babel/core': 7.20.12 585 | '@babel/helper-annotate-as-pure': 7.18.6 586 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 587 | '@babel/helper-plugin-utils': 7.20.2 588 | '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 589 | transitivePeerDependencies: 590 | - supports-color 591 | dev: false 592 | 593 | /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.12: 594 | resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} 595 | engines: {node: '>=4'} 596 | peerDependencies: 597 | '@babel/core': ^7.0.0-0 598 | dependencies: 599 | '@babel/core': 7.20.12 600 | '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 601 | '@babel/helper-plugin-utils': 7.20.2 602 | dev: false 603 | 604 | /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.12: 605 | resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} 606 | peerDependencies: 607 | '@babel/core': ^7.0.0-0 608 | dependencies: 609 | '@babel/core': 7.20.12 610 | '@babel/helper-plugin-utils': 7.20.2 611 | dev: false 612 | 613 | /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.12: 614 | resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} 615 | peerDependencies: 616 | '@babel/core': ^7.0.0-0 617 | dependencies: 618 | '@babel/core': 7.20.12 619 | '@babel/helper-plugin-utils': 7.20.2 620 | dev: false 621 | 622 | /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.12: 623 | resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} 624 | engines: {node: '>=6.9.0'} 625 | peerDependencies: 626 | '@babel/core': ^7.0.0-0 627 | dependencies: 628 | '@babel/core': 7.20.12 629 | '@babel/helper-plugin-utils': 7.20.2 630 | dev: false 631 | 632 | /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12: 633 | resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} 634 | peerDependencies: 635 | '@babel/core': ^7.0.0-0 636 | dependencies: 637 | '@babel/core': 7.20.12 638 | '@babel/helper-plugin-utils': 7.20.2 639 | dev: false 640 | 641 | /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.12: 642 | resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} 643 | peerDependencies: 644 | '@babel/core': ^7.0.0-0 645 | dependencies: 646 | '@babel/core': 7.20.12 647 | '@babel/helper-plugin-utils': 7.20.2 648 | dev: false 649 | 650 | /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.12: 651 | resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} 652 | engines: {node: '>=6.9.0'} 653 | peerDependencies: 654 | '@babel/core': ^7.0.0-0 655 | dependencies: 656 | '@babel/core': 7.20.12 657 | '@babel/helper-plugin-utils': 7.20.2 658 | dev: false 659 | 660 | /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.12: 661 | resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} 662 | peerDependencies: 663 | '@babel/core': ^7.0.0-0 664 | dependencies: 665 | '@babel/core': 7.20.12 666 | '@babel/helper-plugin-utils': 7.20.2 667 | dev: false 668 | 669 | /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.12: 670 | resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} 671 | engines: {node: '>=6.9.0'} 672 | peerDependencies: 673 | '@babel/core': ^7.0.0-0 674 | dependencies: 675 | '@babel/core': 7.20.12 676 | '@babel/helper-plugin-utils': 7.20.2 677 | dev: false 678 | 679 | /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.12: 680 | resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} 681 | peerDependencies: 682 | '@babel/core': ^7.0.0-0 683 | dependencies: 684 | '@babel/core': 7.20.12 685 | '@babel/helper-plugin-utils': 7.20.2 686 | dev: false 687 | 688 | /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.12: 689 | resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} 690 | peerDependencies: 691 | '@babel/core': ^7.0.0-0 692 | dependencies: 693 | '@babel/core': 7.20.12 694 | '@babel/helper-plugin-utils': 7.20.2 695 | dev: false 696 | 697 | /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.12: 698 | resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} 699 | peerDependencies: 700 | '@babel/core': ^7.0.0-0 701 | dependencies: 702 | '@babel/core': 7.20.12 703 | '@babel/helper-plugin-utils': 7.20.2 704 | dev: false 705 | 706 | /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.12: 707 | resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} 708 | peerDependencies: 709 | '@babel/core': ^7.0.0-0 710 | dependencies: 711 | '@babel/core': 7.20.12 712 | '@babel/helper-plugin-utils': 7.20.2 713 | dev: false 714 | 715 | /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.12: 716 | resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} 717 | peerDependencies: 718 | '@babel/core': ^7.0.0-0 719 | dependencies: 720 | '@babel/core': 7.20.12 721 | '@babel/helper-plugin-utils': 7.20.2 722 | dev: false 723 | 724 | /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.12: 725 | resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} 726 | peerDependencies: 727 | '@babel/core': ^7.0.0-0 728 | dependencies: 729 | '@babel/core': 7.20.12 730 | '@babel/helper-plugin-utils': 7.20.2 731 | dev: false 732 | 733 | /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.12: 734 | resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} 735 | engines: {node: '>=6.9.0'} 736 | peerDependencies: 737 | '@babel/core': ^7.0.0-0 738 | dependencies: 739 | '@babel/core': 7.20.12 740 | '@babel/helper-plugin-utils': 7.20.2 741 | dev: false 742 | 743 | /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.12: 744 | resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} 745 | engines: {node: '>=6.9.0'} 746 | peerDependencies: 747 | '@babel/core': ^7.0.0-0 748 | dependencies: 749 | '@babel/core': 7.20.12 750 | '@babel/helper-plugin-utils': 7.20.2 751 | dev: false 752 | 753 | /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.12: 754 | resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} 755 | engines: {node: '>=6.9.0'} 756 | peerDependencies: 757 | '@babel/core': ^7.0.0-0 758 | dependencies: 759 | '@babel/core': 7.20.12 760 | '@babel/helper-plugin-utils': 7.20.2 761 | dev: false 762 | 763 | /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.20.12: 764 | resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} 765 | engines: {node: '>=6.9.0'} 766 | peerDependencies: 767 | '@babel/core': ^7.0.0-0 768 | dependencies: 769 | '@babel/core': 7.20.12 770 | '@babel/helper-plugin-utils': 7.20.2 771 | dev: false 772 | 773 | /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.12: 774 | resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} 775 | engines: {node: '>=6.9.0'} 776 | peerDependencies: 777 | '@babel/core': ^7.0.0-0 778 | dependencies: 779 | '@babel/core': 7.20.12 780 | '@babel/helper-module-imports': 7.18.6 781 | '@babel/helper-plugin-utils': 7.20.2 782 | '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 783 | transitivePeerDependencies: 784 | - supports-color 785 | dev: false 786 | 787 | /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.12: 788 | resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} 789 | engines: {node: '>=6.9.0'} 790 | peerDependencies: 791 | '@babel/core': ^7.0.0-0 792 | dependencies: 793 | '@babel/core': 7.20.12 794 | '@babel/helper-plugin-utils': 7.20.2 795 | dev: false 796 | 797 | /@babel/plugin-transform-block-scoping/7.20.11_@babel+core@7.20.12: 798 | resolution: {integrity: sha512-tA4N427a7fjf1P0/2I4ScsHGc5jcHPbb30xMbaTke2gxDuWpUfXDuX1FEymJwKk4tuGUvGcejAR6HdZVqmmPyw==} 799 | engines: {node: '>=6.9.0'} 800 | peerDependencies: 801 | '@babel/core': ^7.0.0-0 802 | dependencies: 803 | '@babel/core': 7.20.12 804 | '@babel/helper-plugin-utils': 7.20.2 805 | dev: false 806 | 807 | /@babel/plugin-transform-classes/7.20.7_@babel+core@7.20.12: 808 | resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==} 809 | engines: {node: '>=6.9.0'} 810 | peerDependencies: 811 | '@babel/core': ^7.0.0-0 812 | dependencies: 813 | '@babel/core': 7.20.12 814 | '@babel/helper-annotate-as-pure': 7.18.6 815 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 816 | '@babel/helper-environment-visitor': 7.18.9 817 | '@babel/helper-function-name': 7.19.0 818 | '@babel/helper-optimise-call-expression': 7.18.6 819 | '@babel/helper-plugin-utils': 7.20.2 820 | '@babel/helper-replace-supers': 7.20.7 821 | '@babel/helper-split-export-declaration': 7.18.6 822 | globals: 11.12.0 823 | transitivePeerDependencies: 824 | - supports-color 825 | dev: false 826 | 827 | /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.20.12: 828 | resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} 829 | engines: {node: '>=6.9.0'} 830 | peerDependencies: 831 | '@babel/core': ^7.0.0-0 832 | dependencies: 833 | '@babel/core': 7.20.12 834 | '@babel/helper-plugin-utils': 7.20.2 835 | '@babel/template': 7.20.7 836 | dev: false 837 | 838 | /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.20.12: 839 | resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} 840 | engines: {node: '>=6.9.0'} 841 | peerDependencies: 842 | '@babel/core': ^7.0.0-0 843 | dependencies: 844 | '@babel/core': 7.20.12 845 | '@babel/helper-plugin-utils': 7.20.2 846 | dev: false 847 | 848 | /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.12: 849 | resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} 850 | engines: {node: '>=6.9.0'} 851 | peerDependencies: 852 | '@babel/core': ^7.0.0-0 853 | dependencies: 854 | '@babel/core': 7.20.12 855 | '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 856 | '@babel/helper-plugin-utils': 7.20.2 857 | dev: false 858 | 859 | /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.12: 860 | resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} 861 | engines: {node: '>=6.9.0'} 862 | peerDependencies: 863 | '@babel/core': ^7.0.0-0 864 | dependencies: 865 | '@babel/core': 7.20.12 866 | '@babel/helper-plugin-utils': 7.20.2 867 | dev: false 868 | 869 | /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.12: 870 | resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} 871 | engines: {node: '>=6.9.0'} 872 | peerDependencies: 873 | '@babel/core': ^7.0.0-0 874 | dependencies: 875 | '@babel/core': 7.20.12 876 | '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 877 | '@babel/helper-plugin-utils': 7.20.2 878 | dev: false 879 | 880 | /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.12: 881 | resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} 882 | engines: {node: '>=6.9.0'} 883 | peerDependencies: 884 | '@babel/core': ^7.0.0-0 885 | dependencies: 886 | '@babel/core': 7.20.12 887 | '@babel/helper-plugin-utils': 7.20.2 888 | dev: false 889 | 890 | /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.12: 891 | resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} 892 | engines: {node: '>=6.9.0'} 893 | peerDependencies: 894 | '@babel/core': ^7.0.0-0 895 | dependencies: 896 | '@babel/core': 7.20.12 897 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 898 | '@babel/helper-function-name': 7.19.0 899 | '@babel/helper-plugin-utils': 7.20.2 900 | dev: false 901 | 902 | /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.12: 903 | resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} 904 | engines: {node: '>=6.9.0'} 905 | peerDependencies: 906 | '@babel/core': ^7.0.0-0 907 | dependencies: 908 | '@babel/core': 7.20.12 909 | '@babel/helper-plugin-utils': 7.20.2 910 | dev: false 911 | 912 | /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.12: 913 | resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} 914 | engines: {node: '>=6.9.0'} 915 | peerDependencies: 916 | '@babel/core': ^7.0.0-0 917 | dependencies: 918 | '@babel/core': 7.20.12 919 | '@babel/helper-plugin-utils': 7.20.2 920 | dev: false 921 | 922 | /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.12: 923 | resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} 924 | engines: {node: '>=6.9.0'} 925 | peerDependencies: 926 | '@babel/core': ^7.0.0-0 927 | dependencies: 928 | '@babel/core': 7.20.12 929 | '@babel/helper-module-transforms': 7.20.11 930 | '@babel/helper-plugin-utils': 7.20.2 931 | transitivePeerDependencies: 932 | - supports-color 933 | dev: false 934 | 935 | /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.20.12: 936 | resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==} 937 | engines: {node: '>=6.9.0'} 938 | peerDependencies: 939 | '@babel/core': ^7.0.0-0 940 | dependencies: 941 | '@babel/core': 7.20.12 942 | '@babel/helper-module-transforms': 7.20.11 943 | '@babel/helper-plugin-utils': 7.20.2 944 | '@babel/helper-simple-access': 7.20.2 945 | transitivePeerDependencies: 946 | - supports-color 947 | dev: false 948 | 949 | /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.12: 950 | resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} 951 | engines: {node: '>=6.9.0'} 952 | peerDependencies: 953 | '@babel/core': ^7.0.0-0 954 | dependencies: 955 | '@babel/core': 7.20.12 956 | '@babel/helper-hoist-variables': 7.18.6 957 | '@babel/helper-module-transforms': 7.20.11 958 | '@babel/helper-plugin-utils': 7.20.2 959 | '@babel/helper-validator-identifier': 7.19.1 960 | transitivePeerDependencies: 961 | - supports-color 962 | dev: false 963 | 964 | /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.12: 965 | resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} 966 | engines: {node: '>=6.9.0'} 967 | peerDependencies: 968 | '@babel/core': ^7.0.0-0 969 | dependencies: 970 | '@babel/core': 7.20.12 971 | '@babel/helper-module-transforms': 7.20.11 972 | '@babel/helper-plugin-utils': 7.20.2 973 | transitivePeerDependencies: 974 | - supports-color 975 | dev: false 976 | 977 | /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.12: 978 | resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} 979 | engines: {node: '>=6.9.0'} 980 | peerDependencies: 981 | '@babel/core': ^7.0.0 982 | dependencies: 983 | '@babel/core': 7.20.12 984 | '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 985 | '@babel/helper-plugin-utils': 7.20.2 986 | dev: false 987 | 988 | /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.12: 989 | resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} 990 | engines: {node: '>=6.9.0'} 991 | peerDependencies: 992 | '@babel/core': ^7.0.0-0 993 | dependencies: 994 | '@babel/core': 7.20.12 995 | '@babel/helper-plugin-utils': 7.20.2 996 | dev: false 997 | 998 | /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.12: 999 | resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} 1000 | engines: {node: '>=6.9.0'} 1001 | peerDependencies: 1002 | '@babel/core': ^7.0.0-0 1003 | dependencies: 1004 | '@babel/core': 7.20.12 1005 | '@babel/helper-plugin-utils': 7.20.2 1006 | '@babel/helper-replace-supers': 7.20.7 1007 | transitivePeerDependencies: 1008 | - supports-color 1009 | dev: false 1010 | 1011 | /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.20.12: 1012 | resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} 1013 | engines: {node: '>=6.9.0'} 1014 | peerDependencies: 1015 | '@babel/core': ^7.0.0-0 1016 | dependencies: 1017 | '@babel/core': 7.20.12 1018 | '@babel/helper-plugin-utils': 7.20.2 1019 | dev: false 1020 | 1021 | /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.12: 1022 | resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} 1023 | engines: {node: '>=6.9.0'} 1024 | peerDependencies: 1025 | '@babel/core': ^7.0.0-0 1026 | dependencies: 1027 | '@babel/core': 7.20.12 1028 | '@babel/helper-plugin-utils': 7.20.2 1029 | dev: false 1030 | 1031 | /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.12: 1032 | resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} 1033 | engines: {node: '>=6.9.0'} 1034 | peerDependencies: 1035 | '@babel/core': ^7.0.0-0 1036 | dependencies: 1037 | '@babel/core': 7.20.12 1038 | '@babel/helper-plugin-utils': 7.20.2 1039 | dev: false 1040 | 1041 | /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.12: 1042 | resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} 1043 | engines: {node: '>=6.9.0'} 1044 | peerDependencies: 1045 | '@babel/core': ^7.0.0-0 1046 | dependencies: 1047 | '@babel/core': 7.20.12 1048 | '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12 1049 | dev: false 1050 | 1051 | /@babel/plugin-transform-react-jsx/7.20.7_@babel+core@7.20.12: 1052 | resolution: {integrity: sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==} 1053 | engines: {node: '>=6.9.0'} 1054 | peerDependencies: 1055 | '@babel/core': ^7.0.0-0 1056 | dependencies: 1057 | '@babel/core': 7.20.12 1058 | '@babel/helper-annotate-as-pure': 7.18.6 1059 | '@babel/helper-module-imports': 7.18.6 1060 | '@babel/helper-plugin-utils': 7.20.2 1061 | '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12 1062 | '@babel/types': 7.20.7 1063 | dev: false 1064 | 1065 | /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.12: 1066 | resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} 1067 | engines: {node: '>=6.9.0'} 1068 | peerDependencies: 1069 | '@babel/core': ^7.0.0-0 1070 | dependencies: 1071 | '@babel/core': 7.20.12 1072 | '@babel/helper-annotate-as-pure': 7.18.6 1073 | '@babel/helper-plugin-utils': 7.20.2 1074 | dev: false 1075 | 1076 | /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.12: 1077 | resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} 1078 | engines: {node: '>=6.9.0'} 1079 | peerDependencies: 1080 | '@babel/core': ^7.0.0-0 1081 | dependencies: 1082 | '@babel/core': 7.20.12 1083 | '@babel/helper-plugin-utils': 7.20.2 1084 | regenerator-transform: 0.15.1 1085 | dev: false 1086 | 1087 | /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.12: 1088 | resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} 1089 | engines: {node: '>=6.9.0'} 1090 | peerDependencies: 1091 | '@babel/core': ^7.0.0-0 1092 | dependencies: 1093 | '@babel/core': 7.20.12 1094 | '@babel/helper-plugin-utils': 7.20.2 1095 | dev: false 1096 | 1097 | /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.12: 1098 | resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} 1099 | engines: {node: '>=6.9.0'} 1100 | peerDependencies: 1101 | '@babel/core': ^7.0.0-0 1102 | dependencies: 1103 | '@babel/core': 7.20.12 1104 | '@babel/helper-plugin-utils': 7.20.2 1105 | dev: false 1106 | 1107 | /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.12: 1108 | resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} 1109 | engines: {node: '>=6.9.0'} 1110 | peerDependencies: 1111 | '@babel/core': ^7.0.0-0 1112 | dependencies: 1113 | '@babel/core': 7.20.12 1114 | '@babel/helper-plugin-utils': 7.20.2 1115 | '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 1116 | dev: false 1117 | 1118 | /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.12: 1119 | resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} 1120 | engines: {node: '>=6.9.0'} 1121 | peerDependencies: 1122 | '@babel/core': ^7.0.0-0 1123 | dependencies: 1124 | '@babel/core': 7.20.12 1125 | '@babel/helper-plugin-utils': 7.20.2 1126 | dev: false 1127 | 1128 | /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.12: 1129 | resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} 1130 | engines: {node: '>=6.9.0'} 1131 | peerDependencies: 1132 | '@babel/core': ^7.0.0-0 1133 | dependencies: 1134 | '@babel/core': 7.20.12 1135 | '@babel/helper-plugin-utils': 7.20.2 1136 | dev: false 1137 | 1138 | /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.12: 1139 | resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} 1140 | engines: {node: '>=6.9.0'} 1141 | peerDependencies: 1142 | '@babel/core': ^7.0.0-0 1143 | dependencies: 1144 | '@babel/core': 7.20.12 1145 | '@babel/helper-plugin-utils': 7.20.2 1146 | dev: false 1147 | 1148 | /@babel/plugin-transform-typescript/7.20.7_@babel+core@7.20.12: 1149 | resolution: {integrity: sha512-m3wVKEvf6SoszD8pu4NZz3PvfKRCMgk6D6d0Qi9hNnlM5M6CFS92EgF4EiHVLKbU0r/r7ty1hg7NPZwE7WRbYw==} 1150 | engines: {node: '>=6.9.0'} 1151 | peerDependencies: 1152 | '@babel/core': ^7.0.0-0 1153 | dependencies: 1154 | '@babel/core': 7.20.12 1155 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 1156 | '@babel/helper-plugin-utils': 7.20.2 1157 | '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.12 1158 | transitivePeerDependencies: 1159 | - supports-color 1160 | dev: false 1161 | 1162 | /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.12: 1163 | resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} 1164 | engines: {node: '>=6.9.0'} 1165 | peerDependencies: 1166 | '@babel/core': ^7.0.0-0 1167 | dependencies: 1168 | '@babel/core': 7.20.12 1169 | '@babel/helper-plugin-utils': 7.20.2 1170 | dev: false 1171 | 1172 | /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.12: 1173 | resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} 1174 | engines: {node: '>=6.9.0'} 1175 | peerDependencies: 1176 | '@babel/core': ^7.0.0-0 1177 | dependencies: 1178 | '@babel/core': 7.20.12 1179 | '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 1180 | '@babel/helper-plugin-utils': 7.20.2 1181 | dev: false 1182 | 1183 | /@babel/preset-env/7.20.2_@babel+core@7.20.12: 1184 | resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} 1185 | engines: {node: '>=6.9.0'} 1186 | peerDependencies: 1187 | '@babel/core': ^7.0.0-0 1188 | dependencies: 1189 | '@babel/compat-data': 7.20.10 1190 | '@babel/core': 7.20.12 1191 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 1192 | '@babel/helper-plugin-utils': 7.20.2 1193 | '@babel/helper-validator-option': 7.18.6 1194 | '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.12 1195 | '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.20.12 1196 | '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.12 1197 | '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12 1198 | '@babel/plugin-proposal-class-static-block': 7.20.7_@babel+core@7.20.12 1199 | '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.12 1200 | '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.12 1201 | '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.12 1202 | '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.20.12 1203 | '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12 1204 | '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.12 1205 | '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12 1206 | '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.12 1207 | '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12 1208 | '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12 1209 | '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.12 1210 | '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12 1211 | '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 1212 | '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12 1213 | '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 1214 | '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 1215 | '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 1216 | '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.12 1217 | '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 1218 | '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 1219 | '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 1220 | '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 1221 | '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 1222 | '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 1223 | '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 1224 | '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 1225 | '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12 1226 | '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.12 1227 | '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.12 1228 | '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.12 1229 | '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.20.12 1230 | '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.12 1231 | '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.12 1232 | '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.12 1233 | '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12 1234 | '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.12 1235 | '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.12 1236 | '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12 1237 | '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.12 1238 | '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.12 1239 | '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.12 1240 | '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.20.12 1241 | '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12 1242 | '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.20.12 1243 | '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.12 1244 | '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.12 1245 | '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.12 1246 | '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.12 1247 | '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12 1248 | '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.12 1249 | '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.12 1250 | '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.12 1251 | '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12 1252 | '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12 1253 | '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.12 1254 | '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12 1255 | '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.12 1256 | '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.12 1257 | '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.12 1258 | '@babel/preset-modules': 0.1.5_@babel+core@7.20.12 1259 | '@babel/types': 7.20.7 1260 | babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12 1261 | babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12 1262 | babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12 1263 | core-js-compat: 3.27.2 1264 | semver: 6.3.0 1265 | transitivePeerDependencies: 1266 | - supports-color 1267 | dev: false 1268 | 1269 | /@babel/preset-modules/0.1.5_@babel+core@7.20.12: 1270 | resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} 1271 | peerDependencies: 1272 | '@babel/core': ^7.0.0-0 1273 | dependencies: 1274 | '@babel/core': 7.20.12 1275 | '@babel/helper-plugin-utils': 7.20.2 1276 | '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12 1277 | '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12 1278 | '@babel/types': 7.20.7 1279 | esutils: 2.0.3 1280 | dev: false 1281 | 1282 | /@babel/preset-react/7.18.6_@babel+core@7.20.12: 1283 | resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} 1284 | engines: {node: '>=6.9.0'} 1285 | peerDependencies: 1286 | '@babel/core': ^7.0.0-0 1287 | dependencies: 1288 | '@babel/core': 7.20.12 1289 | '@babel/helper-plugin-utils': 7.20.2 1290 | '@babel/helper-validator-option': 7.18.6 1291 | '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.12 1292 | '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12 1293 | '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.12 1294 | '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.12 1295 | dev: false 1296 | 1297 | /@babel/preset-typescript/7.18.6_@babel+core@7.20.12: 1298 | resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} 1299 | engines: {node: '>=6.9.0'} 1300 | peerDependencies: 1301 | '@babel/core': ^7.0.0-0 1302 | dependencies: 1303 | '@babel/core': 7.20.12 1304 | '@babel/helper-plugin-utils': 7.20.2 1305 | '@babel/helper-validator-option': 7.18.6 1306 | '@babel/plugin-transform-typescript': 7.20.7_@babel+core@7.20.12 1307 | transitivePeerDependencies: 1308 | - supports-color 1309 | dev: false 1310 | 1311 | /@babel/runtime/7.20.7: 1312 | resolution: {integrity: sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==} 1313 | engines: {node: '>=6.9.0'} 1314 | dependencies: 1315 | regenerator-runtime: 0.13.11 1316 | 1317 | /@babel/template/7.20.7: 1318 | resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} 1319 | engines: {node: '>=6.9.0'} 1320 | dependencies: 1321 | '@babel/code-frame': 7.18.6 1322 | '@babel/parser': 7.20.7 1323 | '@babel/types': 7.20.7 1324 | 1325 | /@babel/traverse/7.20.12: 1326 | resolution: {integrity: sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==} 1327 | engines: {node: '>=6.9.0'} 1328 | dependencies: 1329 | '@babel/code-frame': 7.18.6 1330 | '@babel/generator': 7.20.7 1331 | '@babel/helper-environment-visitor': 7.18.9 1332 | '@babel/helper-function-name': 7.19.0 1333 | '@babel/helper-hoist-variables': 7.18.6 1334 | '@babel/helper-split-export-declaration': 7.18.6 1335 | '@babel/parser': 7.20.7 1336 | '@babel/types': 7.20.7 1337 | debug: 4.3.4 1338 | globals: 11.12.0 1339 | transitivePeerDependencies: 1340 | - supports-color 1341 | 1342 | /@babel/types/7.20.7: 1343 | resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==} 1344 | engines: {node: '>=6.9.0'} 1345 | dependencies: 1346 | '@babel/helper-string-parser': 7.19.4 1347 | '@babel/helper-validator-identifier': 7.19.1 1348 | to-fast-properties: 2.0.0 1349 | 1350 | /@emotion/unitless/0.8.0: 1351 | resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==} 1352 | dev: false 1353 | 1354 | /@eslint/eslintrc/1.4.1: 1355 | resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==} 1356 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1357 | dependencies: 1358 | ajv: 6.12.6 1359 | debug: 4.3.4 1360 | espree: 9.4.1 1361 | globals: 13.19.0 1362 | ignore: 5.2.4 1363 | import-fresh: 3.3.0 1364 | js-yaml: 4.1.0 1365 | minimatch: 3.1.2 1366 | strip-json-comments: 3.1.1 1367 | transitivePeerDependencies: 1368 | - supports-color 1369 | 1370 | /@humanwhocodes/config-array/0.11.8: 1371 | resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} 1372 | engines: {node: '>=10.10.0'} 1373 | dependencies: 1374 | '@humanwhocodes/object-schema': 1.2.1 1375 | debug: 4.3.4 1376 | minimatch: 3.1.2 1377 | transitivePeerDependencies: 1378 | - supports-color 1379 | 1380 | /@humanwhocodes/module-importer/1.0.1: 1381 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 1382 | engines: {node: '>=12.22'} 1383 | 1384 | /@humanwhocodes/object-schema/1.2.1: 1385 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 1386 | 1387 | /@jridgewell/gen-mapping/0.1.1: 1388 | resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} 1389 | engines: {node: '>=6.0.0'} 1390 | dependencies: 1391 | '@jridgewell/set-array': 1.1.2 1392 | '@jridgewell/sourcemap-codec': 1.4.14 1393 | dev: false 1394 | 1395 | /@jridgewell/gen-mapping/0.3.2: 1396 | resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} 1397 | engines: {node: '>=6.0.0'} 1398 | dependencies: 1399 | '@jridgewell/set-array': 1.1.2 1400 | '@jridgewell/sourcemap-codec': 1.4.14 1401 | '@jridgewell/trace-mapping': 0.3.17 1402 | 1403 | /@jridgewell/resolve-uri/3.1.0: 1404 | resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} 1405 | engines: {node: '>=6.0.0'} 1406 | 1407 | /@jridgewell/set-array/1.1.2: 1408 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 1409 | engines: {node: '>=6.0.0'} 1410 | 1411 | /@jridgewell/sourcemap-codec/1.4.14: 1412 | resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} 1413 | 1414 | /@jridgewell/trace-mapping/0.3.17: 1415 | resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} 1416 | dependencies: 1417 | '@jridgewell/resolve-uri': 3.1.0 1418 | '@jridgewell/sourcemap-codec': 1.4.14 1419 | 1420 | /@next/env/13.1.5: 1421 | resolution: {integrity: sha512-0Ry4NhJy6qLbXhvxPRUQ1H6RzgtryGdUto7hfgAK0Iw/bScgeVjwLZdfhm2iT7qsOS32apo9cWzLCxjc6iGPsA==} 1422 | dev: false 1423 | 1424 | /@next/eslint-plugin-next/13.1.1: 1425 | resolution: {integrity: sha512-SBrOFS8PC3nQ5aeZmawJkjKkWjwK9RoxvBSv/86nZp0ubdoVQoko8r8htALd9ufp16NhacCdqhu9bzZLDWtALQ==} 1426 | dependencies: 1427 | glob: 7.1.7 1428 | dev: true 1429 | 1430 | /@next/font/13.1.5: 1431 | resolution: {integrity: sha512-6M5R6yC3JkdJiqo/YJxDp6+0vDn0smXOAzl8uHt4qmDS2u53ji/19K0HM51d+5kg8xntDi+N2hw7YjaU9inkNA==} 1432 | dev: false 1433 | 1434 | /@next/swc-android-arm-eabi/13.1.5: 1435 | resolution: {integrity: sha512-QAEf3YM9U0qWVQTxgF3Tsh4OeCN1i9Smsf6cVlwZsPzoLyj2nQ879joCoN+ONqDknkBgG6OG/ajefywL3jw9Cg==} 1436 | engines: {node: '>= 10'} 1437 | cpu: [arm] 1438 | os: [android] 1439 | requiresBuild: true 1440 | dev: false 1441 | optional: true 1442 | 1443 | /@next/swc-android-arm64/13.1.5: 1444 | resolution: {integrity: sha512-ZmtGPTghRuT5YKL0nNcC2bBVSiG1O0is16eIZ2rWSP/hRW64ZCcAew6pxw2rihntNp22UfequjSTHd91WE/tyQ==} 1445 | engines: {node: '>= 10'} 1446 | cpu: [arm64] 1447 | os: [android] 1448 | requiresBuild: true 1449 | dev: false 1450 | optional: true 1451 | 1452 | /@next/swc-darwin-arm64/13.1.5: 1453 | resolution: {integrity: sha512-aeFXK+M/zmG/CNdMJ0tGNs0MWcLueUe7vZ2V6fa+2yz/ZgYJLI7fEfFvVh1p1yBMzupSbZDowvMuCSFTaeg3MA==} 1454 | engines: {node: '>= 10'} 1455 | cpu: [arm64] 1456 | os: [darwin] 1457 | requiresBuild: true 1458 | dev: false 1459 | optional: true 1460 | 1461 | /@next/swc-darwin-x64/13.1.5: 1462 | resolution: {integrity: sha512-6mPX0GNRg8NzjV70at8I8pD9YBnPHDpxJCoMuIqysdTjtQhd09Xk6GUhquNhp1kEJzzVk7OW5l2ch4XIJjtY3A==} 1463 | engines: {node: '>= 10'} 1464 | cpu: [x64] 1465 | os: [darwin] 1466 | requiresBuild: true 1467 | dev: false 1468 | optional: true 1469 | 1470 | /@next/swc-freebsd-x64/13.1.5: 1471 | resolution: {integrity: sha512-nR4a/SNblG0w8hhYRflTZjk4yD99ld18w/FCftw99ziw8sgciBlOXRICJIiRIaMRU8UH7QLSgBOQVnfNcVNKMA==} 1472 | engines: {node: '>= 10'} 1473 | cpu: [x64] 1474 | os: [freebsd] 1475 | requiresBuild: true 1476 | dev: false 1477 | optional: true 1478 | 1479 | /@next/swc-linux-arm-gnueabihf/13.1.5: 1480 | resolution: {integrity: sha512-EzkltCVKg3gUzamoeKPhGeSgXTTLAhSzc7v/+g1Y+HQa7JKMrlzdRkrJf+H4LJXcz7lnxgNKHGRyZBSXnmJKJw==} 1481 | engines: {node: '>= 10'} 1482 | cpu: [arm] 1483 | os: [linux] 1484 | requiresBuild: true 1485 | dev: false 1486 | optional: true 1487 | 1488 | /@next/swc-linux-arm64-gnu/13.1.5: 1489 | resolution: {integrity: sha512-E7HMkdoxStmTUJU4KzBUU4vZ5DHT4Gd327tC3KFZS5lda0NRerJAOCfsRg+fBj22FvCb1UWsX6XI+weL6xhyeQ==} 1490 | engines: {node: '>= 10'} 1491 | cpu: [arm64] 1492 | os: [linux] 1493 | requiresBuild: true 1494 | dev: false 1495 | optional: true 1496 | 1497 | /@next/swc-linux-arm64-musl/13.1.5: 1498 | resolution: {integrity: sha512-qlO0Fd3GQwJS6YpbF9NyL5NGHVZ43dKtZDC/jP4vdeMIYDtSu13HcY/nmA1NdW+RpMwDxSCpx4WKsCCEZGIX8Q==} 1499 | engines: {node: '>= 10'} 1500 | cpu: [arm64] 1501 | os: [linux] 1502 | requiresBuild: true 1503 | dev: false 1504 | optional: true 1505 | 1506 | /@next/swc-linux-x64-gnu/13.1.5: 1507 | resolution: {integrity: sha512-GftSBFAay2nocGl+KNqFsj6EVSvomaM/bp86hzezbKsTwQmu76PjOCVcejI1gE+4k7f5zPDgCuorF6F04BV0HQ==} 1508 | engines: {node: '>= 10'} 1509 | cpu: [x64] 1510 | os: [linux] 1511 | requiresBuild: true 1512 | dev: false 1513 | optional: true 1514 | 1515 | /@next/swc-linux-x64-musl/13.1.5: 1516 | resolution: {integrity: sha512-UD+3lxU4yuAjd+uBkCDfBpAcbGAVfEcE8mX/efIxUGIImmzN0QzgTHYEpKFnY3Lxu02dIBcwQRT3Q5mfO4obng==} 1517 | engines: {node: '>= 10'} 1518 | cpu: [x64] 1519 | os: [linux] 1520 | requiresBuild: true 1521 | dev: false 1522 | optional: true 1523 | 1524 | /@next/swc-win32-arm64-msvc/13.1.5: 1525 | resolution: {integrity: sha512-uzsvkQY+K3EbL+97IUHPWZPwjsCmCkdH/O5Cf9wCnh0k0gaj7ob1mGKqr1vNNak+9U7HloGwuHcXnZpijWSP7w==} 1526 | engines: {node: '>= 10'} 1527 | cpu: [arm64] 1528 | os: [win32] 1529 | requiresBuild: true 1530 | dev: false 1531 | optional: true 1532 | 1533 | /@next/swc-win32-ia32-msvc/13.1.5: 1534 | resolution: {integrity: sha512-v0NaC1w8mPf620GlJaHBdEm3dm4G4AEQMasDqjzQvo0yCRrvtvzMgCIe8MocBxFHzaF6868NybMqvumxP5YxEg==} 1535 | engines: {node: '>= 10'} 1536 | cpu: [ia32] 1537 | os: [win32] 1538 | requiresBuild: true 1539 | dev: false 1540 | optional: true 1541 | 1542 | /@next/swc-win32-x64-msvc/13.1.5: 1543 | resolution: {integrity: sha512-IZHwvd649ccbWyLCfu92IXEpR250NpmBkaRelPV+WVm4jrd62FKRFCNdqdCXq6TrEg9wN8cK4YG8tm44uEZqLA==} 1544 | engines: {node: '>= 10'} 1545 | cpu: [x64] 1546 | os: [win32] 1547 | requiresBuild: true 1548 | dev: false 1549 | optional: true 1550 | 1551 | /@nicolo-ribaudo/chokidar-2/2.1.8-no-fsevents.3: 1552 | resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} 1553 | requiresBuild: true 1554 | dev: false 1555 | optional: true 1556 | 1557 | /@nodelib/fs.scandir/2.1.5: 1558 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 1559 | engines: {node: '>= 8'} 1560 | dependencies: 1561 | '@nodelib/fs.stat': 2.0.5 1562 | run-parallel: 1.2.0 1563 | 1564 | /@nodelib/fs.stat/2.0.5: 1565 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 1566 | engines: {node: '>= 8'} 1567 | 1568 | /@nodelib/fs.walk/1.2.8: 1569 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 1570 | engines: {node: '>= 8'} 1571 | dependencies: 1572 | '@nodelib/fs.scandir': 2.1.5 1573 | fastq: 1.15.0 1574 | 1575 | /@pkgr/utils/2.3.1: 1576 | resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==} 1577 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 1578 | dependencies: 1579 | cross-spawn: 7.0.3 1580 | is-glob: 4.0.3 1581 | open: 8.4.0 1582 | picocolors: 1.0.0 1583 | tiny-glob: 0.2.9 1584 | tslib: 2.4.1 1585 | dev: true 1586 | 1587 | /@rushstack/eslint-patch/1.2.0: 1588 | resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==} 1589 | dev: true 1590 | 1591 | /@swc/helpers/0.4.14: 1592 | resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} 1593 | dependencies: 1594 | tslib: 2.4.1 1595 | dev: false 1596 | 1597 | /@types/json-schema/7.0.11: 1598 | resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} 1599 | dev: false 1600 | 1601 | /@types/json5/0.0.29: 1602 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 1603 | 1604 | /@types/node/18.11.18: 1605 | resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==} 1606 | dev: true 1607 | 1608 | /@types/prop-types/15.7.5: 1609 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} 1610 | dev: true 1611 | 1612 | /@types/react-dom/18.0.10: 1613 | resolution: {integrity: sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==} 1614 | dependencies: 1615 | '@types/react': 18.0.26 1616 | dev: true 1617 | 1618 | /@types/react/18.0.26: 1619 | resolution: {integrity: sha512-hCR3PJQsAIXyxhTNSiDFY//LhnMZWpNNr5etoCqx/iUfGc5gXWtQR2Phl908jVR6uPXacojQWTg4qRpkxTuGug==} 1620 | dependencies: 1621 | '@types/prop-types': 15.7.5 1622 | '@types/scheduler': 0.16.2 1623 | csstype: 3.1.1 1624 | dev: true 1625 | 1626 | /@types/scheduler/0.16.2: 1627 | resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} 1628 | dev: true 1629 | 1630 | /@types/semver/7.3.13: 1631 | resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} 1632 | dev: false 1633 | 1634 | /@typescript-eslint/eslint-plugin/5.49.0_z274t7mj3d3d3lkbtjv4yganzm: 1635 | resolution: {integrity: sha512-IhxabIpcf++TBaBa1h7jtOWyon80SXPRLDq0dVz5SLFC/eW6tofkw/O7Ar3lkx5z5U6wzbKDrl2larprp5kk5Q==} 1636 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1637 | peerDependencies: 1638 | '@typescript-eslint/parser': ^5.0.0 1639 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 1640 | typescript: '*' 1641 | peerDependenciesMeta: 1642 | typescript: 1643 | optional: true 1644 | dependencies: 1645 | '@typescript-eslint/parser': 5.48.2_iukboom6ndih5an6iafl45j2fe 1646 | '@typescript-eslint/scope-manager': 5.49.0 1647 | '@typescript-eslint/type-utils': 5.49.0_iukboom6ndih5an6iafl45j2fe 1648 | '@typescript-eslint/utils': 5.49.0_iukboom6ndih5an6iafl45j2fe 1649 | debug: 4.3.4 1650 | eslint: 8.31.0 1651 | ignore: 5.2.4 1652 | natural-compare-lite: 1.4.0 1653 | regexpp: 3.2.0 1654 | semver: 7.3.8 1655 | tsutils: 3.21.0_typescript@4.9.4 1656 | typescript: 4.9.4 1657 | transitivePeerDependencies: 1658 | - supports-color 1659 | dev: false 1660 | 1661 | /@typescript-eslint/parser/5.48.2_iukboom6ndih5an6iafl45j2fe: 1662 | resolution: {integrity: sha512-38zMsKsG2sIuM5Oi/olurGwYJXzmtdsHhn5mI/pQogP+BjYVkK5iRazCQ8RGS0V+YLk282uWElN70zAAUmaYHw==} 1663 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1664 | peerDependencies: 1665 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 1666 | typescript: '*' 1667 | peerDependenciesMeta: 1668 | typescript: 1669 | optional: true 1670 | dependencies: 1671 | '@typescript-eslint/scope-manager': 5.48.2 1672 | '@typescript-eslint/types': 5.48.2 1673 | '@typescript-eslint/typescript-estree': 5.48.2_typescript@4.9.4 1674 | debug: 4.3.4 1675 | eslint: 8.31.0 1676 | typescript: 4.9.4 1677 | transitivePeerDependencies: 1678 | - supports-color 1679 | 1680 | /@typescript-eslint/scope-manager/5.48.2: 1681 | resolution: {integrity: sha512-zEUFfonQid5KRDKoI3O+uP1GnrFd4tIHlvs+sTJXiWuypUWMuDaottkJuR612wQfOkjYbsaskSIURV9xo4f+Fw==} 1682 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1683 | dependencies: 1684 | '@typescript-eslint/types': 5.48.2 1685 | '@typescript-eslint/visitor-keys': 5.48.2 1686 | 1687 | /@typescript-eslint/scope-manager/5.49.0: 1688 | resolution: {integrity: sha512-clpROBOiMIzpbWNxCe1xDK14uPZh35u4QaZO1GddilEzoCLAEz4szb51rBpdgurs5k2YzPtJeTEN3qVbG+LRUQ==} 1689 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1690 | dependencies: 1691 | '@typescript-eslint/types': 5.49.0 1692 | '@typescript-eslint/visitor-keys': 5.49.0 1693 | dev: false 1694 | 1695 | /@typescript-eslint/type-utils/5.49.0_iukboom6ndih5an6iafl45j2fe: 1696 | resolution: {integrity: sha512-eUgLTYq0tR0FGU5g1YHm4rt5H/+V2IPVkP0cBmbhRyEmyGe4XvJ2YJ6sYTmONfjmdMqyMLad7SB8GvblbeESZA==} 1697 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1698 | peerDependencies: 1699 | eslint: '*' 1700 | typescript: '*' 1701 | peerDependenciesMeta: 1702 | typescript: 1703 | optional: true 1704 | dependencies: 1705 | '@typescript-eslint/typescript-estree': 5.49.0_typescript@4.9.4 1706 | '@typescript-eslint/utils': 5.49.0_iukboom6ndih5an6iafl45j2fe 1707 | debug: 4.3.4 1708 | eslint: 8.31.0 1709 | tsutils: 3.21.0_typescript@4.9.4 1710 | typescript: 4.9.4 1711 | transitivePeerDependencies: 1712 | - supports-color 1713 | dev: false 1714 | 1715 | /@typescript-eslint/types/5.48.2: 1716 | resolution: {integrity: sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA==} 1717 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1718 | 1719 | /@typescript-eslint/types/5.49.0: 1720 | resolution: {integrity: sha512-7If46kusG+sSnEpu0yOz2xFv5nRz158nzEXnJFCGVEHWnuzolXKwrH5Bsf9zsNlOQkyZuk0BZKKoJQI+1JPBBg==} 1721 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1722 | dev: false 1723 | 1724 | /@typescript-eslint/typescript-estree/5.48.2_typescript@4.9.4: 1725 | resolution: {integrity: sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg==} 1726 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1727 | peerDependencies: 1728 | typescript: '*' 1729 | peerDependenciesMeta: 1730 | typescript: 1731 | optional: true 1732 | dependencies: 1733 | '@typescript-eslint/types': 5.48.2 1734 | '@typescript-eslint/visitor-keys': 5.48.2 1735 | debug: 4.3.4 1736 | globby: 11.1.0 1737 | is-glob: 4.0.3 1738 | semver: 7.3.8 1739 | tsutils: 3.21.0_typescript@4.9.4 1740 | typescript: 4.9.4 1741 | transitivePeerDependencies: 1742 | - supports-color 1743 | 1744 | /@typescript-eslint/typescript-estree/5.49.0_typescript@4.9.4: 1745 | resolution: {integrity: sha512-PBdx+V7deZT/3GjNYPVQv1Nc0U46dAHbIuOG8AZ3on3vuEKiPDwFE/lG1snN2eUB9IhF7EyF7K1hmTcLztNIsA==} 1746 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1747 | peerDependencies: 1748 | typescript: '*' 1749 | peerDependenciesMeta: 1750 | typescript: 1751 | optional: true 1752 | dependencies: 1753 | '@typescript-eslint/types': 5.49.0 1754 | '@typescript-eslint/visitor-keys': 5.49.0 1755 | debug: 4.3.4 1756 | globby: 11.1.0 1757 | is-glob: 4.0.3 1758 | semver: 7.3.8 1759 | tsutils: 3.21.0_typescript@4.9.4 1760 | typescript: 4.9.4 1761 | transitivePeerDependencies: 1762 | - supports-color 1763 | dev: false 1764 | 1765 | /@typescript-eslint/utils/5.49.0_iukboom6ndih5an6iafl45j2fe: 1766 | resolution: {integrity: sha512-cPJue/4Si25FViIb74sHCLtM4nTSBXtLx1d3/QT6mirQ/c65bV8arBEebBJJizfq8W2YyMoPI/WWPFWitmNqnQ==} 1767 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1768 | peerDependencies: 1769 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 1770 | dependencies: 1771 | '@types/json-schema': 7.0.11 1772 | '@types/semver': 7.3.13 1773 | '@typescript-eslint/scope-manager': 5.49.0 1774 | '@typescript-eslint/types': 5.49.0 1775 | '@typescript-eslint/typescript-estree': 5.49.0_typescript@4.9.4 1776 | eslint: 8.31.0 1777 | eslint-scope: 5.1.1 1778 | eslint-utils: 3.0.0_eslint@8.31.0 1779 | semver: 7.3.8 1780 | transitivePeerDependencies: 1781 | - supports-color 1782 | - typescript 1783 | dev: false 1784 | 1785 | /@typescript-eslint/visitor-keys/5.48.2: 1786 | resolution: {integrity: sha512-z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ==} 1787 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1788 | dependencies: 1789 | '@typescript-eslint/types': 5.48.2 1790 | eslint-visitor-keys: 3.3.0 1791 | 1792 | /@typescript-eslint/visitor-keys/5.49.0: 1793 | resolution: {integrity: sha512-v9jBMjpNWyn8B6k/Mjt6VbUS4J1GvUlR4x3Y+ibnP1z7y7V4n0WRz+50DY6+Myj0UaXVSuUlHohO+eZ8IJEnkg==} 1794 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1795 | dependencies: 1796 | '@typescript-eslint/types': 5.49.0 1797 | eslint-visitor-keys: 3.3.0 1798 | dev: false 1799 | 1800 | /acorn-jsx/5.3.2_acorn@8.8.1: 1801 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 1802 | peerDependencies: 1803 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 1804 | dependencies: 1805 | acorn: 8.8.1 1806 | 1807 | /acorn-node/1.8.2: 1808 | resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} 1809 | dependencies: 1810 | acorn: 7.4.1 1811 | acorn-walk: 7.2.0 1812 | xtend: 4.0.2 1813 | dev: true 1814 | 1815 | /acorn-walk/7.2.0: 1816 | resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} 1817 | engines: {node: '>=0.4.0'} 1818 | dev: true 1819 | 1820 | /acorn/7.4.1: 1821 | resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} 1822 | engines: {node: '>=0.4.0'} 1823 | hasBin: true 1824 | dev: true 1825 | 1826 | /acorn/8.8.1: 1827 | resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==} 1828 | engines: {node: '>=0.4.0'} 1829 | hasBin: true 1830 | 1831 | /airbnb/0.0.2: 1832 | resolution: {integrity: sha512-eC+7zzGrcM///BKt04V23v+W3b9dWDUltOzo0j5lzjhvvMc4EiSxh55k2vlVnHTZ0igqA8/i/1j2j+m7UlZ54w==} 1833 | hasBin: true 1834 | dependencies: 1835 | chalk: 2.4.2 1836 | dev: false 1837 | 1838 | /ajv/6.12.6: 1839 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 1840 | dependencies: 1841 | fast-deep-equal: 3.1.3 1842 | fast-json-stable-stringify: 2.1.0 1843 | json-schema-traverse: 0.4.1 1844 | uri-js: 4.4.1 1845 | 1846 | /ansi-regex/5.0.1: 1847 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 1848 | engines: {node: '>=8'} 1849 | 1850 | /ansi-styles/3.2.1: 1851 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 1852 | engines: {node: '>=4'} 1853 | dependencies: 1854 | color-convert: 1.9.3 1855 | 1856 | /ansi-styles/4.3.0: 1857 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 1858 | engines: {node: '>=8'} 1859 | dependencies: 1860 | color-convert: 2.0.1 1861 | 1862 | /anymatch/3.1.3: 1863 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 1864 | engines: {node: '>= 8'} 1865 | dependencies: 1866 | normalize-path: 3.0.0 1867 | picomatch: 2.3.1 1868 | 1869 | /arg/5.0.2: 1870 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 1871 | dev: true 1872 | 1873 | /argparse/2.0.1: 1874 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 1875 | 1876 | /aria-query/5.1.3: 1877 | resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} 1878 | dependencies: 1879 | deep-equal: 2.2.0 1880 | 1881 | /array-includes/3.1.6: 1882 | resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} 1883 | engines: {node: '>= 0.4'} 1884 | dependencies: 1885 | call-bind: 1.0.2 1886 | define-properties: 1.1.4 1887 | es-abstract: 1.21.1 1888 | get-intrinsic: 1.1.3 1889 | is-string: 1.0.7 1890 | 1891 | /array-union/2.1.0: 1892 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 1893 | engines: {node: '>=8'} 1894 | 1895 | /array.prototype.flat/1.3.1: 1896 | resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} 1897 | engines: {node: '>= 0.4'} 1898 | dependencies: 1899 | call-bind: 1.0.2 1900 | define-properties: 1.1.4 1901 | es-abstract: 1.21.1 1902 | es-shim-unscopables: 1.0.0 1903 | 1904 | /array.prototype.flatmap/1.3.1: 1905 | resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} 1906 | engines: {node: '>= 0.4'} 1907 | dependencies: 1908 | call-bind: 1.0.2 1909 | define-properties: 1.1.4 1910 | es-abstract: 1.21.1 1911 | es-shim-unscopables: 1.0.0 1912 | 1913 | /array.prototype.tosorted/1.1.1: 1914 | resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} 1915 | dependencies: 1916 | call-bind: 1.0.2 1917 | define-properties: 1.1.4 1918 | es-abstract: 1.21.1 1919 | es-shim-unscopables: 1.0.0 1920 | get-intrinsic: 1.1.3 1921 | 1922 | /ast-types-flow/0.0.7: 1923 | resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} 1924 | 1925 | /autoprefixer/10.4.13_postcss@8.4.21: 1926 | resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} 1927 | engines: {node: ^10 || ^12 || >=14} 1928 | hasBin: true 1929 | peerDependencies: 1930 | postcss: ^8.1.0 1931 | dependencies: 1932 | browserslist: 4.21.4 1933 | caniuse-lite: 1.0.30001445 1934 | fraction.js: 4.2.0 1935 | normalize-range: 0.1.2 1936 | picocolors: 1.0.0 1937 | postcss: 8.4.21 1938 | postcss-value-parser: 4.2.0 1939 | dev: true 1940 | 1941 | /available-typed-arrays/1.0.5: 1942 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 1943 | engines: {node: '>= 0.4'} 1944 | 1945 | /axe-core/4.6.2: 1946 | resolution: {integrity: sha512-b1WlTV8+XKLj9gZy2DZXgQiyDp9xkkoe2a6U6UbYccScq2wgH/YwCeI2/Jq2mgo0HzQxqJOjWZBLeA/mqsk5Mg==} 1947 | engines: {node: '>=4'} 1948 | 1949 | /axobject-query/3.1.1: 1950 | resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==} 1951 | dependencies: 1952 | deep-equal: 2.2.0 1953 | 1954 | /babel-eslint/10.1.0_eslint@8.31.0: 1955 | resolution: {integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==} 1956 | engines: {node: '>=6'} 1957 | deprecated: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates. 1958 | peerDependencies: 1959 | eslint: '>= 4.12.1' 1960 | dependencies: 1961 | '@babel/code-frame': 7.18.6 1962 | '@babel/parser': 7.20.7 1963 | '@babel/traverse': 7.20.12 1964 | '@babel/types': 7.20.7 1965 | eslint: 8.31.0 1966 | eslint-visitor-keys: 1.3.0 1967 | resolve: 1.22.1 1968 | transitivePeerDependencies: 1969 | - supports-color 1970 | dev: true 1971 | 1972 | /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.12: 1973 | resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} 1974 | peerDependencies: 1975 | '@babel/core': ^7.0.0-0 1976 | dependencies: 1977 | '@babel/compat-data': 7.20.10 1978 | '@babel/core': 7.20.12 1979 | '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 1980 | semver: 6.3.0 1981 | transitivePeerDependencies: 1982 | - supports-color 1983 | dev: false 1984 | 1985 | /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.12: 1986 | resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} 1987 | peerDependencies: 1988 | '@babel/core': ^7.0.0-0 1989 | dependencies: 1990 | '@babel/core': 7.20.12 1991 | '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 1992 | core-js-compat: 3.27.2 1993 | transitivePeerDependencies: 1994 | - supports-color 1995 | dev: false 1996 | 1997 | /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.12: 1998 | resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} 1999 | peerDependencies: 2000 | '@babel/core': ^7.0.0-0 2001 | dependencies: 2002 | '@babel/core': 7.20.12 2003 | '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 2004 | transitivePeerDependencies: 2005 | - supports-color 2006 | dev: false 2007 | 2008 | /balanced-match/1.0.2: 2009 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 2010 | 2011 | /binary-extensions/2.2.0: 2012 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 2013 | engines: {node: '>=8'} 2014 | 2015 | /brace-expansion/1.1.11: 2016 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 2017 | dependencies: 2018 | balanced-match: 1.0.2 2019 | concat-map: 0.0.1 2020 | 2021 | /braces/3.0.2: 2022 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 2023 | engines: {node: '>=8'} 2024 | dependencies: 2025 | fill-range: 7.0.1 2026 | 2027 | /browserslist/4.21.4: 2028 | resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} 2029 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 2030 | hasBin: true 2031 | dependencies: 2032 | caniuse-lite: 1.0.30001445 2033 | electron-to-chromium: 1.4.284 2034 | node-releases: 2.0.8 2035 | update-browserslist-db: 1.0.10_browserslist@4.21.4 2036 | 2037 | /call-bind/1.0.2: 2038 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 2039 | dependencies: 2040 | function-bind: 1.1.1 2041 | get-intrinsic: 1.1.3 2042 | 2043 | /callsites/3.1.0: 2044 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 2045 | engines: {node: '>=6'} 2046 | 2047 | /camelcase-css/2.0.1: 2048 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 2049 | engines: {node: '>= 6'} 2050 | dev: true 2051 | 2052 | /camelize/1.0.1: 2053 | resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} 2054 | dev: false 2055 | 2056 | /caniuse-lite/1.0.30001445: 2057 | resolution: {integrity: sha512-8sdQIdMztYmzfTMO6KfLny878Ln9c2M0fc7EH60IjlP4Dc4PiCy7K2Vl3ITmWgOyPgVQKa5x+UP/KqFsxj4mBg==} 2058 | 2059 | /chalk/2.4.2: 2060 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 2061 | engines: {node: '>=4'} 2062 | dependencies: 2063 | ansi-styles: 3.2.1 2064 | escape-string-regexp: 1.0.5 2065 | supports-color: 5.5.0 2066 | 2067 | /chalk/4.1.2: 2068 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 2069 | engines: {node: '>=10'} 2070 | dependencies: 2071 | ansi-styles: 4.3.0 2072 | supports-color: 7.2.0 2073 | 2074 | /chokidar/3.5.3: 2075 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 2076 | engines: {node: '>= 8.10.0'} 2077 | dependencies: 2078 | anymatch: 3.1.3 2079 | braces: 3.0.2 2080 | glob-parent: 5.1.2 2081 | is-binary-path: 2.1.0 2082 | is-glob: 4.0.3 2083 | normalize-path: 3.0.0 2084 | readdirp: 3.6.0 2085 | optionalDependencies: 2086 | fsevents: 2.3.2 2087 | 2088 | /client-only/0.0.1: 2089 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 2090 | dev: false 2091 | 2092 | /color-convert/1.9.3: 2093 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 2094 | dependencies: 2095 | color-name: 1.1.3 2096 | 2097 | /color-convert/2.0.1: 2098 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 2099 | engines: {node: '>=7.0.0'} 2100 | dependencies: 2101 | color-name: 1.1.4 2102 | 2103 | /color-name/1.1.3: 2104 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 2105 | 2106 | /color-name/1.1.4: 2107 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 2108 | 2109 | /commander/4.1.1: 2110 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 2111 | engines: {node: '>= 6'} 2112 | dev: false 2113 | 2114 | /concat-map/0.0.1: 2115 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 2116 | 2117 | /confusing-browser-globals/1.0.11: 2118 | resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} 2119 | dev: false 2120 | 2121 | /convert-source-map/1.9.0: 2122 | resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} 2123 | dev: false 2124 | 2125 | /core-js-compat/3.27.2: 2126 | resolution: {integrity: sha512-welaYuF7ZtbYKGrIy7y3eb40d37rG1FvzEOfe7hSLd2iD6duMDqUhRfSvCGyC46HhR6Y8JXXdZ2lnRUMkPBpvg==} 2127 | dependencies: 2128 | browserslist: 4.21.4 2129 | dev: false 2130 | 2131 | /cross-spawn/7.0.3: 2132 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 2133 | engines: {node: '>= 8'} 2134 | dependencies: 2135 | path-key: 3.1.1 2136 | shebang-command: 2.0.0 2137 | which: 2.0.2 2138 | 2139 | /css-color-keywords/1.0.0: 2140 | resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} 2141 | engines: {node: '>=4'} 2142 | dev: false 2143 | 2144 | /css-to-react-native/3.1.0: 2145 | resolution: {integrity: sha512-AryfkFA29b4I3vG7N4kxFboq15DxwSXzhXM37XNEjwJMgjYIc8BcqfiprpAqX0zadI5PMByEIwAMzXxk5Vcc4g==} 2146 | dependencies: 2147 | camelize: 1.0.1 2148 | css-color-keywords: 1.0.0 2149 | postcss-value-parser: 4.2.0 2150 | dev: false 2151 | 2152 | /cssesc/3.0.0: 2153 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 2154 | engines: {node: '>=4'} 2155 | hasBin: true 2156 | dev: true 2157 | 2158 | /csstype/3.1.1: 2159 | resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==} 2160 | dev: true 2161 | 2162 | /damerau-levenshtein/1.0.8: 2163 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 2164 | 2165 | /debug/3.2.7: 2166 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 2167 | peerDependencies: 2168 | supports-color: '*' 2169 | peerDependenciesMeta: 2170 | supports-color: 2171 | optional: true 2172 | dependencies: 2173 | ms: 2.1.3 2174 | 2175 | /debug/4.3.4: 2176 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 2177 | engines: {node: '>=6.0'} 2178 | peerDependencies: 2179 | supports-color: '*' 2180 | peerDependenciesMeta: 2181 | supports-color: 2182 | optional: true 2183 | dependencies: 2184 | ms: 2.1.2 2185 | 2186 | /deep-equal/2.2.0: 2187 | resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==} 2188 | dependencies: 2189 | call-bind: 1.0.2 2190 | es-get-iterator: 1.1.3 2191 | get-intrinsic: 1.1.3 2192 | is-arguments: 1.1.1 2193 | is-array-buffer: 3.0.1 2194 | is-date-object: 1.0.5 2195 | is-regex: 1.1.4 2196 | is-shared-array-buffer: 1.0.2 2197 | isarray: 2.0.5 2198 | object-is: 1.1.5 2199 | object-keys: 1.1.1 2200 | object.assign: 4.1.4 2201 | regexp.prototype.flags: 1.4.3 2202 | side-channel: 1.0.4 2203 | which-boxed-primitive: 1.0.2 2204 | which-collection: 1.0.1 2205 | which-typed-array: 1.1.9 2206 | 2207 | /deep-is/0.1.4: 2208 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 2209 | 2210 | /define-lazy-prop/2.0.0: 2211 | resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} 2212 | engines: {node: '>=8'} 2213 | dev: true 2214 | 2215 | /define-properties/1.1.4: 2216 | resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} 2217 | engines: {node: '>= 0.4'} 2218 | dependencies: 2219 | has-property-descriptors: 1.0.0 2220 | object-keys: 1.1.1 2221 | 2222 | /defined/1.0.1: 2223 | resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} 2224 | dev: true 2225 | 2226 | /detective/5.2.1: 2227 | resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==} 2228 | engines: {node: '>=0.8.0'} 2229 | hasBin: true 2230 | dependencies: 2231 | acorn-node: 1.8.2 2232 | defined: 1.0.1 2233 | minimist: 1.2.7 2234 | dev: true 2235 | 2236 | /didyoumean/1.2.2: 2237 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 2238 | dev: true 2239 | 2240 | /dir-glob/3.0.1: 2241 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 2242 | engines: {node: '>=8'} 2243 | dependencies: 2244 | path-type: 4.0.0 2245 | 2246 | /dlv/1.1.3: 2247 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 2248 | dev: true 2249 | 2250 | /doctrine/2.1.0: 2251 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 2252 | engines: {node: '>=0.10.0'} 2253 | dependencies: 2254 | esutils: 2.0.3 2255 | 2256 | /doctrine/3.0.0: 2257 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 2258 | engines: {node: '>=6.0.0'} 2259 | dependencies: 2260 | esutils: 2.0.3 2261 | 2262 | /electron-to-chromium/1.4.284: 2263 | resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} 2264 | 2265 | /emoji-regex/9.2.2: 2266 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 2267 | 2268 | /enhanced-resolve/5.12.0: 2269 | resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==} 2270 | engines: {node: '>=10.13.0'} 2271 | dependencies: 2272 | graceful-fs: 4.2.10 2273 | tapable: 2.2.1 2274 | dev: true 2275 | 2276 | /es-abstract/1.21.1: 2277 | resolution: {integrity: sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==} 2278 | engines: {node: '>= 0.4'} 2279 | dependencies: 2280 | available-typed-arrays: 1.0.5 2281 | call-bind: 1.0.2 2282 | es-set-tostringtag: 2.0.1 2283 | es-to-primitive: 1.2.1 2284 | function-bind: 1.1.1 2285 | function.prototype.name: 1.1.5 2286 | get-intrinsic: 1.1.3 2287 | get-symbol-description: 1.0.0 2288 | globalthis: 1.0.3 2289 | gopd: 1.0.1 2290 | has: 1.0.3 2291 | has-property-descriptors: 1.0.0 2292 | has-proto: 1.0.1 2293 | has-symbols: 1.0.3 2294 | internal-slot: 1.0.4 2295 | is-array-buffer: 3.0.1 2296 | is-callable: 1.2.7 2297 | is-negative-zero: 2.0.2 2298 | is-regex: 1.1.4 2299 | is-shared-array-buffer: 1.0.2 2300 | is-string: 1.0.7 2301 | is-typed-array: 1.1.10 2302 | is-weakref: 1.0.2 2303 | object-inspect: 1.12.3 2304 | object-keys: 1.1.1 2305 | object.assign: 4.1.4 2306 | regexp.prototype.flags: 1.4.3 2307 | safe-regex-test: 1.0.0 2308 | string.prototype.trimend: 1.0.6 2309 | string.prototype.trimstart: 1.0.6 2310 | typed-array-length: 1.0.4 2311 | unbox-primitive: 1.0.2 2312 | which-typed-array: 1.1.9 2313 | 2314 | /es-get-iterator/1.1.3: 2315 | resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} 2316 | dependencies: 2317 | call-bind: 1.0.2 2318 | get-intrinsic: 1.1.3 2319 | has-symbols: 1.0.3 2320 | is-arguments: 1.1.1 2321 | is-map: 2.0.2 2322 | is-set: 2.0.2 2323 | is-string: 1.0.7 2324 | isarray: 2.0.5 2325 | stop-iteration-iterator: 1.0.0 2326 | 2327 | /es-set-tostringtag/2.0.1: 2328 | resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} 2329 | engines: {node: '>= 0.4'} 2330 | dependencies: 2331 | get-intrinsic: 1.1.3 2332 | has: 1.0.3 2333 | has-tostringtag: 1.0.0 2334 | 2335 | /es-shim-unscopables/1.0.0: 2336 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} 2337 | dependencies: 2338 | has: 1.0.3 2339 | 2340 | /es-to-primitive/1.2.1: 2341 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 2342 | engines: {node: '>= 0.4'} 2343 | dependencies: 2344 | is-callable: 1.2.7 2345 | is-date-object: 1.0.5 2346 | is-symbol: 1.0.4 2347 | 2348 | /escalade/3.1.1: 2349 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 2350 | engines: {node: '>=6'} 2351 | 2352 | /escape-string-regexp/1.0.5: 2353 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 2354 | engines: {node: '>=0.8.0'} 2355 | 2356 | /escape-string-regexp/4.0.0: 2357 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 2358 | engines: {node: '>=10'} 2359 | 2360 | /eslint-config-airbnb-base/15.0.0_vz4tyq5r7fh66imfi352lmrvhq: 2361 | resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==} 2362 | engines: {node: ^10.12.0 || >=12.0.0} 2363 | peerDependencies: 2364 | eslint: ^7.32.0 || ^8.2.0 2365 | eslint-plugin-import: ^2.25.2 2366 | dependencies: 2367 | confusing-browser-globals: 1.0.11 2368 | eslint: 8.31.0 2369 | eslint-plugin-import: 2.27.5_oa6nn542mmm7vqt7omjryoishq 2370 | object.assign: 4.1.4 2371 | object.entries: 1.1.6 2372 | semver: 6.3.0 2373 | dev: false 2374 | 2375 | /eslint-config-airbnb-typescript/17.0.0_qzmkshlva5rxs6trhwmgtabqxq: 2376 | resolution: {integrity: sha512-elNiuzD0kPAPTXjFWg+lE24nMdHMtuxgYoD30OyMD6yrW1AhFZPAg27VX7d3tzOErw+dgJTNWfRSDqEcXb4V0g==} 2377 | peerDependencies: 2378 | '@typescript-eslint/eslint-plugin': ^5.13.0 2379 | '@typescript-eslint/parser': ^5.0.0 2380 | eslint: ^7.32.0 || ^8.2.0 2381 | eslint-plugin-import: ^2.25.3 2382 | dependencies: 2383 | '@typescript-eslint/eslint-plugin': 5.49.0_z274t7mj3d3d3lkbtjv4yganzm 2384 | '@typescript-eslint/parser': 5.48.2_iukboom6ndih5an6iafl45j2fe 2385 | eslint: 8.31.0 2386 | eslint-config-airbnb-base: 15.0.0_vz4tyq5r7fh66imfi352lmrvhq 2387 | eslint-plugin-import: 2.27.5_oa6nn542mmm7vqt7omjryoishq 2388 | dev: false 2389 | 2390 | /eslint-config-airbnb/19.0.4_kolgxp72khdioduxddi3qt7v64: 2391 | resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==} 2392 | engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0} 2393 | peerDependencies: 2394 | eslint: ^7.32.0 || ^8.2.0 2395 | eslint-plugin-import: ^2.25.3 2396 | eslint-plugin-jsx-a11y: ^6.5.1 2397 | eslint-plugin-react: ^7.28.0 2398 | eslint-plugin-react-hooks: ^4.3.0 2399 | dependencies: 2400 | eslint: 8.31.0 2401 | eslint-config-airbnb-base: 15.0.0_vz4tyq5r7fh66imfi352lmrvhq 2402 | eslint-plugin-import: 2.27.5_oa6nn542mmm7vqt7omjryoishq 2403 | eslint-plugin-jsx-a11y: 6.7.1_eslint@8.31.0 2404 | eslint-plugin-react: 7.32.1_eslint@8.31.0 2405 | eslint-plugin-react-hooks: 4.6.0_eslint@8.31.0 2406 | object.assign: 4.1.4 2407 | object.entries: 1.1.6 2408 | dev: false 2409 | 2410 | /eslint-config-esnext/4.1.0_oa6nn542mmm7vqt7omjryoishq: 2411 | resolution: {integrity: sha512-GhfVEXdqYKEIIj7j+Fw2SQdL9qyZMekgXfq6PyXM66cQw0B435ddjz3P3kxOBVihMRJ0xGYjosaveQz5Y6z0uA==} 2412 | peerDependencies: 2413 | eslint: ^6.0.0 2414 | dependencies: 2415 | babel-eslint: 10.1.0_eslint@8.31.0 2416 | eslint: 8.31.0 2417 | eslint-plugin-babel: 5.3.1_eslint@8.31.0 2418 | eslint-plugin-import: 2.27.5_oa6nn542mmm7vqt7omjryoishq 2419 | transitivePeerDependencies: 2420 | - '@typescript-eslint/parser' 2421 | - eslint-import-resolver-typescript 2422 | - eslint-import-resolver-webpack 2423 | - supports-color 2424 | dev: true 2425 | 2426 | /eslint-config-next/13.1.1_iukboom6ndih5an6iafl45j2fe: 2427 | resolution: {integrity: sha512-/5S2XGWlGaiqrRhzpn51ux5JUSLwx8PVK2keLi5xk7QmhfYB8PqE6R6SlVw6hgnf/VexvUXSrlNJ/su00NhtHQ==} 2428 | peerDependencies: 2429 | eslint: ^7.23.0 || ^8.0.0 2430 | typescript: '>=3.3.1' 2431 | peerDependenciesMeta: 2432 | typescript: 2433 | optional: true 2434 | dependencies: 2435 | '@next/eslint-plugin-next': 13.1.1 2436 | '@rushstack/eslint-patch': 1.2.0 2437 | '@typescript-eslint/parser': 5.48.2_iukboom6ndih5an6iafl45j2fe 2438 | eslint: 8.31.0 2439 | eslint-import-resolver-node: 0.3.7 2440 | eslint-import-resolver-typescript: 3.5.3_vz4tyq5r7fh66imfi352lmrvhq 2441 | eslint-plugin-import: 2.27.5_22jbujsiljhszbbr3tcu5rycyy 2442 | eslint-plugin-jsx-a11y: 6.7.1_eslint@8.31.0 2443 | eslint-plugin-react: 7.32.1_eslint@8.31.0 2444 | eslint-plugin-react-hooks: 4.6.0_eslint@8.31.0 2445 | typescript: 4.9.4 2446 | transitivePeerDependencies: 2447 | - eslint-import-resolver-webpack 2448 | - supports-color 2449 | dev: true 2450 | 2451 | /eslint-config-node/4.1.0_oa6nn542mmm7vqt7omjryoishq: 2452 | resolution: {integrity: sha512-Wz17xV5O2WFG8fGdMYEBdbiL6TL7YNJSJvSX9V4sXQownewfYmoqlly7wxqLkOUv/57pq6LnnotMiQQrrPjCqQ==} 2453 | peerDependencies: 2454 | eslint: ^6.0.0 2455 | dependencies: 2456 | eslint: 8.31.0 2457 | eslint-config-esnext: 4.1.0_oa6nn542mmm7vqt7omjryoishq 2458 | transitivePeerDependencies: 2459 | - '@typescript-eslint/parser' 2460 | - eslint-import-resolver-typescript 2461 | - eslint-import-resolver-webpack 2462 | - supports-color 2463 | dev: true 2464 | 2465 | /eslint-config-prettier/8.6.0_eslint@8.31.0: 2466 | resolution: {integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==} 2467 | hasBin: true 2468 | peerDependencies: 2469 | eslint: '>=7.0.0' 2470 | dependencies: 2471 | eslint: 8.31.0 2472 | dev: true 2473 | 2474 | /eslint-import-resolver-node/0.3.7: 2475 | resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} 2476 | dependencies: 2477 | debug: 3.2.7 2478 | is-core-module: 2.11.0 2479 | resolve: 1.22.1 2480 | transitivePeerDependencies: 2481 | - supports-color 2482 | 2483 | /eslint-import-resolver-typescript/3.5.3_vz4tyq5r7fh66imfi352lmrvhq: 2484 | resolution: {integrity: sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==} 2485 | engines: {node: ^14.18.0 || >=16.0.0} 2486 | peerDependencies: 2487 | eslint: '*' 2488 | eslint-plugin-import: '*' 2489 | dependencies: 2490 | debug: 4.3.4 2491 | enhanced-resolve: 5.12.0 2492 | eslint: 8.31.0 2493 | eslint-plugin-import: 2.27.5_22jbujsiljhszbbr3tcu5rycyy 2494 | get-tsconfig: 4.3.0 2495 | globby: 13.1.3 2496 | is-core-module: 2.11.0 2497 | is-glob: 4.0.3 2498 | synckit: 0.8.4 2499 | transitivePeerDependencies: 2500 | - supports-color 2501 | dev: true 2502 | 2503 | /eslint-module-utils/2.7.4_i6jxjoqdajm6lnqk7l3lnngwcq: 2504 | resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} 2505 | engines: {node: '>=4'} 2506 | peerDependencies: 2507 | '@typescript-eslint/parser': '*' 2508 | eslint: '*' 2509 | eslint-import-resolver-node: '*' 2510 | eslint-import-resolver-typescript: '*' 2511 | eslint-import-resolver-webpack: '*' 2512 | peerDependenciesMeta: 2513 | '@typescript-eslint/parser': 2514 | optional: true 2515 | eslint: 2516 | optional: true 2517 | eslint-import-resolver-node: 2518 | optional: true 2519 | eslint-import-resolver-typescript: 2520 | optional: true 2521 | eslint-import-resolver-webpack: 2522 | optional: true 2523 | dependencies: 2524 | '@typescript-eslint/parser': 5.48.2_iukboom6ndih5an6iafl45j2fe 2525 | debug: 3.2.7 2526 | eslint: 8.31.0 2527 | eslint-import-resolver-node: 0.3.7 2528 | transitivePeerDependencies: 2529 | - supports-color 2530 | 2531 | /eslint-module-utils/2.7.4_oa6nn542mmm7vqt7omjryoishq: 2532 | resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} 2533 | engines: {node: '>=4'} 2534 | peerDependencies: 2535 | '@typescript-eslint/parser': '*' 2536 | eslint: '*' 2537 | eslint-import-resolver-node: '*' 2538 | eslint-import-resolver-typescript: '*' 2539 | eslint-import-resolver-webpack: '*' 2540 | peerDependenciesMeta: 2541 | '@typescript-eslint/parser': 2542 | optional: true 2543 | eslint: 2544 | optional: true 2545 | eslint-import-resolver-node: 2546 | optional: true 2547 | eslint-import-resolver-typescript: 2548 | optional: true 2549 | eslint-import-resolver-webpack: 2550 | optional: true 2551 | dependencies: 2552 | '@typescript-eslint/parser': 5.48.2_iukboom6ndih5an6iafl45j2fe 2553 | debug: 3.2.7 2554 | eslint: 8.31.0 2555 | transitivePeerDependencies: 2556 | - supports-color 2557 | dev: false 2558 | 2559 | /eslint-module-utils/2.7.4_rn7rnco2olzmunf7rczbthme2a: 2560 | resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} 2561 | engines: {node: '>=4'} 2562 | peerDependencies: 2563 | '@typescript-eslint/parser': '*' 2564 | eslint: '*' 2565 | eslint-import-resolver-node: '*' 2566 | eslint-import-resolver-typescript: '*' 2567 | eslint-import-resolver-webpack: '*' 2568 | peerDependenciesMeta: 2569 | '@typescript-eslint/parser': 2570 | optional: true 2571 | eslint: 2572 | optional: true 2573 | eslint-import-resolver-node: 2574 | optional: true 2575 | eslint-import-resolver-typescript: 2576 | optional: true 2577 | eslint-import-resolver-webpack: 2578 | optional: true 2579 | dependencies: 2580 | '@typescript-eslint/parser': 5.48.2_iukboom6ndih5an6iafl45j2fe 2581 | debug: 3.2.7 2582 | eslint: 8.31.0 2583 | eslint-import-resolver-node: 0.3.7 2584 | eslint-import-resolver-typescript: 3.5.3_vz4tyq5r7fh66imfi352lmrvhq 2585 | transitivePeerDependencies: 2586 | - supports-color 2587 | dev: true 2588 | 2589 | /eslint-plugin-babel/5.3.1_eslint@8.31.0: 2590 | resolution: {integrity: sha512-VsQEr6NH3dj664+EyxJwO4FCYm/00JhYb3Sk3ft8o+fpKuIfQ9TaW6uVUfvwMXHcf/lsnRIoyFPsLMyiWCSL/g==} 2591 | engines: {node: '>=4'} 2592 | peerDependencies: 2593 | eslint: '>=4.0.0' 2594 | dependencies: 2595 | eslint: 8.31.0 2596 | eslint-rule-composer: 0.3.0 2597 | dev: true 2598 | 2599 | /eslint-plugin-es/3.0.1_eslint@8.31.0: 2600 | resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==} 2601 | engines: {node: '>=8.10.0'} 2602 | peerDependencies: 2603 | eslint: '>=4.19.1' 2604 | dependencies: 2605 | eslint: 8.31.0 2606 | eslint-utils: 2.1.0 2607 | regexpp: 3.2.0 2608 | dev: true 2609 | 2610 | /eslint-plugin-import/2.27.5_22jbujsiljhszbbr3tcu5rycyy: 2611 | resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} 2612 | engines: {node: '>=4'} 2613 | peerDependencies: 2614 | '@typescript-eslint/parser': '*' 2615 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 2616 | peerDependenciesMeta: 2617 | '@typescript-eslint/parser': 2618 | optional: true 2619 | dependencies: 2620 | '@typescript-eslint/parser': 5.48.2_iukboom6ndih5an6iafl45j2fe 2621 | array-includes: 3.1.6 2622 | array.prototype.flat: 1.3.1 2623 | array.prototype.flatmap: 1.3.1 2624 | debug: 3.2.7 2625 | doctrine: 2.1.0 2626 | eslint: 8.31.0 2627 | eslint-import-resolver-node: 0.3.7 2628 | eslint-module-utils: 2.7.4_rn7rnco2olzmunf7rczbthme2a 2629 | has: 1.0.3 2630 | is-core-module: 2.11.0 2631 | is-glob: 4.0.3 2632 | minimatch: 3.1.2 2633 | object.values: 1.1.6 2634 | resolve: 1.22.1 2635 | semver: 6.3.0 2636 | tsconfig-paths: 3.14.1 2637 | transitivePeerDependencies: 2638 | - eslint-import-resolver-typescript 2639 | - eslint-import-resolver-webpack 2640 | - supports-color 2641 | dev: true 2642 | 2643 | /eslint-plugin-import/2.27.5_oa6nn542mmm7vqt7omjryoishq: 2644 | resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} 2645 | engines: {node: '>=4'} 2646 | peerDependencies: 2647 | '@typescript-eslint/parser': '*' 2648 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 2649 | peerDependenciesMeta: 2650 | '@typescript-eslint/parser': 2651 | optional: true 2652 | dependencies: 2653 | '@typescript-eslint/parser': 5.48.2_iukboom6ndih5an6iafl45j2fe 2654 | array-includes: 3.1.6 2655 | array.prototype.flat: 1.3.1 2656 | array.prototype.flatmap: 1.3.1 2657 | debug: 3.2.7 2658 | doctrine: 2.1.0 2659 | eslint: 8.31.0 2660 | eslint-import-resolver-node: 0.3.7 2661 | eslint-module-utils: 2.7.4_i6jxjoqdajm6lnqk7l3lnngwcq 2662 | has: 1.0.3 2663 | is-core-module: 2.11.0 2664 | is-glob: 4.0.3 2665 | minimatch: 3.1.2 2666 | object.values: 1.1.6 2667 | resolve: 1.22.1 2668 | semver: 6.3.0 2669 | tsconfig-paths: 3.14.1 2670 | transitivePeerDependencies: 2671 | - eslint-import-resolver-typescript 2672 | - eslint-import-resolver-webpack 2673 | - supports-color 2674 | 2675 | /eslint-plugin-jsx-a11y/6.7.1_eslint@8.31.0: 2676 | resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} 2677 | engines: {node: '>=4.0'} 2678 | peerDependencies: 2679 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 2680 | dependencies: 2681 | '@babel/runtime': 7.20.7 2682 | aria-query: 5.1.3 2683 | array-includes: 3.1.6 2684 | array.prototype.flatmap: 1.3.1 2685 | ast-types-flow: 0.0.7 2686 | axe-core: 4.6.2 2687 | axobject-query: 3.1.1 2688 | damerau-levenshtein: 1.0.8 2689 | emoji-regex: 9.2.2 2690 | eslint: 8.31.0 2691 | has: 1.0.3 2692 | jsx-ast-utils: 3.3.3 2693 | language-tags: 1.0.5 2694 | minimatch: 3.1.2 2695 | object.entries: 1.1.6 2696 | object.fromentries: 2.0.6 2697 | semver: 6.3.0 2698 | 2699 | /eslint-plugin-node/11.1.0_eslint@8.31.0: 2700 | resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==} 2701 | engines: {node: '>=8.10.0'} 2702 | peerDependencies: 2703 | eslint: '>=5.16.0' 2704 | dependencies: 2705 | eslint: 8.31.0 2706 | eslint-plugin-es: 3.0.1_eslint@8.31.0 2707 | eslint-utils: 2.1.0 2708 | ignore: 5.2.4 2709 | minimatch: 3.1.2 2710 | resolve: 1.22.1 2711 | semver: 6.3.0 2712 | dev: true 2713 | 2714 | /eslint-plugin-prettier/4.2.1_do5yx3dogbskqc4h5x5ilvlwyy: 2715 | resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} 2716 | engines: {node: '>=12.0.0'} 2717 | peerDependencies: 2718 | eslint: '>=7.28.0' 2719 | eslint-config-prettier: '*' 2720 | prettier: '>=2.0.0' 2721 | peerDependenciesMeta: 2722 | eslint-config-prettier: 2723 | optional: true 2724 | dependencies: 2725 | eslint: 8.31.0 2726 | eslint-config-prettier: 8.6.0_eslint@8.31.0 2727 | prettier: 2.8.3 2728 | prettier-linter-helpers: 1.0.0 2729 | dev: true 2730 | 2731 | /eslint-plugin-react-hooks/4.6.0_eslint@8.31.0: 2732 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 2733 | engines: {node: '>=10'} 2734 | peerDependencies: 2735 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 2736 | dependencies: 2737 | eslint: 8.31.0 2738 | 2739 | /eslint-plugin-react/7.32.1_eslint@8.31.0: 2740 | resolution: {integrity: sha512-vOjdgyd0ZHBXNsmvU+785xY8Bfe57EFbTYYk8XrROzWpr9QBvpjITvAXt9xqcE6+8cjR/g1+mfumPToxsl1www==} 2741 | engines: {node: '>=4'} 2742 | peerDependencies: 2743 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 2744 | dependencies: 2745 | array-includes: 3.1.6 2746 | array.prototype.flatmap: 1.3.1 2747 | array.prototype.tosorted: 1.1.1 2748 | doctrine: 2.1.0 2749 | eslint: 8.31.0 2750 | estraverse: 5.3.0 2751 | jsx-ast-utils: 3.3.3 2752 | minimatch: 3.1.2 2753 | object.entries: 1.1.6 2754 | object.fromentries: 2.0.6 2755 | object.hasown: 1.1.2 2756 | object.values: 1.1.6 2757 | prop-types: 15.8.1 2758 | resolve: 2.0.0-next.4 2759 | semver: 6.3.0 2760 | string.prototype.matchall: 4.0.8 2761 | 2762 | /eslint-rule-composer/0.3.0: 2763 | resolution: {integrity: sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==} 2764 | engines: {node: '>=4.0.0'} 2765 | dev: true 2766 | 2767 | /eslint-scope/5.1.1: 2768 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} 2769 | engines: {node: '>=8.0.0'} 2770 | dependencies: 2771 | esrecurse: 4.3.0 2772 | estraverse: 4.3.0 2773 | dev: false 2774 | 2775 | /eslint-scope/7.1.1: 2776 | resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} 2777 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2778 | dependencies: 2779 | esrecurse: 4.3.0 2780 | estraverse: 5.3.0 2781 | 2782 | /eslint-utils/2.1.0: 2783 | resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} 2784 | engines: {node: '>=6'} 2785 | dependencies: 2786 | eslint-visitor-keys: 1.3.0 2787 | dev: true 2788 | 2789 | /eslint-utils/3.0.0_eslint@8.31.0: 2790 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} 2791 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} 2792 | peerDependencies: 2793 | eslint: '>=5' 2794 | dependencies: 2795 | eslint: 8.31.0 2796 | eslint-visitor-keys: 2.1.0 2797 | 2798 | /eslint-visitor-keys/1.3.0: 2799 | resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} 2800 | engines: {node: '>=4'} 2801 | dev: true 2802 | 2803 | /eslint-visitor-keys/2.1.0: 2804 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} 2805 | engines: {node: '>=10'} 2806 | 2807 | /eslint-visitor-keys/3.3.0: 2808 | resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} 2809 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2810 | 2811 | /eslint/8.31.0: 2812 | resolution: {integrity: sha512-0tQQEVdmPZ1UtUKXjX7EMm9BlgJ08G90IhWh0PKDCb3ZLsgAOHI8fYSIzYVZej92zsgq+ft0FGsxhJ3xo2tbuA==} 2813 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2814 | hasBin: true 2815 | dependencies: 2816 | '@eslint/eslintrc': 1.4.1 2817 | '@humanwhocodes/config-array': 0.11.8 2818 | '@humanwhocodes/module-importer': 1.0.1 2819 | '@nodelib/fs.walk': 1.2.8 2820 | ajv: 6.12.6 2821 | chalk: 4.1.2 2822 | cross-spawn: 7.0.3 2823 | debug: 4.3.4 2824 | doctrine: 3.0.0 2825 | escape-string-regexp: 4.0.0 2826 | eslint-scope: 7.1.1 2827 | eslint-utils: 3.0.0_eslint@8.31.0 2828 | eslint-visitor-keys: 3.3.0 2829 | espree: 9.4.1 2830 | esquery: 1.4.0 2831 | esutils: 2.0.3 2832 | fast-deep-equal: 3.1.3 2833 | file-entry-cache: 6.0.1 2834 | find-up: 5.0.0 2835 | glob-parent: 6.0.2 2836 | globals: 13.19.0 2837 | grapheme-splitter: 1.0.4 2838 | ignore: 5.2.4 2839 | import-fresh: 3.3.0 2840 | imurmurhash: 0.1.4 2841 | is-glob: 4.0.3 2842 | is-path-inside: 3.0.3 2843 | js-sdsl: 4.2.0 2844 | js-yaml: 4.1.0 2845 | json-stable-stringify-without-jsonify: 1.0.1 2846 | levn: 0.4.1 2847 | lodash.merge: 4.6.2 2848 | minimatch: 3.1.2 2849 | natural-compare: 1.4.0 2850 | optionator: 0.9.1 2851 | regexpp: 3.2.0 2852 | strip-ansi: 6.0.1 2853 | strip-json-comments: 3.1.1 2854 | text-table: 0.2.0 2855 | transitivePeerDependencies: 2856 | - supports-color 2857 | 2858 | /espree/9.4.1: 2859 | resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==} 2860 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2861 | dependencies: 2862 | acorn: 8.8.1 2863 | acorn-jsx: 5.3.2_acorn@8.8.1 2864 | eslint-visitor-keys: 3.3.0 2865 | 2866 | /esquery/1.4.0: 2867 | resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} 2868 | engines: {node: '>=0.10'} 2869 | dependencies: 2870 | estraverse: 5.3.0 2871 | 2872 | /esrecurse/4.3.0: 2873 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 2874 | engines: {node: '>=4.0'} 2875 | dependencies: 2876 | estraverse: 5.3.0 2877 | 2878 | /estraverse/4.3.0: 2879 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} 2880 | engines: {node: '>=4.0'} 2881 | dev: false 2882 | 2883 | /estraverse/5.3.0: 2884 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 2885 | engines: {node: '>=4.0'} 2886 | 2887 | /esutils/2.0.3: 2888 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 2889 | engines: {node: '>=0.10.0'} 2890 | 2891 | /fast-deep-equal/3.1.3: 2892 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 2893 | 2894 | /fast-diff/1.2.0: 2895 | resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} 2896 | dev: true 2897 | 2898 | /fast-glob/3.2.12: 2899 | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} 2900 | engines: {node: '>=8.6.0'} 2901 | dependencies: 2902 | '@nodelib/fs.stat': 2.0.5 2903 | '@nodelib/fs.walk': 1.2.8 2904 | glob-parent: 5.1.2 2905 | merge2: 1.4.1 2906 | micromatch: 4.0.5 2907 | 2908 | /fast-json-stable-stringify/2.1.0: 2909 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 2910 | 2911 | /fast-levenshtein/2.0.6: 2912 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 2913 | 2914 | /fastq/1.15.0: 2915 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 2916 | dependencies: 2917 | reusify: 1.0.4 2918 | 2919 | /file-entry-cache/6.0.1: 2920 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 2921 | engines: {node: ^10.12.0 || >=12.0.0} 2922 | dependencies: 2923 | flat-cache: 3.0.4 2924 | 2925 | /fill-range/7.0.1: 2926 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 2927 | engines: {node: '>=8'} 2928 | dependencies: 2929 | to-regex-range: 5.0.1 2930 | 2931 | /find-up/5.0.0: 2932 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 2933 | engines: {node: '>=10'} 2934 | dependencies: 2935 | locate-path: 6.0.0 2936 | path-exists: 4.0.0 2937 | 2938 | /flat-cache/3.0.4: 2939 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 2940 | engines: {node: ^10.12.0 || >=12.0.0} 2941 | dependencies: 2942 | flatted: 3.2.7 2943 | rimraf: 3.0.2 2944 | 2945 | /flatted/3.2.7: 2946 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 2947 | 2948 | /for-each/0.3.3: 2949 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 2950 | dependencies: 2951 | is-callable: 1.2.7 2952 | 2953 | /fraction.js/4.2.0: 2954 | resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} 2955 | dev: true 2956 | 2957 | /fs-readdir-recursive/1.1.0: 2958 | resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==} 2959 | dev: false 2960 | 2961 | /fs.realpath/1.0.0: 2962 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 2963 | 2964 | /fsevents/2.3.2: 2965 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} 2966 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 2967 | os: [darwin] 2968 | requiresBuild: true 2969 | optional: true 2970 | 2971 | /function-bind/1.1.1: 2972 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 2973 | 2974 | /function.prototype.name/1.1.5: 2975 | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} 2976 | engines: {node: '>= 0.4'} 2977 | dependencies: 2978 | call-bind: 1.0.2 2979 | define-properties: 1.1.4 2980 | es-abstract: 1.21.1 2981 | functions-have-names: 1.2.3 2982 | 2983 | /functions-have-names/1.2.3: 2984 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 2985 | 2986 | /gensync/1.0.0-beta.2: 2987 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 2988 | engines: {node: '>=6.9.0'} 2989 | dev: false 2990 | 2991 | /get-intrinsic/1.1.3: 2992 | resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==} 2993 | dependencies: 2994 | function-bind: 1.1.1 2995 | has: 1.0.3 2996 | has-symbols: 1.0.3 2997 | 2998 | /get-symbol-description/1.0.0: 2999 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 3000 | engines: {node: '>= 0.4'} 3001 | dependencies: 3002 | call-bind: 1.0.2 3003 | get-intrinsic: 1.1.3 3004 | 3005 | /get-tsconfig/4.3.0: 3006 | resolution: {integrity: sha512-YCcF28IqSay3fqpIu5y3Krg/utCBHBeoflkZyHj/QcqI2nrLPC3ZegS9CmIo+hJb8K7aiGsuUl7PwWVjNG2HQQ==} 3007 | dev: true 3008 | 3009 | /glob-parent/5.1.2: 3010 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 3011 | engines: {node: '>= 6'} 3012 | dependencies: 3013 | is-glob: 4.0.3 3014 | 3015 | /glob-parent/6.0.2: 3016 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 3017 | engines: {node: '>=10.13.0'} 3018 | dependencies: 3019 | is-glob: 4.0.3 3020 | 3021 | /glob/7.1.7: 3022 | resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} 3023 | dependencies: 3024 | fs.realpath: 1.0.0 3025 | inflight: 1.0.6 3026 | inherits: 2.0.4 3027 | minimatch: 3.1.2 3028 | once: 1.4.0 3029 | path-is-absolute: 1.0.1 3030 | dev: true 3031 | 3032 | /glob/7.2.3: 3033 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 3034 | dependencies: 3035 | fs.realpath: 1.0.0 3036 | inflight: 1.0.6 3037 | inherits: 2.0.4 3038 | minimatch: 3.1.2 3039 | once: 1.4.0 3040 | path-is-absolute: 1.0.1 3041 | 3042 | /globals/11.12.0: 3043 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 3044 | engines: {node: '>=4'} 3045 | 3046 | /globals/13.19.0: 3047 | resolution: {integrity: sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==} 3048 | engines: {node: '>=8'} 3049 | dependencies: 3050 | type-fest: 0.20.2 3051 | 3052 | /globalthis/1.0.3: 3053 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 3054 | engines: {node: '>= 0.4'} 3055 | dependencies: 3056 | define-properties: 1.1.4 3057 | 3058 | /globalyzer/0.1.0: 3059 | resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} 3060 | dev: true 3061 | 3062 | /globby/11.1.0: 3063 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 3064 | engines: {node: '>=10'} 3065 | dependencies: 3066 | array-union: 2.1.0 3067 | dir-glob: 3.0.1 3068 | fast-glob: 3.2.12 3069 | ignore: 5.2.4 3070 | merge2: 1.4.1 3071 | slash: 3.0.0 3072 | 3073 | /globby/13.1.3: 3074 | resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==} 3075 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 3076 | dependencies: 3077 | dir-glob: 3.0.1 3078 | fast-glob: 3.2.12 3079 | ignore: 5.2.4 3080 | merge2: 1.4.1 3081 | slash: 4.0.0 3082 | dev: true 3083 | 3084 | /globrex/0.1.2: 3085 | resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} 3086 | dev: true 3087 | 3088 | /gopd/1.0.1: 3089 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 3090 | dependencies: 3091 | get-intrinsic: 1.1.3 3092 | 3093 | /graceful-fs/4.2.10: 3094 | resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} 3095 | dev: true 3096 | 3097 | /grapheme-splitter/1.0.4: 3098 | resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} 3099 | 3100 | /has-bigints/1.0.2: 3101 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 3102 | 3103 | /has-flag/3.0.0: 3104 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 3105 | engines: {node: '>=4'} 3106 | 3107 | /has-flag/4.0.0: 3108 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 3109 | engines: {node: '>=8'} 3110 | 3111 | /has-property-descriptors/1.0.0: 3112 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} 3113 | dependencies: 3114 | get-intrinsic: 1.1.3 3115 | 3116 | /has-proto/1.0.1: 3117 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 3118 | engines: {node: '>= 0.4'} 3119 | 3120 | /has-symbols/1.0.3: 3121 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 3122 | engines: {node: '>= 0.4'} 3123 | 3124 | /has-tostringtag/1.0.0: 3125 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 3126 | engines: {node: '>= 0.4'} 3127 | dependencies: 3128 | has-symbols: 1.0.3 3129 | 3130 | /has/1.0.3: 3131 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 3132 | engines: {node: '>= 0.4.0'} 3133 | dependencies: 3134 | function-bind: 1.1.1 3135 | 3136 | /husky/8.0.3: 3137 | resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} 3138 | engines: {node: '>=14'} 3139 | hasBin: true 3140 | dev: true 3141 | 3142 | /ignore/5.2.4: 3143 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 3144 | engines: {node: '>= 4'} 3145 | 3146 | /immutable/4.2.2: 3147 | resolution: {integrity: sha512-fTMKDwtbvO5tldky9QZ2fMX7slR0mYpY5nbnFWYp0fOzDhHqhgIw9KoYgxLWsoNTS9ZHGauHj18DTyEw6BK3Og==} 3148 | dev: false 3149 | 3150 | /import-fresh/3.3.0: 3151 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 3152 | engines: {node: '>=6'} 3153 | dependencies: 3154 | parent-module: 1.0.1 3155 | resolve-from: 4.0.0 3156 | 3157 | /imurmurhash/0.1.4: 3158 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 3159 | engines: {node: '>=0.8.19'} 3160 | 3161 | /inflight/1.0.6: 3162 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 3163 | dependencies: 3164 | once: 1.4.0 3165 | wrappy: 1.0.2 3166 | 3167 | /inherits/2.0.4: 3168 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 3169 | 3170 | /internal-slot/1.0.4: 3171 | resolution: {integrity: sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==} 3172 | engines: {node: '>= 0.4'} 3173 | dependencies: 3174 | get-intrinsic: 1.1.3 3175 | has: 1.0.3 3176 | side-channel: 1.0.4 3177 | 3178 | /is-arguments/1.1.1: 3179 | resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} 3180 | engines: {node: '>= 0.4'} 3181 | dependencies: 3182 | call-bind: 1.0.2 3183 | has-tostringtag: 1.0.0 3184 | 3185 | /is-array-buffer/3.0.1: 3186 | resolution: {integrity: sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==} 3187 | dependencies: 3188 | call-bind: 1.0.2 3189 | get-intrinsic: 1.1.3 3190 | is-typed-array: 1.1.10 3191 | 3192 | /is-bigint/1.0.4: 3193 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 3194 | dependencies: 3195 | has-bigints: 1.0.2 3196 | 3197 | /is-binary-path/2.1.0: 3198 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 3199 | engines: {node: '>=8'} 3200 | dependencies: 3201 | binary-extensions: 2.2.0 3202 | 3203 | /is-boolean-object/1.1.2: 3204 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 3205 | engines: {node: '>= 0.4'} 3206 | dependencies: 3207 | call-bind: 1.0.2 3208 | has-tostringtag: 1.0.0 3209 | 3210 | /is-callable/1.2.7: 3211 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 3212 | engines: {node: '>= 0.4'} 3213 | 3214 | /is-core-module/2.11.0: 3215 | resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} 3216 | dependencies: 3217 | has: 1.0.3 3218 | 3219 | /is-date-object/1.0.5: 3220 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 3221 | engines: {node: '>= 0.4'} 3222 | dependencies: 3223 | has-tostringtag: 1.0.0 3224 | 3225 | /is-docker/2.2.1: 3226 | resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} 3227 | engines: {node: '>=8'} 3228 | hasBin: true 3229 | dev: true 3230 | 3231 | /is-extglob/2.1.1: 3232 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 3233 | engines: {node: '>=0.10.0'} 3234 | 3235 | /is-glob/4.0.3: 3236 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 3237 | engines: {node: '>=0.10.0'} 3238 | dependencies: 3239 | is-extglob: 2.1.1 3240 | 3241 | /is-map/2.0.2: 3242 | resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} 3243 | 3244 | /is-negative-zero/2.0.2: 3245 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 3246 | engines: {node: '>= 0.4'} 3247 | 3248 | /is-number-object/1.0.7: 3249 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 3250 | engines: {node: '>= 0.4'} 3251 | dependencies: 3252 | has-tostringtag: 1.0.0 3253 | 3254 | /is-number/7.0.0: 3255 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 3256 | engines: {node: '>=0.12.0'} 3257 | 3258 | /is-path-inside/3.0.3: 3259 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 3260 | engines: {node: '>=8'} 3261 | 3262 | /is-regex/1.1.4: 3263 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 3264 | engines: {node: '>= 0.4'} 3265 | dependencies: 3266 | call-bind: 1.0.2 3267 | has-tostringtag: 1.0.0 3268 | 3269 | /is-set/2.0.2: 3270 | resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} 3271 | 3272 | /is-shared-array-buffer/1.0.2: 3273 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 3274 | dependencies: 3275 | call-bind: 1.0.2 3276 | 3277 | /is-string/1.0.7: 3278 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 3279 | engines: {node: '>= 0.4'} 3280 | dependencies: 3281 | has-tostringtag: 1.0.0 3282 | 3283 | /is-symbol/1.0.4: 3284 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 3285 | engines: {node: '>= 0.4'} 3286 | dependencies: 3287 | has-symbols: 1.0.3 3288 | 3289 | /is-typed-array/1.1.10: 3290 | resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} 3291 | engines: {node: '>= 0.4'} 3292 | dependencies: 3293 | available-typed-arrays: 1.0.5 3294 | call-bind: 1.0.2 3295 | for-each: 0.3.3 3296 | gopd: 1.0.1 3297 | has-tostringtag: 1.0.0 3298 | 3299 | /is-weakmap/2.0.1: 3300 | resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} 3301 | 3302 | /is-weakref/1.0.2: 3303 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 3304 | dependencies: 3305 | call-bind: 1.0.2 3306 | 3307 | /is-weakset/2.0.2: 3308 | resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} 3309 | dependencies: 3310 | call-bind: 1.0.2 3311 | get-intrinsic: 1.1.3 3312 | 3313 | /is-wsl/2.2.0: 3314 | resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} 3315 | engines: {node: '>=8'} 3316 | dependencies: 3317 | is-docker: 2.2.1 3318 | dev: true 3319 | 3320 | /isarray/2.0.5: 3321 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 3322 | 3323 | /isexe/2.0.0: 3324 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 3325 | 3326 | /js-sdsl/4.2.0: 3327 | resolution: {integrity: sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==} 3328 | 3329 | /js-tokens/4.0.0: 3330 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 3331 | 3332 | /js-yaml/4.1.0: 3333 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 3334 | hasBin: true 3335 | dependencies: 3336 | argparse: 2.0.1 3337 | 3338 | /jsesc/0.5.0: 3339 | resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} 3340 | hasBin: true 3341 | dev: false 3342 | 3343 | /jsesc/2.5.2: 3344 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} 3345 | engines: {node: '>=4'} 3346 | hasBin: true 3347 | 3348 | /json-schema-traverse/0.4.1: 3349 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 3350 | 3351 | /json-stable-stringify-without-jsonify/1.0.1: 3352 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 3353 | 3354 | /json5/1.0.2: 3355 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 3356 | hasBin: true 3357 | dependencies: 3358 | minimist: 1.2.7 3359 | 3360 | /json5/2.2.3: 3361 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 3362 | engines: {node: '>=6'} 3363 | hasBin: true 3364 | dev: false 3365 | 3366 | /jsx-ast-utils/3.3.3: 3367 | resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} 3368 | engines: {node: '>=4.0'} 3369 | dependencies: 3370 | array-includes: 3.1.6 3371 | object.assign: 4.1.4 3372 | 3373 | /language-subtag-registry/0.3.22: 3374 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} 3375 | 3376 | /language-tags/1.0.5: 3377 | resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} 3378 | dependencies: 3379 | language-subtag-registry: 0.3.22 3380 | 3381 | /levn/0.4.1: 3382 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 3383 | engines: {node: '>= 0.8.0'} 3384 | dependencies: 3385 | prelude-ls: 1.2.1 3386 | type-check: 0.4.0 3387 | 3388 | /lilconfig/2.0.6: 3389 | resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==} 3390 | engines: {node: '>=10'} 3391 | dev: true 3392 | 3393 | /locate-path/6.0.0: 3394 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 3395 | engines: {node: '>=10'} 3396 | dependencies: 3397 | p-locate: 5.0.0 3398 | 3399 | /lodash.debounce/4.0.8: 3400 | resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} 3401 | dev: false 3402 | 3403 | /lodash.merge/4.6.2: 3404 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 3405 | 3406 | /loose-envify/1.4.0: 3407 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 3408 | hasBin: true 3409 | dependencies: 3410 | js-tokens: 4.0.0 3411 | 3412 | /lru-cache/5.1.1: 3413 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 3414 | dependencies: 3415 | yallist: 3.1.1 3416 | dev: false 3417 | 3418 | /lru-cache/6.0.0: 3419 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 3420 | engines: {node: '>=10'} 3421 | dependencies: 3422 | yallist: 4.0.0 3423 | 3424 | /make-dir/2.1.0: 3425 | resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} 3426 | engines: {node: '>=6'} 3427 | dependencies: 3428 | pify: 4.0.1 3429 | semver: 5.7.1 3430 | dev: false 3431 | 3432 | /merge2/1.4.1: 3433 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 3434 | engines: {node: '>= 8'} 3435 | 3436 | /micromatch/4.0.5: 3437 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 3438 | engines: {node: '>=8.6'} 3439 | dependencies: 3440 | braces: 3.0.2 3441 | picomatch: 2.3.1 3442 | 3443 | /minimatch/3.1.2: 3444 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 3445 | dependencies: 3446 | brace-expansion: 1.1.11 3447 | 3448 | /minimist/1.2.7: 3449 | resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} 3450 | 3451 | /ms/2.1.2: 3452 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 3453 | 3454 | /ms/2.1.3: 3455 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 3456 | 3457 | /nanoid/3.3.4: 3458 | resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} 3459 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 3460 | hasBin: true 3461 | 3462 | /natural-compare-lite/1.4.0: 3463 | resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} 3464 | dev: false 3465 | 3466 | /natural-compare/1.4.0: 3467 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 3468 | 3469 | /next/13.1.5_3duxcpitbtplz62feflag7fwby: 3470 | resolution: {integrity: sha512-rmpYZFCxxWAi2nJCT9sSqMLGC3cu+Pf689hx9clcyP0KbVIhh/7Dus5QcKrVd/PrAd6AjsuogSRR1mCP7BoYRw==} 3471 | engines: {node: '>=14.6.0'} 3472 | hasBin: true 3473 | peerDependencies: 3474 | fibers: '>= 3.1.0' 3475 | node-sass: ^6.0.0 || ^7.0.0 3476 | react: ^18.2.0 3477 | react-dom: ^18.2.0 3478 | sass: ^1.3.0 3479 | peerDependenciesMeta: 3480 | fibers: 3481 | optional: true 3482 | node-sass: 3483 | optional: true 3484 | sass: 3485 | optional: true 3486 | dependencies: 3487 | '@next/env': 13.1.5 3488 | '@swc/helpers': 0.4.14 3489 | caniuse-lite: 1.0.30001445 3490 | postcss: 8.4.14 3491 | react: 18.2.0 3492 | react-dom: 18.2.0_react@18.2.0 3493 | sass: 1.57.1 3494 | styled-jsx: 5.1.1_react@18.2.0 3495 | optionalDependencies: 3496 | '@next/swc-android-arm-eabi': 13.1.5 3497 | '@next/swc-android-arm64': 13.1.5 3498 | '@next/swc-darwin-arm64': 13.1.5 3499 | '@next/swc-darwin-x64': 13.1.5 3500 | '@next/swc-freebsd-x64': 13.1.5 3501 | '@next/swc-linux-arm-gnueabihf': 13.1.5 3502 | '@next/swc-linux-arm64-gnu': 13.1.5 3503 | '@next/swc-linux-arm64-musl': 13.1.5 3504 | '@next/swc-linux-x64-gnu': 13.1.5 3505 | '@next/swc-linux-x64-musl': 13.1.5 3506 | '@next/swc-win32-arm64-msvc': 13.1.5 3507 | '@next/swc-win32-ia32-msvc': 13.1.5 3508 | '@next/swc-win32-x64-msvc': 13.1.5 3509 | transitivePeerDependencies: 3510 | - '@babel/core' 3511 | - babel-plugin-macros 3512 | dev: false 3513 | 3514 | /node-releases/2.0.8: 3515 | resolution: {integrity: sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==} 3516 | 3517 | /normalize-path/3.0.0: 3518 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 3519 | engines: {node: '>=0.10.0'} 3520 | 3521 | /normalize-range/0.1.2: 3522 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 3523 | engines: {node: '>=0.10.0'} 3524 | dev: true 3525 | 3526 | /object-assign/4.1.1: 3527 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 3528 | engines: {node: '>=0.10.0'} 3529 | 3530 | /object-hash/3.0.0: 3531 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 3532 | engines: {node: '>= 6'} 3533 | dev: true 3534 | 3535 | /object-inspect/1.12.3: 3536 | resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} 3537 | 3538 | /object-is/1.1.5: 3539 | resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} 3540 | engines: {node: '>= 0.4'} 3541 | dependencies: 3542 | call-bind: 1.0.2 3543 | define-properties: 1.1.4 3544 | 3545 | /object-keys/1.1.1: 3546 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 3547 | engines: {node: '>= 0.4'} 3548 | 3549 | /object.assign/4.1.4: 3550 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} 3551 | engines: {node: '>= 0.4'} 3552 | dependencies: 3553 | call-bind: 1.0.2 3554 | define-properties: 1.1.4 3555 | has-symbols: 1.0.3 3556 | object-keys: 1.1.1 3557 | 3558 | /object.entries/1.1.6: 3559 | resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} 3560 | engines: {node: '>= 0.4'} 3561 | dependencies: 3562 | call-bind: 1.0.2 3563 | define-properties: 1.1.4 3564 | es-abstract: 1.21.1 3565 | 3566 | /object.fromentries/2.0.6: 3567 | resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} 3568 | engines: {node: '>= 0.4'} 3569 | dependencies: 3570 | call-bind: 1.0.2 3571 | define-properties: 1.1.4 3572 | es-abstract: 1.21.1 3573 | 3574 | /object.hasown/1.1.2: 3575 | resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} 3576 | dependencies: 3577 | define-properties: 1.1.4 3578 | es-abstract: 1.21.1 3579 | 3580 | /object.values/1.1.6: 3581 | resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} 3582 | engines: {node: '>= 0.4'} 3583 | dependencies: 3584 | call-bind: 1.0.2 3585 | define-properties: 1.1.4 3586 | es-abstract: 1.21.1 3587 | 3588 | /once/1.4.0: 3589 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 3590 | dependencies: 3591 | wrappy: 1.0.2 3592 | 3593 | /open/8.4.0: 3594 | resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==} 3595 | engines: {node: '>=12'} 3596 | dependencies: 3597 | define-lazy-prop: 2.0.0 3598 | is-docker: 2.2.1 3599 | is-wsl: 2.2.0 3600 | dev: true 3601 | 3602 | /optionator/0.9.1: 3603 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} 3604 | engines: {node: '>= 0.8.0'} 3605 | dependencies: 3606 | deep-is: 0.1.4 3607 | fast-levenshtein: 2.0.6 3608 | levn: 0.4.1 3609 | prelude-ls: 1.2.1 3610 | type-check: 0.4.0 3611 | word-wrap: 1.2.3 3612 | 3613 | /p-limit/3.1.0: 3614 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 3615 | engines: {node: '>=10'} 3616 | dependencies: 3617 | yocto-queue: 0.1.0 3618 | 3619 | /p-locate/5.0.0: 3620 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 3621 | engines: {node: '>=10'} 3622 | dependencies: 3623 | p-limit: 3.1.0 3624 | 3625 | /parent-module/1.0.1: 3626 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 3627 | engines: {node: '>=6'} 3628 | dependencies: 3629 | callsites: 3.1.0 3630 | 3631 | /path-exists/4.0.0: 3632 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 3633 | engines: {node: '>=8'} 3634 | 3635 | /path-is-absolute/1.0.1: 3636 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 3637 | engines: {node: '>=0.10.0'} 3638 | 3639 | /path-key/3.1.1: 3640 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 3641 | engines: {node: '>=8'} 3642 | 3643 | /path-parse/1.0.7: 3644 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 3645 | 3646 | /path-type/4.0.0: 3647 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 3648 | engines: {node: '>=8'} 3649 | 3650 | /picocolors/1.0.0: 3651 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 3652 | 3653 | /picomatch/2.3.1: 3654 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 3655 | engines: {node: '>=8.6'} 3656 | 3657 | /pify/2.3.0: 3658 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 3659 | engines: {node: '>=0.10.0'} 3660 | dev: true 3661 | 3662 | /pify/4.0.1: 3663 | resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} 3664 | engines: {node: '>=6'} 3665 | dev: false 3666 | 3667 | /postcss-import/14.1.0_postcss@8.4.21: 3668 | resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} 3669 | engines: {node: '>=10.0.0'} 3670 | peerDependencies: 3671 | postcss: ^8.0.0 3672 | dependencies: 3673 | postcss: 8.4.21 3674 | postcss-value-parser: 4.2.0 3675 | read-cache: 1.0.0 3676 | resolve: 1.22.1 3677 | dev: true 3678 | 3679 | /postcss-js/4.0.0_postcss@8.4.21: 3680 | resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} 3681 | engines: {node: ^12 || ^14 || >= 16} 3682 | peerDependencies: 3683 | postcss: ^8.3.3 3684 | dependencies: 3685 | camelcase-css: 2.0.1 3686 | postcss: 8.4.21 3687 | dev: true 3688 | 3689 | /postcss-load-config/3.1.4_postcss@8.4.21: 3690 | resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} 3691 | engines: {node: '>= 10'} 3692 | peerDependencies: 3693 | postcss: '>=8.0.9' 3694 | ts-node: '>=9.0.0' 3695 | peerDependenciesMeta: 3696 | postcss: 3697 | optional: true 3698 | ts-node: 3699 | optional: true 3700 | dependencies: 3701 | lilconfig: 2.0.6 3702 | postcss: 8.4.21 3703 | yaml: 1.10.2 3704 | dev: true 3705 | 3706 | /postcss-nested/6.0.0_postcss@8.4.21: 3707 | resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} 3708 | engines: {node: '>=12.0'} 3709 | peerDependencies: 3710 | postcss: ^8.2.14 3711 | dependencies: 3712 | postcss: 8.4.21 3713 | postcss-selector-parser: 6.0.11 3714 | dev: true 3715 | 3716 | /postcss-selector-parser/6.0.11: 3717 | resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==} 3718 | engines: {node: '>=4'} 3719 | dependencies: 3720 | cssesc: 3.0.0 3721 | util-deprecate: 1.0.2 3722 | dev: true 3723 | 3724 | /postcss-value-parser/4.2.0: 3725 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 3726 | 3727 | /postcss/8.4.14: 3728 | resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} 3729 | engines: {node: ^10 || ^12 || >=14} 3730 | dependencies: 3731 | nanoid: 3.3.4 3732 | picocolors: 1.0.0 3733 | source-map-js: 1.0.2 3734 | dev: false 3735 | 3736 | /postcss/8.4.21: 3737 | resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} 3738 | engines: {node: ^10 || ^12 || >=14} 3739 | dependencies: 3740 | nanoid: 3.3.4 3741 | picocolors: 1.0.0 3742 | source-map-js: 1.0.2 3743 | dev: true 3744 | 3745 | /prelude-ls/1.2.1: 3746 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 3747 | engines: {node: '>= 0.8.0'} 3748 | 3749 | /prettier-linter-helpers/1.0.0: 3750 | resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} 3751 | engines: {node: '>=6.0.0'} 3752 | dependencies: 3753 | fast-diff: 1.2.0 3754 | dev: true 3755 | 3756 | /prettier/2.8.3: 3757 | resolution: {integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==} 3758 | engines: {node: '>=10.13.0'} 3759 | hasBin: true 3760 | dev: true 3761 | 3762 | /prop-types/15.8.1: 3763 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 3764 | dependencies: 3765 | loose-envify: 1.4.0 3766 | object-assign: 4.1.1 3767 | react-is: 16.13.1 3768 | 3769 | /punycode/2.2.0: 3770 | resolution: {integrity: sha512-LN6QV1IJ9ZhxWTNdktaPClrNfp8xdSAYS0Zk2ddX7XsXZAxckMHPCBcHRo0cTcEIgYPRiGEkmji3Idkh2yFtYw==} 3771 | engines: {node: '>=6'} 3772 | 3773 | /queue-microtask/1.2.3: 3774 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 3775 | 3776 | /quick-lru/5.1.1: 3777 | resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} 3778 | engines: {node: '>=10'} 3779 | dev: true 3780 | 3781 | /react-dom/18.2.0_react@18.2.0: 3782 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 3783 | peerDependencies: 3784 | react: ^18.2.0 3785 | dependencies: 3786 | loose-envify: 1.4.0 3787 | react: 18.2.0 3788 | scheduler: 0.23.0 3789 | dev: false 3790 | 3791 | /react-is/16.13.1: 3792 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 3793 | 3794 | /react/18.2.0: 3795 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 3796 | engines: {node: '>=0.10.0'} 3797 | dependencies: 3798 | loose-envify: 1.4.0 3799 | dev: false 3800 | 3801 | /read-cache/1.0.0: 3802 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 3803 | dependencies: 3804 | pify: 2.3.0 3805 | dev: true 3806 | 3807 | /readdirp/3.6.0: 3808 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 3809 | engines: {node: '>=8.10.0'} 3810 | dependencies: 3811 | picomatch: 2.3.1 3812 | 3813 | /regenerate-unicode-properties/10.1.0: 3814 | resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} 3815 | engines: {node: '>=4'} 3816 | dependencies: 3817 | regenerate: 1.4.2 3818 | dev: false 3819 | 3820 | /regenerate/1.4.2: 3821 | resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} 3822 | dev: false 3823 | 3824 | /regenerator-runtime/0.13.11: 3825 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} 3826 | 3827 | /regenerator-transform/0.15.1: 3828 | resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} 3829 | dependencies: 3830 | '@babel/runtime': 7.20.7 3831 | dev: false 3832 | 3833 | /regexp.prototype.flags/1.4.3: 3834 | resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} 3835 | engines: {node: '>= 0.4'} 3836 | dependencies: 3837 | call-bind: 1.0.2 3838 | define-properties: 1.1.4 3839 | functions-have-names: 1.2.3 3840 | 3841 | /regexpp/3.2.0: 3842 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} 3843 | engines: {node: '>=8'} 3844 | 3845 | /regexpu-core/5.2.2: 3846 | resolution: {integrity: sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==} 3847 | engines: {node: '>=4'} 3848 | dependencies: 3849 | regenerate: 1.4.2 3850 | regenerate-unicode-properties: 10.1.0 3851 | regjsgen: 0.7.1 3852 | regjsparser: 0.9.1 3853 | unicode-match-property-ecmascript: 2.0.0 3854 | unicode-match-property-value-ecmascript: 2.1.0 3855 | dev: false 3856 | 3857 | /regjsgen/0.7.1: 3858 | resolution: {integrity: sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==} 3859 | dev: false 3860 | 3861 | /regjsparser/0.9.1: 3862 | resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} 3863 | hasBin: true 3864 | dependencies: 3865 | jsesc: 0.5.0 3866 | dev: false 3867 | 3868 | /resolve-from/4.0.0: 3869 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 3870 | engines: {node: '>=4'} 3871 | 3872 | /resolve/1.22.1: 3873 | resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} 3874 | hasBin: true 3875 | dependencies: 3876 | is-core-module: 2.11.0 3877 | path-parse: 1.0.7 3878 | supports-preserve-symlinks-flag: 1.0.0 3879 | 3880 | /resolve/2.0.0-next.4: 3881 | resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} 3882 | hasBin: true 3883 | dependencies: 3884 | is-core-module: 2.11.0 3885 | path-parse: 1.0.7 3886 | supports-preserve-symlinks-flag: 1.0.0 3887 | 3888 | /reusify/1.0.4: 3889 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 3890 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 3891 | 3892 | /rimraf/3.0.2: 3893 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 3894 | hasBin: true 3895 | dependencies: 3896 | glob: 7.2.3 3897 | 3898 | /run-parallel/1.2.0: 3899 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 3900 | dependencies: 3901 | queue-microtask: 1.2.3 3902 | 3903 | /safe-regex-test/1.0.0: 3904 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} 3905 | dependencies: 3906 | call-bind: 1.0.2 3907 | get-intrinsic: 1.1.3 3908 | is-regex: 1.1.4 3909 | 3910 | /sass/1.57.1: 3911 | resolution: {integrity: sha512-O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw==} 3912 | engines: {node: '>=12.0.0'} 3913 | hasBin: true 3914 | dependencies: 3915 | chokidar: 3.5.3 3916 | immutable: 4.2.2 3917 | source-map-js: 1.0.2 3918 | dev: false 3919 | 3920 | /scheduler/0.23.0: 3921 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 3922 | dependencies: 3923 | loose-envify: 1.4.0 3924 | dev: false 3925 | 3926 | /semver/5.7.1: 3927 | resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} 3928 | hasBin: true 3929 | dev: false 3930 | 3931 | /semver/6.3.0: 3932 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} 3933 | hasBin: true 3934 | 3935 | /semver/7.3.8: 3936 | resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} 3937 | engines: {node: '>=10'} 3938 | hasBin: true 3939 | dependencies: 3940 | lru-cache: 6.0.0 3941 | 3942 | /shallowequal/1.1.0: 3943 | resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} 3944 | dev: false 3945 | 3946 | /shebang-command/2.0.0: 3947 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 3948 | engines: {node: '>=8'} 3949 | dependencies: 3950 | shebang-regex: 3.0.0 3951 | 3952 | /shebang-regex/3.0.0: 3953 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 3954 | engines: {node: '>=8'} 3955 | 3956 | /side-channel/1.0.4: 3957 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 3958 | dependencies: 3959 | call-bind: 1.0.2 3960 | get-intrinsic: 1.1.3 3961 | object-inspect: 1.12.3 3962 | 3963 | /slash/2.0.0: 3964 | resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} 3965 | engines: {node: '>=6'} 3966 | dev: false 3967 | 3968 | /slash/3.0.0: 3969 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 3970 | engines: {node: '>=8'} 3971 | 3972 | /slash/4.0.0: 3973 | resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} 3974 | engines: {node: '>=12'} 3975 | dev: true 3976 | 3977 | /source-map-js/1.0.2: 3978 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 3979 | engines: {node: '>=0.10.0'} 3980 | 3981 | /stop-iteration-iterator/1.0.0: 3982 | resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} 3983 | engines: {node: '>= 0.4'} 3984 | dependencies: 3985 | internal-slot: 1.0.4 3986 | 3987 | /string.prototype.matchall/4.0.8: 3988 | resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} 3989 | dependencies: 3990 | call-bind: 1.0.2 3991 | define-properties: 1.1.4 3992 | es-abstract: 1.21.1 3993 | get-intrinsic: 1.1.3 3994 | has-symbols: 1.0.3 3995 | internal-slot: 1.0.4 3996 | regexp.prototype.flags: 1.4.3 3997 | side-channel: 1.0.4 3998 | 3999 | /string.prototype.trimend/1.0.6: 4000 | resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} 4001 | dependencies: 4002 | call-bind: 1.0.2 4003 | define-properties: 1.1.4 4004 | es-abstract: 1.21.1 4005 | 4006 | /string.prototype.trimstart/1.0.6: 4007 | resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} 4008 | dependencies: 4009 | call-bind: 1.0.2 4010 | define-properties: 1.1.4 4011 | es-abstract: 1.21.1 4012 | 4013 | /strip-ansi/6.0.1: 4014 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 4015 | engines: {node: '>=8'} 4016 | dependencies: 4017 | ansi-regex: 5.0.1 4018 | 4019 | /strip-bom/3.0.0: 4020 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 4021 | engines: {node: '>=4'} 4022 | 4023 | /strip-json-comments/3.1.1: 4024 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 4025 | engines: {node: '>=8'} 4026 | 4027 | /styled-components/6.0.0-beta.9_biqbaboplfbrettd7655fr4n2y: 4028 | resolution: {integrity: sha512-RYtmvWZForwSd24aZgi3iGZM/6HvJkP7zobHK+bwC01vI6QhHK5MX9ayXEnJWaFY7DoEWoAnar5ACiGVkTCoCQ==} 4029 | engines: {node: '>= 14'} 4030 | peerDependencies: 4031 | babel-plugin-styled-components: '>= 2' 4032 | react: '>= 16.8.0' 4033 | react-dom: '>= 16.8.0' 4034 | peerDependenciesMeta: 4035 | babel-plugin-styled-components: 4036 | optional: true 4037 | shallowequal: 4038 | optional: true 4039 | stylis: 4040 | optional: true 4041 | tslib: 4042 | optional: true 4043 | dependencies: 4044 | '@babel/cli': 7.20.7_@babel+core@7.20.12 4045 | '@babel/core': 7.20.12 4046 | '@babel/helper-module-imports': 7.18.6 4047 | '@babel/plugin-external-helpers': 7.18.6_@babel+core@7.20.12 4048 | '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12 4049 | '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12 4050 | '@babel/preset-env': 7.20.2_@babel+core@7.20.12 4051 | '@babel/preset-react': 7.18.6_@babel+core@7.20.12 4052 | '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12 4053 | '@babel/traverse': 7.20.12 4054 | '@emotion/unitless': 0.8.0 4055 | css-to-react-native: 3.1.0 4056 | react: 18.2.0 4057 | react-dom: 18.2.0_react@18.2.0 4058 | shallowequal: 1.1.0 4059 | stylis: 4.1.3 4060 | tslib: 2.4.1 4061 | transitivePeerDependencies: 4062 | - supports-color 4063 | dev: false 4064 | 4065 | /styled-jsx/5.1.1_react@18.2.0: 4066 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} 4067 | engines: {node: '>= 12.0.0'} 4068 | peerDependencies: 4069 | '@babel/core': '*' 4070 | babel-plugin-macros: '*' 4071 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' 4072 | peerDependenciesMeta: 4073 | '@babel/core': 4074 | optional: true 4075 | babel-plugin-macros: 4076 | optional: true 4077 | dependencies: 4078 | client-only: 0.0.1 4079 | react: 18.2.0 4080 | dev: false 4081 | 4082 | /stylis/4.1.3: 4083 | resolution: {integrity: sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==} 4084 | dev: false 4085 | 4086 | /supports-color/5.5.0: 4087 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 4088 | engines: {node: '>=4'} 4089 | dependencies: 4090 | has-flag: 3.0.0 4091 | 4092 | /supports-color/7.2.0: 4093 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 4094 | engines: {node: '>=8'} 4095 | dependencies: 4096 | has-flag: 4.0.0 4097 | 4098 | /supports-preserve-symlinks-flag/1.0.0: 4099 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 4100 | engines: {node: '>= 0.4'} 4101 | 4102 | /synckit/0.8.4: 4103 | resolution: {integrity: sha512-Dn2ZkzMdSX827QbowGbU/4yjWuvNaCoScLLoMo/yKbu+P4GBR6cRGKZH27k6a9bRzdqcyd1DE96pQtQ6uNkmyw==} 4104 | engines: {node: ^14.18.0 || >=16.0.0} 4105 | dependencies: 4106 | '@pkgr/utils': 2.3.1 4107 | tslib: 2.4.1 4108 | dev: true 4109 | 4110 | /tailwindcss/3.2.4_postcss@8.4.21: 4111 | resolution: {integrity: sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==} 4112 | engines: {node: '>=12.13.0'} 4113 | hasBin: true 4114 | peerDependencies: 4115 | postcss: ^8.0.9 4116 | dependencies: 4117 | arg: 5.0.2 4118 | chokidar: 3.5.3 4119 | color-name: 1.1.4 4120 | detective: 5.2.1 4121 | didyoumean: 1.2.2 4122 | dlv: 1.1.3 4123 | fast-glob: 3.2.12 4124 | glob-parent: 6.0.2 4125 | is-glob: 4.0.3 4126 | lilconfig: 2.0.6 4127 | micromatch: 4.0.5 4128 | normalize-path: 3.0.0 4129 | object-hash: 3.0.0 4130 | picocolors: 1.0.0 4131 | postcss: 8.4.21 4132 | postcss-import: 14.1.0_postcss@8.4.21 4133 | postcss-js: 4.0.0_postcss@8.4.21 4134 | postcss-load-config: 3.1.4_postcss@8.4.21 4135 | postcss-nested: 6.0.0_postcss@8.4.21 4136 | postcss-selector-parser: 6.0.11 4137 | postcss-value-parser: 4.2.0 4138 | quick-lru: 5.1.1 4139 | resolve: 1.22.1 4140 | transitivePeerDependencies: 4141 | - ts-node 4142 | dev: true 4143 | 4144 | /tapable/2.2.1: 4145 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 4146 | engines: {node: '>=6'} 4147 | dev: true 4148 | 4149 | /text-table/0.2.0: 4150 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 4151 | 4152 | /tiny-glob/0.2.9: 4153 | resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} 4154 | dependencies: 4155 | globalyzer: 0.1.0 4156 | globrex: 0.1.2 4157 | dev: true 4158 | 4159 | /to-fast-properties/2.0.0: 4160 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} 4161 | engines: {node: '>=4'} 4162 | 4163 | /to-regex-range/5.0.1: 4164 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 4165 | engines: {node: '>=8.0'} 4166 | dependencies: 4167 | is-number: 7.0.0 4168 | 4169 | /tsconfig-paths/3.14.1: 4170 | resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==} 4171 | dependencies: 4172 | '@types/json5': 0.0.29 4173 | json5: 1.0.2 4174 | minimist: 1.2.7 4175 | strip-bom: 3.0.0 4176 | 4177 | /tslib/1.14.1: 4178 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 4179 | 4180 | /tslib/2.4.1: 4181 | resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} 4182 | 4183 | /tsutils/3.21.0_typescript@4.9.4: 4184 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 4185 | engines: {node: '>= 6'} 4186 | peerDependencies: 4187 | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' 4188 | dependencies: 4189 | tslib: 1.14.1 4190 | typescript: 4.9.4 4191 | 4192 | /type-check/0.4.0: 4193 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 4194 | engines: {node: '>= 0.8.0'} 4195 | dependencies: 4196 | prelude-ls: 1.2.1 4197 | 4198 | /type-fest/0.20.2: 4199 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 4200 | engines: {node: '>=10'} 4201 | 4202 | /typed-array-length/1.0.4: 4203 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 4204 | dependencies: 4205 | call-bind: 1.0.2 4206 | for-each: 0.3.3 4207 | is-typed-array: 1.1.10 4208 | 4209 | /typescript/4.9.4: 4210 | resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==} 4211 | engines: {node: '>=4.2.0'} 4212 | hasBin: true 4213 | 4214 | /unbox-primitive/1.0.2: 4215 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 4216 | dependencies: 4217 | call-bind: 1.0.2 4218 | has-bigints: 1.0.2 4219 | has-symbols: 1.0.3 4220 | which-boxed-primitive: 1.0.2 4221 | 4222 | /unicode-canonical-property-names-ecmascript/2.0.0: 4223 | resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} 4224 | engines: {node: '>=4'} 4225 | dev: false 4226 | 4227 | /unicode-match-property-ecmascript/2.0.0: 4228 | resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} 4229 | engines: {node: '>=4'} 4230 | dependencies: 4231 | unicode-canonical-property-names-ecmascript: 2.0.0 4232 | unicode-property-aliases-ecmascript: 2.1.0 4233 | dev: false 4234 | 4235 | /unicode-match-property-value-ecmascript/2.1.0: 4236 | resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} 4237 | engines: {node: '>=4'} 4238 | dev: false 4239 | 4240 | /unicode-property-aliases-ecmascript/2.1.0: 4241 | resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} 4242 | engines: {node: '>=4'} 4243 | dev: false 4244 | 4245 | /update-browserslist-db/1.0.10_browserslist@4.21.4: 4246 | resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} 4247 | hasBin: true 4248 | peerDependencies: 4249 | browserslist: '>= 4.21.0' 4250 | dependencies: 4251 | browserslist: 4.21.4 4252 | escalade: 3.1.1 4253 | picocolors: 1.0.0 4254 | 4255 | /uri-js/4.4.1: 4256 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 4257 | dependencies: 4258 | punycode: 2.2.0 4259 | 4260 | /util-deprecate/1.0.2: 4261 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 4262 | dev: true 4263 | 4264 | /which-boxed-primitive/1.0.2: 4265 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 4266 | dependencies: 4267 | is-bigint: 1.0.4 4268 | is-boolean-object: 1.1.2 4269 | is-number-object: 1.0.7 4270 | is-string: 1.0.7 4271 | is-symbol: 1.0.4 4272 | 4273 | /which-collection/1.0.1: 4274 | resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} 4275 | dependencies: 4276 | is-map: 2.0.2 4277 | is-set: 2.0.2 4278 | is-weakmap: 2.0.1 4279 | is-weakset: 2.0.2 4280 | 4281 | /which-typed-array/1.1.9: 4282 | resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} 4283 | engines: {node: '>= 0.4'} 4284 | dependencies: 4285 | available-typed-arrays: 1.0.5 4286 | call-bind: 1.0.2 4287 | for-each: 0.3.3 4288 | gopd: 1.0.1 4289 | has-tostringtag: 1.0.0 4290 | is-typed-array: 1.1.10 4291 | 4292 | /which/2.0.2: 4293 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 4294 | engines: {node: '>= 8'} 4295 | hasBin: true 4296 | dependencies: 4297 | isexe: 2.0.0 4298 | 4299 | /word-wrap/1.2.3: 4300 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} 4301 | engines: {node: '>=0.10.0'} 4302 | 4303 | /wrappy/1.0.2: 4304 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 4305 | 4306 | /xtend/4.0.2: 4307 | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 4308 | engines: {node: '>=0.4'} 4309 | dev: true 4310 | 4311 | /yallist/3.1.1: 4312 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 4313 | dev: false 4314 | 4315 | /yallist/4.0.0: 4316 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 4317 | 4318 | /yaml/1.10.2: 4319 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} 4320 | engines: {node: '>= 6'} 4321 | dev: true 4322 | 4323 | /yocto-queue/0.1.0: 4324 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 4325 | engines: {node: '>=10'} 4326 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gentleman-Programming/GentlemanClass-NextJs13/302c7d81f791a9e014bf95e07159a13144caf49d/public/favicon.ico -------------------------------------------------------------------------------- /public/images/mustachy_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gentleman-Programming/GentlemanClass-NextJs13/302c7d81f791a9e014bf95e07159a13144caf49d/public/images/mustachy_.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | <svg width="283" height="64" viewBox="0 0 283 64" fill="none" 2 | xmlns="http://www.w3.org/2000/svg"> 3 | <path d="M141.04 16c-11.04 0-19 7.2-19 18s8.96 18 20 18c6.67 0 12.55-2.64 16.19-7.09l-7.65-4.42c-2.02 2.21-5.09 3.5-8.54 3.5-4.79 0-8.86-2.5-10.37-6.5h28.02c.22-1.12.35-2.28.35-3.5 0-10.79-7.96-17.99-19-17.99zm-9.46 14.5c1.25-3.99 4.67-6.5 9.45-6.5 4.79 0 8.21 2.51 9.45 6.5h-18.9zM248.72 16c-11.04 0-19 7.2-19 18s8.96 18 20 18c6.67 0 12.55-2.64 16.19-7.09l-7.65-4.42c-2.02 2.21-5.09 3.5-8.54 3.5-4.79 0-8.86-2.5-10.37-6.5h28.02c.22-1.12.35-2.28.35-3.5 0-10.79-7.96-17.99-19-17.99zm-9.45 14.5c1.25-3.99 4.67-6.5 9.45-6.5 4.79 0 8.21 2.51 9.45 6.5h-18.9zM200.24 34c0 6 3.92 10 10 10 4.12 0 7.21-1.87 8.8-4.92l7.68 4.43c-3.18 5.3-9.14 8.49-16.48 8.49-11.05 0-19-7.2-19-18s7.96-18 19-18c7.34 0 13.29 3.19 16.48 8.49l-7.68 4.43c-1.59-3.05-4.68-4.92-8.8-4.92-6.07 0-10 4-10 10zm82.48-29v46h-9V5h9zM36.95 0L73.9 64H0L36.95 0zm92.38 5l-27.71 48L73.91 5H84.3l17.32 30 17.32-30h10.39zm58.91 12v9.69c-1-.29-2.06-.49-3.2-.49-5.81 0-10 4-10 10V51h-9V17h9v9.2c0-5.08 5.91-9.2 13.2-9.2z" fill="#000"/> 4 | </svg> -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- 1 | .container { 2 | padding: 0 2rem; 3 | } 4 | 5 | .main { 6 | min-height: 100vh; 7 | padding: 4rem 0; 8 | flex: 1; 9 | display: flex; 10 | flex-direction: column; 11 | justify-content: center; 12 | align-items: center; 13 | } 14 | 15 | .footer { 16 | display: flex; 17 | flex: 1; 18 | padding: 2rem 0; 19 | border-top: 1px solid #eaeaea; 20 | justify-content: center; 21 | align-items: center; 22 | } 23 | 24 | .footer a { 25 | display: flex; 26 | justify-content: center; 27 | align-items: center; 28 | flex-grow: 1; 29 | } 30 | 31 | .title a { 32 | color: #0070f3; 33 | text-decoration: none; 34 | } 35 | 36 | .title a:hover, 37 | .title a:focus, 38 | .title a:active { 39 | text-decoration: underline; 40 | } 41 | 42 | .title { 43 | margin: 0; 44 | line-height: 1.15; 45 | font-size: 4rem; 46 | } 47 | 48 | .title, 49 | .description { 50 | text-align: center; 51 | } 52 | 53 | .description { 54 | margin: 4rem 0; 55 | line-height: 1.5; 56 | font-size: 1.5rem; 57 | } 58 | 59 | .code { 60 | background: #fafafa; 61 | border-radius: 5px; 62 | padding: 0.75rem; 63 | font-size: 1.1rem; 64 | font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, 65 | Bitstream Vera Sans Mono, Courier New, monospace; 66 | } 67 | 68 | .grid { 69 | display: flex; 70 | align-items: center; 71 | justify-content: center; 72 | flex-wrap: wrap; 73 | max-width: 800px; 74 | } 75 | 76 | .card { 77 | margin: 1rem; 78 | padding: 1.5rem; 79 | text-align: left; 80 | color: inherit; 81 | text-decoration: none; 82 | border: 1px solid #eaeaea; 83 | border-radius: 10px; 84 | transition: color 0.15s ease, border-color 0.15s ease; 85 | max-width: 300px; 86 | } 87 | 88 | .card:hover, 89 | .card:focus, 90 | .card:active { 91 | color: #0070f3; 92 | border-color: #0070f3; 93 | } 94 | 95 | .card h2 { 96 | margin: 0 0 1rem 0; 97 | font-size: 1.5rem; 98 | } 99 | 100 | .card p { 101 | margin: 0; 102 | font-size: 1.25rem; 103 | line-height: 1.5; 104 | } 105 | 106 | .logo { 107 | height: 1em; 108 | margin-left: 0.5rem; 109 | } 110 | 111 | @media (max-width: 600px) { 112 | .grid { 113 | width: 100%; 114 | flex-direction: column; 115 | } 116 | } 117 | 118 | @media (prefers-color-scheme: dark) { 119 | .card, 120 | .footer { 121 | border-color: #222; 122 | } 123 | .code { 124 | background: #111; 125 | } 126 | .logo img { 127 | filter: invert(1); 128 | } 129 | } 130 | -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | padding: 0; 4 | margin: 0; 5 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, 6 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; 7 | } 8 | 9 | a { 10 | color: inherit; 11 | text-decoration: none; 12 | } 13 | 14 | * { 15 | box-sizing: border-box; 16 | } 17 | 18 | @media (prefers-color-scheme: dark) { 19 | html { 20 | color-scheme: dark; 21 | } 22 | body { 23 | color: white; 24 | background: black; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: ["./app/**/*.{js,jsx,ts,tsx}", "./components/**/*.{js,ts,jsx,tsx}"], 4 | theme: { 5 | extend: {}, 6 | }, 7 | plugins: [], 8 | }; 9 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "forceConsistentCasingInFileNames": true, 9 | "noEmit": true, 10 | "esModuleInterop": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "resolveJsonModule": true, 14 | "isolatedModules": true, 15 | "jsx": "preserve", 16 | "incremental": true, 17 | "plugins": [ 18 | { 19 | "name": "next" 20 | } 21 | ] 22 | }, 23 | "include": [ 24 | "next-env.d.ts", 25 | "**/*.ts", 26 | "**/*.tsx", 27 | ".next/types/**/*.ts", 28 | "next.config.js", 29 | "tailwind.config.js", 30 | "postcss.config.js" 31 | ], 32 | "exclude": ["node_modules"] 33 | } 34 | --------------------------------------------------------------------------------