├── .env.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── ArticleList.tsx ├── BlogCardWithImage.tsx ├── Blogcard.tsx ├── Footer.tsx ├── Navbar.tsx ├── Pagination.tsx └── Tabs.tsx ├── http └── index.ts ├── next-env.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── pages ├── _app.tsx ├── api │ └── hello.ts ├── article │ └── [slug].tsx ├── category │ └── [category].tsx └── index.tsx ├── postcss.config.js ├── public ├── favicon.ico ├── gitbook.svg ├── logo.png ├── pie.png └── vercel.svg ├── styles ├── Home.module.css └── globals.css ├── tailwind.config.js ├── tsconfig.json ├── types └── index.ts ├── utils └── index.ts └── yarn.lock /.env.example: -------------------------------------------------------------------------------- 1 | API_BASE_URL= 2 | BACKEND_API_KEY= -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.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 | .env 31 | 32 | # vercel 33 | .vercel 34 | 35 | # typescript 36 | *.tsbuildinfo 37 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /components/ArticleList.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { IArticle } from '../types'; 3 | import Blogcard from './Blogcard'; 4 | import BlogCardWithImage from './BlogCardWithImage'; 5 | 6 | interface IPropType { 7 | articles: IArticle[]; 8 | } 9 | const ArticleList = ({ articles }: IPropType) => { 10 | return ( 11 |
12 | {articles.map((article, idx) => { 13 | return ( 14 |
15 | {idx === 1 ? ( 16 | 17 | ) : ( 18 | 19 | )} 20 |
21 | ); 22 | })} 23 |
24 | ); 25 | }; 26 | 27 | export default ArticleList; 28 | -------------------------------------------------------------------------------- /components/BlogCardWithImage.tsx: -------------------------------------------------------------------------------- 1 | import Image from 'next/image'; 2 | import Link from 'next/link'; 3 | import React from 'react'; 4 | import { IArticle } from '../types'; 5 | interface IPropType { 6 | article: IArticle; 7 | } 8 | const BlogCardWithImage = ({ article }: IPropType) => { 9 | return ( 10 |
11 | 12 | 13 | {article.attributes.Title} 14 | 15 | 16 | 17 |
18 | ); 19 | }; 20 | 21 | export default BlogCardWithImage; 22 | -------------------------------------------------------------------------------- /components/Blogcard.tsx: -------------------------------------------------------------------------------- 1 | import Image from 'next/image'; 2 | import Link from 'next/link'; 3 | import React from 'react'; 4 | import { IArticle } from '../types'; 5 | import { formatDate } from '../utils'; 6 | interface IPropType { 7 | article: IArticle; 8 | } 9 | 10 | const Blogcard = ({ article }: IPropType) => { 11 | return ( 12 |
13 | 14 |

15 | {article.attributes.Title} 16 |

17 | 18 |
19 |
20 | 25 |
26 | 27 | {article.attributes.author.data.attributes.firstname}{' '} 28 | {article.attributes.author.data.attributes.lastname} on 29 |   30 | 31 | {formatDate(article.attributes.createdAt)} 32 | 33 | 34 |
35 |
36 | {article.attributes.shortDescription.slice(0, 250)}{' '} 37 | {article.attributes.shortDescription.length > 250 ? '...' : ''} 38 |
39 |
40 | ); 41 | }; 42 | 43 | export default Blogcard; 44 | -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- 1 | import Image from 'next/image'; 2 | import React from 'react'; 3 | 4 | const Footer = () => { 5 | return ( 6 | 84 | ); 85 | }; 86 | 87 | export default Footer; 88 | -------------------------------------------------------------------------------- /components/Navbar.tsx: -------------------------------------------------------------------------------- 1 | import Image from 'next/image'; 2 | import Link from 'next/link'; 3 | import React from 'react'; 4 | 5 | const Navbar = () => { 6 | return ( 7 | 45 | ); 46 | }; 47 | 48 | export default Navbar; 49 | -------------------------------------------------------------------------------- /components/Pagination.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import qs from 'qs'; 3 | import { TDirection } from '../types'; 4 | import { useRouter } from 'next/router'; 5 | interface IPropType { 6 | page: number; 7 | pageCount: number; 8 | redirectUrl?: string; 9 | } 10 | 11 | const Pagination = ({ page, pageCount, redirectUrl = '/' }: IPropType) => { 12 | const router = useRouter(); 13 | 14 | const isNextDisabled = (): boolean => { 15 | return page >= pageCount; 16 | }; 17 | 18 | const isPrevDisabled = (): boolean => { 19 | return page <= 1; 20 | }; 21 | 22 | const handlePaginate = async (direction: TDirection) => { 23 | if (direction === 1 && isNextDisabled()) { 24 | return; 25 | } 26 | 27 | if (direction === -1 && isPrevDisabled()) { 28 | return; 29 | } 30 | const queryString = qs.stringify({ 31 | ...router.query, 32 | page: page + direction, 33 | }); 34 | 35 | router.push(`${redirectUrl}?${queryString}`); 36 | }; 37 | return ( 38 |
39 | 46 | 53 |
54 | ); 55 | }; 56 | 57 | export default Pagination; 58 | -------------------------------------------------------------------------------- /components/Tabs.tsx: -------------------------------------------------------------------------------- 1 | import Link from 'next/link'; 2 | import { useRouter } from 'next/router'; 3 | import React from 'react'; 4 | import { ICategory } from '../types'; 5 | 6 | interface IPropType { 7 | categories: ICategory[]; 8 | handleOnSearch: (query: string) => void; 9 | } 10 | const Tabs = ({ categories, handleOnSearch }: IPropType) => { 11 | const router = useRouter(); 12 | 13 | const isActiveLink = (category: ICategory) => { 14 | return category.attributes.Slug === router.query.category; 15 | }; 16 | 17 | return ( 18 |
19 | 51 |
52 | 56 | 57 | 58 | handleOnSearch(e.target.value)} 60 | type="text" 61 | placeholder="Search" 62 | className="outline-none px-2 py-1 ml-1" 63 | /> 64 |
65 |
66 | ); 67 | }; 68 | 69 | export default Tabs; 70 | -------------------------------------------------------------------------------- /http/index.ts: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | 3 | const api = axios.create({ 4 | baseURL: process.env.API_BASE_URL, 5 | headers: { 6 | Authorization: `Bearer ${process.env.BACKEND_API_KEY}`, 7 | }, 8 | }); 9 | 10 | // Categories 11 | export const fetchCategories = async () => api.get('/api/categories'); 12 | 13 | // Articles 14 | export const fetchArticles = async (queryString: string) => 15 | api.get(`/api/articles?${queryString}`); 16 | 17 | export const fetchArticleBySlug = async (queryString: string) => 18 | api.get(`/api/articles?${queryString}`); 19 | -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | 4 | // NOTE: This file should not be edited 5 | // see https://nextjs.org/docs/basic-features/typescript for more information. 6 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | images: { 5 | domains: ['localhost'], 6 | }, 7 | }; 8 | 9 | module.exports = nextConfig; 10 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "coders-blog-nextjs", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "axios": "^0.27.2", 13 | "next": "12.1.6", 14 | "next-mdx-remote": "^4.0.3", 15 | "nextjs-progressbar": "0.0.14", 16 | "qs": "^6.11.0", 17 | "react": "18.2.0", 18 | "react-dom": "18.2.0" 19 | }, 20 | "devDependencies": { 21 | "@types/node": "18.0.0", 22 | "@types/react": "18.0.14", 23 | "@types/react-dom": "18.0.5", 24 | "autoprefixer": "^10.4.7", 25 | "eslint": "8.18.0", 26 | "eslint-config-next": "12.1.6", 27 | "postcss": "^8.4.14", 28 | "tailwindcss": "^3.1.4", 29 | "typescript": "4.7.4" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import '../styles/globals.css'; 2 | import type { AppProps } from 'next/app'; 3 | import Navbar from '../components/Navbar'; 4 | import Footer from '../components/Footer'; 5 | import NextNProgress from 'nextjs-progressbar'; 6 | 7 | function MyApp({ Component, pageProps }: AppProps) { 8 | return ( 9 | <> 10 |
11 | 12 | 13 |
14 | 15 |
16 |
17 |
18 | 19 | ); 20 | } 21 | 22 | export default MyApp; 23 | -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- 1 | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction 2 | import type { NextApiRequest, NextApiResponse } from 'next' 3 | 4 | type Data = { 5 | name: string 6 | } 7 | 8 | export default function handler( 9 | req: NextApiRequest, 10 | res: NextApiResponse 11 | ) { 12 | res.status(200).json({ name: 'John Doe' }) 13 | } 14 | -------------------------------------------------------------------------------- /pages/article/[slug].tsx: -------------------------------------------------------------------------------- 1 | import { AxiosResponse } from 'axios'; 2 | import React from 'react'; 3 | import qs from 'qs'; 4 | import Image from 'next/image'; 5 | import { formatDate, serializeMarkdown } from '../../utils'; 6 | import { fetchArticleBySlug } from '../../http'; 7 | import { IArticle, ICollectionResponse } from '../../types'; 8 | import { GetServerSideProps } from 'next'; 9 | import Head from 'next/head'; 10 | import { MDXRemote, MDXRemoteSerializeResult } from 'next-mdx-remote'; 11 | 12 | interface IPropType { 13 | article: IArticle; 14 | notFound?: boolean; 15 | } 16 | 17 | const slug = ({ article, notFound = false }: IPropType) => { 18 | return ( 19 | <> 20 | 21 | {article.attributes.Title} 22 | 26 | 27 | 28 |
29 |
30 |

31 | {article.attributes.Title} 32 |

33 |
34 |
35 | 40 |
41 | 42 | { 43 | article.attributes.author.data.attributes 44 | .firstname 45 | }{' '} 46 | {article.attributes.author.data.attributes.lastname}{' '} 47 | on   48 | 49 | {formatDate(article.attributes.createdAt)} 50 | 51 | 52 |
53 |
54 | {article.attributes.Title} 59 | 63 |
64 |
65 |
66 |

67 | Signup to our newsletter 68 |

69 |

70 | Get the latest article on all things data delivered 71 | straight to your inbox 72 |

73 | 78 | 81 |
82 | 83 | Share 84 | 85 | 92 | 93 | 94 | 95 | 96 | 103 | 104 | 105 | 106 | 107 | 115 | 122 | 123 | 124 | 125 | 126 | 134 | 137 | 142 | 143 | 144 | 145 |
146 |
147 |
148 | 149 | ); 150 | }; 151 | 152 | export const getServerSideProps: GetServerSideProps = async ({ query }) => { 153 | const queryString = qs.stringify({ 154 | populate: ['Image', 'author.avatar'], 155 | filters: { 156 | Slug: { 157 | $eq: query.slug, 158 | }, 159 | }, 160 | }); 161 | 162 | const { data: articles }: AxiosResponse> = 163 | await fetchArticleBySlug(queryString); 164 | if (articles.data.length === 0) { 165 | return { 166 | notFound: true, 167 | }; 168 | } 169 | return { 170 | props: { 171 | article: await serializeMarkdown(articles.data[0]), 172 | }, 173 | }; 174 | }; 175 | 176 | export default slug; 177 | -------------------------------------------------------------------------------- /pages/category/[category].tsx: -------------------------------------------------------------------------------- 1 | import { AxiosResponse } from 'axios'; 2 | import { GetServerSideProps } from 'next'; 3 | import Head from 'next/head'; 4 | import React from 'react'; 5 | import Tabs from '../../components/Tabs'; 6 | import { fetchArticles, fetchCategories } from '../../http'; 7 | import { 8 | IArticle, 9 | ICategory, 10 | ICollectionResponse, 11 | IPagination, 12 | IQueryOptions, 13 | } from '../../types'; 14 | import qs from 'qs'; 15 | import ArticleList from '../../components/ArticleList'; 16 | import { capitalizeFirstLetter, debounce, makeCategory } from '../../utils'; 17 | import Pagination from '../../components/Pagination'; 18 | import { useRouter } from 'next/router'; 19 | 20 | interface IPropType { 21 | categories: { 22 | items: ICategory[]; 23 | pagination: IPagination; 24 | }; 25 | articles: { 26 | items: IArticle[]; 27 | pagination: IPagination; 28 | }; 29 | slug: string; 30 | } 31 | 32 | const category = ({ categories, articles, slug }: IPropType) => { 33 | const { page, pageCount } = articles.pagination; 34 | const router = useRouter(); 35 | const { category: categorySlug } = router.query; 36 | 37 | const formattedCategory = () => { 38 | return capitalizeFirstLetter(makeCategory(slug)); 39 | }; 40 | const handleSearch = (query: string) => { 41 | router.push(`/category/${categorySlug}/?search=${query}`); 42 | }; 43 | return ( 44 | <> 45 | 46 | Coder's Blog {formattedCategory()} 47 | 51 | 52 | 53 | 57 | 58 | 63 | 64 | ); 65 | }; 66 | 67 | export const getServerSideProps: GetServerSideProps = async ({ query }) => { 68 | const options: IQueryOptions = { 69 | populate: ['author.avatar'], 70 | sort: ['id:desc'], 71 | filters: { 72 | category: { 73 | slug: query.category, 74 | }, 75 | }, 76 | pagination: { 77 | page: query.page ? +query.page : 1, 78 | pageSize: 1, 79 | }, 80 | }; 81 | 82 | if (query.search) { 83 | options.filters = { 84 | Title: { 85 | $containsi: query.search, 86 | }, 87 | }; 88 | } 89 | 90 | const queryString = qs.stringify(options); 91 | 92 | const { data: articles }: AxiosResponse> = 93 | await fetchArticles(queryString); 94 | 95 | const { 96 | data: categories, 97 | }: AxiosResponse> = 98 | await fetchCategories(); 99 | 100 | return { 101 | props: { 102 | categories: { 103 | items: categories.data, 104 | pagination: categories.meta.pagination, 105 | }, 106 | articles: { 107 | items: articles.data, 108 | pagination: articles.meta.pagination, 109 | }, 110 | slug: query.category, 111 | }, 112 | }; 113 | }; 114 | 115 | export default category; 116 | -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- 1 | import { AxiosResponse } from 'axios'; 2 | import type { GetServerSideProps, NextPage } from 'next'; 3 | import Head from 'next/head'; 4 | import ArticleList from '../components/ArticleList'; 5 | import Tabs from '../components/Tabs'; 6 | import { fetchArticles, fetchCategories } from '../http'; 7 | import { 8 | IArticle, 9 | ICategory, 10 | ICollectionResponse, 11 | IPagination, 12 | IQueryOptions, 13 | } from '../types'; 14 | import qs from 'qs'; 15 | import Pagination from '../components/Pagination'; 16 | import { useRouter } from 'next/router'; 17 | import { debounce } from '../utils'; 18 | 19 | interface IPropTypes { 20 | categories: { 21 | items: ICategory[]; 22 | }; 23 | articles: { 24 | items: IArticle[]; 25 | pagination: IPagination; 26 | }; 27 | } 28 | 29 | const Home: NextPage = ({ categories, articles }) => { 30 | const router = useRouter(); 31 | 32 | const { page, pageCount } = articles.pagination; 33 | 34 | const handleSearch = (query: string) => { 35 | router.push(`/?search=${query}`); 36 | }; 37 | 38 | return ( 39 |
40 | 41 | Coder's Blog Homepage 42 | 46 | 47 | 48 | 52 | 53 | 54 |
55 | ); 56 | }; 57 | 58 | export const getServerSideProps: GetServerSideProps = async ({ query }) => { 59 | // Articles 60 | const options: Partial = { 61 | populate: ['author.avatar'], 62 | sort: ['id:desc'], 63 | pagination: { 64 | page: query.page ? +query.page : 1, 65 | // pageSize: 1, 66 | }, 67 | }; 68 | 69 | if (query.search) { 70 | options.filters = { 71 | Title: { 72 | $containsi: query.search, 73 | }, 74 | }; 75 | } 76 | 77 | const queryString = qs.stringify(options); 78 | 79 | const { data: articles }: AxiosResponse> = 80 | await fetchArticles(queryString); 81 | 82 | // categories 83 | const { 84 | data: categories, 85 | }: AxiosResponse> = 86 | await fetchCategories(); 87 | 88 | return { 89 | props: { 90 | categories: { 91 | items: categories.data, 92 | }, 93 | articles: { 94 | items: articles.data, 95 | pagination: articles.meta.pagination, 96 | }, 97 | }, 98 | }; 99 | }; 100 | 101 | export default Home; 102 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/nextjs-typescript-blog/aca64db3e4c6e5f7298cb945dee52e2a6b37a19d/public/favicon.ico -------------------------------------------------------------------------------- /public/gitbook.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/nextjs-typescript-blog/aca64db3e4c6e5f7298cb945dee52e2a6b37a19d/public/logo.png -------------------------------------------------------------------------------- /public/pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/nextjs-typescript-blog/aca64db3e4c6e5f7298cb945dee52e2a6b37a19d/public/pie.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500;700&display=swap'); 2 | @tailwind base; 3 | @tailwind components; 4 | @tailwind utilities; 5 | 6 | @layer components { 7 | .disabled { 8 | @apply opacity-50 cursor-not-allowed 9 | } 10 | .single-article h1 { 11 | @apply text-3xl font-bold py-2; 12 | } 13 | 14 | .single-article h2 { 15 | @apply text-xl font-bold py-2; 16 | } 17 | 18 | .single-article h3 { 19 | @apply text-lg font-bold py-2; 20 | } 21 | 22 | .single-article pre { 23 | @apply text-green-500 bg-gray-100 my-6 p-2; 24 | } 25 | 26 | .single-article blockquote { 27 | @apply my-4 p-4 border-l-4 bg-gray-100 text-gray-500 border-primary; 28 | } 29 | 30 | } -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | './pages/**/*.{js,ts,jsx,tsx}', 5 | './components/**/*.{js,ts,jsx,tsx}', 6 | ], 7 | theme: { 8 | extend: { 9 | colors: { 10 | primary: '#53BD95', 11 | 'primary-dark': '#2c785c', 12 | }, 13 | }, 14 | fontFamily: { 15 | sans: ['Roboto', 'sans-serif'], 16 | }, 17 | }, 18 | plugins: [], 19 | }; 20 | -------------------------------------------------------------------------------- /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 | }, 18 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], 19 | "exclude": ["node_modules"] 20 | } 21 | -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- 1 | import { MDXRemoteSerializeResult } from 'next-mdx-remote'; 2 | 3 | export interface ICategory { 4 | id: number; 5 | attributes: ICategoryAttribute; 6 | } 7 | 8 | export interface ICategoryAttribute { 9 | Title: string; 10 | Slug: string; 11 | } 12 | 13 | export interface IPagination { 14 | page: number; 15 | pageSize: number; 16 | pageCount: number; 17 | total: number; 18 | } 19 | 20 | export interface IResourceMeta { 21 | pagination: IPagination; 22 | } 23 | 24 | export interface ICollectionResponse { 25 | data: T; 26 | meta: IResourceMeta; 27 | } 28 | 29 | export interface IImageData { 30 | data: { 31 | attributes: { 32 | url: string; 33 | formats: { 34 | small: { 35 | url: string; 36 | }; 37 | }; 38 | }; 39 | }; 40 | } 41 | 42 | export interface IAuthor { 43 | data: { 44 | attributes: { 45 | firstname: string; 46 | lastname: string; 47 | avatar: { 48 | data: { 49 | attributes: { 50 | formats: { 51 | thumbnail: { 52 | url: string; 53 | }; 54 | }; 55 | }; 56 | }; 57 | }; 58 | }; 59 | }; 60 | } 61 | 62 | export interface IArticlesAttribute { 63 | Title: string; 64 | body: string | MDXRemoteSerializeResult; 65 | Slug: string; 66 | Image: IImageData; 67 | createdAt: string; 68 | author: IAuthor; 69 | shortDescription: string; 70 | } 71 | 72 | export interface IArticle { 73 | id: number; 74 | attributes: IArticlesAttribute; 75 | } 76 | 77 | export type TDirection = 1 | -1; 78 | 79 | export interface IQueryOptions { 80 | filters: any; 81 | sort: any; 82 | populate: any; 83 | pagination: { 84 | page: number; 85 | pageSize: number; 86 | }; 87 | } 88 | -------------------------------------------------------------------------------- /utils/index.ts: -------------------------------------------------------------------------------- 1 | import { serialize } from 'next-mdx-remote/serialize'; 2 | import { IArticle } from '../types'; 3 | 4 | export const formatDate = (dateString: string): string => { 5 | const date = new Date(dateString).toLocaleDateString('en-US', { 6 | weekday: 'long', 7 | year: 'numeric', 8 | month: 'long', 9 | day: 'numeric', 10 | }); 11 | return date; 12 | }; 13 | 14 | export const makeCategory = (slug: string): string => { 15 | if (typeof slug === 'string') { 16 | return slug.split('-').join(' '); 17 | } 18 | return ''; 19 | }; 20 | 21 | export const capitalizeFirstLetter = (str: string): string => { 22 | return str.charAt(0).toUpperCase() + str.slice(1); 23 | }; 24 | 25 | export const debounce = (fn: (query: string) => void, timeout = 300) => { 26 | let timer: NodeJS.Timeout; 27 | const debounced = (...args: any) => { 28 | clearTimeout(timer); 29 | timer = setTimeout(() => { 30 | fn.apply(this, args); 31 | }, timeout); 32 | }; 33 | return debounced; 34 | }; 35 | 36 | export const serializeMarkdown = async (item: IArticle) => { 37 | const body = await serialize(item.attributes.body as string); 38 | return { 39 | ...item, 40 | attributes: { 41 | ...item.attributes, 42 | body, 43 | }, 44 | }; 45 | }; 46 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/runtime-corejs3@^7.10.2": 6 | version "7.18.6" 7 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.18.6.tgz#6f02c5536911f4b445946a2179554b95c8838635" 8 | integrity sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw== 9 | dependencies: 10 | core-js-pure "^3.20.2" 11 | regenerator-runtime "^0.13.4" 12 | 13 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.18.3": 14 | version "7.18.6" 15 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.6.tgz#6a1ef59f838debd670421f8c7f2cbb8da9751580" 16 | integrity sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ== 17 | dependencies: 18 | regenerator-runtime "^0.13.4" 19 | 20 | "@eslint/eslintrc@^1.3.0": 21 | version "1.3.0" 22 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.0.tgz#29f92c30bb3e771e4a2048c95fa6855392dfac4f" 23 | integrity sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw== 24 | dependencies: 25 | ajv "^6.12.4" 26 | debug "^4.3.2" 27 | espree "^9.3.2" 28 | globals "^13.15.0" 29 | ignore "^5.2.0" 30 | import-fresh "^3.2.1" 31 | js-yaml "^4.1.0" 32 | minimatch "^3.1.2" 33 | strip-json-comments "^3.1.1" 34 | 35 | "@humanwhocodes/config-array@^0.9.2": 36 | version "0.9.5" 37 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7" 38 | integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw== 39 | dependencies: 40 | "@humanwhocodes/object-schema" "^1.2.1" 41 | debug "^4.1.1" 42 | minimatch "^3.0.4" 43 | 44 | "@humanwhocodes/object-schema@^1.2.1": 45 | version "1.2.1" 46 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 47 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 48 | 49 | "@next/env@12.1.6": 50 | version "12.1.6" 51 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.6.tgz#5f44823a78335355f00f1687cfc4f1dafa3eca08" 52 | integrity sha512-Te/OBDXFSodPU6jlXYPAXpmZr/AkG6DCATAxttQxqOWaq6eDFX25Db3dK0120GZrSZmv4QCe9KsZmJKDbWs4OA== 53 | 54 | "@next/eslint-plugin-next@12.1.6": 55 | version "12.1.6" 56 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.1.6.tgz#dde3f98831f15923b25244588d924c716956292e" 57 | integrity sha512-yNUtJ90NEiYFT6TJnNyofKMPYqirKDwpahcbxBgSIuABwYOdkGwzos1ZkYD51Qf0diYwpQZBeVqElTk7Q2WNqw== 58 | dependencies: 59 | glob "7.1.7" 60 | 61 | "@next/swc-android-arm-eabi@12.1.6": 62 | version "12.1.6" 63 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.1.6.tgz#79a35349b98f2f8c038ab6261aa9cd0d121c03f9" 64 | integrity sha512-BxBr3QAAAXWgk/K7EedvzxJr2dE014mghBSA9iOEAv0bMgF+MRq4PoASjuHi15M2zfowpcRG8XQhMFtxftCleQ== 65 | 66 | "@next/swc-android-arm64@12.1.6": 67 | version "12.1.6" 68 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.1.6.tgz#ec08ea61794f8752c8ebcacbed0aafc5b9407456" 69 | integrity sha512-EboEk3ROYY7U6WA2RrMt/cXXMokUTXXfnxe2+CU+DOahvbrO8QSWhlBl9I9ZbFzJx28AGB9Yo3oQHCvph/4Lew== 70 | 71 | "@next/swc-darwin-arm64@12.1.6": 72 | version "12.1.6" 73 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.6.tgz#d1053805615fd0706e9b1667893a72271cd87119" 74 | integrity sha512-P0EXU12BMSdNj1F7vdkP/VrYDuCNwBExtRPDYawgSUakzi6qP0iKJpya2BuLvNzXx+XPU49GFuDC5X+SvY0mOw== 75 | 76 | "@next/swc-darwin-x64@12.1.6": 77 | version "12.1.6" 78 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.1.6.tgz#2d1b926a22f4c5230d5b311f9c56cfdcc406afec" 79 | integrity sha512-9FptMnbgHJK3dRDzfTpexs9S2hGpzOQxSQbe8omz6Pcl7rnEp9x4uSEKY51ho85JCjL4d0tDLBcXEJZKKLzxNg== 80 | 81 | "@next/swc-linux-arm-gnueabihf@12.1.6": 82 | version "12.1.6" 83 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.1.6.tgz#c021918d2a94a17f823106a5e069335b8a19724f" 84 | integrity sha512-PvfEa1RR55dsik/IDkCKSFkk6ODNGJqPY3ysVUZqmnWMDSuqFtf7BPWHFa/53znpvVB5XaJ5Z1/6aR5CTIqxPw== 85 | 86 | "@next/swc-linux-arm64-gnu@12.1.6": 87 | version "12.1.6" 88 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.1.6.tgz#ac55c07bfabde378dfa0ce2b8fc1c3b2897e81ae" 89 | integrity sha512-53QOvX1jBbC2ctnmWHyRhMajGq7QZfl974WYlwclXarVV418X7ed7o/EzGY+YVAEKzIVaAB9JFFWGXn8WWo0gQ== 90 | 91 | "@next/swc-linux-arm64-musl@12.1.6": 92 | version "12.1.6" 93 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.1.6.tgz#e429f826279894be9096be6bec13e75e3d6bd671" 94 | integrity sha512-CMWAkYqfGdQCS+uuMA1A2UhOfcUYeoqnTW7msLr2RyYAys15pD960hlDfq7QAi8BCAKk0sQ2rjsl0iqMyziohQ== 95 | 96 | "@next/swc-linux-x64-gnu@12.1.6": 97 | version "12.1.6" 98 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.1.6.tgz#1f276c0784a5ca599bfa34b2fcc0b38f3a738e08" 99 | integrity sha512-AC7jE4Fxpn0s3ujngClIDTiEM/CQiB2N2vkcyWWn6734AmGT03Duq6RYtPMymFobDdAtZGFZd5nR95WjPzbZAQ== 100 | 101 | "@next/swc-linux-x64-musl@12.1.6": 102 | version "12.1.6" 103 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.1.6.tgz#1d9933dd6ba303dcfd8a2acd6ac7c27ed41e2eea" 104 | integrity sha512-c9Vjmi0EVk0Kou2qbrynskVarnFwfYIi+wKufR9Ad7/IKKuP6aEhOdZiIIdKsYWRtK2IWRF3h3YmdnEa2WLUag== 105 | 106 | "@next/swc-win32-arm64-msvc@12.1.6": 107 | version "12.1.6" 108 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.1.6.tgz#2ef9837f12ca652b1783d72ecb86208906042f02" 109 | integrity sha512-3UTOL/5XZSKFelM7qN0it35o3Cegm6LsyuERR3/OoqEExyj3aCk7F025b54/707HTMAnjlvQK3DzLhPu/xxO4g== 110 | 111 | "@next/swc-win32-ia32-msvc@12.1.6": 112 | version "12.1.6" 113 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.1.6.tgz#74003d0aa1c59dfa56cb15481a5c607cbc0027b9" 114 | integrity sha512-8ZWoj6nCq6fI1yCzKq6oK0jE6Mxlz4MrEsRyu0TwDztWQWe7rh4XXGLAa2YVPatYcHhMcUL+fQQbqd1MsgaSDA== 115 | 116 | "@next/swc-win32-x64-msvc@12.1.6": 117 | version "12.1.6" 118 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.6.tgz#a350caf42975e7197b24b495b8d764eec7e6a36e" 119 | integrity sha512-4ZEwiRuZEicXhXqmhw3+de8Z4EpOLQj/gp+D9fFWo6ii6W1kBkNNvvEx4A90ugppu+74pT1lIJnOuz3A9oQeJA== 120 | 121 | "@nodelib/fs.scandir@2.1.5": 122 | version "2.1.5" 123 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 124 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 125 | dependencies: 126 | "@nodelib/fs.stat" "2.0.5" 127 | run-parallel "^1.1.9" 128 | 129 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 130 | version "2.0.5" 131 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 132 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 133 | 134 | "@nodelib/fs.walk@^1.2.3": 135 | version "1.2.8" 136 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 137 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 138 | dependencies: 139 | "@nodelib/fs.scandir" "2.1.5" 140 | fastq "^1.6.0" 141 | 142 | "@rushstack/eslint-patch@^1.1.3": 143 | version "1.1.4" 144 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.1.4.tgz#0c8b74c50f29ee44f423f7416829c0bf8bb5eb27" 145 | integrity sha512-LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA== 146 | 147 | "@types/json5@^0.0.29": 148 | version "0.0.29" 149 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 150 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== 151 | 152 | "@types/node@18.0.0": 153 | version "18.0.0" 154 | resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.0.tgz#67c7b724e1bcdd7a8821ce0d5ee184d3b4dd525a" 155 | integrity sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA== 156 | 157 | "@types/prop-types@*": 158 | version "15.7.5" 159 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" 160 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 161 | 162 | "@types/react-dom@18.0.5": 163 | version "18.0.5" 164 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.5.tgz#330b2d472c22f796e5531446939eacef8378444a" 165 | integrity sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA== 166 | dependencies: 167 | "@types/react" "*" 168 | 169 | "@types/react@*", "@types/react@18.0.14": 170 | version "18.0.14" 171 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.14.tgz#e016616ffff51dba01b04945610fe3671fdbe06d" 172 | integrity sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q== 173 | dependencies: 174 | "@types/prop-types" "*" 175 | "@types/scheduler" "*" 176 | csstype "^3.0.2" 177 | 178 | "@types/scheduler@*": 179 | version "0.16.2" 180 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" 181 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 182 | 183 | "@typescript-eslint/parser@^5.21.0": 184 | version "5.30.0" 185 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.30.0.tgz#a2184fb5f8ef2bf1db0ae61a43907e2e32aa1b8f" 186 | integrity sha512-2oYYUws5o2liX6SrFQ5RB88+PuRymaM2EU02/9Ppoyu70vllPnHVO7ioxDdq/ypXHA277R04SVjxvwI8HmZpzA== 187 | dependencies: 188 | "@typescript-eslint/scope-manager" "5.30.0" 189 | "@typescript-eslint/types" "5.30.0" 190 | "@typescript-eslint/typescript-estree" "5.30.0" 191 | debug "^4.3.4" 192 | 193 | "@typescript-eslint/scope-manager@5.30.0": 194 | version "5.30.0" 195 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.30.0.tgz#bf585ee801ab4ad84db2f840174e171a6bb002c7" 196 | integrity sha512-3TZxvlQcK5fhTBw5solQucWSJvonXf5yua5nx8OqK94hxdrT7/6W3/CS42MLd/f1BmlmmbGEgQcTHHCktUX5bQ== 197 | dependencies: 198 | "@typescript-eslint/types" "5.30.0" 199 | "@typescript-eslint/visitor-keys" "5.30.0" 200 | 201 | "@typescript-eslint/types@5.30.0": 202 | version "5.30.0" 203 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.30.0.tgz#db7d81d585a3da3801432a9c1d2fafbff125e110" 204 | integrity sha512-vfqcBrsRNWw/LBXyncMF/KrUTYYzzygCSsVqlZ1qGu1QtGs6vMkt3US0VNSQ05grXi5Yadp3qv5XZdYLjpp8ag== 205 | 206 | "@typescript-eslint/typescript-estree@5.30.0": 207 | version "5.30.0" 208 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.0.tgz#4565ee8a6d2ac368996e20b2344ea0eab1a8f0bb" 209 | integrity sha512-hDEawogreZB4n1zoqcrrtg/wPyyiCxmhPLpZ6kmWfKF5M5G0clRLaEexpuWr31fZ42F96SlD/5xCt1bT5Qm4Nw== 210 | dependencies: 211 | "@typescript-eslint/types" "5.30.0" 212 | "@typescript-eslint/visitor-keys" "5.30.0" 213 | debug "^4.3.4" 214 | globby "^11.1.0" 215 | is-glob "^4.0.3" 216 | semver "^7.3.7" 217 | tsutils "^3.21.0" 218 | 219 | "@typescript-eslint/visitor-keys@5.30.0": 220 | version "5.30.0" 221 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.0.tgz#07721d23daca2ec4c2da7f1e660d41cd78bacac3" 222 | integrity sha512-6WcIeRk2DQ3pHKxU1Ni0qMXJkjO/zLjBymlYBy/53qxe7yjEFSvzKLDToJjURUhSl2Fzhkl4SMXQoETauF74cw== 223 | dependencies: 224 | "@typescript-eslint/types" "5.30.0" 225 | eslint-visitor-keys "^3.3.0" 226 | 227 | acorn-jsx@^5.3.2: 228 | version "5.3.2" 229 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 230 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 231 | 232 | acorn@^8.7.1: 233 | version "8.7.1" 234 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30" 235 | integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A== 236 | 237 | ajv@^6.10.0, ajv@^6.12.4: 238 | version "6.12.6" 239 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 240 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 241 | dependencies: 242 | fast-deep-equal "^3.1.1" 243 | fast-json-stable-stringify "^2.0.0" 244 | json-schema-traverse "^0.4.1" 245 | uri-js "^4.2.2" 246 | 247 | ansi-regex@^5.0.1: 248 | version "5.0.1" 249 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 250 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 251 | 252 | ansi-styles@^4.1.0: 253 | version "4.3.0" 254 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 255 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 256 | dependencies: 257 | color-convert "^2.0.1" 258 | 259 | argparse@^2.0.1: 260 | version "2.0.1" 261 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 262 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 263 | 264 | aria-query@^4.2.2: 265 | version "4.2.2" 266 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" 267 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== 268 | dependencies: 269 | "@babel/runtime" "^7.10.2" 270 | "@babel/runtime-corejs3" "^7.10.2" 271 | 272 | array-includes@^3.1.4, array-includes@^3.1.5: 273 | version "3.1.5" 274 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb" 275 | integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ== 276 | dependencies: 277 | call-bind "^1.0.2" 278 | define-properties "^1.1.4" 279 | es-abstract "^1.19.5" 280 | get-intrinsic "^1.1.1" 281 | is-string "^1.0.7" 282 | 283 | array-union@^2.1.0: 284 | version "2.1.0" 285 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 286 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 287 | 288 | array.prototype.flat@^1.2.5: 289 | version "1.3.0" 290 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b" 291 | integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw== 292 | dependencies: 293 | call-bind "^1.0.2" 294 | define-properties "^1.1.3" 295 | es-abstract "^1.19.2" 296 | es-shim-unscopables "^1.0.0" 297 | 298 | array.prototype.flatmap@^1.3.0: 299 | version "1.3.0" 300 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f" 301 | integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg== 302 | dependencies: 303 | call-bind "^1.0.2" 304 | define-properties "^1.1.3" 305 | es-abstract "^1.19.2" 306 | es-shim-unscopables "^1.0.0" 307 | 308 | ast-types-flow@^0.0.7: 309 | version "0.0.7" 310 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 311 | integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== 312 | 313 | axe-core@^4.4.2: 314 | version "4.4.2" 315 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.2.tgz#dcf7fb6dea866166c3eab33d68208afe4d5f670c" 316 | integrity sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA== 317 | 318 | axobject-query@^2.2.0: 319 | version "2.2.0" 320 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" 321 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== 322 | 323 | balanced-match@^1.0.0: 324 | version "1.0.2" 325 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 326 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 327 | 328 | brace-expansion@^1.1.7: 329 | version "1.1.11" 330 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 331 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 332 | dependencies: 333 | balanced-match "^1.0.0" 334 | concat-map "0.0.1" 335 | 336 | braces@^3.0.2: 337 | version "3.0.2" 338 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 339 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 340 | dependencies: 341 | fill-range "^7.0.1" 342 | 343 | call-bind@^1.0.0, call-bind@^1.0.2: 344 | version "1.0.2" 345 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 346 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 347 | dependencies: 348 | function-bind "^1.1.1" 349 | get-intrinsic "^1.0.2" 350 | 351 | callsites@^3.0.0: 352 | version "3.1.0" 353 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 354 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 355 | 356 | caniuse-lite@^1.0.30001332: 357 | version "1.0.30001359" 358 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz#a1c1cbe1c2da9e689638813618b4219acbd4925e" 359 | integrity sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw== 360 | 361 | chalk@^4.0.0: 362 | version "4.1.2" 363 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 364 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 365 | dependencies: 366 | ansi-styles "^4.1.0" 367 | supports-color "^7.1.0" 368 | 369 | color-convert@^2.0.1: 370 | version "2.0.1" 371 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 372 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 373 | dependencies: 374 | color-name "~1.1.4" 375 | 376 | color-name@~1.1.4: 377 | version "1.1.4" 378 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 379 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 380 | 381 | concat-map@0.0.1: 382 | version "0.0.1" 383 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 384 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 385 | 386 | core-js-pure@^3.20.2: 387 | version "3.23.3" 388 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.23.3.tgz#bcd02d3d8ec68ad871ef50d5ccbb248ddb54f401" 389 | integrity sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA== 390 | 391 | cross-spawn@^7.0.2: 392 | version "7.0.3" 393 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 394 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 395 | dependencies: 396 | path-key "^3.1.0" 397 | shebang-command "^2.0.0" 398 | which "^2.0.1" 399 | 400 | csstype@^3.0.2: 401 | version "3.1.0" 402 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.0.tgz#4ddcac3718d787cf9df0d1b7d15033925c8f29f2" 403 | integrity sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA== 404 | 405 | damerau-levenshtein@^1.0.8: 406 | version "1.0.8" 407 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" 408 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== 409 | 410 | debug@^2.6.9: 411 | version "2.6.9" 412 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 413 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 414 | dependencies: 415 | ms "2.0.0" 416 | 417 | debug@^3.2.7: 418 | version "3.2.7" 419 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 420 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 421 | dependencies: 422 | ms "^2.1.1" 423 | 424 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 425 | version "4.3.4" 426 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 427 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 428 | dependencies: 429 | ms "2.1.2" 430 | 431 | deep-is@^0.1.3: 432 | version "0.1.4" 433 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 434 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 435 | 436 | define-properties@^1.1.3, define-properties@^1.1.4: 437 | version "1.1.4" 438 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" 439 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 440 | dependencies: 441 | has-property-descriptors "^1.0.0" 442 | object-keys "^1.1.1" 443 | 444 | dir-glob@^3.0.1: 445 | version "3.0.1" 446 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 447 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 448 | dependencies: 449 | path-type "^4.0.0" 450 | 451 | doctrine@^2.1.0: 452 | version "2.1.0" 453 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 454 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 455 | dependencies: 456 | esutils "^2.0.2" 457 | 458 | doctrine@^3.0.0: 459 | version "3.0.0" 460 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 461 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 462 | dependencies: 463 | esutils "^2.0.2" 464 | 465 | emoji-regex@^9.2.2: 466 | version "9.2.2" 467 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 468 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 469 | 470 | es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5: 471 | version "1.20.1" 472 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.1.tgz#027292cd6ef44bd12b1913b828116f54787d1814" 473 | integrity sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA== 474 | dependencies: 475 | call-bind "^1.0.2" 476 | es-to-primitive "^1.2.1" 477 | function-bind "^1.1.1" 478 | function.prototype.name "^1.1.5" 479 | get-intrinsic "^1.1.1" 480 | get-symbol-description "^1.0.0" 481 | has "^1.0.3" 482 | has-property-descriptors "^1.0.0" 483 | has-symbols "^1.0.3" 484 | internal-slot "^1.0.3" 485 | is-callable "^1.2.4" 486 | is-negative-zero "^2.0.2" 487 | is-regex "^1.1.4" 488 | is-shared-array-buffer "^1.0.2" 489 | is-string "^1.0.7" 490 | is-weakref "^1.0.2" 491 | object-inspect "^1.12.0" 492 | object-keys "^1.1.1" 493 | object.assign "^4.1.2" 494 | regexp.prototype.flags "^1.4.3" 495 | string.prototype.trimend "^1.0.5" 496 | string.prototype.trimstart "^1.0.5" 497 | unbox-primitive "^1.0.2" 498 | 499 | es-shim-unscopables@^1.0.0: 500 | version "1.0.0" 501 | resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" 502 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 503 | dependencies: 504 | has "^1.0.3" 505 | 506 | es-to-primitive@^1.2.1: 507 | version "1.2.1" 508 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 509 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 510 | dependencies: 511 | is-callable "^1.1.4" 512 | is-date-object "^1.0.1" 513 | is-symbol "^1.0.2" 514 | 515 | escape-string-regexp@^4.0.0: 516 | version "4.0.0" 517 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 518 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 519 | 520 | eslint-config-next@12.1.6: 521 | version "12.1.6" 522 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.1.6.tgz#55097028982dce49159d8753000be3916ac55254" 523 | integrity sha512-qoiS3g/EPzfCTkGkaPBSX9W0NGE/B1wNO3oWrd76QszVGrdpLggNqcO8+LR6MB0CNqtp9Q8NoeVrxNVbzM9hqA== 524 | dependencies: 525 | "@next/eslint-plugin-next" "12.1.6" 526 | "@rushstack/eslint-patch" "^1.1.3" 527 | "@typescript-eslint/parser" "^5.21.0" 528 | eslint-import-resolver-node "^0.3.6" 529 | eslint-import-resolver-typescript "^2.7.1" 530 | eslint-plugin-import "^2.26.0" 531 | eslint-plugin-jsx-a11y "^6.5.1" 532 | eslint-plugin-react "^7.29.4" 533 | eslint-plugin-react-hooks "^4.5.0" 534 | 535 | eslint-import-resolver-node@^0.3.6: 536 | version "0.3.6" 537 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" 538 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== 539 | dependencies: 540 | debug "^3.2.7" 541 | resolve "^1.20.0" 542 | 543 | eslint-import-resolver-typescript@^2.7.1: 544 | version "2.7.1" 545 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz#a90a4a1c80da8d632df25994c4c5fdcdd02b8751" 546 | integrity sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ== 547 | dependencies: 548 | debug "^4.3.4" 549 | glob "^7.2.0" 550 | is-glob "^4.0.3" 551 | resolve "^1.22.0" 552 | tsconfig-paths "^3.14.1" 553 | 554 | eslint-module-utils@^2.7.3: 555 | version "2.7.3" 556 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz#ad7e3a10552fdd0642e1e55292781bd6e34876ee" 557 | integrity sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ== 558 | dependencies: 559 | debug "^3.2.7" 560 | find-up "^2.1.0" 561 | 562 | eslint-plugin-import@^2.26.0: 563 | version "2.26.0" 564 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b" 565 | integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA== 566 | dependencies: 567 | array-includes "^3.1.4" 568 | array.prototype.flat "^1.2.5" 569 | debug "^2.6.9" 570 | doctrine "^2.1.0" 571 | eslint-import-resolver-node "^0.3.6" 572 | eslint-module-utils "^2.7.3" 573 | has "^1.0.3" 574 | is-core-module "^2.8.1" 575 | is-glob "^4.0.3" 576 | minimatch "^3.1.2" 577 | object.values "^1.1.5" 578 | resolve "^1.22.0" 579 | tsconfig-paths "^3.14.1" 580 | 581 | eslint-plugin-jsx-a11y@^6.5.1: 582 | version "6.6.0" 583 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.0.tgz#2c5ac12e013eb98337b9aa261c3b355275cc6415" 584 | integrity sha512-kTeLuIzpNhXL2CwLlc8AHI0aFRwWHcg483yepO9VQiHzM9bZwJdzTkzBszbuPrbgGmq2rlX/FaT2fJQsjUSHsw== 585 | dependencies: 586 | "@babel/runtime" "^7.18.3" 587 | aria-query "^4.2.2" 588 | array-includes "^3.1.5" 589 | ast-types-flow "^0.0.7" 590 | axe-core "^4.4.2" 591 | axobject-query "^2.2.0" 592 | damerau-levenshtein "^1.0.8" 593 | emoji-regex "^9.2.2" 594 | has "^1.0.3" 595 | jsx-ast-utils "^3.3.1" 596 | language-tags "^1.0.5" 597 | minimatch "^3.1.2" 598 | semver "^6.3.0" 599 | 600 | eslint-plugin-react-hooks@^4.5.0: 601 | version "4.6.0" 602 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" 603 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== 604 | 605 | eslint-plugin-react@^7.29.4: 606 | version "7.30.1" 607 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.30.1.tgz#2be4ab23ce09b5949c6631413ba64b2810fd3e22" 608 | integrity sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg== 609 | dependencies: 610 | array-includes "^3.1.5" 611 | array.prototype.flatmap "^1.3.0" 612 | doctrine "^2.1.0" 613 | estraverse "^5.3.0" 614 | jsx-ast-utils "^2.4.1 || ^3.0.0" 615 | minimatch "^3.1.2" 616 | object.entries "^1.1.5" 617 | object.fromentries "^2.0.5" 618 | object.hasown "^1.1.1" 619 | object.values "^1.1.5" 620 | prop-types "^15.8.1" 621 | resolve "^2.0.0-next.3" 622 | semver "^6.3.0" 623 | string.prototype.matchall "^4.0.7" 624 | 625 | eslint-scope@^7.1.1: 626 | version "7.1.1" 627 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 628 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 629 | dependencies: 630 | esrecurse "^4.3.0" 631 | estraverse "^5.2.0" 632 | 633 | eslint-utils@^3.0.0: 634 | version "3.0.0" 635 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 636 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 637 | dependencies: 638 | eslint-visitor-keys "^2.0.0" 639 | 640 | eslint-visitor-keys@^2.0.0: 641 | version "2.1.0" 642 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 643 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 644 | 645 | eslint-visitor-keys@^3.3.0: 646 | version "3.3.0" 647 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 648 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 649 | 650 | eslint@8.18.0: 651 | version "8.18.0" 652 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.18.0.tgz#78d565d16c993d0b73968c523c0446b13da784fd" 653 | integrity sha512-As1EfFMVk7Xc6/CvhssHUjsAQSkpfXvUGMFC3ce8JDe6WvqCgRrLOBQbVpsBFr1X1V+RACOadnzVvcUS5ni2bA== 654 | dependencies: 655 | "@eslint/eslintrc" "^1.3.0" 656 | "@humanwhocodes/config-array" "^0.9.2" 657 | ajv "^6.10.0" 658 | chalk "^4.0.0" 659 | cross-spawn "^7.0.2" 660 | debug "^4.3.2" 661 | doctrine "^3.0.0" 662 | escape-string-regexp "^4.0.0" 663 | eslint-scope "^7.1.1" 664 | eslint-utils "^3.0.0" 665 | eslint-visitor-keys "^3.3.0" 666 | espree "^9.3.2" 667 | esquery "^1.4.0" 668 | esutils "^2.0.2" 669 | fast-deep-equal "^3.1.3" 670 | file-entry-cache "^6.0.1" 671 | functional-red-black-tree "^1.0.1" 672 | glob-parent "^6.0.1" 673 | globals "^13.15.0" 674 | ignore "^5.2.0" 675 | import-fresh "^3.0.0" 676 | imurmurhash "^0.1.4" 677 | is-glob "^4.0.0" 678 | js-yaml "^4.1.0" 679 | json-stable-stringify-without-jsonify "^1.0.1" 680 | levn "^0.4.1" 681 | lodash.merge "^4.6.2" 682 | minimatch "^3.1.2" 683 | natural-compare "^1.4.0" 684 | optionator "^0.9.1" 685 | regexpp "^3.2.0" 686 | strip-ansi "^6.0.1" 687 | strip-json-comments "^3.1.0" 688 | text-table "^0.2.0" 689 | v8-compile-cache "^2.0.3" 690 | 691 | espree@^9.3.2: 692 | version "9.3.2" 693 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.2.tgz#f58f77bd334731182801ced3380a8cc859091596" 694 | integrity sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA== 695 | dependencies: 696 | acorn "^8.7.1" 697 | acorn-jsx "^5.3.2" 698 | eslint-visitor-keys "^3.3.0" 699 | 700 | esquery@^1.4.0: 701 | version "1.4.0" 702 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 703 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 704 | dependencies: 705 | estraverse "^5.1.0" 706 | 707 | esrecurse@^4.3.0: 708 | version "4.3.0" 709 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 710 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 711 | dependencies: 712 | estraverse "^5.2.0" 713 | 714 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 715 | version "5.3.0" 716 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 717 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 718 | 719 | esutils@^2.0.2: 720 | version "2.0.3" 721 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 722 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 723 | 724 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 725 | version "3.1.3" 726 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 727 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 728 | 729 | fast-glob@^3.2.9: 730 | version "3.2.11" 731 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" 732 | integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== 733 | dependencies: 734 | "@nodelib/fs.stat" "^2.0.2" 735 | "@nodelib/fs.walk" "^1.2.3" 736 | glob-parent "^5.1.2" 737 | merge2 "^1.3.0" 738 | micromatch "^4.0.4" 739 | 740 | fast-json-stable-stringify@^2.0.0: 741 | version "2.1.0" 742 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 743 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 744 | 745 | fast-levenshtein@^2.0.6: 746 | version "2.0.6" 747 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 748 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 749 | 750 | fastq@^1.6.0: 751 | version "1.13.0" 752 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 753 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 754 | dependencies: 755 | reusify "^1.0.4" 756 | 757 | file-entry-cache@^6.0.1: 758 | version "6.0.1" 759 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 760 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 761 | dependencies: 762 | flat-cache "^3.0.4" 763 | 764 | fill-range@^7.0.1: 765 | version "7.0.1" 766 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 767 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 768 | dependencies: 769 | to-regex-range "^5.0.1" 770 | 771 | find-up@^2.1.0: 772 | version "2.1.0" 773 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 774 | integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ== 775 | dependencies: 776 | locate-path "^2.0.0" 777 | 778 | flat-cache@^3.0.4: 779 | version "3.0.4" 780 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 781 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 782 | dependencies: 783 | flatted "^3.1.0" 784 | rimraf "^3.0.2" 785 | 786 | flatted@^3.1.0: 787 | version "3.2.6" 788 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.6.tgz#022e9218c637f9f3fc9c35ab9c9193f05add60b2" 789 | integrity sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ== 790 | 791 | fs.realpath@^1.0.0: 792 | version "1.0.0" 793 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 794 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 795 | 796 | function-bind@^1.1.1: 797 | version "1.1.1" 798 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 799 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 800 | 801 | function.prototype.name@^1.1.5: 802 | version "1.1.5" 803 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 804 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 805 | dependencies: 806 | call-bind "^1.0.2" 807 | define-properties "^1.1.3" 808 | es-abstract "^1.19.0" 809 | functions-have-names "^1.2.2" 810 | 811 | functional-red-black-tree@^1.0.1: 812 | version "1.0.1" 813 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 814 | integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== 815 | 816 | functions-have-names@^1.2.2: 817 | version "1.2.3" 818 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 819 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 820 | 821 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: 822 | version "1.1.2" 823 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.2.tgz#336975123e05ad0b7ba41f152ee4aadbea6cf598" 824 | integrity sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA== 825 | dependencies: 826 | function-bind "^1.1.1" 827 | has "^1.0.3" 828 | has-symbols "^1.0.3" 829 | 830 | get-symbol-description@^1.0.0: 831 | version "1.0.0" 832 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 833 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 834 | dependencies: 835 | call-bind "^1.0.2" 836 | get-intrinsic "^1.1.1" 837 | 838 | glob-parent@^5.1.2: 839 | version "5.1.2" 840 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 841 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 842 | dependencies: 843 | is-glob "^4.0.1" 844 | 845 | glob-parent@^6.0.1: 846 | version "6.0.2" 847 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 848 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 849 | dependencies: 850 | is-glob "^4.0.3" 851 | 852 | glob@7.1.7: 853 | version "7.1.7" 854 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 855 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 856 | dependencies: 857 | fs.realpath "^1.0.0" 858 | inflight "^1.0.4" 859 | inherits "2" 860 | minimatch "^3.0.4" 861 | once "^1.3.0" 862 | path-is-absolute "^1.0.0" 863 | 864 | glob@^7.1.3, glob@^7.2.0: 865 | version "7.2.3" 866 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 867 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 868 | dependencies: 869 | fs.realpath "^1.0.0" 870 | inflight "^1.0.4" 871 | inherits "2" 872 | minimatch "^3.1.1" 873 | once "^1.3.0" 874 | path-is-absolute "^1.0.0" 875 | 876 | globals@^13.15.0: 877 | version "13.15.0" 878 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.15.0.tgz#38113218c907d2f7e98658af246cef8b77e90bac" 879 | integrity sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog== 880 | dependencies: 881 | type-fest "^0.20.2" 882 | 883 | globby@^11.1.0: 884 | version "11.1.0" 885 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 886 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 887 | dependencies: 888 | array-union "^2.1.0" 889 | dir-glob "^3.0.1" 890 | fast-glob "^3.2.9" 891 | ignore "^5.2.0" 892 | merge2 "^1.4.1" 893 | slash "^3.0.0" 894 | 895 | has-bigints@^1.0.1, has-bigints@^1.0.2: 896 | version "1.0.2" 897 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 898 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 899 | 900 | has-flag@^4.0.0: 901 | version "4.0.0" 902 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 903 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 904 | 905 | has-property-descriptors@^1.0.0: 906 | version "1.0.0" 907 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 908 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 909 | dependencies: 910 | get-intrinsic "^1.1.1" 911 | 912 | has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: 913 | version "1.0.3" 914 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 915 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 916 | 917 | has-tostringtag@^1.0.0: 918 | version "1.0.0" 919 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 920 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 921 | dependencies: 922 | has-symbols "^1.0.2" 923 | 924 | has@^1.0.3: 925 | version "1.0.3" 926 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 927 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 928 | dependencies: 929 | function-bind "^1.1.1" 930 | 931 | ignore@^5.2.0: 932 | version "5.2.0" 933 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" 934 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== 935 | 936 | import-fresh@^3.0.0, import-fresh@^3.2.1: 937 | version "3.3.0" 938 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 939 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 940 | dependencies: 941 | parent-module "^1.0.0" 942 | resolve-from "^4.0.0" 943 | 944 | imurmurhash@^0.1.4: 945 | version "0.1.4" 946 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 947 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 948 | 949 | inflight@^1.0.4: 950 | version "1.0.6" 951 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 952 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 953 | dependencies: 954 | once "^1.3.0" 955 | wrappy "1" 956 | 957 | inherits@2: 958 | version "2.0.4" 959 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 960 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 961 | 962 | internal-slot@^1.0.3: 963 | version "1.0.3" 964 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" 965 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 966 | dependencies: 967 | get-intrinsic "^1.1.0" 968 | has "^1.0.3" 969 | side-channel "^1.0.4" 970 | 971 | is-bigint@^1.0.1: 972 | version "1.0.4" 973 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 974 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 975 | dependencies: 976 | has-bigints "^1.0.1" 977 | 978 | is-boolean-object@^1.1.0: 979 | version "1.1.2" 980 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 981 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 982 | dependencies: 983 | call-bind "^1.0.2" 984 | has-tostringtag "^1.0.0" 985 | 986 | is-callable@^1.1.4, is-callable@^1.2.4: 987 | version "1.2.4" 988 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" 989 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== 990 | 991 | is-core-module@^2.8.1, is-core-module@^2.9.0: 992 | version "2.9.0" 993 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69" 994 | integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== 995 | dependencies: 996 | has "^1.0.3" 997 | 998 | is-date-object@^1.0.1: 999 | version "1.0.5" 1000 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1001 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1002 | dependencies: 1003 | has-tostringtag "^1.0.0" 1004 | 1005 | is-extglob@^2.1.1: 1006 | version "2.1.1" 1007 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1008 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1009 | 1010 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 1011 | version "4.0.3" 1012 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1013 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1014 | dependencies: 1015 | is-extglob "^2.1.1" 1016 | 1017 | is-negative-zero@^2.0.2: 1018 | version "2.0.2" 1019 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1020 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1021 | 1022 | is-number-object@^1.0.4: 1023 | version "1.0.7" 1024 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 1025 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1026 | dependencies: 1027 | has-tostringtag "^1.0.0" 1028 | 1029 | is-number@^7.0.0: 1030 | version "7.0.0" 1031 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1032 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1033 | 1034 | is-regex@^1.1.4: 1035 | version "1.1.4" 1036 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1037 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1038 | dependencies: 1039 | call-bind "^1.0.2" 1040 | has-tostringtag "^1.0.0" 1041 | 1042 | is-shared-array-buffer@^1.0.2: 1043 | version "1.0.2" 1044 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1045 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1046 | dependencies: 1047 | call-bind "^1.0.2" 1048 | 1049 | is-string@^1.0.5, is-string@^1.0.7: 1050 | version "1.0.7" 1051 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1052 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1053 | dependencies: 1054 | has-tostringtag "^1.0.0" 1055 | 1056 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1057 | version "1.0.4" 1058 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1059 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1060 | dependencies: 1061 | has-symbols "^1.0.2" 1062 | 1063 | is-weakref@^1.0.2: 1064 | version "1.0.2" 1065 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1066 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1067 | dependencies: 1068 | call-bind "^1.0.2" 1069 | 1070 | isexe@^2.0.0: 1071 | version "2.0.0" 1072 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1073 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1074 | 1075 | "js-tokens@^3.0.0 || ^4.0.0": 1076 | version "4.0.0" 1077 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1078 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1079 | 1080 | js-yaml@^4.1.0: 1081 | version "4.1.0" 1082 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1083 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1084 | dependencies: 1085 | argparse "^2.0.1" 1086 | 1087 | json-schema-traverse@^0.4.1: 1088 | version "0.4.1" 1089 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1090 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1091 | 1092 | json-stable-stringify-without-jsonify@^1.0.1: 1093 | version "1.0.1" 1094 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1095 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1096 | 1097 | json5@^1.0.1: 1098 | version "1.0.1" 1099 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1100 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1101 | dependencies: 1102 | minimist "^1.2.0" 1103 | 1104 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.1: 1105 | version "3.3.1" 1106 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.1.tgz#a3e0f1cb7e230954eab4dcbce9f6288a78f8ba44" 1107 | integrity sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ== 1108 | dependencies: 1109 | array-includes "^3.1.5" 1110 | object.assign "^4.1.2" 1111 | 1112 | language-subtag-registry@~0.3.2: 1113 | version "0.3.21" 1114 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a" 1115 | integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg== 1116 | 1117 | language-tags@^1.0.5: 1118 | version "1.0.5" 1119 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" 1120 | integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== 1121 | dependencies: 1122 | language-subtag-registry "~0.3.2" 1123 | 1124 | levn@^0.4.1: 1125 | version "0.4.1" 1126 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1127 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1128 | dependencies: 1129 | prelude-ls "^1.2.1" 1130 | type-check "~0.4.0" 1131 | 1132 | locate-path@^2.0.0: 1133 | version "2.0.0" 1134 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1135 | integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA== 1136 | dependencies: 1137 | p-locate "^2.0.0" 1138 | path-exists "^3.0.0" 1139 | 1140 | lodash.merge@^4.6.2: 1141 | version "4.6.2" 1142 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1143 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1144 | 1145 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1146 | version "1.4.0" 1147 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1148 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1149 | dependencies: 1150 | js-tokens "^3.0.0 || ^4.0.0" 1151 | 1152 | lru-cache@^6.0.0: 1153 | version "6.0.0" 1154 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1155 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1156 | dependencies: 1157 | yallist "^4.0.0" 1158 | 1159 | merge2@^1.3.0, merge2@^1.4.1: 1160 | version "1.4.1" 1161 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1162 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1163 | 1164 | micromatch@^4.0.4: 1165 | version "4.0.5" 1166 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1167 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1168 | dependencies: 1169 | braces "^3.0.2" 1170 | picomatch "^2.3.1" 1171 | 1172 | minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: 1173 | version "3.1.2" 1174 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1175 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1176 | dependencies: 1177 | brace-expansion "^1.1.7" 1178 | 1179 | minimist@^1.2.0, minimist@^1.2.6: 1180 | version "1.2.6" 1181 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 1182 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 1183 | 1184 | ms@2.0.0: 1185 | version "2.0.0" 1186 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1187 | integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== 1188 | 1189 | ms@2.1.2: 1190 | version "2.1.2" 1191 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1192 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1193 | 1194 | ms@^2.1.1: 1195 | version "2.1.3" 1196 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1197 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1198 | 1199 | nanoid@^3.1.30: 1200 | version "3.3.4" 1201 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" 1202 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== 1203 | 1204 | natural-compare@^1.4.0: 1205 | version "1.4.0" 1206 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1207 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1208 | 1209 | next@12.1.6: 1210 | version "12.1.6" 1211 | resolved "https://registry.yarnpkg.com/next/-/next-12.1.6.tgz#eb205e64af1998651f96f9df44556d47d8bbc533" 1212 | integrity sha512-cebwKxL3/DhNKfg9tPZDQmbRKjueqykHHbgaoG4VBRH3AHQJ2HO0dbKFiS1hPhe1/qgc2d/hFeadsbPicmLD+A== 1213 | dependencies: 1214 | "@next/env" "12.1.6" 1215 | caniuse-lite "^1.0.30001332" 1216 | postcss "8.4.5" 1217 | styled-jsx "5.0.2" 1218 | optionalDependencies: 1219 | "@next/swc-android-arm-eabi" "12.1.6" 1220 | "@next/swc-android-arm64" "12.1.6" 1221 | "@next/swc-darwin-arm64" "12.1.6" 1222 | "@next/swc-darwin-x64" "12.1.6" 1223 | "@next/swc-linux-arm-gnueabihf" "12.1.6" 1224 | "@next/swc-linux-arm64-gnu" "12.1.6" 1225 | "@next/swc-linux-arm64-musl" "12.1.6" 1226 | "@next/swc-linux-x64-gnu" "12.1.6" 1227 | "@next/swc-linux-x64-musl" "12.1.6" 1228 | "@next/swc-win32-arm64-msvc" "12.1.6" 1229 | "@next/swc-win32-ia32-msvc" "12.1.6" 1230 | "@next/swc-win32-x64-msvc" "12.1.6" 1231 | 1232 | object-assign@^4.1.1: 1233 | version "4.1.1" 1234 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1235 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 1236 | 1237 | object-inspect@^1.12.0, object-inspect@^1.9.0: 1238 | version "1.12.2" 1239 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" 1240 | integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== 1241 | 1242 | object-keys@^1.1.1: 1243 | version "1.1.1" 1244 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1245 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1246 | 1247 | object.assign@^4.1.2: 1248 | version "4.1.2" 1249 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 1250 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 1251 | dependencies: 1252 | call-bind "^1.0.0" 1253 | define-properties "^1.1.3" 1254 | has-symbols "^1.0.1" 1255 | object-keys "^1.1.1" 1256 | 1257 | object.entries@^1.1.5: 1258 | version "1.1.5" 1259 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" 1260 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== 1261 | dependencies: 1262 | call-bind "^1.0.2" 1263 | define-properties "^1.1.3" 1264 | es-abstract "^1.19.1" 1265 | 1266 | object.fromentries@^2.0.5: 1267 | version "2.0.5" 1268 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" 1269 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== 1270 | dependencies: 1271 | call-bind "^1.0.2" 1272 | define-properties "^1.1.3" 1273 | es-abstract "^1.19.1" 1274 | 1275 | object.hasown@^1.1.1: 1276 | version "1.1.1" 1277 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.1.tgz#ad1eecc60d03f49460600430d97f23882cf592a3" 1278 | integrity sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A== 1279 | dependencies: 1280 | define-properties "^1.1.4" 1281 | es-abstract "^1.19.5" 1282 | 1283 | object.values@^1.1.5: 1284 | version "1.1.5" 1285 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" 1286 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== 1287 | dependencies: 1288 | call-bind "^1.0.2" 1289 | define-properties "^1.1.3" 1290 | es-abstract "^1.19.1" 1291 | 1292 | once@^1.3.0: 1293 | version "1.4.0" 1294 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1295 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1296 | dependencies: 1297 | wrappy "1" 1298 | 1299 | optionator@^0.9.1: 1300 | version "0.9.1" 1301 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1302 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1303 | dependencies: 1304 | deep-is "^0.1.3" 1305 | fast-levenshtein "^2.0.6" 1306 | levn "^0.4.1" 1307 | prelude-ls "^1.2.1" 1308 | type-check "^0.4.0" 1309 | word-wrap "^1.2.3" 1310 | 1311 | p-limit@^1.1.0: 1312 | version "1.3.0" 1313 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1314 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1315 | dependencies: 1316 | p-try "^1.0.0" 1317 | 1318 | p-locate@^2.0.0: 1319 | version "2.0.0" 1320 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1321 | integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg== 1322 | dependencies: 1323 | p-limit "^1.1.0" 1324 | 1325 | p-try@^1.0.0: 1326 | version "1.0.0" 1327 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1328 | integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww== 1329 | 1330 | parent-module@^1.0.0: 1331 | version "1.0.1" 1332 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1333 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1334 | dependencies: 1335 | callsites "^3.0.0" 1336 | 1337 | path-exists@^3.0.0: 1338 | version "3.0.0" 1339 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1340 | integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== 1341 | 1342 | path-is-absolute@^1.0.0: 1343 | version "1.0.1" 1344 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1345 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1346 | 1347 | path-key@^3.1.0: 1348 | version "3.1.1" 1349 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1350 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1351 | 1352 | path-parse@^1.0.7: 1353 | version "1.0.7" 1354 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1355 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1356 | 1357 | path-type@^4.0.0: 1358 | version "4.0.0" 1359 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1360 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1361 | 1362 | picocolors@^1.0.0: 1363 | version "1.0.0" 1364 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1365 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1366 | 1367 | picomatch@^2.3.1: 1368 | version "2.3.1" 1369 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1370 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1371 | 1372 | postcss@8.4.5: 1373 | version "8.4.5" 1374 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95" 1375 | integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg== 1376 | dependencies: 1377 | nanoid "^3.1.30" 1378 | picocolors "^1.0.0" 1379 | source-map-js "^1.0.1" 1380 | 1381 | prelude-ls@^1.2.1: 1382 | version "1.2.1" 1383 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1384 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1385 | 1386 | prop-types@^15.8.1: 1387 | version "15.8.1" 1388 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1389 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1390 | dependencies: 1391 | loose-envify "^1.4.0" 1392 | object-assign "^4.1.1" 1393 | react-is "^16.13.1" 1394 | 1395 | punycode@^2.1.0: 1396 | version "2.1.1" 1397 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1398 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1399 | 1400 | queue-microtask@^1.2.2: 1401 | version "1.2.3" 1402 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1403 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1404 | 1405 | react-dom@18.2.0: 1406 | version "18.2.0" 1407 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" 1408 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 1409 | dependencies: 1410 | loose-envify "^1.1.0" 1411 | scheduler "^0.23.0" 1412 | 1413 | react-is@^16.13.1: 1414 | version "16.13.1" 1415 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1416 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1417 | 1418 | react@18.2.0: 1419 | version "18.2.0" 1420 | resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" 1421 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 1422 | dependencies: 1423 | loose-envify "^1.1.0" 1424 | 1425 | regenerator-runtime@^0.13.4: 1426 | version "0.13.9" 1427 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" 1428 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 1429 | 1430 | regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3: 1431 | version "1.4.3" 1432 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" 1433 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 1434 | dependencies: 1435 | call-bind "^1.0.2" 1436 | define-properties "^1.1.3" 1437 | functions-have-names "^1.2.2" 1438 | 1439 | regexpp@^3.2.0: 1440 | version "3.2.0" 1441 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 1442 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 1443 | 1444 | resolve-from@^4.0.0: 1445 | version "4.0.0" 1446 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1447 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1448 | 1449 | resolve@^1.20.0, resolve@^1.22.0: 1450 | version "1.22.1" 1451 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 1452 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 1453 | dependencies: 1454 | is-core-module "^2.9.0" 1455 | path-parse "^1.0.7" 1456 | supports-preserve-symlinks-flag "^1.0.0" 1457 | 1458 | resolve@^2.0.0-next.3: 1459 | version "2.0.0-next.4" 1460 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" 1461 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 1462 | dependencies: 1463 | is-core-module "^2.9.0" 1464 | path-parse "^1.0.7" 1465 | supports-preserve-symlinks-flag "^1.0.0" 1466 | 1467 | reusify@^1.0.4: 1468 | version "1.0.4" 1469 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1470 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1471 | 1472 | rimraf@^3.0.2: 1473 | version "3.0.2" 1474 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1475 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1476 | dependencies: 1477 | glob "^7.1.3" 1478 | 1479 | run-parallel@^1.1.9: 1480 | version "1.2.0" 1481 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1482 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1483 | dependencies: 1484 | queue-microtask "^1.2.2" 1485 | 1486 | scheduler@^0.23.0: 1487 | version "0.23.0" 1488 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" 1489 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 1490 | dependencies: 1491 | loose-envify "^1.1.0" 1492 | 1493 | semver@^6.3.0: 1494 | version "6.3.0" 1495 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1496 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1497 | 1498 | semver@^7.3.7: 1499 | version "7.3.7" 1500 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" 1501 | integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== 1502 | dependencies: 1503 | lru-cache "^6.0.0" 1504 | 1505 | shebang-command@^2.0.0: 1506 | version "2.0.0" 1507 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1508 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1509 | dependencies: 1510 | shebang-regex "^3.0.0" 1511 | 1512 | shebang-regex@^3.0.0: 1513 | version "3.0.0" 1514 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1515 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1516 | 1517 | side-channel@^1.0.4: 1518 | version "1.0.4" 1519 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 1520 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1521 | dependencies: 1522 | call-bind "^1.0.0" 1523 | get-intrinsic "^1.0.2" 1524 | object-inspect "^1.9.0" 1525 | 1526 | slash@^3.0.0: 1527 | version "3.0.0" 1528 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 1529 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 1530 | 1531 | source-map-js@^1.0.1: 1532 | version "1.0.2" 1533 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 1534 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 1535 | 1536 | string.prototype.matchall@^4.0.7: 1537 | version "4.0.7" 1538 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d" 1539 | integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg== 1540 | dependencies: 1541 | call-bind "^1.0.2" 1542 | define-properties "^1.1.3" 1543 | es-abstract "^1.19.1" 1544 | get-intrinsic "^1.1.1" 1545 | has-symbols "^1.0.3" 1546 | internal-slot "^1.0.3" 1547 | regexp.prototype.flags "^1.4.1" 1548 | side-channel "^1.0.4" 1549 | 1550 | string.prototype.trimend@^1.0.5: 1551 | version "1.0.5" 1552 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" 1553 | integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== 1554 | dependencies: 1555 | call-bind "^1.0.2" 1556 | define-properties "^1.1.4" 1557 | es-abstract "^1.19.5" 1558 | 1559 | string.prototype.trimstart@^1.0.5: 1560 | version "1.0.5" 1561 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" 1562 | integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== 1563 | dependencies: 1564 | call-bind "^1.0.2" 1565 | define-properties "^1.1.4" 1566 | es-abstract "^1.19.5" 1567 | 1568 | strip-ansi@^6.0.1: 1569 | version "6.0.1" 1570 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1571 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1572 | dependencies: 1573 | ansi-regex "^5.0.1" 1574 | 1575 | strip-bom@^3.0.0: 1576 | version "3.0.0" 1577 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1578 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== 1579 | 1580 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 1581 | version "3.1.1" 1582 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1583 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1584 | 1585 | styled-jsx@5.0.2: 1586 | version "5.0.2" 1587 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.2.tgz#ff230fd593b737e9e68b630a694d460425478729" 1588 | integrity sha512-LqPQrbBh3egD57NBcHET4qcgshPks+yblyhPlH2GY8oaDgKs8SK4C3dBh3oSJjgzJ3G5t1SYEZGHkP+QEpX9EQ== 1589 | 1590 | supports-color@^7.1.0: 1591 | version "7.2.0" 1592 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1593 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1594 | dependencies: 1595 | has-flag "^4.0.0" 1596 | 1597 | supports-preserve-symlinks-flag@^1.0.0: 1598 | version "1.0.0" 1599 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1600 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1601 | 1602 | text-table@^0.2.0: 1603 | version "0.2.0" 1604 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1605 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 1606 | 1607 | to-regex-range@^5.0.1: 1608 | version "5.0.1" 1609 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1610 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1611 | dependencies: 1612 | is-number "^7.0.0" 1613 | 1614 | tsconfig-paths@^3.14.1: 1615 | version "3.14.1" 1616 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" 1617 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== 1618 | dependencies: 1619 | "@types/json5" "^0.0.29" 1620 | json5 "^1.0.1" 1621 | minimist "^1.2.6" 1622 | strip-bom "^3.0.0" 1623 | 1624 | tslib@^1.8.1: 1625 | version "1.14.1" 1626 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 1627 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 1628 | 1629 | tsutils@^3.21.0: 1630 | version "3.21.0" 1631 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 1632 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 1633 | dependencies: 1634 | tslib "^1.8.1" 1635 | 1636 | type-check@^0.4.0, type-check@~0.4.0: 1637 | version "0.4.0" 1638 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1639 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1640 | dependencies: 1641 | prelude-ls "^1.2.1" 1642 | 1643 | type-fest@^0.20.2: 1644 | version "0.20.2" 1645 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 1646 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 1647 | 1648 | typescript@4.7.4: 1649 | version "4.7.4" 1650 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235" 1651 | integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ== 1652 | 1653 | unbox-primitive@^1.0.2: 1654 | version "1.0.2" 1655 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 1656 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 1657 | dependencies: 1658 | call-bind "^1.0.2" 1659 | has-bigints "^1.0.2" 1660 | has-symbols "^1.0.3" 1661 | which-boxed-primitive "^1.0.2" 1662 | 1663 | uri-js@^4.2.2: 1664 | version "4.4.1" 1665 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1666 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1667 | dependencies: 1668 | punycode "^2.1.0" 1669 | 1670 | v8-compile-cache@^2.0.3: 1671 | version "2.3.0" 1672 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 1673 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 1674 | 1675 | which-boxed-primitive@^1.0.2: 1676 | version "1.0.2" 1677 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 1678 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 1679 | dependencies: 1680 | is-bigint "^1.0.1" 1681 | is-boolean-object "^1.1.0" 1682 | is-number-object "^1.0.4" 1683 | is-string "^1.0.5" 1684 | is-symbol "^1.0.3" 1685 | 1686 | which@^2.0.1: 1687 | version "2.0.2" 1688 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1689 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1690 | dependencies: 1691 | isexe "^2.0.0" 1692 | 1693 | word-wrap@^1.2.3: 1694 | version "1.2.3" 1695 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 1696 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 1697 | 1698 | wrappy@1: 1699 | version "1.0.2" 1700 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1701 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 1702 | 1703 | yallist@^4.0.0: 1704 | version "4.0.0" 1705 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1706 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1707 | --------------------------------------------------------------------------------