├── .babelrc
├── .eslintrc.json
├── .gitignore
├── README.md
├── components
├── Accordion.js
└── AccordionUI.js
├── next.config.js
├── package.json
├── pages
├── _app.js
├── api
│ └── hello.js
└── index.js
├── postcss.config.js
├── public
├── pro.ico
└── vercel.svg
├── styles
├── Home.module.css
└── globals.css
├── tailwind.config.js
└── yarn.lock
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["next/babel"]
3 | }
4 |
--------------------------------------------------------------------------------
/.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 |
31 | # vercel
32 | .vercel
33 |
--------------------------------------------------------------------------------
/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.js`. 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.js`.
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/Accordion.js:
--------------------------------------------------------------------------------
1 | import React, { useState } from "react";
2 | import AccordionUI from "../components/AccordionUI";
3 |
4 | const Accordion = () => {
5 | const [Index, setIndex] = useState(false);
6 |
7 | const data = [
8 | {
9 | id: 1,
10 | question: "What is Next.Js ?",
11 | answer: "The React Framework for Production",
12 | },
13 | {
14 | id: 2,
15 | question: "What is Tailwindcss ?",
16 | answer:
17 | "A utility-first CSS framework packed with classes like flex, pt-4, text-center and rotate-90 that can be composed to build any design, directly in your markup.",
18 | },
19 | {
20 | id: 3,
21 | question: "What is art ?",
22 | answer:
23 | " a visual object or experience consciously created through an expression of skill or imagination.",
24 | },
25 | ];
26 |
27 | return (
28 |
29 | {data.map((data) => {
30 | return (
31 |
38 | );
39 | })}
40 |
41 | );
42 | };
43 | export default Accordion;
44 |
--------------------------------------------------------------------------------
/components/AccordionUI.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { HiArrowCircleDown, HiX } from "react-icons/hi";
3 |
4 | const AccordionUI = ({ title, children, Id, Index, setIndex }) => {
5 | const handleSetIndex = (Id) => Index !== Id && setIndex(Id);
6 |
7 | return (
8 | <>
9 | handleSetIndex(Id)}
11 | className="flex group cursor-pointer w-3/4 mx-auto h-16 justify-between items-center p-2 mt-2 rounded-md bg-white hover:bg-pink-500 hover:shadow-lg focus:bg-pink-500 "
12 | >
13 |
14 |
15 | {title}
16 |
17 |
18 |
19 | {Index !== Id ? (
20 |
21 | ) : (
22 |
23 | )}
24 |
25 |
26 |
27 | {Index === Id && (
28 |
29 | {children}
30 |
31 | )}
32 | >
33 | );
34 | };
35 |
36 | export default AccordionUI;
37 |
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true,
4 | }
5 |
6 | module.exports = nextConfig
7 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "starter-kit",
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 | "alpinejs": "^3.9.6",
13 | "next": "12.1.4",
14 | "react": "18.0.0",
15 | "react-dom": "18.0.0",
16 | "react-icons": "^4.3.1"
17 | },
18 | "devDependencies": {
19 | "autoprefixer": "^10.4.4",
20 | "eslint": "8.12.0",
21 | "eslint-config-next": "12.1.4",
22 | "postcss": "^8.4.12",
23 | "tailwindcss": "^3.0.23"
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/pages/_app.js:
--------------------------------------------------------------------------------
1 | import '../styles/globals.css'
2 |
3 | function MyApp({ Component, pageProps }) {
4 | return
5 | }
6 |
7 | export default MyApp
8 |
--------------------------------------------------------------------------------
/pages/api/hello.js:
--------------------------------------------------------------------------------
1 | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction
2 |
3 | export default function handler(req, res) {
4 | res.status(200).json({ name: 'John Doe' })
5 | }
6 |
--------------------------------------------------------------------------------
/pages/index.js:
--------------------------------------------------------------------------------
1 | import Head from "next/head";
2 | import Accordion from "../components/Accordion";
3 |
4 | export default function Home() {
5 | return (
6 |
7 |
8 |
Responsive Accordion
9 |
10 |
11 |
12 |
13 |
14 | );
15 | }
16 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/public/pro.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Streamline6/nextjs-accordion/6c76983548e005f045d004b59a3eb9b6358f6108/public/pro.ico
--------------------------------------------------------------------------------
/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/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 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
--------------------------------------------------------------------------------
/tailwind.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | content: [
3 | "./pages/**/*.{js,ts,jsx,tsx}",
4 | "./components/**/*.{js,ts,jsx,tsx}",
5 | ],
6 | theme: {
7 | extend: {},
8 | },
9 | plugins: [],
10 | };
11 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.0.0":
6 | version "7.16.7"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789"
8 | integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==
9 | dependencies:
10 | "@babel/highlight" "^7.16.7"
11 |
12 | "@babel/helper-validator-identifier@^7.16.7":
13 | version "7.16.7"
14 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad"
15 | integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==
16 |
17 | "@babel/highlight@^7.16.7":
18 | version "7.16.10"
19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.10.tgz#744f2eb81579d6eea753c227b0f570ad785aba88"
20 | integrity sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==
21 | dependencies:
22 | "@babel/helper-validator-identifier" "^7.16.7"
23 | chalk "^2.0.0"
24 | js-tokens "^4.0.0"
25 |
26 | "@babel/runtime-corejs3@^7.10.2":
27 | version "7.17.8"
28 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.17.8.tgz#d7dd49fb812f29c61c59126da3792d8740d4e284"
29 | integrity sha512-ZbYSUvoSF6dXZmMl/CYTMOvzIFnbGfv4W3SEHYgMvNsFTeLaF2gkGAF4K2ddmtSK4Emej+0aYcnSC6N5dPCXUQ==
30 | dependencies:
31 | core-js-pure "^3.20.2"
32 | regenerator-runtime "^0.13.4"
33 |
34 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.16.3":
35 | version "7.17.8"
36 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.8.tgz#3e56e4aff81befa55ac3ac6a0967349fd1c5bca2"
37 | integrity sha512-dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA==
38 | dependencies:
39 | regenerator-runtime "^0.13.4"
40 |
41 | "@eslint/eslintrc@^1.2.1":
42 | version "1.2.1"
43 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.2.1.tgz#8b5e1c49f4077235516bc9ec7d41378c0f69b8c6"
44 | integrity sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==
45 | dependencies:
46 | ajv "^6.12.4"
47 | debug "^4.3.2"
48 | espree "^9.3.1"
49 | globals "^13.9.0"
50 | ignore "^5.2.0"
51 | import-fresh "^3.2.1"
52 | js-yaml "^4.1.0"
53 | minimatch "^3.0.4"
54 | strip-json-comments "^3.1.1"
55 |
56 | "@humanwhocodes/config-array@^0.9.2":
57 | version "0.9.5"
58 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7"
59 | integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==
60 | dependencies:
61 | "@humanwhocodes/object-schema" "^1.2.1"
62 | debug "^4.1.1"
63 | minimatch "^3.0.4"
64 |
65 | "@humanwhocodes/object-schema@^1.2.1":
66 | version "1.2.1"
67 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
68 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
69 |
70 | "@next/env@12.1.4":
71 | version "12.1.4"
72 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.4.tgz#5af629b43075281ecd7f87938802b7cf5b67e94b"
73 | integrity sha512-7gQwotJDKnfMxxXd8xJ2vsX5AzyDxO3zou0+QOXX8/unypA6icw5+wf6A62yKZ6qQ4UZHHxS68pb6UV+wNneXg==
74 |
75 | "@next/eslint-plugin-next@12.1.4":
76 | version "12.1.4"
77 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.1.4.tgz#9c52637af8eecab24dac3f2e5098376f6fc2dff4"
78 | integrity sha512-BRy565KVK6Cdy8LHaHTiwctLqBu/RT84RLpESug70BDJzBlV8QBvODyx/j7wGhvYqp9kvstM05lyb6JaTkSCcQ==
79 | dependencies:
80 | glob "7.1.7"
81 |
82 | "@next/swc-android-arm-eabi@12.1.4":
83 | version "12.1.4"
84 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.1.4.tgz#c3dae178b7c15ad627d2e9b8dfb38caecb5c4ac7"
85 | integrity sha512-FJg/6a3s2YrUaqZ+/DJZzeZqfxbbWrynQMT1C5wlIEq9aDLXCFpPM/PiOyJh0ahxc0XPmi6uo38Poq+GJTuKWw==
86 |
87 | "@next/swc-android-arm64@12.1.4":
88 | version "12.1.4"
89 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.1.4.tgz#f320d60639e19ecffa1f9034829f2d95502a9a51"
90 | integrity sha512-LXraazvQQFBgxIg3Htny6G5V5he9EK7oS4jWtMdTGIikmD/OGByOv8ZjLuVLZLtVm3UIvaAiGtlQSLecxJoJDw==
91 |
92 | "@next/swc-darwin-arm64@12.1.4":
93 | version "12.1.4"
94 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.4.tgz#fd578278312613eddcf3aee26910100509941b63"
95 | integrity sha512-SSST/dBymecllZxcqTCcSTCu5o1NKk9I+xcvhn/O9nH6GWjgvGgGkNqLbCarCa0jJ1ukvlBA138FagyrmZ/4rQ==
96 |
97 | "@next/swc-darwin-x64@12.1.4":
98 | version "12.1.4"
99 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.1.4.tgz#ace5f80d8c8348efe194f6d7074c6213c52b3944"
100 | integrity sha512-p1lwdX0TVjaoDXQVuAkjtxVBbCL/urgxiMCBwuPDO7TikpXtSRivi+mIzBj5q7ypgICFmIAOW3TyupXeoPRAnA==
101 |
102 | "@next/swc-linux-arm-gnueabihf@12.1.4":
103 | version "12.1.4"
104 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.1.4.tgz#2bf2c83863635f19c71c226a2df936e001cce29c"
105 | integrity sha512-67PZlgkCn3TDxacdVft0xqDCL7Io1/C4xbAs0+oSQ0xzp6OzN2RNpuKjHJrJgKd0DsE1XZ9sCP27Qv0591yfyg==
106 |
107 | "@next/swc-linux-arm64-gnu@12.1.4":
108 | version "12.1.4"
109 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.1.4.tgz#d577190f641c9b4b463719dd6b8953b6ba9be8d9"
110 | integrity sha512-OnOWixhhw7aU22TQdQLYrgpgFq0oA1wGgnjAiHJ+St7MLj82KTDyM9UcymAMbGYy6nG/TFOOHdTmRMtCRNOw0g==
111 |
112 | "@next/swc-linux-arm64-musl@12.1.4":
113 | version "12.1.4"
114 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.1.4.tgz#e70ffe70393d8f9242deecdb282ce5a8fd588b14"
115 | integrity sha512-UoRMzPZnsAavdWtVylYxH8DNC7Uy0i6RrvNwT4PyQVdfANBn2omsUkcH5lgS2O7oaz0nAYLk1vqyZDO7+tJotA==
116 |
117 | "@next/swc-linux-x64-gnu@12.1.4":
118 | version "12.1.4"
119 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.1.4.tgz#91498a130387fb1961902f2bee55863f8e910cff"
120 | integrity sha512-nM+MA/frxlTLUKLJKorctdI20/ugfHRjVEEkcLp/58LGG7slNaP1E5d5dRA1yX6ISjPcQAkywas5VlGCg+uTvA==
121 |
122 | "@next/swc-linux-x64-musl@12.1.4":
123 | version "12.1.4"
124 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.1.4.tgz#78057b03c148c121553d41521ad38f6c732762ff"
125 | integrity sha512-GoRHxkuW4u4yKw734B9SzxJwVdyEJosaZ62P7ifOwcujTxhgBt3y76V2nNUrsSuopcKI2ZTDjaa+2wd5zyeXbA==
126 |
127 | "@next/swc-win32-arm64-msvc@12.1.4":
128 | version "12.1.4"
129 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.1.4.tgz#05bbaabacac23b8edf6caa99eb86b17550a09051"
130 | integrity sha512-6TQkQze0ievXwHJcVUrIULwCYVe3ccX6T0JgZ1SiMeXpHxISN7VJF/O8uSCw1JvXZYZ6ud0CJ7nfC5HXivgfPg==
131 |
132 | "@next/swc-win32-ia32-msvc@12.1.4":
133 | version "12.1.4"
134 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.1.4.tgz#8fd2fb48f04a2802e51fc320878bf6b411c1c866"
135 | integrity sha512-CsbX/IXuZ5VSmWCpSetG2HD6VO5FTsO39WNp2IR2Ut/uom9XtLDJAZqjQEnbUTLGHuwDKFjrIO3LkhtROXLE/g==
136 |
137 | "@next/swc-win32-x64-msvc@12.1.4":
138 | version "12.1.4"
139 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.4.tgz#a72ed44c9b1f850986a30fe36c59e01f8a79b5f3"
140 | integrity sha512-JtYuWzKXKLDMgE/xTcFtCm1MiCIRaAc5XYZfYX3n/ZWSI1SJS/GMm+Su0SAHJgRFavJh6U/p998YwO/iGTIgqQ==
141 |
142 | "@nodelib/fs.scandir@2.1.5":
143 | version "2.1.5"
144 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
145 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
146 | dependencies:
147 | "@nodelib/fs.stat" "2.0.5"
148 | run-parallel "^1.1.9"
149 |
150 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
151 | version "2.0.5"
152 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
153 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
154 |
155 | "@nodelib/fs.walk@^1.2.3":
156 | version "1.2.8"
157 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
158 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
159 | dependencies:
160 | "@nodelib/fs.scandir" "2.1.5"
161 | fastq "^1.6.0"
162 |
163 | "@rushstack/eslint-patch@1.0.8":
164 | version "1.0.8"
165 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.0.8.tgz#be3e914e84eacf16dbebd311c0d0b44aa1174c64"
166 | integrity sha512-ZK5v4bJwgXldAUA8r3q9YKfCwOqoHTK/ZqRjSeRXQrBXWouoPnS4MQtgC4AXGiiBuUu5wxrRgTlv0ktmM4P1Aw==
167 |
168 | "@types/json5@^0.0.29":
169 | version "0.0.29"
170 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
171 | integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
172 |
173 | "@types/parse-json@^4.0.0":
174 | version "4.0.0"
175 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
176 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
177 |
178 | "@typescript-eslint/parser@5.10.1":
179 | version "5.10.1"
180 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.10.1.tgz#4ce9633cc33fc70bc13786cb793c1a76fe5ad6bd"
181 | integrity sha512-GReo3tjNBwR5RnRO0K2wDIDN31cM3MmDtgyQ85oAxAmC5K3j/g85IjP+cDfcqDsDDBf1HNKQAD0WqOYL8jXqUA==
182 | dependencies:
183 | "@typescript-eslint/scope-manager" "5.10.1"
184 | "@typescript-eslint/types" "5.10.1"
185 | "@typescript-eslint/typescript-estree" "5.10.1"
186 | debug "^4.3.2"
187 |
188 | "@typescript-eslint/scope-manager@5.10.1":
189 | version "5.10.1"
190 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.10.1.tgz#f0539c73804d2423506db2475352a4dec36cd809"
191 | integrity sha512-Lyvi559Gvpn94k7+ElXNMEnXu/iundV5uFmCUNnftbFrUbAJ1WBoaGgkbOBm07jVZa682oaBU37ao/NGGX4ZDg==
192 | dependencies:
193 | "@typescript-eslint/types" "5.10.1"
194 | "@typescript-eslint/visitor-keys" "5.10.1"
195 |
196 | "@typescript-eslint/types@5.10.1":
197 | version "5.10.1"
198 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.10.1.tgz#dca9bd4cb8c067fc85304a31f38ec4766ba2d1ea"
199 | integrity sha512-ZvxQ2QMy49bIIBpTqFiOenucqUyjTQ0WNLhBM6X1fh1NNlYAC6Kxsx8bRTY3jdYsYg44a0Z/uEgQkohbR0H87Q==
200 |
201 | "@typescript-eslint/typescript-estree@5.10.1":
202 | version "5.10.1"
203 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.10.1.tgz#b268e67be0553f8790ba3fe87113282977adda15"
204 | integrity sha512-PwIGnH7jIueXv4opcwEbVGDATjGPO1dx9RkUl5LlHDSe+FXxPwFL5W/qYd5/NHr7f6lo/vvTrAzd0KlQtRusJQ==
205 | dependencies:
206 | "@typescript-eslint/types" "5.10.1"
207 | "@typescript-eslint/visitor-keys" "5.10.1"
208 | debug "^4.3.2"
209 | globby "^11.0.4"
210 | is-glob "^4.0.3"
211 | semver "^7.3.5"
212 | tsutils "^3.21.0"
213 |
214 | "@typescript-eslint/visitor-keys@5.10.1":
215 | version "5.10.1"
216 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.10.1.tgz#29102de692f59d7d34ecc457ed59ab5fc558010b"
217 | integrity sha512-NjQ0Xinhy9IL979tpoTRuLKxMc0zJC7QVSdeerXs2/QvOy2yRkzX5dRb10X5woNUdJgU8G3nYRDlI33sq1K4YQ==
218 | dependencies:
219 | "@typescript-eslint/types" "5.10.1"
220 | eslint-visitor-keys "^3.0.0"
221 |
222 | "@vue/reactivity@~3.1.1":
223 | version "3.1.5"
224 | resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.1.5.tgz#dbec4d9557f7c8f25c2635db1e23a78a729eb991"
225 | integrity sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==
226 | dependencies:
227 | "@vue/shared" "3.1.5"
228 |
229 | "@vue/shared@3.1.5":
230 | version "3.1.5"
231 | resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.1.5.tgz#74ee3aad995d0a3996a6bb9533d4d280514ede03"
232 | integrity sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==
233 |
234 | acorn-jsx@^5.3.1:
235 | version "5.3.2"
236 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
237 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
238 |
239 | acorn-node@^1.6.1:
240 | version "1.8.2"
241 | resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8"
242 | integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==
243 | dependencies:
244 | acorn "^7.0.0"
245 | acorn-walk "^7.0.0"
246 | xtend "^4.0.2"
247 |
248 | acorn-walk@^7.0.0:
249 | version "7.2.0"
250 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
251 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
252 |
253 | acorn@^7.0.0:
254 | version "7.4.1"
255 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
256 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
257 |
258 | acorn@^8.7.0:
259 | version "8.7.0"
260 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf"
261 | integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==
262 |
263 | ajv@^6.10.0, ajv@^6.12.4:
264 | version "6.12.6"
265 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
266 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
267 | dependencies:
268 | fast-deep-equal "^3.1.1"
269 | fast-json-stable-stringify "^2.0.0"
270 | json-schema-traverse "^0.4.1"
271 | uri-js "^4.2.2"
272 |
273 | alpinejs@^3.9.6:
274 | version "3.9.6"
275 | resolved "https://registry.yarnpkg.com/alpinejs/-/alpinejs-3.9.6.tgz#4312efbaba4b859af1d9eb7ee0d05f348f40f68c"
276 | integrity sha512-NRkBWiKLA/juIVh4sJxU1vkKrhEbsKZAvsOTPh1NmLH+CDktg1W5yR5DHlM5LXq5fjntGtzEWTjjPkjT06opeA==
277 | dependencies:
278 | "@vue/reactivity" "~3.1.1"
279 |
280 | ansi-regex@^5.0.1:
281 | version "5.0.1"
282 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
283 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
284 |
285 | ansi-styles@^3.2.1:
286 | version "3.2.1"
287 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
288 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
289 | dependencies:
290 | color-convert "^1.9.0"
291 |
292 | ansi-styles@^4.1.0:
293 | version "4.3.0"
294 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
295 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
296 | dependencies:
297 | color-convert "^2.0.1"
298 |
299 | anymatch@~3.1.2:
300 | version "3.1.2"
301 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
302 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
303 | dependencies:
304 | normalize-path "^3.0.0"
305 | picomatch "^2.0.4"
306 |
307 | arg@^5.0.1:
308 | version "5.0.1"
309 | resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.1.tgz#eb0c9a8f77786cad2af8ff2b862899842d7b6adb"
310 | integrity sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==
311 |
312 | argparse@^2.0.1:
313 | version "2.0.1"
314 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
315 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
316 |
317 | aria-query@^4.2.2:
318 | version "4.2.2"
319 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
320 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
321 | dependencies:
322 | "@babel/runtime" "^7.10.2"
323 | "@babel/runtime-corejs3" "^7.10.2"
324 |
325 | array-includes@^3.1.4:
326 | version "3.1.4"
327 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz#f5b493162c760f3539631f005ba2bb46acb45ba9"
328 | integrity sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==
329 | dependencies:
330 | call-bind "^1.0.2"
331 | define-properties "^1.1.3"
332 | es-abstract "^1.19.1"
333 | get-intrinsic "^1.1.1"
334 | is-string "^1.0.7"
335 |
336 | array-union@^2.1.0:
337 | version "2.1.0"
338 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
339 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
340 |
341 | array.prototype.flat@^1.2.5:
342 | version "1.2.5"
343 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz#07e0975d84bbc7c48cd1879d609e682598d33e13"
344 | integrity sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==
345 | dependencies:
346 | call-bind "^1.0.2"
347 | define-properties "^1.1.3"
348 | es-abstract "^1.19.0"
349 |
350 | array.prototype.flatmap@^1.2.5:
351 | version "1.2.5"
352 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz#908dc82d8a406930fdf38598d51e7411d18d4446"
353 | integrity sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==
354 | dependencies:
355 | call-bind "^1.0.0"
356 | define-properties "^1.1.3"
357 | es-abstract "^1.19.0"
358 |
359 | ast-types-flow@^0.0.7:
360 | version "0.0.7"
361 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
362 | integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
363 |
364 | autoprefixer@^10.4.4:
365 | version "10.4.4"
366 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.4.tgz#3e85a245b32da876a893d3ac2ea19f01e7ea5a1e"
367 | integrity sha512-Tm8JxsB286VweiZ5F0anmbyGiNI3v3wGv3mz9W+cxEDYB/6jbnj6GM9H9mK3wIL8ftgl+C07Lcwb8PG5PCCPzA==
368 | dependencies:
369 | browserslist "^4.20.2"
370 | caniuse-lite "^1.0.30001317"
371 | fraction.js "^4.2.0"
372 | normalize-range "^0.1.2"
373 | picocolors "^1.0.0"
374 | postcss-value-parser "^4.2.0"
375 |
376 | axe-core@^4.3.5:
377 | version "4.4.1"
378 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.1.tgz#7dbdc25989298f9ad006645cd396782443757413"
379 | integrity sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw==
380 |
381 | axobject-query@^2.2.0:
382 | version "2.2.0"
383 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
384 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
385 |
386 | balanced-match@^1.0.0:
387 | version "1.0.2"
388 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
389 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
390 |
391 | binary-extensions@^2.0.0:
392 | version "2.2.0"
393 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
394 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
395 |
396 | brace-expansion@^1.1.7:
397 | version "1.1.11"
398 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
399 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
400 | dependencies:
401 | balanced-match "^1.0.0"
402 | concat-map "0.0.1"
403 |
404 | braces@^3.0.2, braces@~3.0.2:
405 | version "3.0.2"
406 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
407 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
408 | dependencies:
409 | fill-range "^7.0.1"
410 |
411 | browserslist@^4.20.2:
412 | version "4.20.2"
413 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.2.tgz#567b41508757ecd904dab4d1c646c612cd3d4f88"
414 | integrity sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==
415 | dependencies:
416 | caniuse-lite "^1.0.30001317"
417 | electron-to-chromium "^1.4.84"
418 | escalade "^3.1.1"
419 | node-releases "^2.0.2"
420 | picocolors "^1.0.0"
421 |
422 | call-bind@^1.0.0, call-bind@^1.0.2:
423 | version "1.0.2"
424 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
425 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
426 | dependencies:
427 | function-bind "^1.1.1"
428 | get-intrinsic "^1.0.2"
429 |
430 | callsites@^3.0.0:
431 | version "3.1.0"
432 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
433 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
434 |
435 | camelcase-css@^2.0.1:
436 | version "2.0.1"
437 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
438 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
439 |
440 | caniuse-lite@^1.0.30001283, caniuse-lite@^1.0.30001317:
441 | version "1.0.30001324"
442 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001324.tgz#e17c3a8b34822b02d5d15639d570057550074884"
443 | integrity sha512-/eYp1J6zYh1alySQB4uzYFkLmxxI8tk0kxldbNHXp8+v+rdMKdUBNjRLz7T7fz6Iox+1lIdYpc7rq6ZcXfTukg==
444 |
445 | chalk@^2.0.0:
446 | version "2.4.2"
447 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
448 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
449 | dependencies:
450 | ansi-styles "^3.2.1"
451 | escape-string-regexp "^1.0.5"
452 | supports-color "^5.3.0"
453 |
454 | chalk@^4.0.0, chalk@^4.1.2:
455 | version "4.1.2"
456 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
457 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
458 | dependencies:
459 | ansi-styles "^4.1.0"
460 | supports-color "^7.1.0"
461 |
462 | chokidar@^3.5.3:
463 | version "3.5.3"
464 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
465 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
466 | dependencies:
467 | anymatch "~3.1.2"
468 | braces "~3.0.2"
469 | glob-parent "~5.1.2"
470 | is-binary-path "~2.1.0"
471 | is-glob "~4.0.1"
472 | normalize-path "~3.0.0"
473 | readdirp "~3.6.0"
474 | optionalDependencies:
475 | fsevents "~2.3.2"
476 |
477 | color-convert@^1.9.0:
478 | version "1.9.3"
479 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
480 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
481 | dependencies:
482 | color-name "1.1.3"
483 |
484 | color-convert@^2.0.1:
485 | version "2.0.1"
486 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
487 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
488 | dependencies:
489 | color-name "~1.1.4"
490 |
491 | color-name@1.1.3:
492 | version "1.1.3"
493 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
494 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
495 |
496 | color-name@^1.1.4, color-name@~1.1.4:
497 | version "1.1.4"
498 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
499 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
500 |
501 | concat-map@0.0.1:
502 | version "0.0.1"
503 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
504 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
505 |
506 | core-js-pure@^3.20.2:
507 | version "3.21.1"
508 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.21.1.tgz#8c4d1e78839f5f46208de7230cebfb72bc3bdb51"
509 | integrity sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==
510 |
511 | cosmiconfig@^7.0.1:
512 | version "7.0.1"
513 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d"
514 | integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==
515 | dependencies:
516 | "@types/parse-json" "^4.0.0"
517 | import-fresh "^3.2.1"
518 | parse-json "^5.0.0"
519 | path-type "^4.0.0"
520 | yaml "^1.10.0"
521 |
522 | cross-spawn@^7.0.2:
523 | version "7.0.3"
524 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
525 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
526 | dependencies:
527 | path-key "^3.1.0"
528 | shebang-command "^2.0.0"
529 | which "^2.0.1"
530 |
531 | cssesc@^3.0.0:
532 | version "3.0.0"
533 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
534 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
535 |
536 | damerau-levenshtein@^1.0.7:
537 | version "1.0.8"
538 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7"
539 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==
540 |
541 | debug@^2.6.9:
542 | version "2.6.9"
543 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
544 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
545 | dependencies:
546 | ms "2.0.0"
547 |
548 | debug@^3.2.7:
549 | version "3.2.7"
550 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
551 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
552 | dependencies:
553 | ms "^2.1.1"
554 |
555 | debug@^4.1.1, debug@^4.3.2:
556 | version "4.3.4"
557 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
558 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
559 | dependencies:
560 | ms "2.1.2"
561 |
562 | deep-is@^0.1.3:
563 | version "0.1.4"
564 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
565 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
566 |
567 | define-properties@^1.1.3:
568 | version "1.1.3"
569 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
570 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
571 | dependencies:
572 | object-keys "^1.0.12"
573 |
574 | defined@^1.0.0:
575 | version "1.0.0"
576 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
577 | integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=
578 |
579 | detective@^5.2.0:
580 | version "5.2.0"
581 | resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b"
582 | integrity sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==
583 | dependencies:
584 | acorn-node "^1.6.1"
585 | defined "^1.0.0"
586 | minimist "^1.1.1"
587 |
588 | didyoumean@^1.2.2:
589 | version "1.2.2"
590 | resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037"
591 | integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==
592 |
593 | dir-glob@^3.0.1:
594 | version "3.0.1"
595 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
596 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
597 | dependencies:
598 | path-type "^4.0.0"
599 |
600 | dlv@^1.1.3:
601 | version "1.1.3"
602 | resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79"
603 | integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==
604 |
605 | doctrine@^2.1.0:
606 | version "2.1.0"
607 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
608 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
609 | dependencies:
610 | esutils "^2.0.2"
611 |
612 | doctrine@^3.0.0:
613 | version "3.0.0"
614 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
615 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
616 | dependencies:
617 | esutils "^2.0.2"
618 |
619 | electron-to-chromium@^1.4.84:
620 | version "1.4.103"
621 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.103.tgz#abfe376a4d70fa1e1b4b353b95df5d6dfd05da3a"
622 | integrity sha512-c/uKWR1Z/W30Wy/sx3dkZoj4BijbXX85QKWu9jJfjho3LBAXNEGAEW3oWiGb+dotA6C6BzCTxL2/aLes7jlUeg==
623 |
624 | emoji-regex@^9.2.2:
625 | version "9.2.2"
626 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
627 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
628 |
629 | error-ex@^1.3.1:
630 | version "1.3.2"
631 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
632 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
633 | dependencies:
634 | is-arrayish "^0.2.1"
635 |
636 | es-abstract@^1.19.0, es-abstract@^1.19.1:
637 | version "1.19.2"
638 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.2.tgz#8f7b696d8f15b167ae3640b4060670f3d054143f"
639 | integrity sha512-gfSBJoZdlL2xRiOCy0g8gLMryhoe1TlimjzU99L/31Z8QEGIhVQI+EWwt5lT+AuU9SnorVupXFqqOGqGfsyO6w==
640 | dependencies:
641 | call-bind "^1.0.2"
642 | es-to-primitive "^1.2.1"
643 | function-bind "^1.1.1"
644 | get-intrinsic "^1.1.1"
645 | get-symbol-description "^1.0.0"
646 | has "^1.0.3"
647 | has-symbols "^1.0.3"
648 | internal-slot "^1.0.3"
649 | is-callable "^1.2.4"
650 | is-negative-zero "^2.0.2"
651 | is-regex "^1.1.4"
652 | is-shared-array-buffer "^1.0.1"
653 | is-string "^1.0.7"
654 | is-weakref "^1.0.2"
655 | object-inspect "^1.12.0"
656 | object-keys "^1.1.1"
657 | object.assign "^4.1.2"
658 | string.prototype.trimend "^1.0.4"
659 | string.prototype.trimstart "^1.0.4"
660 | unbox-primitive "^1.0.1"
661 |
662 | es-to-primitive@^1.2.1:
663 | version "1.2.1"
664 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
665 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
666 | dependencies:
667 | is-callable "^1.1.4"
668 | is-date-object "^1.0.1"
669 | is-symbol "^1.0.2"
670 |
671 | escalade@^3.1.1:
672 | version "3.1.1"
673 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
674 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
675 |
676 | escape-string-regexp@^1.0.5:
677 | version "1.0.5"
678 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
679 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
680 |
681 | escape-string-regexp@^4.0.0:
682 | version "4.0.0"
683 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
684 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
685 |
686 | eslint-config-next@12.1.4:
687 | version "12.1.4"
688 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.1.4.tgz#939ea2ff33034763300bf1e62482cea91212d274"
689 | integrity sha512-Uj0jrVjoQbg9qerxRjSHoOOv3PEzoZxpb8G9LYct25fsflP8xIiUq0l4WEu2KSB5owuLv5hie7wSMqPEsHj+bQ==
690 | dependencies:
691 | "@next/eslint-plugin-next" "12.1.4"
692 | "@rushstack/eslint-patch" "1.0.8"
693 | "@typescript-eslint/parser" "5.10.1"
694 | eslint-import-resolver-node "0.3.4"
695 | eslint-import-resolver-typescript "2.4.0"
696 | eslint-plugin-import "2.25.2"
697 | eslint-plugin-jsx-a11y "6.5.1"
698 | eslint-plugin-react "7.29.1"
699 | eslint-plugin-react-hooks "4.3.0"
700 |
701 | eslint-import-resolver-node@0.3.4:
702 | version "0.3.4"
703 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717"
704 | integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==
705 | dependencies:
706 | debug "^2.6.9"
707 | resolve "^1.13.1"
708 |
709 | eslint-import-resolver-node@^0.3.6:
710 | version "0.3.6"
711 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
712 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==
713 | dependencies:
714 | debug "^3.2.7"
715 | resolve "^1.20.0"
716 |
717 | eslint-import-resolver-typescript@2.4.0:
718 | version "2.4.0"
719 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.4.0.tgz#ec1e7063ebe807f0362a7320543aaed6fe1100e1"
720 | integrity sha512-useJKURidCcldRLCNKWemr1fFQL1SzB3G4a0li6lFGvlc5xGe1hY343bvG07cbpCzPuM/lK19FIJB3XGFSkplA==
721 | dependencies:
722 | debug "^4.1.1"
723 | glob "^7.1.6"
724 | is-glob "^4.0.1"
725 | resolve "^1.17.0"
726 | tsconfig-paths "^3.9.0"
727 |
728 | eslint-module-utils@^2.7.0:
729 | version "2.7.3"
730 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz#ad7e3a10552fdd0642e1e55292781bd6e34876ee"
731 | integrity sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==
732 | dependencies:
733 | debug "^3.2.7"
734 | find-up "^2.1.0"
735 |
736 | eslint-plugin-import@2.25.2:
737 | version "2.25.2"
738 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.25.2.tgz#b3b9160efddb702fc1636659e71ba1d10adbe9e9"
739 | integrity sha512-qCwQr9TYfoBHOFcVGKY9C9unq05uOxxdklmBXLVvcwo68y5Hta6/GzCZEMx2zQiu0woKNEER0LE7ZgaOfBU14g==
740 | dependencies:
741 | array-includes "^3.1.4"
742 | array.prototype.flat "^1.2.5"
743 | debug "^2.6.9"
744 | doctrine "^2.1.0"
745 | eslint-import-resolver-node "^0.3.6"
746 | eslint-module-utils "^2.7.0"
747 | has "^1.0.3"
748 | is-core-module "^2.7.0"
749 | is-glob "^4.0.3"
750 | minimatch "^3.0.4"
751 | object.values "^1.1.5"
752 | resolve "^1.20.0"
753 | tsconfig-paths "^3.11.0"
754 |
755 | eslint-plugin-jsx-a11y@6.5.1:
756 | version "6.5.1"
757 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz#cdbf2df901040ca140b6ec14715c988889c2a6d8"
758 | integrity sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==
759 | dependencies:
760 | "@babel/runtime" "^7.16.3"
761 | aria-query "^4.2.2"
762 | array-includes "^3.1.4"
763 | ast-types-flow "^0.0.7"
764 | axe-core "^4.3.5"
765 | axobject-query "^2.2.0"
766 | damerau-levenshtein "^1.0.7"
767 | emoji-regex "^9.2.2"
768 | has "^1.0.3"
769 | jsx-ast-utils "^3.2.1"
770 | language-tags "^1.0.5"
771 | minimatch "^3.0.4"
772 |
773 | eslint-plugin-react-hooks@4.3.0:
774 | version "4.3.0"
775 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz#318dbf312e06fab1c835a4abef00121751ac1172"
776 | integrity sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==
777 |
778 | eslint-plugin-react@7.29.1:
779 | version "7.29.1"
780 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.29.1.tgz#6c40bc83142bb63d132a1b3565e2ea655411f800"
781 | integrity sha512-WtzRpHMhsOX05ZrkyaaqmLl2uXGqmYooCfBxftJKlkYdsltiufGgfU7uuoHwR2lBam2Kh/EIVID4aU9e3kbCMA==
782 | dependencies:
783 | array-includes "^3.1.4"
784 | array.prototype.flatmap "^1.2.5"
785 | doctrine "^2.1.0"
786 | estraverse "^5.3.0"
787 | jsx-ast-utils "^2.4.1 || ^3.0.0"
788 | minimatch "^3.1.2"
789 | object.entries "^1.1.5"
790 | object.fromentries "^2.0.5"
791 | object.hasown "^1.1.0"
792 | object.values "^1.1.5"
793 | prop-types "^15.8.1"
794 | resolve "^2.0.0-next.3"
795 | semver "^6.3.0"
796 | string.prototype.matchall "^4.0.6"
797 |
798 | eslint-scope@^7.1.1:
799 | version "7.1.1"
800 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642"
801 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==
802 | dependencies:
803 | esrecurse "^4.3.0"
804 | estraverse "^5.2.0"
805 |
806 | eslint-utils@^3.0.0:
807 | version "3.0.0"
808 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
809 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
810 | dependencies:
811 | eslint-visitor-keys "^2.0.0"
812 |
813 | eslint-visitor-keys@^2.0.0:
814 | version "2.1.0"
815 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
816 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
817 |
818 | eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0:
819 | version "3.3.0"
820 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
821 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
822 |
823 | eslint@8.12.0:
824 | version "8.12.0"
825 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.12.0.tgz#c7a5bd1cfa09079aae64c9076c07eada66a46e8e"
826 | integrity sha512-it1oBL9alZg1S8UycLm5YDMAkIhtH6FtAzuZs6YvoGVldWjbS08BkAdb/ymP9LlAyq8koANu32U7Ib/w+UNh8Q==
827 | dependencies:
828 | "@eslint/eslintrc" "^1.2.1"
829 | "@humanwhocodes/config-array" "^0.9.2"
830 | ajv "^6.10.0"
831 | chalk "^4.0.0"
832 | cross-spawn "^7.0.2"
833 | debug "^4.3.2"
834 | doctrine "^3.0.0"
835 | escape-string-regexp "^4.0.0"
836 | eslint-scope "^7.1.1"
837 | eslint-utils "^3.0.0"
838 | eslint-visitor-keys "^3.3.0"
839 | espree "^9.3.1"
840 | esquery "^1.4.0"
841 | esutils "^2.0.2"
842 | fast-deep-equal "^3.1.3"
843 | file-entry-cache "^6.0.1"
844 | functional-red-black-tree "^1.0.1"
845 | glob-parent "^6.0.1"
846 | globals "^13.6.0"
847 | ignore "^5.2.0"
848 | import-fresh "^3.0.0"
849 | imurmurhash "^0.1.4"
850 | is-glob "^4.0.0"
851 | js-yaml "^4.1.0"
852 | json-stable-stringify-without-jsonify "^1.0.1"
853 | levn "^0.4.1"
854 | lodash.merge "^4.6.2"
855 | minimatch "^3.0.4"
856 | natural-compare "^1.4.0"
857 | optionator "^0.9.1"
858 | regexpp "^3.2.0"
859 | strip-ansi "^6.0.1"
860 | strip-json-comments "^3.1.0"
861 | text-table "^0.2.0"
862 | v8-compile-cache "^2.0.3"
863 |
864 | espree@^9.3.1:
865 | version "9.3.1"
866 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.1.tgz#8793b4bc27ea4c778c19908e0719e7b8f4115bcd"
867 | integrity sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==
868 | dependencies:
869 | acorn "^8.7.0"
870 | acorn-jsx "^5.3.1"
871 | eslint-visitor-keys "^3.3.0"
872 |
873 | esquery@^1.4.0:
874 | version "1.4.0"
875 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
876 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
877 | dependencies:
878 | estraverse "^5.1.0"
879 |
880 | esrecurse@^4.3.0:
881 | version "4.3.0"
882 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
883 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
884 | dependencies:
885 | estraverse "^5.2.0"
886 |
887 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
888 | version "5.3.0"
889 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
890 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
891 |
892 | esutils@^2.0.2:
893 | version "2.0.3"
894 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
895 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
896 |
897 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
898 | version "3.1.3"
899 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
900 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
901 |
902 | fast-glob@^3.2.11, fast-glob@^3.2.9:
903 | version "3.2.11"
904 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9"
905 | integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==
906 | dependencies:
907 | "@nodelib/fs.stat" "^2.0.2"
908 | "@nodelib/fs.walk" "^1.2.3"
909 | glob-parent "^5.1.2"
910 | merge2 "^1.3.0"
911 | micromatch "^4.0.4"
912 |
913 | fast-json-stable-stringify@^2.0.0:
914 | version "2.1.0"
915 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
916 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
917 |
918 | fast-levenshtein@^2.0.6:
919 | version "2.0.6"
920 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
921 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
922 |
923 | fastq@^1.6.0:
924 | version "1.13.0"
925 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
926 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
927 | dependencies:
928 | reusify "^1.0.4"
929 |
930 | file-entry-cache@^6.0.1:
931 | version "6.0.1"
932 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
933 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
934 | dependencies:
935 | flat-cache "^3.0.4"
936 |
937 | fill-range@^7.0.1:
938 | version "7.0.1"
939 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
940 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
941 | dependencies:
942 | to-regex-range "^5.0.1"
943 |
944 | find-up@^2.1.0:
945 | version "2.1.0"
946 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
947 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
948 | dependencies:
949 | locate-path "^2.0.0"
950 |
951 | flat-cache@^3.0.4:
952 | version "3.0.4"
953 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
954 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
955 | dependencies:
956 | flatted "^3.1.0"
957 | rimraf "^3.0.2"
958 |
959 | flatted@^3.1.0:
960 | version "3.2.5"
961 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3"
962 | integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==
963 |
964 | fraction.js@^4.2.0:
965 | version "4.2.0"
966 | resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950"
967 | integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==
968 |
969 | fs.realpath@^1.0.0:
970 | version "1.0.0"
971 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
972 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
973 |
974 | fsevents@~2.3.2:
975 | version "2.3.2"
976 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
977 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
978 |
979 | function-bind@^1.1.1:
980 | version "1.1.1"
981 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
982 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
983 |
984 | functional-red-black-tree@^1.0.1:
985 | version "1.0.1"
986 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
987 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
988 |
989 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
990 | version "1.1.1"
991 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
992 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
993 | dependencies:
994 | function-bind "^1.1.1"
995 | has "^1.0.3"
996 | has-symbols "^1.0.1"
997 |
998 | get-symbol-description@^1.0.0:
999 | version "1.0.0"
1000 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
1001 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
1002 | dependencies:
1003 | call-bind "^1.0.2"
1004 | get-intrinsic "^1.1.1"
1005 |
1006 | glob-parent@^5.1.2, glob-parent@~5.1.2:
1007 | version "5.1.2"
1008 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
1009 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
1010 | dependencies:
1011 | is-glob "^4.0.1"
1012 |
1013 | glob-parent@^6.0.1, glob-parent@^6.0.2:
1014 | version "6.0.2"
1015 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
1016 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
1017 | dependencies:
1018 | is-glob "^4.0.3"
1019 |
1020 | glob@7.1.7:
1021 | version "7.1.7"
1022 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
1023 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
1024 | dependencies:
1025 | fs.realpath "^1.0.0"
1026 | inflight "^1.0.4"
1027 | inherits "2"
1028 | minimatch "^3.0.4"
1029 | once "^1.3.0"
1030 | path-is-absolute "^1.0.0"
1031 |
1032 | glob@^7.1.3, glob@^7.1.6:
1033 | version "7.2.0"
1034 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
1035 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
1036 | dependencies:
1037 | fs.realpath "^1.0.0"
1038 | inflight "^1.0.4"
1039 | inherits "2"
1040 | minimatch "^3.0.4"
1041 | once "^1.3.0"
1042 | path-is-absolute "^1.0.0"
1043 |
1044 | globals@^13.6.0, globals@^13.9.0:
1045 | version "13.13.0"
1046 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.13.0.tgz#ac32261060d8070e2719dd6998406e27d2b5727b"
1047 | integrity sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==
1048 | dependencies:
1049 | type-fest "^0.20.2"
1050 |
1051 | globby@^11.0.4:
1052 | version "11.1.0"
1053 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
1054 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
1055 | dependencies:
1056 | array-union "^2.1.0"
1057 | dir-glob "^3.0.1"
1058 | fast-glob "^3.2.9"
1059 | ignore "^5.2.0"
1060 | merge2 "^1.4.1"
1061 | slash "^3.0.0"
1062 |
1063 | has-bigints@^1.0.1:
1064 | version "1.0.1"
1065 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
1066 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
1067 |
1068 | has-flag@^3.0.0:
1069 | version "3.0.0"
1070 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1071 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
1072 |
1073 | has-flag@^4.0.0:
1074 | version "4.0.0"
1075 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
1076 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
1077 |
1078 | has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3:
1079 | version "1.0.3"
1080 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
1081 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
1082 |
1083 | has-tostringtag@^1.0.0:
1084 | version "1.0.0"
1085 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
1086 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
1087 | dependencies:
1088 | has-symbols "^1.0.2"
1089 |
1090 | has@^1.0.3:
1091 | version "1.0.3"
1092 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1093 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1094 | dependencies:
1095 | function-bind "^1.1.1"
1096 |
1097 | ignore@^5.2.0:
1098 | version "5.2.0"
1099 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
1100 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
1101 |
1102 | import-fresh@^3.0.0, import-fresh@^3.2.1:
1103 | version "3.3.0"
1104 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
1105 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
1106 | dependencies:
1107 | parent-module "^1.0.0"
1108 | resolve-from "^4.0.0"
1109 |
1110 | imurmurhash@^0.1.4:
1111 | version "0.1.4"
1112 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1113 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
1114 |
1115 | inflight@^1.0.4:
1116 | version "1.0.6"
1117 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1118 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
1119 | dependencies:
1120 | once "^1.3.0"
1121 | wrappy "1"
1122 |
1123 | inherits@2:
1124 | version "2.0.4"
1125 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1126 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1127 |
1128 | internal-slot@^1.0.3:
1129 | version "1.0.3"
1130 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
1131 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
1132 | dependencies:
1133 | get-intrinsic "^1.1.0"
1134 | has "^1.0.3"
1135 | side-channel "^1.0.4"
1136 |
1137 | is-arrayish@^0.2.1:
1138 | version "0.2.1"
1139 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1140 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
1141 |
1142 | is-bigint@^1.0.1:
1143 | version "1.0.4"
1144 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
1145 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
1146 | dependencies:
1147 | has-bigints "^1.0.1"
1148 |
1149 | is-binary-path@~2.1.0:
1150 | version "2.1.0"
1151 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
1152 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
1153 | dependencies:
1154 | binary-extensions "^2.0.0"
1155 |
1156 | is-boolean-object@^1.1.0:
1157 | version "1.1.2"
1158 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
1159 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
1160 | dependencies:
1161 | call-bind "^1.0.2"
1162 | has-tostringtag "^1.0.0"
1163 |
1164 | is-callable@^1.1.4, is-callable@^1.2.4:
1165 | version "1.2.4"
1166 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"
1167 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==
1168 |
1169 | is-core-module@^2.2.0, is-core-module@^2.7.0, is-core-module@^2.8.1:
1170 | version "2.8.1"
1171 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211"
1172 | integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==
1173 | dependencies:
1174 | has "^1.0.3"
1175 |
1176 | is-date-object@^1.0.1:
1177 | version "1.0.5"
1178 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
1179 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
1180 | dependencies:
1181 | has-tostringtag "^1.0.0"
1182 |
1183 | is-extglob@^2.1.1:
1184 | version "2.1.1"
1185 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1186 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
1187 |
1188 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
1189 | version "4.0.3"
1190 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
1191 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
1192 | dependencies:
1193 | is-extglob "^2.1.1"
1194 |
1195 | is-negative-zero@^2.0.2:
1196 | version "2.0.2"
1197 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
1198 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
1199 |
1200 | is-number-object@^1.0.4:
1201 | version "1.0.7"
1202 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
1203 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
1204 | dependencies:
1205 | has-tostringtag "^1.0.0"
1206 |
1207 | is-number@^7.0.0:
1208 | version "7.0.0"
1209 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
1210 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1211 |
1212 | is-regex@^1.1.4:
1213 | version "1.1.4"
1214 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
1215 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
1216 | dependencies:
1217 | call-bind "^1.0.2"
1218 | has-tostringtag "^1.0.0"
1219 |
1220 | is-shared-array-buffer@^1.0.1:
1221 | version "1.0.2"
1222 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
1223 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
1224 | dependencies:
1225 | call-bind "^1.0.2"
1226 |
1227 | is-string@^1.0.5, is-string@^1.0.7:
1228 | version "1.0.7"
1229 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
1230 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
1231 | dependencies:
1232 | has-tostringtag "^1.0.0"
1233 |
1234 | is-symbol@^1.0.2, is-symbol@^1.0.3:
1235 | version "1.0.4"
1236 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
1237 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
1238 | dependencies:
1239 | has-symbols "^1.0.2"
1240 |
1241 | is-weakref@^1.0.2:
1242 | version "1.0.2"
1243 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
1244 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
1245 | dependencies:
1246 | call-bind "^1.0.2"
1247 |
1248 | isexe@^2.0.0:
1249 | version "2.0.0"
1250 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1251 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
1252 |
1253 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
1254 | version "4.0.0"
1255 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1256 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1257 |
1258 | js-yaml@^4.1.0:
1259 | version "4.1.0"
1260 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
1261 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
1262 | dependencies:
1263 | argparse "^2.0.1"
1264 |
1265 | json-parse-even-better-errors@^2.3.0:
1266 | version "2.3.1"
1267 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
1268 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
1269 |
1270 | json-schema-traverse@^0.4.1:
1271 | version "0.4.1"
1272 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
1273 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
1274 |
1275 | json-stable-stringify-without-jsonify@^1.0.1:
1276 | version "1.0.1"
1277 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
1278 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
1279 |
1280 | json5@^1.0.1:
1281 | version "1.0.1"
1282 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
1283 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
1284 | dependencies:
1285 | minimist "^1.2.0"
1286 |
1287 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.2.1:
1288 | version "3.2.2"
1289 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.2.tgz#6ab1e52c71dfc0c0707008a91729a9491fe9f76c"
1290 | integrity sha512-HDAyJ4MNQBboGpUnHAVUNJs6X0lh058s6FuixsFGP7MgJYpD6Vasd6nzSG5iIfXu1zAYlHJ/zsOKNlrenTUBnw==
1291 | dependencies:
1292 | array-includes "^3.1.4"
1293 | object.assign "^4.1.2"
1294 |
1295 | language-subtag-registry@~0.3.2:
1296 | version "0.3.21"
1297 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a"
1298 | integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==
1299 |
1300 | language-tags@^1.0.5:
1301 | version "1.0.5"
1302 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
1303 | integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=
1304 | dependencies:
1305 | language-subtag-registry "~0.3.2"
1306 |
1307 | levn@^0.4.1:
1308 | version "0.4.1"
1309 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
1310 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
1311 | dependencies:
1312 | prelude-ls "^1.2.1"
1313 | type-check "~0.4.0"
1314 |
1315 | lilconfig@^2.0.5:
1316 | version "2.0.5"
1317 | resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.5.tgz#19e57fd06ccc3848fd1891655b5a447092225b25"
1318 | integrity sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==
1319 |
1320 | lines-and-columns@^1.1.6:
1321 | version "1.2.4"
1322 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
1323 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
1324 |
1325 | locate-path@^2.0.0:
1326 | version "2.0.0"
1327 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1328 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
1329 | dependencies:
1330 | p-locate "^2.0.0"
1331 | path-exists "^3.0.0"
1332 |
1333 | lodash.merge@^4.6.2:
1334 | version "4.6.2"
1335 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
1336 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
1337 |
1338 | loose-envify@^1.1.0, loose-envify@^1.4.0:
1339 | version "1.4.0"
1340 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1341 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
1342 | dependencies:
1343 | js-tokens "^3.0.0 || ^4.0.0"
1344 |
1345 | lru-cache@^6.0.0:
1346 | version "6.0.0"
1347 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
1348 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1349 | dependencies:
1350 | yallist "^4.0.0"
1351 |
1352 | merge2@^1.3.0, merge2@^1.4.1:
1353 | version "1.4.1"
1354 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
1355 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
1356 |
1357 | micromatch@^4.0.4:
1358 | version "4.0.5"
1359 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
1360 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
1361 | dependencies:
1362 | braces "^3.0.2"
1363 | picomatch "^2.3.1"
1364 |
1365 | minimatch@^3.0.4, minimatch@^3.1.2:
1366 | version "3.1.2"
1367 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
1368 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1369 | dependencies:
1370 | brace-expansion "^1.1.7"
1371 |
1372 | minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.6:
1373 | version "1.2.6"
1374 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
1375 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
1376 |
1377 | ms@2.0.0:
1378 | version "2.0.0"
1379 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1380 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
1381 |
1382 | ms@2.1.2:
1383 | version "2.1.2"
1384 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1385 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1386 |
1387 | ms@^2.1.1:
1388 | version "2.1.3"
1389 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
1390 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
1391 |
1392 | nanoid@^3.1.30, nanoid@^3.3.1:
1393 | version "3.3.2"
1394 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.2.tgz#c89622fafb4381cd221421c69ec58547a1eec557"
1395 | integrity sha512-CuHBogktKwpm5g2sRgv83jEy2ijFzBwMoYA60orPDR7ynsLijJDqgsi4RDGj3OJpy3Ieb+LYwiRmIOGyytgITA==
1396 |
1397 | natural-compare@^1.4.0:
1398 | version "1.4.0"
1399 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1400 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
1401 |
1402 | next@12.1.4:
1403 | version "12.1.4"
1404 | resolved "https://registry.yarnpkg.com/next/-/next-12.1.4.tgz#597a9bdec7aec778b442c4f6d41afd2c64a54b23"
1405 | integrity sha512-DA4g97BM4Z0nKtDvCTm58RxdvoQyYzeg0AeVbh0N4Y/D8ELrNu47lQeEgRGF8hV4eQ+Sal90zxrJQQG/mPQ8CQ==
1406 | dependencies:
1407 | "@next/env" "12.1.4"
1408 | caniuse-lite "^1.0.30001283"
1409 | postcss "8.4.5"
1410 | styled-jsx "5.0.1"
1411 | optionalDependencies:
1412 | "@next/swc-android-arm-eabi" "12.1.4"
1413 | "@next/swc-android-arm64" "12.1.4"
1414 | "@next/swc-darwin-arm64" "12.1.4"
1415 | "@next/swc-darwin-x64" "12.1.4"
1416 | "@next/swc-linux-arm-gnueabihf" "12.1.4"
1417 | "@next/swc-linux-arm64-gnu" "12.1.4"
1418 | "@next/swc-linux-arm64-musl" "12.1.4"
1419 | "@next/swc-linux-x64-gnu" "12.1.4"
1420 | "@next/swc-linux-x64-musl" "12.1.4"
1421 | "@next/swc-win32-arm64-msvc" "12.1.4"
1422 | "@next/swc-win32-ia32-msvc" "12.1.4"
1423 | "@next/swc-win32-x64-msvc" "12.1.4"
1424 |
1425 | node-releases@^2.0.2:
1426 | version "2.0.2"
1427 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.2.tgz#7139fe71e2f4f11b47d4d2986aaf8c48699e0c01"
1428 | integrity sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==
1429 |
1430 | normalize-path@^3.0.0, normalize-path@~3.0.0:
1431 | version "3.0.0"
1432 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
1433 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
1434 |
1435 | normalize-range@^0.1.2:
1436 | version "0.1.2"
1437 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
1438 | integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
1439 |
1440 | object-assign@^4.1.1:
1441 | version "4.1.1"
1442 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1443 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
1444 |
1445 | object-hash@^2.2.0:
1446 | version "2.2.0"
1447 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.2.0.tgz#5ad518581eefc443bd763472b8ff2e9c2c0d54a5"
1448 | integrity sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==
1449 |
1450 | object-inspect@^1.12.0, object-inspect@^1.9.0:
1451 | version "1.12.0"
1452 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0"
1453 | integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==
1454 |
1455 | object-keys@^1.0.12, object-keys@^1.1.1:
1456 | version "1.1.1"
1457 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
1458 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
1459 |
1460 | object.assign@^4.1.2:
1461 | version "4.1.2"
1462 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
1463 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
1464 | dependencies:
1465 | call-bind "^1.0.0"
1466 | define-properties "^1.1.3"
1467 | has-symbols "^1.0.1"
1468 | object-keys "^1.1.1"
1469 |
1470 | object.entries@^1.1.5:
1471 | version "1.1.5"
1472 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861"
1473 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==
1474 | dependencies:
1475 | call-bind "^1.0.2"
1476 | define-properties "^1.1.3"
1477 | es-abstract "^1.19.1"
1478 |
1479 | object.fromentries@^2.0.5:
1480 | version "2.0.5"
1481 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251"
1482 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==
1483 | dependencies:
1484 | call-bind "^1.0.2"
1485 | define-properties "^1.1.3"
1486 | es-abstract "^1.19.1"
1487 |
1488 | object.hasown@^1.1.0:
1489 | version "1.1.0"
1490 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.0.tgz#7232ed266f34d197d15cac5880232f7a4790afe5"
1491 | integrity sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==
1492 | dependencies:
1493 | define-properties "^1.1.3"
1494 | es-abstract "^1.19.1"
1495 |
1496 | object.values@^1.1.5:
1497 | version "1.1.5"
1498 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac"
1499 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==
1500 | dependencies:
1501 | call-bind "^1.0.2"
1502 | define-properties "^1.1.3"
1503 | es-abstract "^1.19.1"
1504 |
1505 | once@^1.3.0:
1506 | version "1.4.0"
1507 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1508 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
1509 | dependencies:
1510 | wrappy "1"
1511 |
1512 | optionator@^0.9.1:
1513 | version "0.9.1"
1514 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
1515 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
1516 | dependencies:
1517 | deep-is "^0.1.3"
1518 | fast-levenshtein "^2.0.6"
1519 | levn "^0.4.1"
1520 | prelude-ls "^1.2.1"
1521 | type-check "^0.4.0"
1522 | word-wrap "^1.2.3"
1523 |
1524 | p-limit@^1.1.0:
1525 | version "1.3.0"
1526 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
1527 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
1528 | dependencies:
1529 | p-try "^1.0.0"
1530 |
1531 | p-locate@^2.0.0:
1532 | version "2.0.0"
1533 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
1534 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
1535 | dependencies:
1536 | p-limit "^1.1.0"
1537 |
1538 | p-try@^1.0.0:
1539 | version "1.0.0"
1540 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
1541 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
1542 |
1543 | parent-module@^1.0.0:
1544 | version "1.0.1"
1545 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
1546 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
1547 | dependencies:
1548 | callsites "^3.0.0"
1549 |
1550 | parse-json@^5.0.0:
1551 | version "5.2.0"
1552 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
1553 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
1554 | dependencies:
1555 | "@babel/code-frame" "^7.0.0"
1556 | error-ex "^1.3.1"
1557 | json-parse-even-better-errors "^2.3.0"
1558 | lines-and-columns "^1.1.6"
1559 |
1560 | path-exists@^3.0.0:
1561 | version "3.0.0"
1562 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1563 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
1564 |
1565 | path-is-absolute@^1.0.0:
1566 | version "1.0.1"
1567 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1568 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
1569 |
1570 | path-key@^3.1.0:
1571 | version "3.1.1"
1572 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
1573 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
1574 |
1575 | path-parse@^1.0.6, path-parse@^1.0.7:
1576 | version "1.0.7"
1577 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
1578 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1579 |
1580 | path-type@^4.0.0:
1581 | version "4.0.0"
1582 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
1583 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
1584 |
1585 | picocolors@^1.0.0:
1586 | version "1.0.0"
1587 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
1588 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
1589 |
1590 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1:
1591 | version "2.3.1"
1592 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
1593 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
1594 |
1595 | postcss-js@^4.0.0:
1596 | version "4.0.0"
1597 | resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.0.tgz#31db79889531b80dc7bc9b0ad283e418dce0ac00"
1598 | integrity sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==
1599 | dependencies:
1600 | camelcase-css "^2.0.1"
1601 |
1602 | postcss-load-config@^3.1.0:
1603 | version "3.1.4"
1604 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855"
1605 | integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==
1606 | dependencies:
1607 | lilconfig "^2.0.5"
1608 | yaml "^1.10.2"
1609 |
1610 | postcss-nested@5.0.6:
1611 | version "5.0.6"
1612 | resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-5.0.6.tgz#466343f7fc8d3d46af3e7dba3fcd47d052a945bc"
1613 | integrity sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==
1614 | dependencies:
1615 | postcss-selector-parser "^6.0.6"
1616 |
1617 | postcss-selector-parser@^6.0.6, postcss-selector-parser@^6.0.9:
1618 | version "6.0.10"
1619 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d"
1620 | integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==
1621 | dependencies:
1622 | cssesc "^3.0.0"
1623 | util-deprecate "^1.0.2"
1624 |
1625 | postcss-value-parser@^4.2.0:
1626 | version "4.2.0"
1627 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
1628 | integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
1629 |
1630 | postcss@8.4.5:
1631 | version "8.4.5"
1632 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95"
1633 | integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==
1634 | dependencies:
1635 | nanoid "^3.1.30"
1636 | picocolors "^1.0.0"
1637 | source-map-js "^1.0.1"
1638 |
1639 | postcss@^8.4.12, postcss@^8.4.6:
1640 | version "8.4.12"
1641 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.12.tgz#1e7de78733b28970fa4743f7da6f3763648b1905"
1642 | integrity sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==
1643 | dependencies:
1644 | nanoid "^3.3.1"
1645 | picocolors "^1.0.0"
1646 | source-map-js "^1.0.2"
1647 |
1648 | prelude-ls@^1.2.1:
1649 | version "1.2.1"
1650 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
1651 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
1652 |
1653 | prop-types@^15.8.1:
1654 | version "15.8.1"
1655 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
1656 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
1657 | dependencies:
1658 | loose-envify "^1.4.0"
1659 | object-assign "^4.1.1"
1660 | react-is "^16.13.1"
1661 |
1662 | punycode@^2.1.0:
1663 | version "2.1.1"
1664 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
1665 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
1666 |
1667 | queue-microtask@^1.2.2:
1668 | version "1.2.3"
1669 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
1670 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
1671 |
1672 | quick-lru@^5.1.1:
1673 | version "5.1.1"
1674 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932"
1675 | integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==
1676 |
1677 | react-dom@18.0.0:
1678 | version "18.0.0"
1679 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.0.0.tgz#26b88534f8f1dbb80853e1eabe752f24100d8023"
1680 | integrity sha512-XqX7uzmFo0pUceWFCt7Gff6IyIMzFUn7QMZrbrQfGxtaxXZIcGQzoNpRLE3fQLnS4XzLLPMZX2T9TRcSrasicw==
1681 | dependencies:
1682 | loose-envify "^1.1.0"
1683 | scheduler "^0.21.0"
1684 |
1685 | react-icons@^4.3.1:
1686 | version "4.3.1"
1687 | resolved "https://registry.yarnpkg.com/react-icons/-/react-icons-4.3.1.tgz#2fa92aebbbc71f43d2db2ed1aed07361124e91ca"
1688 | integrity sha512-cB10MXLTs3gVuXimblAdI71jrJx8njrJZmNMEMC+sQu5B/BIOmlsAjskdqpn81y8UBVEGuHODd7/ci5DvoSzTQ==
1689 |
1690 | react-is@^16.13.1:
1691 | version "16.13.1"
1692 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
1693 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
1694 |
1695 | react@18.0.0:
1696 | version "18.0.0"
1697 | resolved "https://registry.yarnpkg.com/react/-/react-18.0.0.tgz#b468736d1f4a5891f38585ba8e8fb29f91c3cb96"
1698 | integrity sha512-x+VL6wbT4JRVPm7EGxXhZ8w8LTROaxPXOqhlGyVSrv0sB1jkyFGgXxJ8LVoPRLvPR6/CIZGFmfzqUa2NYeMr2A==
1699 | dependencies:
1700 | loose-envify "^1.1.0"
1701 |
1702 | readdirp@~3.6.0:
1703 | version "3.6.0"
1704 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
1705 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
1706 | dependencies:
1707 | picomatch "^2.2.1"
1708 |
1709 | regenerator-runtime@^0.13.4:
1710 | version "0.13.9"
1711 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
1712 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
1713 |
1714 | regexp.prototype.flags@^1.4.1:
1715 | version "1.4.1"
1716 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz#b3f4c0059af9e47eca9f3f660e51d81307e72307"
1717 | integrity sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ==
1718 | dependencies:
1719 | call-bind "^1.0.2"
1720 | define-properties "^1.1.3"
1721 |
1722 | regexpp@^3.2.0:
1723 | version "3.2.0"
1724 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
1725 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
1726 |
1727 | resolve-from@^4.0.0:
1728 | version "4.0.0"
1729 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
1730 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
1731 |
1732 | resolve@^1.13.1, resolve@^1.17.0, resolve@^1.20.0, resolve@^1.22.0:
1733 | version "1.22.0"
1734 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198"
1735 | integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==
1736 | dependencies:
1737 | is-core-module "^2.8.1"
1738 | path-parse "^1.0.7"
1739 | supports-preserve-symlinks-flag "^1.0.0"
1740 |
1741 | resolve@^2.0.0-next.3:
1742 | version "2.0.0-next.3"
1743 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
1744 | integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==
1745 | dependencies:
1746 | is-core-module "^2.2.0"
1747 | path-parse "^1.0.6"
1748 |
1749 | reusify@^1.0.4:
1750 | version "1.0.4"
1751 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
1752 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
1753 |
1754 | rimraf@^3.0.2:
1755 | version "3.0.2"
1756 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
1757 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
1758 | dependencies:
1759 | glob "^7.1.3"
1760 |
1761 | run-parallel@^1.1.9:
1762 | version "1.2.0"
1763 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
1764 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
1765 | dependencies:
1766 | queue-microtask "^1.2.2"
1767 |
1768 | scheduler@^0.21.0:
1769 | version "0.21.0"
1770 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.21.0.tgz#6fd2532ff5a6d877b6edb12f00d8ab7e8f308820"
1771 | integrity sha512-1r87x5fz9MXqswA2ERLo0EbOAU74DpIUO090gIasYTqlVoJeMcl+Z1Rg7WHz+qtPujhS/hGIt9kxZOYBV3faRQ==
1772 | dependencies:
1773 | loose-envify "^1.1.0"
1774 |
1775 | semver@^6.3.0:
1776 | version "6.3.0"
1777 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
1778 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
1779 |
1780 | semver@^7.3.5:
1781 | version "7.3.5"
1782 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
1783 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
1784 | dependencies:
1785 | lru-cache "^6.0.0"
1786 |
1787 | shebang-command@^2.0.0:
1788 | version "2.0.0"
1789 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
1790 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
1791 | dependencies:
1792 | shebang-regex "^3.0.0"
1793 |
1794 | shebang-regex@^3.0.0:
1795 | version "3.0.0"
1796 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
1797 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
1798 |
1799 | side-channel@^1.0.4:
1800 | version "1.0.4"
1801 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
1802 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
1803 | dependencies:
1804 | call-bind "^1.0.0"
1805 | get-intrinsic "^1.0.2"
1806 | object-inspect "^1.9.0"
1807 |
1808 | slash@^3.0.0:
1809 | version "3.0.0"
1810 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
1811 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
1812 |
1813 | source-map-js@^1.0.1, source-map-js@^1.0.2:
1814 | version "1.0.2"
1815 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
1816 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
1817 |
1818 | string.prototype.matchall@^4.0.6:
1819 | version "4.0.7"
1820 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d"
1821 | integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==
1822 | dependencies:
1823 | call-bind "^1.0.2"
1824 | define-properties "^1.1.3"
1825 | es-abstract "^1.19.1"
1826 | get-intrinsic "^1.1.1"
1827 | has-symbols "^1.0.3"
1828 | internal-slot "^1.0.3"
1829 | regexp.prototype.flags "^1.4.1"
1830 | side-channel "^1.0.4"
1831 |
1832 | string.prototype.trimend@^1.0.4:
1833 | version "1.0.4"
1834 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
1835 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
1836 | dependencies:
1837 | call-bind "^1.0.2"
1838 | define-properties "^1.1.3"
1839 |
1840 | string.prototype.trimstart@^1.0.4:
1841 | version "1.0.4"
1842 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
1843 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
1844 | dependencies:
1845 | call-bind "^1.0.2"
1846 | define-properties "^1.1.3"
1847 |
1848 | strip-ansi@^6.0.1:
1849 | version "6.0.1"
1850 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
1851 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
1852 | dependencies:
1853 | ansi-regex "^5.0.1"
1854 |
1855 | strip-bom@^3.0.0:
1856 | version "3.0.0"
1857 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
1858 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
1859 |
1860 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
1861 | version "3.1.1"
1862 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
1863 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
1864 |
1865 | styled-jsx@5.0.1:
1866 | version "5.0.1"
1867 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.1.tgz#78fecbbad2bf95ce6cd981a08918ce4696f5fc80"
1868 | integrity sha512-+PIZ/6Uk40mphiQJJI1202b+/dYeTVd9ZnMPR80pgiWbjIwvN2zIp4r9et0BgqBuShh48I0gttPlAXA7WVvBxw==
1869 |
1870 | supports-color@^5.3.0:
1871 | version "5.5.0"
1872 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
1873 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
1874 | dependencies:
1875 | has-flag "^3.0.0"
1876 |
1877 | supports-color@^7.1.0:
1878 | version "7.2.0"
1879 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
1880 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
1881 | dependencies:
1882 | has-flag "^4.0.0"
1883 |
1884 | supports-preserve-symlinks-flag@^1.0.0:
1885 | version "1.0.0"
1886 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
1887 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
1888 |
1889 | tailwindcss@^3.0.23:
1890 | version "3.0.23"
1891 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.0.23.tgz#c620521d53a289650872a66adfcb4129d2200d10"
1892 | integrity sha512-+OZOV9ubyQ6oI2BXEhzw4HrqvgcARY38xv3zKcjnWtMIZstEsXdI9xftd1iB7+RbOnj2HOEzkA0OyB5BaSxPQA==
1893 | dependencies:
1894 | arg "^5.0.1"
1895 | chalk "^4.1.2"
1896 | chokidar "^3.5.3"
1897 | color-name "^1.1.4"
1898 | cosmiconfig "^7.0.1"
1899 | detective "^5.2.0"
1900 | didyoumean "^1.2.2"
1901 | dlv "^1.1.3"
1902 | fast-glob "^3.2.11"
1903 | glob-parent "^6.0.2"
1904 | is-glob "^4.0.3"
1905 | normalize-path "^3.0.0"
1906 | object-hash "^2.2.0"
1907 | postcss "^8.4.6"
1908 | postcss-js "^4.0.0"
1909 | postcss-load-config "^3.1.0"
1910 | postcss-nested "5.0.6"
1911 | postcss-selector-parser "^6.0.9"
1912 | postcss-value-parser "^4.2.0"
1913 | quick-lru "^5.1.1"
1914 | resolve "^1.22.0"
1915 |
1916 | text-table@^0.2.0:
1917 | version "0.2.0"
1918 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
1919 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
1920 |
1921 | to-regex-range@^5.0.1:
1922 | version "5.0.1"
1923 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
1924 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
1925 | dependencies:
1926 | is-number "^7.0.0"
1927 |
1928 | tsconfig-paths@^3.11.0, tsconfig-paths@^3.9.0:
1929 | version "3.14.1"
1930 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a"
1931 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==
1932 | dependencies:
1933 | "@types/json5" "^0.0.29"
1934 | json5 "^1.0.1"
1935 | minimist "^1.2.6"
1936 | strip-bom "^3.0.0"
1937 |
1938 | tslib@^1.8.1:
1939 | version "1.14.1"
1940 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
1941 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
1942 |
1943 | tsutils@^3.21.0:
1944 | version "3.21.0"
1945 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
1946 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
1947 | dependencies:
1948 | tslib "^1.8.1"
1949 |
1950 | type-check@^0.4.0, type-check@~0.4.0:
1951 | version "0.4.0"
1952 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
1953 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
1954 | dependencies:
1955 | prelude-ls "^1.2.1"
1956 |
1957 | type-fest@^0.20.2:
1958 | version "0.20.2"
1959 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
1960 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
1961 |
1962 | unbox-primitive@^1.0.1:
1963 | version "1.0.1"
1964 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
1965 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
1966 | dependencies:
1967 | function-bind "^1.1.1"
1968 | has-bigints "^1.0.1"
1969 | has-symbols "^1.0.2"
1970 | which-boxed-primitive "^1.0.2"
1971 |
1972 | uri-js@^4.2.2:
1973 | version "4.4.1"
1974 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
1975 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
1976 | dependencies:
1977 | punycode "^2.1.0"
1978 |
1979 | util-deprecate@^1.0.2:
1980 | version "1.0.2"
1981 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
1982 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
1983 |
1984 | v8-compile-cache@^2.0.3:
1985 | version "2.3.0"
1986 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
1987 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
1988 |
1989 | which-boxed-primitive@^1.0.2:
1990 | version "1.0.2"
1991 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
1992 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
1993 | dependencies:
1994 | is-bigint "^1.0.1"
1995 | is-boolean-object "^1.1.0"
1996 | is-number-object "^1.0.4"
1997 | is-string "^1.0.5"
1998 | is-symbol "^1.0.3"
1999 |
2000 | which@^2.0.1:
2001 | version "2.0.2"
2002 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
2003 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
2004 | dependencies:
2005 | isexe "^2.0.0"
2006 |
2007 | word-wrap@^1.2.3:
2008 | version "1.2.3"
2009 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
2010 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
2011 |
2012 | wrappy@1:
2013 | version "1.0.2"
2014 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2015 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
2016 |
2017 | xtend@^4.0.2:
2018 | version "4.0.2"
2019 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
2020 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
2021 |
2022 | yallist@^4.0.0:
2023 | version "4.0.0"
2024 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
2025 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
2026 |
2027 | yaml@^1.10.0, yaml@^1.10.2:
2028 | version "1.10.2"
2029 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
2030 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
2031 |
--------------------------------------------------------------------------------