├── .gitignore
├── with-jotai
├── .eslintrc.json
├── public
│ ├── favicon.ico
│ └── vercel.svg
├── next.config.js
├── pages
│ ├── _app.js
│ ├── api
│ │ └── hello.js
│ └── index.tsx
├── next-env.d.ts
├── styles
│ ├── globals.css
│ └── Home.module.css
├── .gitignore
├── package.json
├── tsconfig.json
└── README.md
├── with-mobx
├── .eslintrc.json
├── public
│ ├── favicon.ico
│ └── vercel.svg
├── next.config.js
├── pages
│ ├── _app.js
│ ├── api
│ │ └── hello.js
│ └── index.tsx
├── next-env.d.ts
├── styles
│ ├── globals.css
│ └── Home.module.css
├── .gitignore
├── package.json
├── tsconfig.json
├── src
│ └── store.ts
└── README.md
├── with-redux
├── .eslintrc.json
├── public
│ ├── favicon.ico
│ └── vercel.svg
├── next.config.js
├── pages
│ ├── api
│ │ └── hello.js
│ ├── _app.js
│ └── index.tsx
├── next-env.d.ts
├── styles
│ ├── globals.css
│ └── Home.module.css
├── .gitignore
├── package.json
├── tsconfig.json
├── README.md
└── src
│ └── store.ts
├── with-rxjs
├── .eslintrc.json
├── public
│ ├── favicon.ico
│ └── vercel.svg
├── next.config.js
├── pages
│ ├── _app.js
│ ├── api
│ │ └── hello.js
│ └── index.tsx
├── next-env.d.ts
├── styles
│ ├── globals.css
│ └── Home.module.css
├── .gitignore
├── package.json
├── tsconfig.json
└── README.md
├── with-context
├── .eslintrc.json
├── public
│ ├── favicon.ico
│ └── vercel.svg
├── next.config.js
├── pages
│ ├── api
│ │ └── hello.js
│ ├── _app.js
│ └── index.tsx
├── next-env.d.ts
├── styles
│ ├── globals.css
│ └── Home.module.css
├── .gitignore
├── package.json
├── tsconfig.json
├── src
│ └── store.tsx
├── README.md
└── yarn.lock
├── with-react-query
├── .eslintrc.json
├── public
│ ├── favicon.ico
│ └── vercel.svg
├── next.config.js
├── pages
│ ├── api
│ │ └── hello.js
│ ├── _app.js
│ └── index.tsx
├── next-env.d.ts
├── styles
│ ├── globals.css
│ └── Home.module.css
├── .gitignore
├── package.json
├── tsconfig.json
└── README.md
├── with-use-state
├── .eslintrc.json
├── public
│ ├── favicon.ico
│ └── vercel.svg
├── next.config.js
├── pages
│ ├── _app.js
│ ├── api
│ │ └── hello.js
│ └── index.tsx
├── next-env.d.ts
├── styles
│ ├── globals.css
│ └── Home.module.css
├── .gitignore
├── package.json
├── tsconfig.json
└── README.md
├── with-zustand
├── .eslintrc.json
├── public
│ ├── favicon.ico
│ └── vercel.svg
├── next.config.js
├── pages
│ ├── _app.js
│ ├── api
│ │ └── hello.js
│ └── index.tsx
├── next-env.d.ts
├── styles
│ ├── globals.css
│ └── Home.module.css
├── .gitignore
├── package.json
├── tsconfig.json
└── README.md
└── with-react-query-simple
├── .eslintrc.json
├── public
├── favicon.ico
└── vercel.svg
├── next.config.js
├── pages
├── api
│ └── hello.js
├── _app.js
└── index.tsx
├── next-env.d.ts
├── styles
├── globals.css
└── Home.module.css
├── .gitignore
├── package.json
├── tsconfig.json
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/with-jotai/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/with-mobx/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/with-redux/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/with-rxjs/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/with-context/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/with-react-query/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/with-use-state/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/with-zustand/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/with-react-query-simple/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/with-jotai/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jherr/nextjs-state-management/HEAD/with-jotai/public/favicon.ico
--------------------------------------------------------------------------------
/with-mobx/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jherr/nextjs-state-management/HEAD/with-mobx/public/favicon.ico
--------------------------------------------------------------------------------
/with-redux/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jherr/nextjs-state-management/HEAD/with-redux/public/favicon.ico
--------------------------------------------------------------------------------
/with-rxjs/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jherr/nextjs-state-management/HEAD/with-rxjs/public/favicon.ico
--------------------------------------------------------------------------------
/with-context/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jherr/nextjs-state-management/HEAD/with-context/public/favicon.ico
--------------------------------------------------------------------------------
/with-zustand/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jherr/nextjs-state-management/HEAD/with-zustand/public/favicon.ico
--------------------------------------------------------------------------------
/with-use-state/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jherr/nextjs-state-management/HEAD/with-use-state/public/favicon.ico
--------------------------------------------------------------------------------
/with-react-query/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jherr/nextjs-state-management/HEAD/with-react-query/public/favicon.ico
--------------------------------------------------------------------------------
/with-react-query-simple/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jherr/nextjs-state-management/HEAD/with-react-query-simple/public/favicon.ico
--------------------------------------------------------------------------------
/with-jotai/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true,
4 | }
5 |
6 | module.exports = nextConfig
7 |
--------------------------------------------------------------------------------
/with-mobx/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true,
4 | }
5 |
6 | module.exports = nextConfig
7 |
--------------------------------------------------------------------------------
/with-redux/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true,
4 | }
5 |
6 | module.exports = nextConfig
7 |
--------------------------------------------------------------------------------
/with-rxjs/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true,
4 | }
5 |
6 | module.exports = nextConfig
7 |
--------------------------------------------------------------------------------
/with-context/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true,
4 | }
5 |
6 | module.exports = nextConfig
7 |
--------------------------------------------------------------------------------
/with-react-query/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true,
4 | }
5 |
6 | module.exports = nextConfig
7 |
--------------------------------------------------------------------------------
/with-use-state/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true,
4 | }
5 |
6 | module.exports = nextConfig
7 |
--------------------------------------------------------------------------------
/with-zustand/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true,
4 | }
5 |
6 | module.exports = nextConfig
7 |
--------------------------------------------------------------------------------
/with-react-query-simple/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true,
4 | }
5 |
6 | module.exports = nextConfig
7 |
--------------------------------------------------------------------------------
/with-mobx/pages/_app.js:
--------------------------------------------------------------------------------
1 | import '../styles/globals.css'
2 |
3 | function MyApp({ Component, pageProps }) {
4 | return
5 | }
6 |
7 | export default MyApp
8 |
--------------------------------------------------------------------------------
/with-rxjs/pages/_app.js:
--------------------------------------------------------------------------------
1 | import '../styles/globals.css'
2 |
3 | function MyApp({ Component, pageProps }) {
4 | return
5 | }
6 |
7 | export default MyApp
8 |
--------------------------------------------------------------------------------
/with-jotai/pages/_app.js:
--------------------------------------------------------------------------------
1 | import '../styles/globals.css'
2 |
3 | function MyApp({ Component, pageProps }) {
4 | return
5 | }
6 |
7 | export default MyApp
8 |
--------------------------------------------------------------------------------
/with-use-state/pages/_app.js:
--------------------------------------------------------------------------------
1 | import '../styles/globals.css'
2 |
3 | function MyApp({ Component, pageProps }) {
4 | return
5 | }
6 |
7 | export default MyApp
8 |
--------------------------------------------------------------------------------
/with-zustand/pages/_app.js:
--------------------------------------------------------------------------------
1 | import '../styles/globals.css'
2 |
3 | function MyApp({ Component, pageProps }) {
4 | return
5 | }
6 |
7 | export default MyApp
8 |
--------------------------------------------------------------------------------
/with-mobx/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 |
--------------------------------------------------------------------------------
/with-rxjs/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 |
--------------------------------------------------------------------------------
/with-context/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 |
--------------------------------------------------------------------------------
/with-jotai/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 |
--------------------------------------------------------------------------------
/with-redux/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 |
--------------------------------------------------------------------------------
/with-use-state/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 |
--------------------------------------------------------------------------------
/with-zustand/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 |
--------------------------------------------------------------------------------
/with-react-query/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 |
--------------------------------------------------------------------------------
/with-react-query-simple/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 |
--------------------------------------------------------------------------------
/with-context/next-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 |
4 | // NOTE: This file should not be edited
5 | // see https://nextjs.org/docs/basic-features/typescript for more information.
6 |
--------------------------------------------------------------------------------
/with-jotai/next-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 |
4 | // NOTE: This file should not be edited
5 | // see https://nextjs.org/docs/basic-features/typescript for more information.
6 |
--------------------------------------------------------------------------------
/with-mobx/next-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 |
4 | // NOTE: This file should not be edited
5 | // see https://nextjs.org/docs/basic-features/typescript for more information.
6 |
--------------------------------------------------------------------------------
/with-redux/next-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 |
4 | // NOTE: This file should not be edited
5 | // see https://nextjs.org/docs/basic-features/typescript for more information.
6 |
--------------------------------------------------------------------------------
/with-rxjs/next-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 |
4 | // NOTE: This file should not be edited
5 | // see https://nextjs.org/docs/basic-features/typescript for more information.
6 |
--------------------------------------------------------------------------------
/with-zustand/next-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 |
4 | // NOTE: This file should not be edited
5 | // see https://nextjs.org/docs/basic-features/typescript for more information.
6 |
--------------------------------------------------------------------------------
/with-react-query/next-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 |
4 | // NOTE: This file should not be edited
5 | // see https://nextjs.org/docs/basic-features/typescript for more information.
6 |
--------------------------------------------------------------------------------
/with-use-state/next-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 |
4 | // NOTE: This file should not be edited
5 | // see https://nextjs.org/docs/basic-features/typescript for more information.
6 |
--------------------------------------------------------------------------------
/with-react-query-simple/next-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 |
4 | // NOTE: This file should not be edited
5 | // see https://nextjs.org/docs/basic-features/typescript for more information.
6 |
--------------------------------------------------------------------------------
/with-context/pages/_app.js:
--------------------------------------------------------------------------------
1 | import "../styles/globals.css";
2 | import { PokemonProvider } from "../src/store";
3 |
4 | function MyApp({ Component, pageProps }) {
5 | return (
6 |
7 |
8 |
9 | );
10 | }
11 |
12 | export default MyApp;
13 |
--------------------------------------------------------------------------------
/with-context/styles/globals.css:
--------------------------------------------------------------------------------
1 | html,
2 | body {
3 | padding: 0;
4 | margin: 0;
5 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
6 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
7 | }
8 |
9 | a {
10 | color: inherit;
11 | text-decoration: none;
12 | }
13 |
14 | * {
15 | box-sizing: border-box;
16 | }
17 |
--------------------------------------------------------------------------------
/with-jotai/styles/globals.css:
--------------------------------------------------------------------------------
1 | html,
2 | body {
3 | padding: 0;
4 | margin: 0;
5 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
6 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
7 | }
8 |
9 | a {
10 | color: inherit;
11 | text-decoration: none;
12 | }
13 |
14 | * {
15 | box-sizing: border-box;
16 | }
17 |
--------------------------------------------------------------------------------
/with-mobx/styles/globals.css:
--------------------------------------------------------------------------------
1 | html,
2 | body {
3 | padding: 0;
4 | margin: 0;
5 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
6 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
7 | }
8 |
9 | a {
10 | color: inherit;
11 | text-decoration: none;
12 | }
13 |
14 | * {
15 | box-sizing: border-box;
16 | }
17 |
--------------------------------------------------------------------------------
/with-redux/styles/globals.css:
--------------------------------------------------------------------------------
1 | html,
2 | body {
3 | padding: 0;
4 | margin: 0;
5 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
6 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
7 | }
8 |
9 | a {
10 | color: inherit;
11 | text-decoration: none;
12 | }
13 |
14 | * {
15 | box-sizing: border-box;
16 | }
17 |
--------------------------------------------------------------------------------
/with-rxjs/styles/globals.css:
--------------------------------------------------------------------------------
1 | html,
2 | body {
3 | padding: 0;
4 | margin: 0;
5 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
6 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
7 | }
8 |
9 | a {
10 | color: inherit;
11 | text-decoration: none;
12 | }
13 |
14 | * {
15 | box-sizing: border-box;
16 | }
17 |
--------------------------------------------------------------------------------
/with-zustand/styles/globals.css:
--------------------------------------------------------------------------------
1 | html,
2 | body {
3 | padding: 0;
4 | margin: 0;
5 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
6 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
7 | }
8 |
9 | a {
10 | color: inherit;
11 | text-decoration: none;
12 | }
13 |
14 | * {
15 | box-sizing: border-box;
16 | }
17 |
--------------------------------------------------------------------------------
/with-react-query/styles/globals.css:
--------------------------------------------------------------------------------
1 | html,
2 | body {
3 | padding: 0;
4 | margin: 0;
5 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
6 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
7 | }
8 |
9 | a {
10 | color: inherit;
11 | text-decoration: none;
12 | }
13 |
14 | * {
15 | box-sizing: border-box;
16 | }
17 |
--------------------------------------------------------------------------------
/with-use-state/styles/globals.css:
--------------------------------------------------------------------------------
1 | html,
2 | body {
3 | padding: 0;
4 | margin: 0;
5 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
6 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
7 | }
8 |
9 | a {
10 | color: inherit;
11 | text-decoration: none;
12 | }
13 |
14 | * {
15 | box-sizing: border-box;
16 | }
17 |
--------------------------------------------------------------------------------
/with-react-query-simple/styles/globals.css:
--------------------------------------------------------------------------------
1 | html,
2 | body {
3 | padding: 0;
4 | margin: 0;
5 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
6 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
7 | }
8 |
9 | a {
10 | color: inherit;
11 | text-decoration: none;
12 | }
13 |
14 | * {
15 | box-sizing: border-box;
16 | }
17 |
--------------------------------------------------------------------------------
/with-redux/pages/_app.js:
--------------------------------------------------------------------------------
1 | import "../styles/globals.css";
2 | import { Provider } from "react-redux";
3 | import getStore from "../src/store";
4 |
5 | function MyApp({ Component, pageProps }) {
6 | const store = getStore(pageProps.initialState);
7 | return (
8 |
9 |
10 |
11 | );
12 | }
13 |
14 | export default MyApp;
15 |
--------------------------------------------------------------------------------
/with-context/styles/Home.module.css:
--------------------------------------------------------------------------------
1 | .main {
2 | padding: 1rem;
3 | }
4 |
5 | .image img {
6 | max-height: 200px;
7 | }
8 |
9 | .container {
10 | display: grid;
11 | grid-template-columns: repeat(4, 1fr);
12 | row-gap: 1rem;
13 | column-gap: 1rem;
14 | }
15 |
16 | .search {
17 | width: 100%;
18 | border: 1px solid #aaa;
19 | border-radius: 0.5rem;
20 | padding: 0.5rem;
21 | font-size: 1.2rem;
22 | margin-bottom: 1rem;
23 | }
--------------------------------------------------------------------------------
/with-jotai/styles/Home.module.css:
--------------------------------------------------------------------------------
1 | .main {
2 | padding: 1rem;
3 | }
4 |
5 | .image img {
6 | max-height: 200px;
7 | }
8 |
9 | .container {
10 | display: grid;
11 | grid-template-columns: repeat(4, 1fr);
12 | row-gap: 1rem;
13 | column-gap: 1rem;
14 | }
15 |
16 | .search {
17 | width: 100%;
18 | border: 1px solid #aaa;
19 | border-radius: 0.5rem;
20 | padding: 0.5rem;
21 | font-size: 1.2rem;
22 | margin-bottom: 1rem;
23 | }
--------------------------------------------------------------------------------
/with-mobx/styles/Home.module.css:
--------------------------------------------------------------------------------
1 | .main {
2 | padding: 1rem;
3 | }
4 |
5 | .image img {
6 | max-height: 200px;
7 | }
8 |
9 | .container {
10 | display: grid;
11 | grid-template-columns: repeat(4, 1fr);
12 | row-gap: 1rem;
13 | column-gap: 1rem;
14 | }
15 |
16 | .search {
17 | width: 100%;
18 | border: 1px solid #aaa;
19 | border-radius: 0.5rem;
20 | padding: 0.5rem;
21 | font-size: 1.2rem;
22 | margin-bottom: 1rem;
23 | }
--------------------------------------------------------------------------------
/with-redux/styles/Home.module.css:
--------------------------------------------------------------------------------
1 | .main {
2 | padding: 1rem;
3 | }
4 |
5 | .image img {
6 | max-height: 200px;
7 | }
8 |
9 | .container {
10 | display: grid;
11 | grid-template-columns: repeat(4, 1fr);
12 | row-gap: 1rem;
13 | column-gap: 1rem;
14 | }
15 |
16 | .search {
17 | width: 100%;
18 | border: 1px solid #aaa;
19 | border-radius: 0.5rem;
20 | padding: 0.5rem;
21 | font-size: 1.2rem;
22 | margin-bottom: 1rem;
23 | }
--------------------------------------------------------------------------------
/with-rxjs/styles/Home.module.css:
--------------------------------------------------------------------------------
1 | .main {
2 | padding: 1rem;
3 | }
4 |
5 | .image img {
6 | max-height: 200px;
7 | }
8 |
9 | .container {
10 | display: grid;
11 | grid-template-columns: repeat(4, 1fr);
12 | row-gap: 1rem;
13 | column-gap: 1rem;
14 | }
15 |
16 | .search {
17 | width: 100%;
18 | border: 1px solid #aaa;
19 | border-radius: 0.5rem;
20 | padding: 0.5rem;
21 | font-size: 1.2rem;
22 | margin-bottom: 1rem;
23 | }
--------------------------------------------------------------------------------
/with-zustand/styles/Home.module.css:
--------------------------------------------------------------------------------
1 | .main {
2 | padding: 1rem;
3 | }
4 |
5 | .image img {
6 | max-height: 200px;
7 | }
8 |
9 | .container {
10 | display: grid;
11 | grid-template-columns: repeat(4, 1fr);
12 | row-gap: 1rem;
13 | column-gap: 1rem;
14 | }
15 |
16 | .search {
17 | width: 100%;
18 | border: 1px solid #aaa;
19 | border-radius: 0.5rem;
20 | padding: 0.5rem;
21 | font-size: 1.2rem;
22 | margin-bottom: 1rem;
23 | }
--------------------------------------------------------------------------------
/with-react-query/styles/Home.module.css:
--------------------------------------------------------------------------------
1 | .main {
2 | padding: 1rem;
3 | }
4 |
5 | .image img {
6 | max-height: 200px;
7 | }
8 |
9 | .container {
10 | display: grid;
11 | grid-template-columns: repeat(4, 1fr);
12 | row-gap: 1rem;
13 | column-gap: 1rem;
14 | }
15 |
16 | .search {
17 | width: 100%;
18 | border: 1px solid #aaa;
19 | border-radius: 0.5rem;
20 | padding: 0.5rem;
21 | font-size: 1.2rem;
22 | margin-bottom: 1rem;
23 | }
--------------------------------------------------------------------------------
/with-use-state/styles/Home.module.css:
--------------------------------------------------------------------------------
1 | .main {
2 | padding: 1rem;
3 | }
4 |
5 | .image img {
6 | max-height: 200px;
7 | }
8 |
9 | .container {
10 | display: grid;
11 | grid-template-columns: repeat(4, 1fr);
12 | row-gap: 1rem;
13 | column-gap: 1rem;
14 | }
15 |
16 | .search {
17 | width: 100%;
18 | border: 1px solid #aaa;
19 | border-radius: 0.5rem;
20 | padding: 0.5rem;
21 | font-size: 1.2rem;
22 | margin-bottom: 1rem;
23 | }
--------------------------------------------------------------------------------
/with-react-query-simple/styles/Home.module.css:
--------------------------------------------------------------------------------
1 | .main {
2 | padding: 1rem;
3 | }
4 |
5 | .image img {
6 | max-height: 200px;
7 | }
8 |
9 | .container {
10 | display: grid;
11 | grid-template-columns: repeat(4, 1fr);
12 | row-gap: 1rem;
13 | column-gap: 1rem;
14 | }
15 |
16 | .search {
17 | width: 100%;
18 | border: 1px solid #aaa;
19 | border-radius: 0.5rem;
20 | padding: 0.5rem;
21 | font-size: 1.2rem;
22 | margin-bottom: 1rem;
23 | }
--------------------------------------------------------------------------------
/with-react-query-simple/pages/_app.js:
--------------------------------------------------------------------------------
1 | import { useState } from "react";
2 | import { Hydrate, QueryClient, QueryClientProvider } from "react-query";
3 | import "../styles/globals.css";
4 |
5 | function MyApp({ Component, pageProps }) {
6 | const [queryClient] = useState(() => new QueryClient());
7 |
8 | return (
9 |
10 |
11 |
12 | );
13 | }
14 |
15 | export default MyApp;
16 |
--------------------------------------------------------------------------------
/with-react-query/pages/_app.js:
--------------------------------------------------------------------------------
1 | import { useState } from "react";
2 | import { Hydrate, QueryClient, QueryClientProvider } from "react-query";
3 | import "../styles/globals.css";
4 |
5 | function MyApp({ Component, pageProps }) {
6 | const [queryClient] = useState(() => new QueryClient());
7 |
8 | return (
9 |
10 |
11 |
12 |
13 |
14 | );
15 | }
16 |
17 | export default MyApp;
18 |
--------------------------------------------------------------------------------
/with-context/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env.local
30 | .env.development.local
31 | .env.test.local
32 | .env.production.local
33 |
34 | # vercel
35 | .vercel
36 |
--------------------------------------------------------------------------------
/with-jotai/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env.local
30 | .env.development.local
31 | .env.test.local
32 | .env.production.local
33 |
34 | # vercel
35 | .vercel
36 |
--------------------------------------------------------------------------------
/with-mobx/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env.local
30 | .env.development.local
31 | .env.test.local
32 | .env.production.local
33 |
34 | # vercel
35 | .vercel
36 |
--------------------------------------------------------------------------------
/with-redux/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env.local
30 | .env.development.local
31 | .env.test.local
32 | .env.production.local
33 |
34 | # vercel
35 | .vercel
36 |
--------------------------------------------------------------------------------
/with-rxjs/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env.local
30 | .env.development.local
31 | .env.test.local
32 | .env.production.local
33 |
34 | # vercel
35 | .vercel
36 |
--------------------------------------------------------------------------------
/with-zustand/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env.local
30 | .env.development.local
31 | .env.test.local
32 | .env.production.local
33 |
34 | # vercel
35 | .vercel
36 |
--------------------------------------------------------------------------------
/with-context/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "with-use-state",
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 | "next": "12.1.0",
13 | "react": "17.0.2",
14 | "react-dom": "17.0.2"
15 | },
16 | "devDependencies": {
17 | "@types/node": "^17.0.21",
18 | "@types/react": "^17.0.40",
19 | "eslint": "8.11.0",
20 | "eslint-config-next": "12.1.0",
21 | "typescript": "^4.6.2"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/with-react-query/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env.local
30 | .env.development.local
31 | .env.test.local
32 | .env.production.local
33 |
34 | # vercel
35 | .vercel
36 |
--------------------------------------------------------------------------------
/with-use-state/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env.local
30 | .env.development.local
31 | .env.test.local
32 | .env.production.local
33 |
34 | # vercel
35 | .vercel
36 |
--------------------------------------------------------------------------------
/with-react-query-simple/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env.local
30 | .env.development.local
31 | .env.test.local
32 | .env.production.local
33 |
34 | # vercel
35 | .vercel
36 |
--------------------------------------------------------------------------------
/with-use-state/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "with-use-state",
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 | "next": "12.1.0",
13 | "react": "17.0.2",
14 | "react-dom": "17.0.2"
15 | },
16 | "devDependencies": {
17 | "@types/node": "^17.0.21",
18 | "@types/react": "^17.0.40",
19 | "eslint": "8.11.0",
20 | "eslint-config-next": "12.1.0",
21 | "typescript": "^4.6.2"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/with-jotai/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "with-use-state",
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 | "jotai": "^1.6.1",
13 | "next": "12.1.0",
14 | "react": "17.0.2",
15 | "react-dom": "17.0.2"
16 | },
17 | "devDependencies": {
18 | "@types/node": "^17.0.21",
19 | "@types/react": "^17.0.40",
20 | "eslint": "8.11.0",
21 | "eslint-config-next": "12.1.0",
22 | "typescript": "^4.6.2"
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/with-zustand/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "with-use-state",
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 | "next": "12.1.0",
13 | "react": "17.0.2",
14 | "react-dom": "17.0.2",
15 | "zustand": "^3.7.1"
16 | },
17 | "devDependencies": {
18 | "@types/node": "^17.0.21",
19 | "@types/react": "^17.0.40",
20 | "eslint": "8.11.0",
21 | "eslint-config-next": "12.1.0",
22 | "typescript": "^4.6.2"
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/with-react-query/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "with-use-state",
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 | "next": "12.1.0",
13 | "react": "17.0.2",
14 | "react-dom": "17.0.2",
15 | "react-query": "^3.34.16"
16 | },
17 | "devDependencies": {
18 | "@types/node": "^17.0.21",
19 | "@types/react": "^17.0.40",
20 | "eslint": "8.11.0",
21 | "eslint-config-next": "12.1.0",
22 | "typescript": "^4.6.2"
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/with-react-query-simple/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "with-use-state",
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 | "next": "12.1.0",
13 | "react": "17.0.2",
14 | "react-dom": "17.0.2",
15 | "react-query": "^3.34.16"
16 | },
17 | "devDependencies": {
18 | "@types/node": "^17.0.21",
19 | "@types/react": "^17.0.40",
20 | "eslint": "8.11.0",
21 | "eslint-config-next": "12.1.0",
22 | "typescript": "^4.6.2"
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/with-mobx/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "with-mobx",
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 | "mobx": "^6.4.2",
13 | "mobx-react-lite": "^3.3.0",
14 | "next": "12.1.0",
15 | "react": "17.0.2",
16 | "react-dom": "17.0.2"
17 | },
18 | "devDependencies": {
19 | "@types/node": "^17.0.21",
20 | "@types/react": "^17.0.40",
21 | "eslint": "8.10.0",
22 | "eslint-config-next": "12.1.0",
23 | "typescript": "^4.6.2"
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/with-rxjs/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "with-rxjs",
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 | "next": "12.1.0",
13 | "observable-hooks": "^4.2.0",
14 | "react": "17.0.2",
15 | "react-dom": "17.0.2",
16 | "rxjs": "^7.5.5"
17 | },
18 | "devDependencies": {
19 | "@types/node": "^17.0.21",
20 | "@types/react": "^17.0.40",
21 | "eslint": "8.10.0",
22 | "eslint-config-next": "12.1.0",
23 | "typescript": "^4.6.2"
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/with-redux/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "with-redux",
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 | "@reduxjs/toolkit": "^1.8.0",
13 | "next": "12.1.0",
14 | "next-redux-wrapper": "^7.0.5",
15 | "react": "17.0.2",
16 | "react-dom": "17.0.2",
17 | "react-redux": "^7.2.6",
18 | "redux": "^4.1.2"
19 | },
20 | "devDependencies": {
21 | "@types/node": "^17.0.21",
22 | "eslint": "8.10.0",
23 | "eslint-config-next": "12.1.0",
24 | "typescript": "^4.6.2"
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/with-jotai/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": [
5 | "dom",
6 | "dom.iterable",
7 | "esnext"
8 | ],
9 | "allowJs": true,
10 | "skipLibCheck": true,
11 | "strict": false,
12 | "forceConsistentCasingInFileNames": true,
13 | "noEmit": true,
14 | "incremental": true,
15 | "esModuleInterop": true,
16 | "module": "esnext",
17 | "moduleResolution": "node",
18 | "resolveJsonModule": true,
19 | "isolatedModules": true,
20 | "jsx": "preserve"
21 | },
22 | "include": [
23 | "next-env.d.ts",
24 | "**/*.ts",
25 | "**/*.tsx"
26 | ],
27 | "exclude": [
28 | "node_modules"
29 | ]
30 | }
31 |
--------------------------------------------------------------------------------
/with-mobx/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": [
5 | "dom",
6 | "dom.iterable",
7 | "esnext"
8 | ],
9 | "allowJs": true,
10 | "skipLibCheck": true,
11 | "strict": false,
12 | "forceConsistentCasingInFileNames": true,
13 | "noEmit": true,
14 | "incremental": true,
15 | "esModuleInterop": true,
16 | "module": "esnext",
17 | "moduleResolution": "node",
18 | "resolveJsonModule": true,
19 | "isolatedModules": true,
20 | "jsx": "preserve"
21 | },
22 | "include": [
23 | "next-env.d.ts",
24 | "**/*.ts",
25 | "**/*.tsx"
26 | ],
27 | "exclude": [
28 | "node_modules"
29 | ]
30 | }
31 |
--------------------------------------------------------------------------------
/with-redux/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": [
5 | "dom",
6 | "dom.iterable",
7 | "esnext"
8 | ],
9 | "allowJs": true,
10 | "skipLibCheck": true,
11 | "strict": false,
12 | "forceConsistentCasingInFileNames": true,
13 | "noEmit": true,
14 | "incremental": true,
15 | "esModuleInterop": true,
16 | "module": "esnext",
17 | "moduleResolution": "node",
18 | "resolveJsonModule": true,
19 | "isolatedModules": true,
20 | "jsx": "preserve"
21 | },
22 | "include": [
23 | "next-env.d.ts",
24 | "**/*.ts",
25 | "**/*.tsx"
26 | ],
27 | "exclude": [
28 | "node_modules"
29 | ]
30 | }
31 |
--------------------------------------------------------------------------------
/with-rxjs/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": [
5 | "dom",
6 | "dom.iterable",
7 | "esnext"
8 | ],
9 | "allowJs": true,
10 | "skipLibCheck": true,
11 | "strict": false,
12 | "forceConsistentCasingInFileNames": true,
13 | "noEmit": true,
14 | "incremental": true,
15 | "esModuleInterop": true,
16 | "module": "esnext",
17 | "moduleResolution": "node",
18 | "resolveJsonModule": true,
19 | "isolatedModules": true,
20 | "jsx": "preserve"
21 | },
22 | "include": [
23 | "next-env.d.ts",
24 | "**/*.ts",
25 | "**/*.tsx"
26 | ],
27 | "exclude": [
28 | "node_modules"
29 | ]
30 | }
31 |
--------------------------------------------------------------------------------
/with-context/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": [
5 | "dom",
6 | "dom.iterable",
7 | "esnext"
8 | ],
9 | "allowJs": true,
10 | "skipLibCheck": true,
11 | "strict": false,
12 | "forceConsistentCasingInFileNames": true,
13 | "noEmit": true,
14 | "incremental": true,
15 | "esModuleInterop": true,
16 | "module": "esnext",
17 | "moduleResolution": "node",
18 | "resolveJsonModule": true,
19 | "isolatedModules": true,
20 | "jsx": "preserve"
21 | },
22 | "include": [
23 | "next-env.d.ts",
24 | "**/*.ts",
25 | "**/*.tsx"
26 | ],
27 | "exclude": [
28 | "node_modules"
29 | ]
30 | }
31 |
--------------------------------------------------------------------------------
/with-use-state/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": [
5 | "dom",
6 | "dom.iterable",
7 | "esnext"
8 | ],
9 | "allowJs": true,
10 | "skipLibCheck": true,
11 | "strict": false,
12 | "forceConsistentCasingInFileNames": true,
13 | "noEmit": true,
14 | "incremental": true,
15 | "esModuleInterop": true,
16 | "module": "esnext",
17 | "moduleResolution": "node",
18 | "resolveJsonModule": true,
19 | "isolatedModules": true,
20 | "jsx": "preserve"
21 | },
22 | "include": [
23 | "next-env.d.ts",
24 | "**/*.ts",
25 | "**/*.tsx"
26 | ],
27 | "exclude": [
28 | "node_modules"
29 | ]
30 | }
31 |
--------------------------------------------------------------------------------
/with-zustand/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": [
5 | "dom",
6 | "dom.iterable",
7 | "esnext"
8 | ],
9 | "allowJs": true,
10 | "skipLibCheck": true,
11 | "strict": false,
12 | "forceConsistentCasingInFileNames": true,
13 | "noEmit": true,
14 | "incremental": true,
15 | "esModuleInterop": true,
16 | "module": "esnext",
17 | "moduleResolution": "node",
18 | "resolveJsonModule": true,
19 | "isolatedModules": true,
20 | "jsx": "preserve"
21 | },
22 | "include": [
23 | "next-env.d.ts",
24 | "**/*.ts",
25 | "**/*.tsx"
26 | ],
27 | "exclude": [
28 | "node_modules"
29 | ]
30 | }
31 |
--------------------------------------------------------------------------------
/with-react-query/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": [
5 | "dom",
6 | "dom.iterable",
7 | "esnext"
8 | ],
9 | "allowJs": true,
10 | "skipLibCheck": true,
11 | "strict": false,
12 | "forceConsistentCasingInFileNames": true,
13 | "noEmit": true,
14 | "incremental": true,
15 | "esModuleInterop": true,
16 | "module": "esnext",
17 | "moduleResolution": "node",
18 | "resolveJsonModule": true,
19 | "isolatedModules": true,
20 | "jsx": "preserve"
21 | },
22 | "include": [
23 | "next-env.d.ts",
24 | "**/*.ts",
25 | "**/*.tsx"
26 | ],
27 | "exclude": [
28 | "node_modules"
29 | ]
30 | }
31 |
--------------------------------------------------------------------------------
/with-react-query-simple/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": [
5 | "dom",
6 | "dom.iterable",
7 | "esnext"
8 | ],
9 | "allowJs": true,
10 | "skipLibCheck": true,
11 | "strict": false,
12 | "forceConsistentCasingInFileNames": true,
13 | "noEmit": true,
14 | "incremental": true,
15 | "esModuleInterop": true,
16 | "module": "esnext",
17 | "moduleResolution": "node",
18 | "resolveJsonModule": true,
19 | "isolatedModules": true,
20 | "jsx": "preserve"
21 | },
22 | "include": [
23 | "next-env.d.ts",
24 | "**/*.ts",
25 | "**/*.tsx"
26 | ],
27 | "exclude": [
28 | "node_modules"
29 | ]
30 | }
31 |
--------------------------------------------------------------------------------
/with-mobx/src/store.ts:
--------------------------------------------------------------------------------
1 | import { computed, makeObservable, observable } from "mobx";
2 |
3 | export interface Pokemon {
4 | id: number;
5 | name: string;
6 | image: string;
7 | }
8 |
9 | class PokemonStore {
10 | pokemon: Pokemon[] = [];
11 | filter: string = "";
12 |
13 | constructor() {
14 | makeObservable(this, {
15 | pokemon: observable,
16 | filter: observable,
17 | filteredPokemon: computed,
18 | });
19 | }
20 |
21 | setPokemon(pokemon: Pokemon[]) {
22 | this.pokemon = pokemon;
23 | }
24 |
25 | get filteredPokemon() {
26 | return this.pokemon.filter(({ name }) =>
27 | name.toLowerCase().includes(this.filter.toLowerCase())
28 | );
29 | }
30 | }
31 |
32 | const store = new PokemonStore();
33 |
34 | export default store;
35 |
--------------------------------------------------------------------------------
/with-context/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/with-jotai/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/with-mobx/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/with-redux/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/with-rxjs/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/with-zustand/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/with-react-query/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/with-use-state/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/with-react-query-simple/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/with-context/pages/index.tsx:
--------------------------------------------------------------------------------
1 | import Head from "next/head";
2 | import styles from "../styles/Home.module.css";
3 |
4 | import { usePokemon } from "../src/store";
5 | export { getServerSideProps } from "../src/store";
6 |
7 | export default function Home() {
8 | const { pokemon, filter, setFilter } = usePokemon();
9 |
10 | return (
11 |
12 |
13 |
Pokemon
14 |
15 |
16 |
17 |
18 | setFilter(e.target.value)}
22 | className={styles.search}
23 | />
24 |
25 |
26 | {pokemon.slice(0, 20).map((p) => (
27 |
28 |
32 |
{p.name}
33 |
34 | ))}
35 |
36 |
37 | );
38 | }
39 |
--------------------------------------------------------------------------------
/with-context/src/store.tsx:
--------------------------------------------------------------------------------
1 | import { useState, useMemo, createContext, useContext } from "react";
2 |
3 | interface Pokemon {
4 | id: number;
5 | name: string;
6 | image: string;
7 | }
8 |
9 | export async function getServerSideProps() {
10 | const resp = await fetch(
11 | "https://jherr-pokemon.s3.us-west-1.amazonaws.com/index.json"
12 | );
13 | return {
14 | props: {
15 | pokemon: await resp.json(),
16 | },
17 | };
18 | }
19 |
20 | const usePokemonController = (pokemon: Pokemon[]) => {
21 | const [filter, setFilter] = useState("");
22 |
23 | const filteredPokemon = useMemo(
24 | () =>
25 | pokemon.filter((p) =>
26 | p.name.toLowerCase().includes(filter.toLowerCase())
27 | ),
28 | [filter, pokemon]
29 | );
30 |
31 | return {
32 | filter,
33 | setFilter,
34 | pokemon: filteredPokemon,
35 | };
36 | };
37 |
38 | const PokemonContext = createContext>({
39 | filter: "",
40 | setFilter: () => {},
41 | pokemon: [],
42 | });
43 |
44 | export const PokemonProvider = ({ pokemon, children }) => (
45 |
46 | {children}
47 |
48 | );
49 |
50 | export const usePokemon = () => useContext(PokemonContext);
51 |
--------------------------------------------------------------------------------
/with-jotai/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 |
--------------------------------------------------------------------------------
/with-mobx/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 |
--------------------------------------------------------------------------------
/with-redux/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 |
--------------------------------------------------------------------------------
/with-rxjs/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 |
--------------------------------------------------------------------------------
/with-context/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 |
--------------------------------------------------------------------------------
/with-react-query/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 |
--------------------------------------------------------------------------------
/with-use-state/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 |
--------------------------------------------------------------------------------
/with-zustand/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 |
--------------------------------------------------------------------------------
/with-react-query-simple/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 |
--------------------------------------------------------------------------------
/with-mobx/pages/index.tsx:
--------------------------------------------------------------------------------
1 | /* eslint-disable @next/next/no-img-element */
2 | import { useEffect } from "react";
3 | import Head from "next/head";
4 | import styles from "../styles/Home.module.css";
5 | import store, { type Pokemon } from "../src/store";
6 | import { observer } from "mobx-react-lite";
7 |
8 | export async function getServerSideProps() {
9 | const resp = await fetch(
10 | "https://jherr-pokemon.s3.us-west-1.amazonaws.com/index.json"
11 | );
12 |
13 | store.pokemon = await resp.json();
14 |
15 | return {
16 | props: {
17 | initialPokemon: store.pokemon,
18 | },
19 | };
20 | }
21 |
22 | function Home({ initialPokemon }: { initialPokemon: Pokemon[] }) {
23 | useEffect(() => {
24 | store.pokemon = initialPokemon;
25 | }, [initialPokemon]);
26 |
27 | return (
28 |
29 |
30 |
Pokemon
31 |
32 |
33 |
34 |
35 | (store.filter = e.target.value)}
39 | className={styles.search}
40 | />
41 |
42 |
43 | {store.filteredPokemon.slice(0, 20).map((p) => (
44 |
45 |
49 |
{p.name}
50 |
51 | ))}
52 |
53 |
54 | );
55 | }
56 |
57 | export default observer(Home);
58 |
--------------------------------------------------------------------------------
/with-use-state/pages/index.tsx:
--------------------------------------------------------------------------------
1 | import { useState, useMemo } from "react";
2 | import Head from "next/head";
3 | import styles from "../styles/Home.module.css";
4 |
5 | interface Pokemon {
6 | id: number;
7 | name: string;
8 | image: string;
9 | }
10 |
11 | export async function getServerSideProps() {
12 | const resp = await fetch(
13 | "https://jherr-pokemon.s3.us-west-1.amazonaws.com/index.json"
14 | );
15 | return {
16 | props: {
17 | pokemon: await resp.json(),
18 | },
19 | };
20 | }
21 |
22 | export default function Home({ pokemon }: { pokemon: Pokemon[] }) {
23 | const [filter, setFilter] = useState("");
24 |
25 | const filteredPokemon = useMemo(
26 | () =>
27 | pokemon.filter((p) =>
28 | p.name.toLowerCase().includes(filter.toLowerCase())
29 | ),
30 | [filter, pokemon]
31 | );
32 |
33 | return (
34 |
35 |
36 |
Pokemon
37 |
38 |
39 |
40 |
41 | setFilter(e.target.value)}
45 | className={styles.search}
46 | />
47 |
48 |
49 | {filteredPokemon.slice(0, 20).map((p) => (
50 |
51 |
55 |
{p.name}
56 |
57 | ))}
58 |
59 |
60 | );
61 | }
62 |
--------------------------------------------------------------------------------
/with-redux/pages/index.tsx:
--------------------------------------------------------------------------------
1 | /* eslint-disable @next/next/no-img-element */
2 | import Head from "next/head";
3 | import { useEffect } from "react";
4 | import { useDispatch, useSelector } from "react-redux";
5 | import getStore, {
6 | getPokemon,
7 | selectFilteredPokemon,
8 | selectSearch,
9 | rehydrate,
10 | setSearch,
11 | } from "../src/store";
12 |
13 | import styles from "../styles/Home.module.css";
14 |
15 | function Home() {
16 | const dispatch = useDispatch();
17 |
18 | const pokemon = useSelector(selectFilteredPokemon);
19 | const search = useSelector(selectSearch);
20 |
21 | return (
22 |
23 |
24 |
Pokemon
25 |
26 |
27 |
28 |
29 | {
33 | dispatch(setSearch(e.target.value));
34 | }}
35 | className={styles.search}
36 | />
37 |
38 |
39 | {pokemon.slice(0, 20).map((p) => (
40 |
41 |
45 |
{p.name}
46 |
47 | ))}
48 |
49 |
50 | );
51 | }
52 |
53 | export async function getServerSideProps() {
54 | const store = getStore();
55 | await store.dispatch(getPokemon());
56 | return {
57 | props: {
58 | initialState: store.getState(),
59 | },
60 | };
61 | }
62 |
63 | export default Home;
64 |
--------------------------------------------------------------------------------
/with-jotai/pages/index.tsx:
--------------------------------------------------------------------------------
1 | import { useState, useMemo } from "react";
2 | import Head from "next/head";
3 | import { atom, useAtom } from "jotai";
4 | import { useHydrateAtoms } from "jotai/utils";
5 |
6 | import styles from "../styles/Home.module.css";
7 |
8 | interface Pokemon {
9 | id: number;
10 | name: string;
11 | image: string;
12 | }
13 |
14 | const pokemonAtom = atom([]);
15 | const filterAtom = atom("");
16 | const filteredPokemon = atom((get) =>
17 | get(pokemonAtom).filter((pokemon) =>
18 | pokemon.name.toLowerCase().includes(get(filterAtom).toLowerCase())
19 | )
20 | );
21 |
22 | export async function getServerSideProps() {
23 | const resp = await fetch(
24 | "https://jherr-pokemon.s3.us-west-1.amazonaws.com/index.json"
25 | );
26 | return {
27 | props: {
28 | initialPokemon: await resp.json(),
29 | },
30 | };
31 | }
32 |
33 | export default function Home({
34 | initialPokemon,
35 | }: {
36 | initialPokemon: Pokemon[];
37 | }) {
38 | useHydrateAtoms([[pokemonAtom, initialPokemon]] as const);
39 |
40 | const [pokemon] = useAtom(filteredPokemon);
41 | const [filter, setFilter] = useAtom(filterAtom);
42 |
43 | return (
44 |
45 |
46 |
Pokemon
47 |
48 |
49 |
50 |
51 | setFilter(e.target.value)}
55 | className={styles.search}
56 | />
57 |
58 |
59 | {pokemon.slice(0, 20).map((p) => (
60 |
61 |
65 |
{p.name}
66 |
67 | ))}
68 |
69 |
70 | );
71 | }
72 |
--------------------------------------------------------------------------------
/with-react-query-simple/pages/index.tsx:
--------------------------------------------------------------------------------
1 | import { useState, useMemo } from "react";
2 | import Head from "next/head";
3 | import { useQuery } from "react-query";
4 |
5 | import styles from "../styles/Home.module.css";
6 |
7 | interface Pokemon {
8 | id: number;
9 | name: string;
10 | image: string;
11 | }
12 |
13 | const getPokemon = (): Promise =>
14 | fetch("https://jherr-pokemon.s3.us-west-1.amazonaws.com/index.json").then(
15 | (resp) => resp.json()
16 | );
17 |
18 | export async function getServerSideProps() {
19 | return {
20 | props: {
21 | initialPokemon: await getPokemon(),
22 | },
23 | };
24 | }
25 |
26 | export default function Home({
27 | initialPokemon,
28 | }: {
29 | initialPokemon: Pokemon[];
30 | }) {
31 | const { data: pokemon } = useQuery("pokemon", getPokemon, {
32 | initialData: initialPokemon,
33 | refetchOnMount: false,
34 | refetchOnWindowFocus: false,
35 | });
36 |
37 | const [filter, setFilter] = useState("");
38 |
39 | const filteredPokemon = useMemo(
40 | () =>
41 | pokemon.filter((p) =>
42 | p.name.toLowerCase().includes(filter.toLowerCase())
43 | ),
44 | [filter, pokemon]
45 | );
46 |
47 | return (
48 |
49 |
50 |
Pokemon
51 |
52 |
53 |
54 |
55 | setFilter(e.target.value)}
59 | className={styles.search}
60 | />
61 |
62 |
63 | {filteredPokemon.slice(0, 20).map((p) => (
64 |
65 |
69 |
{p.name}
70 |
71 | ))}
72 |
73 |
74 | );
75 | }
76 |
--------------------------------------------------------------------------------
/with-react-query/pages/index.tsx:
--------------------------------------------------------------------------------
1 | import { useState, useMemo } from "react";
2 | import Head from "next/head";
3 | import { dehydrate, useQuery, QueryClient } from "react-query";
4 |
5 | import styles from "../styles/Home.module.css";
6 |
7 | interface Pokemon {
8 | id: number;
9 | name: string;
10 | image: string;
11 | }
12 |
13 | const getPokemon = (): Promise =>
14 | fetch("https://jherr-pokemon.s3.us-west-1.amazonaws.com/index.json").then(
15 | (resp) => resp.json()
16 | );
17 |
18 | export async function getServerSideProps() {
19 | const queryClient = new QueryClient();
20 |
21 | await queryClient.prefetchQuery("pokemon", getPokemon);
22 |
23 | return {
24 | props: {
25 | dehydratedState: dehydrate(queryClient),
26 | },
27 | };
28 | }
29 |
30 | export default function Home() {
31 | const { data: pokemon } = useQuery("pokemon", getPokemon, {
32 | refetchOnMount: false,
33 | refetchOnWindowFocus: false,
34 | });
35 |
36 | const [filter, setFilter] = useState("");
37 |
38 | const filteredPokemon = useMemo(
39 | () =>
40 | pokemon.filter((p) =>
41 | p.name.toLowerCase().includes(filter.toLowerCase())
42 | ),
43 | [filter, pokemon]
44 | );
45 |
46 | return (
47 |
48 |
49 |
Pokemon
50 |
51 |
52 |
53 |
54 | setFilter(e.target.value)}
58 | className={styles.search}
59 | />
60 |
61 |
62 | {filteredPokemon.slice(0, 20).map((p) => (
63 |
64 |
68 |
{p.name}
69 |
70 | ))}
71 |
72 |
73 | );
74 | }
75 |
--------------------------------------------------------------------------------
/with-rxjs/pages/index.tsx:
--------------------------------------------------------------------------------
1 | /* eslint-disable @next/next/no-img-element */
2 | import { useMemo, useEffect } from "react";
3 | import Head from "next/head";
4 | import { BehaviorSubject } from "rxjs";
5 | import { useObservableState } from "observable-hooks";
6 |
7 | import styles from "../styles/Home.module.css";
8 |
9 | interface Pokemon {
10 | id: number;
11 | name: string;
12 | image: string;
13 | }
14 |
15 | const pokemon$ = new BehaviorSubject([]);
16 | const filter$ = new BehaviorSubject("");
17 |
18 | export async function getServerSideProps() {
19 | const resp = await fetch(
20 | "https://jherr-pokemon.s3.us-west-1.amazonaws.com/index.json"
21 | );
22 | pokemon$.next(await resp.json());
23 | return {
24 | props: {
25 | initialPokemon: pokemon$.value,
26 | },
27 | };
28 | }
29 |
30 | export default function Home({ initialPokemon }) {
31 | useEffect(() => {
32 | pokemon$.next(initialPokemon);
33 | }, [initialPokemon]);
34 |
35 | const pokemon = useObservableState(pokemon$);
36 | const filter = useObservableState(filter$);
37 |
38 | const filteredPokemon = useMemo(
39 | () =>
40 | pokemon.filter((p) =>
41 | p.name.toLowerCase().includes(filter.toLowerCase())
42 | ),
43 | [filter, pokemon]
44 | );
45 |
46 | return (
47 |
48 |
49 |
Pokemon
50 |
51 |
52 |
53 |
54 | filter$.next(e.target.value)}
58 | className={styles.search}
59 | />
60 |
61 |
62 | {filteredPokemon.slice(0, 20).map((p) => (
63 |
64 |
68 |
{p.name}
69 |
70 | ))}
71 |
72 |
73 | );
74 | }
75 |
--------------------------------------------------------------------------------
/with-zustand/pages/index.tsx:
--------------------------------------------------------------------------------
1 | import { useEffect } from "react";
2 | import Head from "next/head";
3 | import create from "zustand";
4 |
5 | import styles from "../styles/Home.module.css";
6 |
7 | interface Pokemon {
8 | id: number;
9 | name: string;
10 | image: string;
11 | }
12 |
13 | const usePokemonStore = create<{
14 | pokemon: Pokemon[];
15 | setPokemon: (pokemon: Pokemon[]) => void;
16 | filteredPokemon: Pokemon[];
17 | filter: string;
18 | setFilter: (filter: string) => void;
19 | }>((set) => ({
20 | pokemon: [],
21 | filteredPokemon: [],
22 | filter: "",
23 |
24 | setPokemon: (pokemon: Pokemon[]) =>
25 | set({ pokemon, filteredPokemon: pokemon }),
26 | setFilter: (filter: string) =>
27 | set((state) => ({
28 | filter,
29 | filteredPokemon: state.pokemon.filter((pokemon) =>
30 | pokemon.name.toLowerCase().includes(filter.toLowerCase())
31 | ),
32 | })),
33 | }));
34 |
35 | export async function getServerSideProps() {
36 | const resp = await fetch(
37 | "https://jherr-pokemon.s3.us-west-1.amazonaws.com/index.json"
38 | );
39 |
40 | usePokemonStore.getState().setPokemon(await resp.json());
41 |
42 | return {
43 | props: {
44 | pokemon: usePokemonStore.getState().pokemon,
45 | },
46 | };
47 | }
48 |
49 | export default function Home({ pokemon }: { pokemon: Pokemon[] }) {
50 | const { filter, filteredPokemon, setFilter } = usePokemonStore();
51 |
52 | useEffect(() => {
53 | usePokemonStore.getState().setPokemon(pokemon);
54 | }, [pokemon]);
55 |
56 | return (
57 |
58 |
59 |
Pokemon
60 |
61 |
62 |
63 |
64 | setFilter(e.target.value)}
68 | className={styles.search}
69 | />
70 |
71 |
72 | {filteredPokemon.slice(0, 20).map((p) => (
73 |
74 |
78 |
{p.name}
79 |
80 | ))}
81 |
82 |
83 | );
84 | }
85 |
--------------------------------------------------------------------------------
/with-redux/src/store.ts:
--------------------------------------------------------------------------------
1 | import { createAsyncThunk, createSlice } from "@reduxjs/toolkit";
2 | import {
3 | Action,
4 | PayloadAction,
5 | configureStore,
6 | ThunkAction,
7 | } from "@reduxjs/toolkit";
8 |
9 | interface Pokemon {
10 | id: number;
11 | name: string;
12 | image: string;
13 | }
14 |
15 | export type PokemonState = {
16 | pokemon: Pokemon[];
17 | search: string;
18 | filteredPokemon: Pokemon[];
19 | pending: boolean;
20 | error: boolean;
21 | };
22 |
23 | const initialState: PokemonState = {
24 | pokemon: [],
25 | filteredPokemon: [],
26 | search: "",
27 | pending: false,
28 | error: false,
29 | };
30 |
31 | export const getPokemon = createAsyncThunk("pokemon/getPokemon", async () => {
32 | const response = await await fetch(
33 | "https://jherr-pokemon.s3.us-west-1.amazonaws.com/index.json"
34 | );
35 | return await response.json();
36 | });
37 |
38 | export const pokemonSlice = createSlice({
39 | name: "pokemon",
40 | initialState,
41 | reducers: {
42 | setSearch(state, action: PayloadAction) {
43 | state.search = action.payload;
44 | state.filteredPokemon = state.pokemon.filter(({ name }) =>
45 | name.toLowerCase().includes(state.search.toLowerCase())
46 | );
47 | },
48 | },
49 | extraReducers: (builder) => {
50 | builder
51 | .addCase(getPokemon.pending, (state) => {
52 | state.pending = true;
53 | })
54 | .addCase(getPokemon.fulfilled, (state, { payload }) => {
55 | state.pending = false;
56 | state.pokemon = payload;
57 | state.filteredPokemon = payload;
58 | })
59 | .addCase(getPokemon.rejected, (state) => {
60 | state.pending = false;
61 | state.error = true;
62 | });
63 | },
64 | });
65 |
66 | export type AppDispatch = typeof store.dispatch;
67 | export type RootState = ReturnType;
68 | export type AppThunk = ThunkAction<
69 | ReturnType,
70 | RootState,
71 | unknown,
72 | Action
73 | >;
74 |
75 | export const { setSearch } = pokemonSlice.actions;
76 |
77 | export const selectSearch = (state: RootState) => state.pokemon.search;
78 | export const selectFilteredPokemon = (state: RootState) =>
79 | state.pokemon.filteredPokemon;
80 |
81 | export let store = null;
82 |
83 | export default function getStore(incomingPreloadState?: RootState) {
84 | store = configureStore({
85 | reducer: {
86 | pokemon: pokemonSlice.reducer,
87 | },
88 | preloadedState: incomingPreloadState,
89 | });
90 | return store;
91 | }
92 |
--------------------------------------------------------------------------------
/with-context/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/runtime-corejs3@^7.10.2":
6 | version "7.17.2"
7 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.17.2.tgz#fdca2cd05fba63388babe85d349b6801b008fd13"
8 | integrity sha512-NcKtr2epxfIrNM4VOmPKO46TvDMCBhgi2CrSHaEarrz+Plk2K5r9QemmOFTGpZaoKnWoGH5MO+CzeRsih/Fcgg==
9 | dependencies:
10 | core-js-pure "^3.20.2"
11 | regenerator-runtime "^0.13.4"
12 |
13 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.16.3":
14 | version "7.17.2"
15 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.2.tgz#66f68591605e59da47523c631416b18508779941"
16 | integrity sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==
17 | dependencies:
18 | regenerator-runtime "^0.13.4"
19 |
20 | "@eslint/eslintrc@^1.2.1":
21 | version "1.2.1"
22 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.2.1.tgz#8b5e1c49f4077235516bc9ec7d41378c0f69b8c6"
23 | integrity sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==
24 | dependencies:
25 | ajv "^6.12.4"
26 | debug "^4.3.2"
27 | espree "^9.3.1"
28 | globals "^13.9.0"
29 | ignore "^5.2.0"
30 | import-fresh "^3.2.1"
31 | js-yaml "^4.1.0"
32 | minimatch "^3.0.4"
33 | strip-json-comments "^3.1.1"
34 |
35 | "@humanwhocodes/config-array@^0.9.2":
36 | version "0.9.5"
37 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7"
38 | integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==
39 | dependencies:
40 | "@humanwhocodes/object-schema" "^1.2.1"
41 | debug "^4.1.1"
42 | minimatch "^3.0.4"
43 |
44 | "@humanwhocodes/object-schema@^1.2.1":
45 | version "1.2.1"
46 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
47 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
48 |
49 | "@next/env@12.1.0":
50 | version "12.1.0"
51 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.0.tgz#73713399399b34aa5a01771fb73272b55b22c314"
52 | integrity sha512-nrIgY6t17FQ9xxwH3jj0a6EOiQ/WDHUos35Hghtr+SWN/ntHIQ7UpuvSi0vaLzZVHQWaDupKI+liO5vANcDeTQ==
53 |
54 | "@next/eslint-plugin-next@12.1.0":
55 | version "12.1.0"
56 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.1.0.tgz#32586a11378b3ffa5a93ac40a3c44ad99d70e95a"
57 | integrity sha512-WFiyvSM2G5cQmh32t/SiQuJ+I2O+FHVlK/RFw5b1565O2kEM/36EXncjt88Pa+X5oSc+1SS+tWxowWJd1lqI+g==
58 | dependencies:
59 | glob "7.1.7"
60 |
61 | "@next/swc-android-arm64@12.1.0":
62 | version "12.1.0"
63 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.1.0.tgz#865ba3a9afc204ff2bdeea49dd64d58705007a39"
64 | integrity sha512-/280MLdZe0W03stA69iL+v6I+J1ascrQ6FrXBlXGCsGzrfMaGr7fskMa0T5AhQIVQD4nA/46QQWxG//DYuFBcA==
65 |
66 | "@next/swc-darwin-arm64@12.1.0":
67 | version "12.1.0"
68 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.0.tgz#08e8b411b8accd095009ed12efbc2f1d4d547135"
69 | integrity sha512-R8vcXE2/iONJ1Unf5Ptqjk6LRW3bggH+8drNkkzH4FLEQkHtELhvcmJwkXcuipyQCsIakldAXhRbZmm3YN1vXg==
70 |
71 | "@next/swc-darwin-x64@12.1.0":
72 | version "12.1.0"
73 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.1.0.tgz#fcd684497a76e8feaca88db3c394480ff0b007cd"
74 | integrity sha512-ieAz0/J0PhmbZBB8+EA/JGdhRHBogF8BWaeqR7hwveb6SYEIJaDNQy0I+ZN8gF8hLj63bEDxJAs/cEhdnTq+ug==
75 |
76 | "@next/swc-linux-arm-gnueabihf@12.1.0":
77 | version "12.1.0"
78 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.1.0.tgz#9ec6380a27938a5799aaa6035c205b3c478468a7"
79 | integrity sha512-njUd9hpl6o6A5d08dC0cKAgXKCzm5fFtgGe6i0eko8IAdtAPbtHxtpre3VeSxdZvuGFh+hb0REySQP9T1ttkog==
80 |
81 | "@next/swc-linux-arm64-gnu@12.1.0":
82 | version "12.1.0"
83 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.1.0.tgz#7f4196dff1049cea479607c75b81033ae2dbd093"
84 | integrity sha512-OqangJLkRxVxMhDtcb7Qn1xjzFA3s50EIxY7mljbSCLybU+sByPaWAHY4px97ieOlr2y4S0xdPKkQ3BCAwyo6Q==
85 |
86 | "@next/swc-linux-arm64-musl@12.1.0":
87 | version "12.1.0"
88 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.1.0.tgz#b445f767569cdc2dddee785ca495e1a88c025566"
89 | integrity sha512-hB8cLSt4GdmOpcwRe2UzI5UWn6HHO/vLkr5OTuNvCJ5xGDwpPXelVkYW/0+C3g5axbDW2Tym4S+MQCkkH9QfWA==
90 |
91 | "@next/swc-linux-x64-gnu@12.1.0":
92 | version "12.1.0"
93 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.1.0.tgz#67610e9be4fbc987de7535f1bcb17e45fe12f90e"
94 | integrity sha512-OKO4R/digvrVuweSw/uBM4nSdyzsBV5EwkUeeG4KVpkIZEe64ZwRpnFB65bC6hGwxIBnTv5NMSnJ+0K/WmG78A==
95 |
96 | "@next/swc-linux-x64-musl@12.1.0":
97 | version "12.1.0"
98 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.1.0.tgz#ea19a23db08a9f2e34ac30401f774cf7d1669d31"
99 | integrity sha512-JohhgAHZvOD3rQY7tlp7NlmvtvYHBYgY0x5ZCecUT6eCCcl9lv6iV3nfu82ErkxNk1H893fqH0FUpznZ/H3pSw==
100 |
101 | "@next/swc-win32-arm64-msvc@12.1.0":
102 | version "12.1.0"
103 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.1.0.tgz#eadf054fc412085659b98e145435bbba200b5283"
104 | integrity sha512-T/3gIE6QEfKIJ4dmJk75v9hhNiYZhQYAoYm4iVo1TgcsuaKLFa+zMPh4056AHiG6n9tn2UQ1CFE8EoybEsqsSw==
105 |
106 | "@next/swc-win32-ia32-msvc@12.1.0":
107 | version "12.1.0"
108 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.1.0.tgz#68faeae10c89f698bf9d28759172b74c9c21bda1"
109 | integrity sha512-iwnKgHJdqhIW19H9PRPM9j55V6RdcOo6rX+5imx832BCWzkDbyomWnlzBfr6ByUYfhohb8QuH4hSGEikpPqI0Q==
110 |
111 | "@next/swc-win32-x64-msvc@12.1.0":
112 | version "12.1.0"
113 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.0.tgz#d27e7e76c87a460a4da99c5bfdb1618dcd6cd064"
114 | integrity sha512-aBvcbMwuanDH4EMrL2TthNJy+4nP59Bimn8egqv6GHMVj0a44cU6Au4PjOhLNqEh9l+IpRGBqMTzec94UdC5xg==
115 |
116 | "@nodelib/fs.scandir@2.1.5":
117 | version "2.1.5"
118 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
119 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
120 | dependencies:
121 | "@nodelib/fs.stat" "2.0.5"
122 | run-parallel "^1.1.9"
123 |
124 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
125 | version "2.0.5"
126 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
127 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
128 |
129 | "@nodelib/fs.walk@^1.2.3":
130 | version "1.2.8"
131 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
132 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
133 | dependencies:
134 | "@nodelib/fs.scandir" "2.1.5"
135 | fastq "^1.6.0"
136 |
137 | "@rushstack/eslint-patch@^1.0.8":
138 | version "1.1.0"
139 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.1.0.tgz#7f698254aadf921e48dda8c0a6b304026b8a9323"
140 | integrity sha512-JLo+Y592QzIE+q7Dl2pMUtt4q8SKYI5jDrZxrozEQxnGVOyYE+GWK9eLkwTaeN9DDctlaRAQ3TBmzZ1qdLE30A==
141 |
142 | "@types/json5@^0.0.29":
143 | version "0.0.29"
144 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
145 | integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
146 |
147 | "@types/node@^17.0.21":
148 | version "17.0.21"
149 | resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.21.tgz#864b987c0c68d07b4345845c3e63b75edd143644"
150 | integrity sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==
151 |
152 | "@types/prop-types@*":
153 | version "15.7.4"
154 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11"
155 | integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==
156 |
157 | "@types/react@^17.0.40":
158 | version "17.0.40"
159 | resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.40.tgz#dc010cee6254d5239a138083f3799a16638e6bad"
160 | integrity sha512-UrXhD/JyLH+W70nNSufXqMZNuUD2cXHu6UjCllC6pmOQgBX4SGXOH8fjRka0O0Ee0HrFxapDD8Bwn81Kmiz6jQ==
161 | dependencies:
162 | "@types/prop-types" "*"
163 | "@types/scheduler" "*"
164 | csstype "^3.0.2"
165 |
166 | "@types/scheduler@*":
167 | version "0.16.2"
168 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
169 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
170 |
171 | "@typescript-eslint/parser@^5.0.0":
172 | version "5.14.0"
173 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.14.0.tgz#7c79f898aa3cff0ceee6f1d34eeed0f034fb9ef3"
174 | integrity sha512-aHJN8/FuIy1Zvqk4U/gcO/fxeMKyoSv/rS46UXMXOJKVsLQ+iYPuXNbpbH7cBLcpSbmyyFbwrniLx5+kutu1pw==
175 | dependencies:
176 | "@typescript-eslint/scope-manager" "5.14.0"
177 | "@typescript-eslint/types" "5.14.0"
178 | "@typescript-eslint/typescript-estree" "5.14.0"
179 | debug "^4.3.2"
180 |
181 | "@typescript-eslint/scope-manager@5.14.0":
182 | version "5.14.0"
183 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.14.0.tgz#ea518962b42db8ed0a55152ea959c218cb53ca7b"
184 | integrity sha512-LazdcMlGnv+xUc5R4qIlqH0OWARyl2kaP8pVCS39qSL3Pd1F7mI10DbdXeARcE62sVQE4fHNvEqMWsypWO+yEw==
185 | dependencies:
186 | "@typescript-eslint/types" "5.14.0"
187 | "@typescript-eslint/visitor-keys" "5.14.0"
188 |
189 | "@typescript-eslint/types@5.14.0":
190 | version "5.14.0"
191 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.14.0.tgz#96317cf116cea4befabc0defef371a1013f8ab11"
192 | integrity sha512-BR6Y9eE9360LNnW3eEUqAg6HxS9Q35kSIs4rp4vNHRdfg0s+/PgHgskvu5DFTM7G5VKAVjuyaN476LCPrdA7Mw==
193 |
194 | "@typescript-eslint/typescript-estree@5.14.0":
195 | version "5.14.0"
196 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.14.0.tgz#78b7f7385d5b6f2748aacea5c9b7f6ae62058314"
197 | integrity sha512-QGnxvROrCVtLQ1724GLTHBTR0lZVu13izOp9njRvMkCBgWX26PKvmMP8k82nmXBRD3DQcFFq2oj3cKDwr0FaUA==
198 | dependencies:
199 | "@typescript-eslint/types" "5.14.0"
200 | "@typescript-eslint/visitor-keys" "5.14.0"
201 | debug "^4.3.2"
202 | globby "^11.0.4"
203 | is-glob "^4.0.3"
204 | semver "^7.3.5"
205 | tsutils "^3.21.0"
206 |
207 | "@typescript-eslint/visitor-keys@5.14.0":
208 | version "5.14.0"
209 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.14.0.tgz#1927005b3434ccd0d3ae1b2ecf60e65943c36986"
210 | integrity sha512-yL0XxfzR94UEkjBqyymMLgCBdojzEuy/eim7N9/RIcTNxpJudAcqsU8eRyfzBbcEzGoPWfdM3AGak3cN08WOIw==
211 | dependencies:
212 | "@typescript-eslint/types" "5.14.0"
213 | eslint-visitor-keys "^3.0.0"
214 |
215 | acorn-jsx@^5.3.1:
216 | version "5.3.2"
217 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
218 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
219 |
220 | acorn@^8.7.0:
221 | version "8.7.0"
222 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf"
223 | integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==
224 |
225 | ajv@^6.10.0, ajv@^6.12.4:
226 | version "6.12.6"
227 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
228 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
229 | dependencies:
230 | fast-deep-equal "^3.1.1"
231 | fast-json-stable-stringify "^2.0.0"
232 | json-schema-traverse "^0.4.1"
233 | uri-js "^4.2.2"
234 |
235 | ansi-regex@^5.0.1:
236 | version "5.0.1"
237 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
238 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
239 |
240 | ansi-styles@^4.1.0:
241 | version "4.3.0"
242 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
243 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
244 | dependencies:
245 | color-convert "^2.0.1"
246 |
247 | argparse@^2.0.1:
248 | version "2.0.1"
249 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
250 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
251 |
252 | aria-query@^4.2.2:
253 | version "4.2.2"
254 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
255 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
256 | dependencies:
257 | "@babel/runtime" "^7.10.2"
258 | "@babel/runtime-corejs3" "^7.10.2"
259 |
260 | array-includes@^3.1.3, array-includes@^3.1.4:
261 | version "3.1.4"
262 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz#f5b493162c760f3539631f005ba2bb46acb45ba9"
263 | integrity sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==
264 | dependencies:
265 | call-bind "^1.0.2"
266 | define-properties "^1.1.3"
267 | es-abstract "^1.19.1"
268 | get-intrinsic "^1.1.1"
269 | is-string "^1.0.7"
270 |
271 | array-union@^2.1.0:
272 | version "2.1.0"
273 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
274 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
275 |
276 | array.prototype.flat@^1.2.5:
277 | version "1.2.5"
278 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz#07e0975d84bbc7c48cd1879d609e682598d33e13"
279 | integrity sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==
280 | dependencies:
281 | call-bind "^1.0.2"
282 | define-properties "^1.1.3"
283 | es-abstract "^1.19.0"
284 |
285 | array.prototype.flatmap@^1.2.5:
286 | version "1.2.5"
287 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz#908dc82d8a406930fdf38598d51e7411d18d4446"
288 | integrity sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==
289 | dependencies:
290 | call-bind "^1.0.0"
291 | define-properties "^1.1.3"
292 | es-abstract "^1.19.0"
293 |
294 | ast-types-flow@^0.0.7:
295 | version "0.0.7"
296 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
297 | integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
298 |
299 | axe-core@^4.3.5:
300 | version "4.4.1"
301 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.1.tgz#7dbdc25989298f9ad006645cd396782443757413"
302 | integrity sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw==
303 |
304 | axobject-query@^2.2.0:
305 | version "2.2.0"
306 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
307 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
308 |
309 | balanced-match@^1.0.0:
310 | version "1.0.2"
311 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
312 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
313 |
314 | brace-expansion@^1.1.7:
315 | version "1.1.11"
316 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
317 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
318 | dependencies:
319 | balanced-match "^1.0.0"
320 | concat-map "0.0.1"
321 |
322 | braces@^3.0.1:
323 | version "3.0.2"
324 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
325 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
326 | dependencies:
327 | fill-range "^7.0.1"
328 |
329 | call-bind@^1.0.0, call-bind@^1.0.2:
330 | version "1.0.2"
331 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
332 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
333 | dependencies:
334 | function-bind "^1.1.1"
335 | get-intrinsic "^1.0.2"
336 |
337 | callsites@^3.0.0:
338 | version "3.1.0"
339 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
340 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
341 |
342 | caniuse-lite@^1.0.30001283:
343 | version "1.0.30001314"
344 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001314.tgz#65c7f9fb7e4594fca0a333bec1d8939662377596"
345 | integrity sha512-0zaSO+TnCHtHJIbpLroX7nsD+vYuOVjl3uzFbJO1wMVbuveJA0RK2WcQA9ZUIOiO0/ArMiMgHJLxfEZhQiC0kw==
346 |
347 | chalk@^4.0.0:
348 | version "4.1.2"
349 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
350 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
351 | dependencies:
352 | ansi-styles "^4.1.0"
353 | supports-color "^7.1.0"
354 |
355 | color-convert@^2.0.1:
356 | version "2.0.1"
357 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
358 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
359 | dependencies:
360 | color-name "~1.1.4"
361 |
362 | color-name@~1.1.4:
363 | version "1.1.4"
364 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
365 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
366 |
367 | concat-map@0.0.1:
368 | version "0.0.1"
369 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
370 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
371 |
372 | core-js-pure@^3.20.2:
373 | version "3.21.1"
374 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.21.1.tgz#8c4d1e78839f5f46208de7230cebfb72bc3bdb51"
375 | integrity sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==
376 |
377 | cross-spawn@^7.0.2:
378 | version "7.0.3"
379 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
380 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
381 | dependencies:
382 | path-key "^3.1.0"
383 | shebang-command "^2.0.0"
384 | which "^2.0.1"
385 |
386 | csstype@^3.0.2:
387 | version "3.0.11"
388 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.11.tgz#d66700c5eacfac1940deb4e3ee5642792d85cd33"
389 | integrity sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==
390 |
391 | damerau-levenshtein@^1.0.7:
392 | version "1.0.8"
393 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7"
394 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==
395 |
396 | debug@^2.6.9:
397 | version "2.6.9"
398 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
399 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
400 | dependencies:
401 | ms "2.0.0"
402 |
403 | debug@^3.2.7:
404 | version "3.2.7"
405 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
406 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
407 | dependencies:
408 | ms "^2.1.1"
409 |
410 | debug@^4.1.1, debug@^4.3.1, debug@^4.3.2:
411 | version "4.3.3"
412 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664"
413 | integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
414 | dependencies:
415 | ms "2.1.2"
416 |
417 | deep-is@^0.1.3:
418 | version "0.1.4"
419 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
420 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
421 |
422 | define-properties@^1.1.3:
423 | version "1.1.3"
424 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
425 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
426 | dependencies:
427 | object-keys "^1.0.12"
428 |
429 | dir-glob@^3.0.1:
430 | version "3.0.1"
431 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
432 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
433 | dependencies:
434 | path-type "^4.0.0"
435 |
436 | doctrine@^2.1.0:
437 | version "2.1.0"
438 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
439 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
440 | dependencies:
441 | esutils "^2.0.2"
442 |
443 | doctrine@^3.0.0:
444 | version "3.0.0"
445 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
446 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
447 | dependencies:
448 | esutils "^2.0.2"
449 |
450 | emoji-regex@^9.2.2:
451 | version "9.2.2"
452 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
453 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
454 |
455 | es-abstract@^1.19.0, es-abstract@^1.19.1:
456 | version "1.19.1"
457 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz#d4885796876916959de78edaa0df456627115ec3"
458 | integrity sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==
459 | dependencies:
460 | call-bind "^1.0.2"
461 | es-to-primitive "^1.2.1"
462 | function-bind "^1.1.1"
463 | get-intrinsic "^1.1.1"
464 | get-symbol-description "^1.0.0"
465 | has "^1.0.3"
466 | has-symbols "^1.0.2"
467 | internal-slot "^1.0.3"
468 | is-callable "^1.2.4"
469 | is-negative-zero "^2.0.1"
470 | is-regex "^1.1.4"
471 | is-shared-array-buffer "^1.0.1"
472 | is-string "^1.0.7"
473 | is-weakref "^1.0.1"
474 | object-inspect "^1.11.0"
475 | object-keys "^1.1.1"
476 | object.assign "^4.1.2"
477 | string.prototype.trimend "^1.0.4"
478 | string.prototype.trimstart "^1.0.4"
479 | unbox-primitive "^1.0.1"
480 |
481 | es-to-primitive@^1.2.1:
482 | version "1.2.1"
483 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
484 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
485 | dependencies:
486 | is-callable "^1.1.4"
487 | is-date-object "^1.0.1"
488 | is-symbol "^1.0.2"
489 |
490 | escape-string-regexp@^4.0.0:
491 | version "4.0.0"
492 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
493 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
494 |
495 | eslint-config-next@12.1.0:
496 | version "12.1.0"
497 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.1.0.tgz#8ace680dc5207e6ab6c915f3989adec122f582e7"
498 | integrity sha512-tBhuUgoDITcdcM7xFvensi9I5WTI4dnvH4ETGRg1U8ZKpXrZsWQFdOKIDzR3RLP5HR3xXrLviaMM4c3zVoE/pA==
499 | dependencies:
500 | "@next/eslint-plugin-next" "12.1.0"
501 | "@rushstack/eslint-patch" "^1.0.8"
502 | "@typescript-eslint/parser" "^5.0.0"
503 | eslint-import-resolver-node "^0.3.4"
504 | eslint-import-resolver-typescript "^2.4.0"
505 | eslint-plugin-import "^2.25.2"
506 | eslint-plugin-jsx-a11y "^6.5.1"
507 | eslint-plugin-react "^7.27.0"
508 | eslint-plugin-react-hooks "^4.3.0"
509 |
510 | eslint-import-resolver-node@^0.3.4, eslint-import-resolver-node@^0.3.6:
511 | version "0.3.6"
512 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
513 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==
514 | dependencies:
515 | debug "^3.2.7"
516 | resolve "^1.20.0"
517 |
518 | eslint-import-resolver-typescript@^2.4.0:
519 | version "2.5.0"
520 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.5.0.tgz#07661966b272d14ba97f597b51e1a588f9722f0a"
521 | integrity sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ==
522 | dependencies:
523 | debug "^4.3.1"
524 | glob "^7.1.7"
525 | is-glob "^4.0.1"
526 | resolve "^1.20.0"
527 | tsconfig-paths "^3.9.0"
528 |
529 | eslint-module-utils@^2.7.2:
530 | version "2.7.3"
531 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz#ad7e3a10552fdd0642e1e55292781bd6e34876ee"
532 | integrity sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==
533 | dependencies:
534 | debug "^3.2.7"
535 | find-up "^2.1.0"
536 |
537 | eslint-plugin-import@^2.25.2:
538 | version "2.25.4"
539 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.25.4.tgz#322f3f916a4e9e991ac7af32032c25ce313209f1"
540 | integrity sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==
541 | dependencies:
542 | array-includes "^3.1.4"
543 | array.prototype.flat "^1.2.5"
544 | debug "^2.6.9"
545 | doctrine "^2.1.0"
546 | eslint-import-resolver-node "^0.3.6"
547 | eslint-module-utils "^2.7.2"
548 | has "^1.0.3"
549 | is-core-module "^2.8.0"
550 | is-glob "^4.0.3"
551 | minimatch "^3.0.4"
552 | object.values "^1.1.5"
553 | resolve "^1.20.0"
554 | tsconfig-paths "^3.12.0"
555 |
556 | eslint-plugin-jsx-a11y@^6.5.1:
557 | version "6.5.1"
558 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz#cdbf2df901040ca140b6ec14715c988889c2a6d8"
559 | integrity sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==
560 | dependencies:
561 | "@babel/runtime" "^7.16.3"
562 | aria-query "^4.2.2"
563 | array-includes "^3.1.4"
564 | ast-types-flow "^0.0.7"
565 | axe-core "^4.3.5"
566 | axobject-query "^2.2.0"
567 | damerau-levenshtein "^1.0.7"
568 | emoji-regex "^9.2.2"
569 | has "^1.0.3"
570 | jsx-ast-utils "^3.2.1"
571 | language-tags "^1.0.5"
572 | minimatch "^3.0.4"
573 |
574 | eslint-plugin-react-hooks@^4.3.0:
575 | version "4.3.0"
576 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz#318dbf312e06fab1c835a4abef00121751ac1172"
577 | integrity sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==
578 |
579 | eslint-plugin-react@^7.27.0:
580 | version "7.29.3"
581 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.29.3.tgz#f4eab757f2756d25d6d4c2a58a9e20b004791f05"
582 | integrity sha512-MzW6TuCnDOcta67CkpDyRfRsEVx9FNMDV8wZsDqe1luHPdGTrQIUaUXD27Ja3gHsdOIs/cXzNchWGlqm+qRVRg==
583 | dependencies:
584 | array-includes "^3.1.4"
585 | array.prototype.flatmap "^1.2.5"
586 | doctrine "^2.1.0"
587 | estraverse "^5.3.0"
588 | jsx-ast-utils "^2.4.1 || ^3.0.0"
589 | minimatch "^3.1.2"
590 | object.entries "^1.1.5"
591 | object.fromentries "^2.0.5"
592 | object.hasown "^1.1.0"
593 | object.values "^1.1.5"
594 | prop-types "^15.8.1"
595 | resolve "^2.0.0-next.3"
596 | semver "^6.3.0"
597 | string.prototype.matchall "^4.0.6"
598 |
599 | eslint-scope@^7.1.1:
600 | version "7.1.1"
601 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642"
602 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==
603 | dependencies:
604 | esrecurse "^4.3.0"
605 | estraverse "^5.2.0"
606 |
607 | eslint-utils@^3.0.0:
608 | version "3.0.0"
609 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
610 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
611 | dependencies:
612 | eslint-visitor-keys "^2.0.0"
613 |
614 | eslint-visitor-keys@^2.0.0:
615 | version "2.1.0"
616 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
617 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
618 |
619 | eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0:
620 | version "3.3.0"
621 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
622 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
623 |
624 | eslint@8.11.0:
625 | version "8.11.0"
626 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.11.0.tgz#88b91cfba1356fc10bb9eb592958457dfe09fb37"
627 | integrity sha512-/KRpd9mIRg2raGxHRGwW9ZywYNAClZrHjdueHcrVDuO3a6bj83eoTirCCk0M0yPwOjWYKHwRVRid+xK4F/GHgA==
628 | dependencies:
629 | "@eslint/eslintrc" "^1.2.1"
630 | "@humanwhocodes/config-array" "^0.9.2"
631 | ajv "^6.10.0"
632 | chalk "^4.0.0"
633 | cross-spawn "^7.0.2"
634 | debug "^4.3.2"
635 | doctrine "^3.0.0"
636 | escape-string-regexp "^4.0.0"
637 | eslint-scope "^7.1.1"
638 | eslint-utils "^3.0.0"
639 | eslint-visitor-keys "^3.3.0"
640 | espree "^9.3.1"
641 | esquery "^1.4.0"
642 | esutils "^2.0.2"
643 | fast-deep-equal "^3.1.3"
644 | file-entry-cache "^6.0.1"
645 | functional-red-black-tree "^1.0.1"
646 | glob-parent "^6.0.1"
647 | globals "^13.6.0"
648 | ignore "^5.2.0"
649 | import-fresh "^3.0.0"
650 | imurmurhash "^0.1.4"
651 | is-glob "^4.0.0"
652 | js-yaml "^4.1.0"
653 | json-stable-stringify-without-jsonify "^1.0.1"
654 | levn "^0.4.1"
655 | lodash.merge "^4.6.2"
656 | minimatch "^3.0.4"
657 | natural-compare "^1.4.0"
658 | optionator "^0.9.1"
659 | regexpp "^3.2.0"
660 | strip-ansi "^6.0.1"
661 | strip-json-comments "^3.1.0"
662 | text-table "^0.2.0"
663 | v8-compile-cache "^2.0.3"
664 |
665 | espree@^9.3.1:
666 | version "9.3.1"
667 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.1.tgz#8793b4bc27ea4c778c19908e0719e7b8f4115bcd"
668 | integrity sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==
669 | dependencies:
670 | acorn "^8.7.0"
671 | acorn-jsx "^5.3.1"
672 | eslint-visitor-keys "^3.3.0"
673 |
674 | esquery@^1.4.0:
675 | version "1.4.0"
676 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
677 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
678 | dependencies:
679 | estraverse "^5.1.0"
680 |
681 | esrecurse@^4.3.0:
682 | version "4.3.0"
683 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
684 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
685 | dependencies:
686 | estraverse "^5.2.0"
687 |
688 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
689 | version "5.3.0"
690 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
691 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
692 |
693 | esutils@^2.0.2:
694 | version "2.0.3"
695 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
696 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
697 |
698 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
699 | version "3.1.3"
700 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
701 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
702 |
703 | fast-glob@^3.2.9:
704 | version "3.2.11"
705 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9"
706 | integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==
707 | dependencies:
708 | "@nodelib/fs.stat" "^2.0.2"
709 | "@nodelib/fs.walk" "^1.2.3"
710 | glob-parent "^5.1.2"
711 | merge2 "^1.3.0"
712 | micromatch "^4.0.4"
713 |
714 | fast-json-stable-stringify@^2.0.0:
715 | version "2.1.0"
716 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
717 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
718 |
719 | fast-levenshtein@^2.0.6:
720 | version "2.0.6"
721 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
722 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
723 |
724 | fastq@^1.6.0:
725 | version "1.13.0"
726 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
727 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
728 | dependencies:
729 | reusify "^1.0.4"
730 |
731 | file-entry-cache@^6.0.1:
732 | version "6.0.1"
733 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
734 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
735 | dependencies:
736 | flat-cache "^3.0.4"
737 |
738 | fill-range@^7.0.1:
739 | version "7.0.1"
740 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
741 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
742 | dependencies:
743 | to-regex-range "^5.0.1"
744 |
745 | find-up@^2.1.0:
746 | version "2.1.0"
747 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
748 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
749 | dependencies:
750 | locate-path "^2.0.0"
751 |
752 | flat-cache@^3.0.4:
753 | version "3.0.4"
754 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
755 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
756 | dependencies:
757 | flatted "^3.1.0"
758 | rimraf "^3.0.2"
759 |
760 | flatted@^3.1.0:
761 | version "3.2.5"
762 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3"
763 | integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==
764 |
765 | fs.realpath@^1.0.0:
766 | version "1.0.0"
767 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
768 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
769 |
770 | function-bind@^1.1.1:
771 | version "1.1.1"
772 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
773 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
774 |
775 | functional-red-black-tree@^1.0.1:
776 | version "1.0.1"
777 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
778 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
779 |
780 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
781 | version "1.1.1"
782 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
783 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
784 | dependencies:
785 | function-bind "^1.1.1"
786 | has "^1.0.3"
787 | has-symbols "^1.0.1"
788 |
789 | get-symbol-description@^1.0.0:
790 | version "1.0.0"
791 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
792 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
793 | dependencies:
794 | call-bind "^1.0.2"
795 | get-intrinsic "^1.1.1"
796 |
797 | glob-parent@^5.1.2:
798 | version "5.1.2"
799 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
800 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
801 | dependencies:
802 | is-glob "^4.0.1"
803 |
804 | glob-parent@^6.0.1:
805 | version "6.0.2"
806 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
807 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
808 | dependencies:
809 | is-glob "^4.0.3"
810 |
811 | glob@7.1.7:
812 | version "7.1.7"
813 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
814 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
815 | dependencies:
816 | fs.realpath "^1.0.0"
817 | inflight "^1.0.4"
818 | inherits "2"
819 | minimatch "^3.0.4"
820 | once "^1.3.0"
821 | path-is-absolute "^1.0.0"
822 |
823 | glob@^7.1.3, glob@^7.1.7:
824 | version "7.2.0"
825 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
826 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
827 | dependencies:
828 | fs.realpath "^1.0.0"
829 | inflight "^1.0.4"
830 | inherits "2"
831 | minimatch "^3.0.4"
832 | once "^1.3.0"
833 | path-is-absolute "^1.0.0"
834 |
835 | globals@^13.6.0, globals@^13.9.0:
836 | version "13.12.1"
837 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.12.1.tgz#ec206be932e6c77236677127577aa8e50bf1c5cb"
838 | integrity sha512-317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw==
839 | dependencies:
840 | type-fest "^0.20.2"
841 |
842 | globby@^11.0.4:
843 | version "11.1.0"
844 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
845 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
846 | dependencies:
847 | array-union "^2.1.0"
848 | dir-glob "^3.0.1"
849 | fast-glob "^3.2.9"
850 | ignore "^5.2.0"
851 | merge2 "^1.4.1"
852 | slash "^3.0.0"
853 |
854 | has-bigints@^1.0.1:
855 | version "1.0.1"
856 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
857 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
858 |
859 | has-flag@^4.0.0:
860 | version "4.0.0"
861 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
862 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
863 |
864 | has-symbols@^1.0.1, has-symbols@^1.0.2:
865 | version "1.0.3"
866 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
867 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
868 |
869 | has-tostringtag@^1.0.0:
870 | version "1.0.0"
871 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
872 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
873 | dependencies:
874 | has-symbols "^1.0.2"
875 |
876 | has@^1.0.3:
877 | version "1.0.3"
878 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
879 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
880 | dependencies:
881 | function-bind "^1.1.1"
882 |
883 | ignore@^5.2.0:
884 | version "5.2.0"
885 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
886 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
887 |
888 | import-fresh@^3.0.0, import-fresh@^3.2.1:
889 | version "3.3.0"
890 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
891 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
892 | dependencies:
893 | parent-module "^1.0.0"
894 | resolve-from "^4.0.0"
895 |
896 | imurmurhash@^0.1.4:
897 | version "0.1.4"
898 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
899 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
900 |
901 | inflight@^1.0.4:
902 | version "1.0.6"
903 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
904 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
905 | dependencies:
906 | once "^1.3.0"
907 | wrappy "1"
908 |
909 | inherits@2:
910 | version "2.0.4"
911 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
912 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
913 |
914 | internal-slot@^1.0.3:
915 | version "1.0.3"
916 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
917 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
918 | dependencies:
919 | get-intrinsic "^1.1.0"
920 | has "^1.0.3"
921 | side-channel "^1.0.4"
922 |
923 | is-bigint@^1.0.1:
924 | version "1.0.4"
925 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
926 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
927 | dependencies:
928 | has-bigints "^1.0.1"
929 |
930 | is-boolean-object@^1.1.0:
931 | version "1.1.2"
932 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
933 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
934 | dependencies:
935 | call-bind "^1.0.2"
936 | has-tostringtag "^1.0.0"
937 |
938 | is-callable@^1.1.4, is-callable@^1.2.4:
939 | version "1.2.4"
940 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"
941 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==
942 |
943 | is-core-module@^2.2.0, is-core-module@^2.8.0, is-core-module@^2.8.1:
944 | version "2.8.1"
945 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211"
946 | integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==
947 | dependencies:
948 | has "^1.0.3"
949 |
950 | is-date-object@^1.0.1:
951 | version "1.0.5"
952 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
953 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
954 | dependencies:
955 | has-tostringtag "^1.0.0"
956 |
957 | is-extglob@^2.1.1:
958 | version "2.1.1"
959 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
960 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
961 |
962 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3:
963 | version "4.0.3"
964 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
965 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
966 | dependencies:
967 | is-extglob "^2.1.1"
968 |
969 | is-negative-zero@^2.0.1:
970 | version "2.0.2"
971 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
972 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
973 |
974 | is-number-object@^1.0.4:
975 | version "1.0.6"
976 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz#6a7aaf838c7f0686a50b4553f7e54a96494e89f0"
977 | integrity sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==
978 | dependencies:
979 | has-tostringtag "^1.0.0"
980 |
981 | is-number@^7.0.0:
982 | version "7.0.0"
983 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
984 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
985 |
986 | is-regex@^1.1.4:
987 | version "1.1.4"
988 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
989 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
990 | dependencies:
991 | call-bind "^1.0.2"
992 | has-tostringtag "^1.0.0"
993 |
994 | is-shared-array-buffer@^1.0.1:
995 | version "1.0.1"
996 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz#97b0c85fbdacb59c9c446fe653b82cf2b5b7cfe6"
997 | integrity sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==
998 |
999 | is-string@^1.0.5, is-string@^1.0.7:
1000 | version "1.0.7"
1001 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
1002 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
1003 | dependencies:
1004 | has-tostringtag "^1.0.0"
1005 |
1006 | is-symbol@^1.0.2, is-symbol@^1.0.3:
1007 | version "1.0.4"
1008 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
1009 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
1010 | dependencies:
1011 | has-symbols "^1.0.2"
1012 |
1013 | is-weakref@^1.0.1:
1014 | version "1.0.2"
1015 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
1016 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
1017 | dependencies:
1018 | call-bind "^1.0.2"
1019 |
1020 | isexe@^2.0.0:
1021 | version "2.0.0"
1022 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1023 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
1024 |
1025 | "js-tokens@^3.0.0 || ^4.0.0":
1026 | version "4.0.0"
1027 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1028 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1029 |
1030 | js-yaml@^4.1.0:
1031 | version "4.1.0"
1032 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
1033 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
1034 | dependencies:
1035 | argparse "^2.0.1"
1036 |
1037 | json-schema-traverse@^0.4.1:
1038 | version "0.4.1"
1039 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
1040 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
1041 |
1042 | json-stable-stringify-without-jsonify@^1.0.1:
1043 | version "1.0.1"
1044 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
1045 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
1046 |
1047 | json5@^1.0.1:
1048 | version "1.0.1"
1049 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
1050 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
1051 | dependencies:
1052 | minimist "^1.2.0"
1053 |
1054 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.2.1:
1055 | version "3.2.1"
1056 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz#720b97bfe7d901b927d87c3773637ae8ea48781b"
1057 | integrity sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==
1058 | dependencies:
1059 | array-includes "^3.1.3"
1060 | object.assign "^4.1.2"
1061 |
1062 | language-subtag-registry@~0.3.2:
1063 | version "0.3.21"
1064 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a"
1065 | integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==
1066 |
1067 | language-tags@^1.0.5:
1068 | version "1.0.5"
1069 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
1070 | integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=
1071 | dependencies:
1072 | language-subtag-registry "~0.3.2"
1073 |
1074 | levn@^0.4.1:
1075 | version "0.4.1"
1076 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
1077 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
1078 | dependencies:
1079 | prelude-ls "^1.2.1"
1080 | type-check "~0.4.0"
1081 |
1082 | locate-path@^2.0.0:
1083 | version "2.0.0"
1084 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1085 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
1086 | dependencies:
1087 | p-locate "^2.0.0"
1088 | path-exists "^3.0.0"
1089 |
1090 | lodash.merge@^4.6.2:
1091 | version "4.6.2"
1092 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
1093 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
1094 |
1095 | loose-envify@^1.1.0, loose-envify@^1.4.0:
1096 | version "1.4.0"
1097 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1098 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
1099 | dependencies:
1100 | js-tokens "^3.0.0 || ^4.0.0"
1101 |
1102 | lru-cache@^6.0.0:
1103 | version "6.0.0"
1104 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
1105 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1106 | dependencies:
1107 | yallist "^4.0.0"
1108 |
1109 | merge2@^1.3.0, merge2@^1.4.1:
1110 | version "1.4.1"
1111 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
1112 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
1113 |
1114 | micromatch@^4.0.4:
1115 | version "4.0.4"
1116 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
1117 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
1118 | dependencies:
1119 | braces "^3.0.1"
1120 | picomatch "^2.2.3"
1121 |
1122 | minimatch@^3.0.4, minimatch@^3.1.2:
1123 | version "3.1.2"
1124 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
1125 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1126 | dependencies:
1127 | brace-expansion "^1.1.7"
1128 |
1129 | minimist@^1.2.0:
1130 | version "1.2.5"
1131 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
1132 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
1133 |
1134 | ms@2.0.0:
1135 | version "2.0.0"
1136 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1137 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
1138 |
1139 | ms@2.1.2:
1140 | version "2.1.2"
1141 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1142 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1143 |
1144 | ms@^2.1.1:
1145 | version "2.1.3"
1146 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
1147 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
1148 |
1149 | nanoid@^3.1.30:
1150 | version "3.3.1"
1151 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35"
1152 | integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==
1153 |
1154 | natural-compare@^1.4.0:
1155 | version "1.4.0"
1156 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1157 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
1158 |
1159 | next@12.1.0:
1160 | version "12.1.0"
1161 | resolved "https://registry.yarnpkg.com/next/-/next-12.1.0.tgz#c33d753b644be92fc58e06e5a214f143da61dd5d"
1162 | integrity sha512-s885kWvnIlxsUFHq9UGyIyLiuD0G3BUC/xrH0CEnH5lHEWkwQcHOORgbDF0hbrW9vr/7am4ETfX4A7M6DjrE7Q==
1163 | dependencies:
1164 | "@next/env" "12.1.0"
1165 | caniuse-lite "^1.0.30001283"
1166 | postcss "8.4.5"
1167 | styled-jsx "5.0.0"
1168 | use-subscription "1.5.1"
1169 | optionalDependencies:
1170 | "@next/swc-android-arm64" "12.1.0"
1171 | "@next/swc-darwin-arm64" "12.1.0"
1172 | "@next/swc-darwin-x64" "12.1.0"
1173 | "@next/swc-linux-arm-gnueabihf" "12.1.0"
1174 | "@next/swc-linux-arm64-gnu" "12.1.0"
1175 | "@next/swc-linux-arm64-musl" "12.1.0"
1176 | "@next/swc-linux-x64-gnu" "12.1.0"
1177 | "@next/swc-linux-x64-musl" "12.1.0"
1178 | "@next/swc-win32-arm64-msvc" "12.1.0"
1179 | "@next/swc-win32-ia32-msvc" "12.1.0"
1180 | "@next/swc-win32-x64-msvc" "12.1.0"
1181 |
1182 | object-assign@^4.1.1:
1183 | version "4.1.1"
1184 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1185 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
1186 |
1187 | object-inspect@^1.11.0, object-inspect@^1.9.0:
1188 | version "1.12.0"
1189 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0"
1190 | integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==
1191 |
1192 | object-keys@^1.0.12, object-keys@^1.1.1:
1193 | version "1.1.1"
1194 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
1195 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
1196 |
1197 | object.assign@^4.1.2:
1198 | version "4.1.2"
1199 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
1200 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
1201 | dependencies:
1202 | call-bind "^1.0.0"
1203 | define-properties "^1.1.3"
1204 | has-symbols "^1.0.1"
1205 | object-keys "^1.1.1"
1206 |
1207 | object.entries@^1.1.5:
1208 | version "1.1.5"
1209 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861"
1210 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==
1211 | dependencies:
1212 | call-bind "^1.0.2"
1213 | define-properties "^1.1.3"
1214 | es-abstract "^1.19.1"
1215 |
1216 | object.fromentries@^2.0.5:
1217 | version "2.0.5"
1218 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251"
1219 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==
1220 | dependencies:
1221 | call-bind "^1.0.2"
1222 | define-properties "^1.1.3"
1223 | es-abstract "^1.19.1"
1224 |
1225 | object.hasown@^1.1.0:
1226 | version "1.1.0"
1227 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.0.tgz#7232ed266f34d197d15cac5880232f7a4790afe5"
1228 | integrity sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==
1229 | dependencies:
1230 | define-properties "^1.1.3"
1231 | es-abstract "^1.19.1"
1232 |
1233 | object.values@^1.1.5:
1234 | version "1.1.5"
1235 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac"
1236 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==
1237 | dependencies:
1238 | call-bind "^1.0.2"
1239 | define-properties "^1.1.3"
1240 | es-abstract "^1.19.1"
1241 |
1242 | once@^1.3.0:
1243 | version "1.4.0"
1244 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1245 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
1246 | dependencies:
1247 | wrappy "1"
1248 |
1249 | optionator@^0.9.1:
1250 | version "0.9.1"
1251 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
1252 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
1253 | dependencies:
1254 | deep-is "^0.1.3"
1255 | fast-levenshtein "^2.0.6"
1256 | levn "^0.4.1"
1257 | prelude-ls "^1.2.1"
1258 | type-check "^0.4.0"
1259 | word-wrap "^1.2.3"
1260 |
1261 | p-limit@^1.1.0:
1262 | version "1.3.0"
1263 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
1264 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
1265 | dependencies:
1266 | p-try "^1.0.0"
1267 |
1268 | p-locate@^2.0.0:
1269 | version "2.0.0"
1270 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
1271 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
1272 | dependencies:
1273 | p-limit "^1.1.0"
1274 |
1275 | p-try@^1.0.0:
1276 | version "1.0.0"
1277 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
1278 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
1279 |
1280 | parent-module@^1.0.0:
1281 | version "1.0.1"
1282 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
1283 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
1284 | dependencies:
1285 | callsites "^3.0.0"
1286 |
1287 | path-exists@^3.0.0:
1288 | version "3.0.0"
1289 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1290 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
1291 |
1292 | path-is-absolute@^1.0.0:
1293 | version "1.0.1"
1294 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1295 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
1296 |
1297 | path-key@^3.1.0:
1298 | version "3.1.1"
1299 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
1300 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
1301 |
1302 | path-parse@^1.0.6, path-parse@^1.0.7:
1303 | version "1.0.7"
1304 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
1305 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1306 |
1307 | path-type@^4.0.0:
1308 | version "4.0.0"
1309 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
1310 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
1311 |
1312 | picocolors@^1.0.0:
1313 | version "1.0.0"
1314 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
1315 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
1316 |
1317 | picomatch@^2.2.3:
1318 | version "2.3.1"
1319 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
1320 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
1321 |
1322 | postcss@8.4.5:
1323 | version "8.4.5"
1324 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95"
1325 | integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==
1326 | dependencies:
1327 | nanoid "^3.1.30"
1328 | picocolors "^1.0.0"
1329 | source-map-js "^1.0.1"
1330 |
1331 | prelude-ls@^1.2.1:
1332 | version "1.2.1"
1333 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
1334 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
1335 |
1336 | prop-types@^15.8.1:
1337 | version "15.8.1"
1338 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
1339 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
1340 | dependencies:
1341 | loose-envify "^1.4.0"
1342 | object-assign "^4.1.1"
1343 | react-is "^16.13.1"
1344 |
1345 | punycode@^2.1.0:
1346 | version "2.1.1"
1347 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
1348 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
1349 |
1350 | queue-microtask@^1.2.2:
1351 | version "1.2.3"
1352 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
1353 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
1354 |
1355 | react-dom@17.0.2:
1356 | version "17.0.2"
1357 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23"
1358 | integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==
1359 | dependencies:
1360 | loose-envify "^1.1.0"
1361 | object-assign "^4.1.1"
1362 | scheduler "^0.20.2"
1363 |
1364 | react-is@^16.13.1:
1365 | version "16.13.1"
1366 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
1367 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
1368 |
1369 | react@17.0.2:
1370 | version "17.0.2"
1371 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037"
1372 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==
1373 | dependencies:
1374 | loose-envify "^1.1.0"
1375 | object-assign "^4.1.1"
1376 |
1377 | regenerator-runtime@^0.13.4:
1378 | version "0.13.9"
1379 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
1380 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
1381 |
1382 | regexp.prototype.flags@^1.3.1:
1383 | version "1.4.1"
1384 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz#b3f4c0059af9e47eca9f3f660e51d81307e72307"
1385 | integrity sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ==
1386 | dependencies:
1387 | call-bind "^1.0.2"
1388 | define-properties "^1.1.3"
1389 |
1390 | regexpp@^3.2.0:
1391 | version "3.2.0"
1392 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
1393 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
1394 |
1395 | resolve-from@^4.0.0:
1396 | version "4.0.0"
1397 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
1398 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
1399 |
1400 | resolve@^1.20.0:
1401 | version "1.22.0"
1402 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198"
1403 | integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==
1404 | dependencies:
1405 | is-core-module "^2.8.1"
1406 | path-parse "^1.0.7"
1407 | supports-preserve-symlinks-flag "^1.0.0"
1408 |
1409 | resolve@^2.0.0-next.3:
1410 | version "2.0.0-next.3"
1411 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
1412 | integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==
1413 | dependencies:
1414 | is-core-module "^2.2.0"
1415 | path-parse "^1.0.6"
1416 |
1417 | reusify@^1.0.4:
1418 | version "1.0.4"
1419 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
1420 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
1421 |
1422 | rimraf@^3.0.2:
1423 | version "3.0.2"
1424 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
1425 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
1426 | dependencies:
1427 | glob "^7.1.3"
1428 |
1429 | run-parallel@^1.1.9:
1430 | version "1.2.0"
1431 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
1432 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
1433 | dependencies:
1434 | queue-microtask "^1.2.2"
1435 |
1436 | scheduler@^0.20.2:
1437 | version "0.20.2"
1438 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91"
1439 | integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==
1440 | dependencies:
1441 | loose-envify "^1.1.0"
1442 | object-assign "^4.1.1"
1443 |
1444 | semver@^6.3.0:
1445 | version "6.3.0"
1446 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
1447 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
1448 |
1449 | semver@^7.3.5:
1450 | version "7.3.5"
1451 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
1452 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
1453 | dependencies:
1454 | lru-cache "^6.0.0"
1455 |
1456 | shebang-command@^2.0.0:
1457 | version "2.0.0"
1458 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
1459 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
1460 | dependencies:
1461 | shebang-regex "^3.0.0"
1462 |
1463 | shebang-regex@^3.0.0:
1464 | version "3.0.0"
1465 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
1466 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
1467 |
1468 | side-channel@^1.0.4:
1469 | version "1.0.4"
1470 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
1471 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
1472 | dependencies:
1473 | call-bind "^1.0.0"
1474 | get-intrinsic "^1.0.2"
1475 | object-inspect "^1.9.0"
1476 |
1477 | slash@^3.0.0:
1478 | version "3.0.0"
1479 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
1480 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
1481 |
1482 | source-map-js@^1.0.1:
1483 | version "1.0.2"
1484 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
1485 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
1486 |
1487 | string.prototype.matchall@^4.0.6:
1488 | version "4.0.6"
1489 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz#5abb5dabc94c7b0ea2380f65ba610b3a544b15fa"
1490 | integrity sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==
1491 | dependencies:
1492 | call-bind "^1.0.2"
1493 | define-properties "^1.1.3"
1494 | es-abstract "^1.19.1"
1495 | get-intrinsic "^1.1.1"
1496 | has-symbols "^1.0.2"
1497 | internal-slot "^1.0.3"
1498 | regexp.prototype.flags "^1.3.1"
1499 | side-channel "^1.0.4"
1500 |
1501 | string.prototype.trimend@^1.0.4:
1502 | version "1.0.4"
1503 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
1504 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
1505 | dependencies:
1506 | call-bind "^1.0.2"
1507 | define-properties "^1.1.3"
1508 |
1509 | string.prototype.trimstart@^1.0.4:
1510 | version "1.0.4"
1511 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
1512 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
1513 | dependencies:
1514 | call-bind "^1.0.2"
1515 | define-properties "^1.1.3"
1516 |
1517 | strip-ansi@^6.0.1:
1518 | version "6.0.1"
1519 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
1520 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
1521 | dependencies:
1522 | ansi-regex "^5.0.1"
1523 |
1524 | strip-bom@^3.0.0:
1525 | version "3.0.0"
1526 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
1527 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
1528 |
1529 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
1530 | version "3.1.1"
1531 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
1532 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
1533 |
1534 | styled-jsx@5.0.0:
1535 | version "5.0.0"
1536 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.0.tgz#816b4b92e07b1786c6b7111821750e0ba4d26e77"
1537 | integrity sha512-qUqsWoBquEdERe10EW8vLp3jT25s/ssG1/qX5gZ4wu15OZpmSMFI2v+fWlRhLfykA5rFtlJ1ME8A8pm/peV4WA==
1538 |
1539 | supports-color@^7.1.0:
1540 | version "7.2.0"
1541 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
1542 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
1543 | dependencies:
1544 | has-flag "^4.0.0"
1545 |
1546 | supports-preserve-symlinks-flag@^1.0.0:
1547 | version "1.0.0"
1548 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
1549 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
1550 |
1551 | text-table@^0.2.0:
1552 | version "0.2.0"
1553 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
1554 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
1555 |
1556 | to-regex-range@^5.0.1:
1557 | version "5.0.1"
1558 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
1559 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
1560 | dependencies:
1561 | is-number "^7.0.0"
1562 |
1563 | tsconfig-paths@^3.12.0, tsconfig-paths@^3.9.0:
1564 | version "3.13.0"
1565 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.13.0.tgz#f3e9b8f6876698581d94470c03c95b3a48c0e3d7"
1566 | integrity sha512-nWuffZppoaYK0vQ1SQmkSsQzJoHA4s6uzdb2waRpD806x9yfq153AdVsWz4je2qZcW+pENrMQXbGQ3sMCkXuhw==
1567 | dependencies:
1568 | "@types/json5" "^0.0.29"
1569 | json5 "^1.0.1"
1570 | minimist "^1.2.0"
1571 | strip-bom "^3.0.0"
1572 |
1573 | tslib@^1.8.1:
1574 | version "1.14.1"
1575 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
1576 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
1577 |
1578 | tsutils@^3.21.0:
1579 | version "3.21.0"
1580 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
1581 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
1582 | dependencies:
1583 | tslib "^1.8.1"
1584 |
1585 | type-check@^0.4.0, type-check@~0.4.0:
1586 | version "0.4.0"
1587 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
1588 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
1589 | dependencies:
1590 | prelude-ls "^1.2.1"
1591 |
1592 | type-fest@^0.20.2:
1593 | version "0.20.2"
1594 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
1595 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
1596 |
1597 | typescript@^4.6.2:
1598 | version "4.6.2"
1599 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.2.tgz#fe12d2727b708f4eef40f51598b3398baa9611d4"
1600 | integrity sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==
1601 |
1602 | unbox-primitive@^1.0.1:
1603 | version "1.0.1"
1604 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
1605 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
1606 | dependencies:
1607 | function-bind "^1.1.1"
1608 | has-bigints "^1.0.1"
1609 | has-symbols "^1.0.2"
1610 | which-boxed-primitive "^1.0.2"
1611 |
1612 | uri-js@^4.2.2:
1613 | version "4.4.1"
1614 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
1615 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
1616 | dependencies:
1617 | punycode "^2.1.0"
1618 |
1619 | use-subscription@1.5.1:
1620 | version "1.5.1"
1621 | resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.5.1.tgz#73501107f02fad84c6dd57965beb0b75c68c42d1"
1622 | integrity sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==
1623 | dependencies:
1624 | object-assign "^4.1.1"
1625 |
1626 | v8-compile-cache@^2.0.3:
1627 | version "2.3.0"
1628 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
1629 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
1630 |
1631 | which-boxed-primitive@^1.0.2:
1632 | version "1.0.2"
1633 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
1634 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
1635 | dependencies:
1636 | is-bigint "^1.0.1"
1637 | is-boolean-object "^1.1.0"
1638 | is-number-object "^1.0.4"
1639 | is-string "^1.0.5"
1640 | is-symbol "^1.0.3"
1641 |
1642 | which@^2.0.1:
1643 | version "2.0.2"
1644 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
1645 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
1646 | dependencies:
1647 | isexe "^2.0.0"
1648 |
1649 | word-wrap@^1.2.3:
1650 | version "1.2.3"
1651 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
1652 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
1653 |
1654 | wrappy@1:
1655 | version "1.0.2"
1656 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1657 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
1658 |
1659 | yallist@^4.0.0:
1660 | version "4.0.0"
1661 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
1662 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
1663 |
--------------------------------------------------------------------------------