├── .eslintrc.js
├── .gitignore
├── .npmrc
├── README.md
├── apps
├── docs
│ ├── .eslintrc.js
│ ├── .gitignore
│ ├── README.md
│ ├── next-env.d.ts
│ ├── next.config.js
│ ├── package.json
│ ├── pages
│ │ └── index.tsx
│ └── tsconfig.json
└── web
│ ├── .eslintrc.js
│ ├── .gitignore
│ ├── README.md
│ ├── app
│ ├── layout.tsx
│ └── page.tsx
│ ├── next-env.d.ts
│ ├── next.config.js
│ ├── package.json
│ └── tsconfig.json
├── package.json
├── packages
├── eslint-config-custom
│ ├── index.js
│ └── package.json
├── tsconfig
│ ├── base.json
│ ├── nextjs.json
│ ├── package.json
│ └── react-library.json
└── ui
│ ├── Button.tsx
│ ├── index.tsx
│ ├── package.json
│ └── tsconfig.json
├── pnpm-lock.yaml
├── pnpm-workspace.yaml
└── turbo.json
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | // This tells ESLint to load the config from the package `eslint-config-custom`
4 | extends: ["custom"],
5 | settings: {
6 | next: {
7 | rootDir: ["apps/*/"],
8 | },
9 | },
10 | };
11 |
--------------------------------------------------------------------------------
/.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 | build
15 |
16 | # misc
17 | .DS_Store
18 | *.pem
19 |
20 | # debug
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
25 | # local env files
26 | .env
27 | .env.local
28 | .env.development.local
29 | .env.test.local
30 | .env.production.local
31 |
32 | # turbo
33 | .turbo
34 |
35 | # vercel
36 | .vercel
37 |
--------------------------------------------------------------------------------
/.npmrc:
--------------------------------------------------------------------------------
1 | auto-install-peers = true
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Turborepo starter
2 |
3 | This is an official starter Turborepo.
4 |
5 | ## Using this example
6 |
7 | Run the following command:
8 |
9 | ```sh
10 | npx create-turbo@latest
11 | ```
12 |
13 | ## What's inside?
14 |
15 | This Turborepo includes the following packages/apps:
16 |
17 | ### Apps and Packages
18 |
19 | - `docs`: a [Next.js](https://nextjs.org/) app
20 | - `web`: another [Next.js](https://nextjs.org/) app
21 | - `ui`: a stub React component library shared by both `web` and `docs` applications
22 | - `eslint-config-custom`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)
23 | - `tsconfig`: `tsconfig.json`s used throughout the monorepo
24 |
25 | Each package/app is 100% [TypeScript](https://www.typescriptlang.org/).
26 |
27 | ### Utilities
28 |
29 | This Turborepo has some additional tools already setup for you:
30 |
31 | - [TypeScript](https://www.typescriptlang.org/) for static type checking
32 | - [ESLint](https://eslint.org/) for code linting
33 | - [Prettier](https://prettier.io) for code formatting
34 |
35 | ### Build
36 |
37 | To build all apps and packages, run the following command:
38 |
39 | ```
40 | cd my-turborepo
41 | pnpm build
42 | ```
43 |
44 | ### Develop
45 |
46 | To develop all apps and packages, run the following command:
47 |
48 | ```
49 | cd my-turborepo
50 | pnpm dev
51 | ```
52 |
53 | ### Remote Caching
54 |
55 | Turborepo can use a technique known as [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching) to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines.
56 |
57 | By default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following commands:
58 |
59 | ```
60 | cd my-turborepo
61 | npx turbo login
62 | ```
63 |
64 | This will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview).
65 |
66 | Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your Turborepo:
67 |
68 | ```
69 | npx turbo link
70 | ```
71 |
72 | ## Useful Links
73 |
74 | Learn more about the power of Turborepo:
75 |
76 | - [Tasks](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks)
77 | - [Caching](https://turbo.build/repo/docs/core-concepts/caching)
78 | - [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching)
79 | - [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering)
80 | - [Configuration Options](https://turbo.build/repo/docs/reference/configuration)
81 | - [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference)
82 |
--------------------------------------------------------------------------------
/apps/docs/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | extends: ["custom"],
4 | };
5 |
--------------------------------------------------------------------------------
/apps/docs/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 |
27 | # local env files
28 | .env.local
29 | .env.development.local
30 | .env.test.local
31 | .env.production.local
32 |
33 | # vercel
34 | .vercel
35 |
--------------------------------------------------------------------------------
/apps/docs/README.md:
--------------------------------------------------------------------------------
1 | ## Getting Started
2 |
3 | First, run the development server:
4 |
5 | ```bash
6 | yarn dev
7 | ```
8 |
9 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
10 |
11 | You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
12 |
13 | [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`.
14 |
15 | 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.
16 |
17 | ## Learn More
18 |
19 | To learn more about Next.js, take a look at the following resources:
20 |
21 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
22 | - [Learn Next.js](https://nextjs.org/learn/foundations/about-nextjs) - an interactive Next.js tutorial.
23 |
24 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
25 |
26 | ## Deploy on Vercel
27 |
28 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_source=github.com&utm_medium=referral&utm_campaign=turborepo-readme) from the creators of Next.js.
29 |
30 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
31 |
--------------------------------------------------------------------------------
/apps/docs/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 |
--------------------------------------------------------------------------------
/apps/docs/next.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | reactStrictMode: true,
3 | transpilePackages: ["ui"],
4 | };
5 |
--------------------------------------------------------------------------------
/apps/docs/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "docs",
3 | "version": "1.0.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev --port 3001",
7 | "build": "next build",
8 | "start": "next start",
9 | "lint": "next lint"
10 | },
11 | "dependencies": {
12 | "next": "latest",
13 | "react": "^18.2.0",
14 | "react-dom": "^18.2.0",
15 | "ui": "workspace:*"
16 | },
17 | "devDependencies": {
18 | "@types/node": "^17.0.12",
19 | "@types/react": "^18.0.22",
20 | "@types/react-dom": "^18.0.7",
21 | "eslint-config-custom": "workspace:*",
22 | "tsconfig": "workspace:*",
23 | "typescript": "^4.5.3"
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/apps/docs/pages/index.tsx:
--------------------------------------------------------------------------------
1 | import { Button } from "ui";
2 |
3 | export default function Docs() {
4 | return (
5 |
6 |
Docs - random change 3
7 |
8 |
9 | );
10 | }
11 |
--------------------------------------------------------------------------------
/apps/docs/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "tsconfig/nextjs.json",
3 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
4 | "exclude": ["node_modules"]
5 | }
6 |
--------------------------------------------------------------------------------
/apps/web/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | extends: ["custom"],
4 | };
5 |
--------------------------------------------------------------------------------
/apps/web/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 |
27 | # local env files
28 | .env.local
29 | .env.development.local
30 | .env.test.local
31 | .env.production.local
32 |
33 | # vercel
34 | .vercel
35 |
--------------------------------------------------------------------------------
/apps/web/README.md:
--------------------------------------------------------------------------------
1 | ## Getting Started
2 |
3 | First, run the development server:
4 |
5 | ```bash
6 | yarn dev
7 | ```
8 |
9 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
10 |
11 | You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
12 |
13 | [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`.
14 |
15 | 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.
16 |
17 | ## Learn More
18 |
19 | To learn more about Next.js, take a look at the following resources:
20 |
21 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
22 | - [Learn Next.js](https://nextjs.org/learn/foundations/about-nextjs) - an interactive Next.js tutorial.
23 |
24 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
25 |
26 | ## Deploy on Vercel
27 |
28 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_source=github.com&utm_medium=referral&utm_campaign=turborepo-readme) from the creators of Next.js.
29 |
30 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
31 |
--------------------------------------------------------------------------------
/apps/web/app/layout.tsx:
--------------------------------------------------------------------------------
1 | export default function RootLayout({
2 | children,
3 | }: {
4 | children: React.ReactNode;
5 | }) {
6 | return (
7 |
8 | {children}
9 |
10 | );
11 | }
12 |
--------------------------------------------------------------------------------
/apps/web/app/page.tsx:
--------------------------------------------------------------------------------
1 | export const dynamic = "force-dynamic";
2 |
3 | export default function Web() {
4 | const url = process.env.VERCEL_URL ?? "none";
5 | return (
6 |
7 |
Web
8 | {url}
9 |
10 | );
11 | }
12 |
--------------------------------------------------------------------------------
/apps/web/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 |
--------------------------------------------------------------------------------
/apps/web/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | module.exports = {
3 | experimental: {
4 | appDir: true,
5 | },
6 | reactStrictMode: true,
7 | transpilePackages: ["ui"],
8 | };
9 |
--------------------------------------------------------------------------------
/apps/web/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "web",
3 | "version": "1.0.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": "latest",
13 | "react": "^18.2.0",
14 | "react-dom": "^18.2.0",
15 | "ui": "workspace:*"
16 | },
17 | "devDependencies": {
18 | "@types/node": "^17.0.12",
19 | "@types/react": "^18.0.22",
20 | "@types/react-dom": "^18.0.7",
21 | "eslint-config-custom": "workspace:*",
22 | "tsconfig": "workspace:*",
23 | "typescript": "^4.5.3"
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/apps/web/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "tsconfig/nextjs.json",
3 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
4 | "exclude": ["node_modules"]
5 | }
6 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "private": true,
3 | "scripts": {
4 | "build": "turbo run build",
5 | "dev": "turbo run dev",
6 | "lint": "turbo run lint",
7 | "format": "prettier --write \"**/*.{ts,tsx,md}\""
8 | },
9 | "devDependencies": {
10 | "eslint": "^7.32.0",
11 | "eslint-config-custom": "workspace:*",
12 | "prettier": "^2.5.1",
13 | "turbo": "latest"
14 | },
15 | "packageManager": "pnpm@7.15.0",
16 | "name": "turbotest"
17 | }
18 |
--------------------------------------------------------------------------------
/packages/eslint-config-custom/index.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | extends: ["next", "prettier"],
3 | rules: {
4 | "@next/next/no-html-link-for-pages": "off",
5 | },
6 | parserOptions: {
7 | babelOptions: {
8 | presets: [require.resolve("next/babel")],
9 | },
10 | },
11 | };
12 |
--------------------------------------------------------------------------------
/packages/eslint-config-custom/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "eslint-config-custom",
3 | "version": "0.0.0",
4 | "main": "index.js",
5 | "license": "MIT",
6 | "dependencies": {
7 | "eslint-config-next": "latest",
8 | "eslint-config-prettier": "^8.3.0",
9 | "eslint-plugin-react": "7.28.0",
10 | "eslint-config-turbo": "latest"
11 | },
12 | "publishConfig": {
13 | "access": "public"
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/packages/tsconfig/base.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://json.schemastore.org/tsconfig",
3 | "display": "Default",
4 | "compilerOptions": {
5 | "composite": false,
6 | "declaration": true,
7 | "declarationMap": true,
8 | "esModuleInterop": true,
9 | "forceConsistentCasingInFileNames": true,
10 | "inlineSources": false,
11 | "isolatedModules": true,
12 | "moduleResolution": "node",
13 | "noUnusedLocals": false,
14 | "noUnusedParameters": false,
15 | "preserveWatchOutput": true,
16 | "skipLibCheck": true,
17 | "strict": true
18 | },
19 | "exclude": ["node_modules"]
20 | }
21 |
--------------------------------------------------------------------------------
/packages/tsconfig/nextjs.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://json.schemastore.org/tsconfig",
3 | "display": "Next.js",
4 | "extends": "./base.json",
5 | "compilerOptions": {
6 | "allowJs": true,
7 | "declaration": false,
8 | "declarationMap": false,
9 | "incremental": true,
10 | "jsx": "preserve",
11 | "lib": ["dom", "dom.iterable", "esnext"],
12 | "module": "esnext",
13 | "noEmit": true,
14 | "resolveJsonModule": true,
15 | "strict": false,
16 | "target": "es5"
17 | },
18 | "include": ["src", "next-env.d.ts"],
19 | "exclude": ["node_modules"]
20 | }
21 |
--------------------------------------------------------------------------------
/packages/tsconfig/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "tsconfig",
3 | "version": "0.0.0",
4 | "private": true,
5 | "license": "MIT",
6 | "publishConfig": {
7 | "access": "public"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/packages/tsconfig/react-library.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://json.schemastore.org/tsconfig",
3 | "display": "React Library",
4 | "extends": "./base.json",
5 | "compilerOptions": {
6 | "jsx": "react-jsx",
7 | "lib": ["ES2015"],
8 | "module": "ESNext",
9 | "target": "es6"
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/packages/ui/Button.tsx:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 |
3 | export const Button = () => {
4 | return ;
5 | };
6 |
--------------------------------------------------------------------------------
/packages/ui/index.tsx:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | export * from "./Button";
3 |
--------------------------------------------------------------------------------
/packages/ui/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "ui",
3 | "version": "0.0.0",
4 | "main": "./index.tsx",
5 | "types": "./index.tsx",
6 | "license": "MIT",
7 | "scripts": {
8 | "lint": "eslint \"**/*.ts*\""
9 | },
10 | "devDependencies": {
11 | "@types/react": "^17.0.37",
12 | "@types/react-dom": "^17.0.11",
13 | "eslint": "^7.32.0",
14 | "eslint-config-custom": "workspace:*",
15 | "react": "^17.0.2",
16 | "tsconfig": "workspace:*",
17 | "typescript": "^4.5.2"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/packages/ui/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "tsconfig/react-library.json",
3 | "include": ["."],
4 | "exclude": ["dist", "build", "node_modules"]
5 | }
6 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '6.0'
2 |
3 | importers:
4 |
5 | .:
6 | devDependencies:
7 | eslint:
8 | specifier: ^7.32.0
9 | version: 7.32.0
10 | eslint-config-custom:
11 | specifier: workspace:*
12 | version: link:packages/eslint-config-custom
13 | prettier:
14 | specifier: ^2.5.1
15 | version: 2.8.0
16 | turbo:
17 | specifier: latest
18 | version: 1.8.5
19 |
20 | apps/docs:
21 | dependencies:
22 | next:
23 | specifier: latest
24 | version: 13.3.0(react-dom@18.2.0)(react@18.2.0)
25 | react:
26 | specifier: ^18.2.0
27 | version: 18.2.0
28 | react-dom:
29 | specifier: ^18.2.0
30 | version: 18.2.0(react@18.2.0)
31 | ui:
32 | specifier: workspace:*
33 | version: link:../../packages/ui
34 | devDependencies:
35 | '@types/node':
36 | specifier: ^17.0.12
37 | version: 17.0.45
38 | '@types/react':
39 | specifier: ^18.0.22
40 | version: 18.0.25
41 | '@types/react-dom':
42 | specifier: ^18.0.7
43 | version: 18.0.9
44 | eslint-config-custom:
45 | specifier: workspace:*
46 | version: link:../../packages/eslint-config-custom
47 | tsconfig:
48 | specifier: workspace:*
49 | version: link:../../packages/tsconfig
50 | typescript:
51 | specifier: ^4.5.3
52 | version: 4.9.3
53 |
54 | apps/web:
55 | dependencies:
56 | next:
57 | specifier: latest
58 | version: 13.3.0(react-dom@18.2.0)(react@18.2.0)
59 | react:
60 | specifier: ^18.2.0
61 | version: 18.2.0
62 | react-dom:
63 | specifier: ^18.2.0
64 | version: 18.2.0(react@18.2.0)
65 | ui:
66 | specifier: workspace:*
67 | version: link:../../packages/ui
68 | devDependencies:
69 | '@types/node':
70 | specifier: ^17.0.12
71 | version: 17.0.45
72 | '@types/react':
73 | specifier: ^18.0.22
74 | version: 18.0.25
75 | '@types/react-dom':
76 | specifier: ^18.0.7
77 | version: 18.0.9
78 | eslint-config-custom:
79 | specifier: workspace:*
80 | version: link:../../packages/eslint-config-custom
81 | tsconfig:
82 | specifier: workspace:*
83 | version: link:../../packages/tsconfig
84 | typescript:
85 | specifier: ^4.5.3
86 | version: 4.9.3
87 |
88 | packages/eslint-config-custom:
89 | dependencies:
90 | eslint-config-next:
91 | specifier: latest
92 | version: 13.3.0(eslint@7.32.0)(typescript@4.9.3)
93 | eslint-config-prettier:
94 | specifier: ^8.3.0
95 | version: 8.5.0(eslint@7.32.0)
96 | eslint-config-turbo:
97 | specifier: latest
98 | version: 0.0.10(eslint@7.32.0)
99 | eslint-plugin-react:
100 | specifier: 7.28.0
101 | version: 7.28.0(eslint@7.32.0)
102 |
103 | packages/tsconfig: {}
104 |
105 | packages/ui:
106 | devDependencies:
107 | '@types/react':
108 | specifier: ^17.0.37
109 | version: 17.0.52
110 | '@types/react-dom':
111 | specifier: ^17.0.11
112 | version: 17.0.18
113 | eslint:
114 | specifier: ^7.32.0
115 | version: 7.32.0
116 | eslint-config-custom:
117 | specifier: workspace:*
118 | version: link:../eslint-config-custom
119 | react:
120 | specifier: ^17.0.2
121 | version: 17.0.2
122 | tsconfig:
123 | specifier: workspace:*
124 | version: link:../tsconfig
125 | typescript:
126 | specifier: ^4.5.2
127 | version: 4.9.3
128 |
129 | packages:
130 |
131 | /@babel/code-frame@7.12.11:
132 | resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
133 | dependencies:
134 | '@babel/highlight': 7.18.6
135 |
136 | /@babel/helper-validator-identifier@7.19.1:
137 | resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
138 | engines: {node: '>=6.9.0'}
139 |
140 | /@babel/highlight@7.18.6:
141 | resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
142 | engines: {node: '>=6.9.0'}
143 | dependencies:
144 | '@babel/helper-validator-identifier': 7.19.1
145 | chalk: 2.4.2
146 | js-tokens: 4.0.0
147 |
148 | /@babel/runtime-corejs3@7.20.1:
149 | resolution: {integrity: sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg==}
150 | engines: {node: '>=6.9.0'}
151 | dependencies:
152 | core-js-pure: 3.26.1
153 | regenerator-runtime: 0.13.11
154 | dev: false
155 |
156 | /@babel/runtime@7.20.1:
157 | resolution: {integrity: sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==}
158 | engines: {node: '>=6.9.0'}
159 | dependencies:
160 | regenerator-runtime: 0.13.11
161 | dev: false
162 |
163 | /@eslint/eslintrc@0.4.3:
164 | resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==}
165 | engines: {node: ^10.12.0 || >=12.0.0}
166 | dependencies:
167 | ajv: 6.12.6
168 | debug: 4.3.4
169 | espree: 7.3.1
170 | globals: 13.18.0
171 | ignore: 4.0.6
172 | import-fresh: 3.3.0
173 | js-yaml: 3.14.1
174 | minimatch: 3.1.2
175 | strip-json-comments: 3.1.1
176 | transitivePeerDependencies:
177 | - supports-color
178 |
179 | /@humanwhocodes/config-array@0.5.0:
180 | resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==}
181 | engines: {node: '>=10.10.0'}
182 | dependencies:
183 | '@humanwhocodes/object-schema': 1.2.1
184 | debug: 4.3.4
185 | minimatch: 3.1.2
186 | transitivePeerDependencies:
187 | - supports-color
188 |
189 | /@humanwhocodes/object-schema@1.2.1:
190 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
191 |
192 | /@next/env@13.3.0:
193 | resolution: {integrity: sha512-AjppRV4uG3No7L1plinoTQETH+j2F10TEnrMfzbTUYwze5sBUPveeeBAPZPm8OkJZ1epq9OyYKhZrvbD6/9HCQ==}
194 | dev: false
195 |
196 | /@next/eslint-plugin-next@13.3.0:
197 | resolution: {integrity: sha512-wuGN5qSEjSgcq9fVkH0Y/qIPFjnZtW3ZPwfjJOn7l/rrf6y8J24h/lo61kwqunTyzZJm/ETGfGVU9PUs8cnzEA==}
198 | dependencies:
199 | glob: 7.1.7
200 | dev: false
201 |
202 | /@next/swc-darwin-arm64@13.3.0:
203 | resolution: {integrity: sha512-DmIQCNq6JtccLPPBzf0dgh2vzMWt5wjxbP71pCi5EWpWYE3MsP6FcRXi4MlAmFNDQOfcFXR2r7kBeG1LpZUh1w==}
204 | engines: {node: '>= 10'}
205 | cpu: [arm64]
206 | os: [darwin]
207 | requiresBuild: true
208 | dev: false
209 | optional: true
210 |
211 | /@next/swc-darwin-x64@13.3.0:
212 | resolution: {integrity: sha512-oQoqFa88OGgwnYlnAGHVct618FRI/749se0N3S8t9Bzdv5CRbscnO0RcX901+YnNK4Q6yeiizfgO3b7kogtsZg==}
213 | engines: {node: '>= 10'}
214 | cpu: [x64]
215 | os: [darwin]
216 | requiresBuild: true
217 | dev: false
218 | optional: true
219 |
220 | /@next/swc-linux-arm64-gnu@13.3.0:
221 | resolution: {integrity: sha512-Wzz2p/WqAJUqTVoLo6H18WMeAXo3i+9DkPDae4oQG8LMloJ3if4NEZTnOnTUlro6cq+S/W4pTGa97nWTrOjbGw==}
222 | engines: {node: '>= 10'}
223 | cpu: [arm64]
224 | os: [linux]
225 | requiresBuild: true
226 | dev: false
227 | optional: true
228 |
229 | /@next/swc-linux-arm64-musl@13.3.0:
230 | resolution: {integrity: sha512-xPVrIQOQo9WXJYgmoTlMnAD/HlR/1e1ZIWGbwIzEirXBVBqMARUulBEIKdC19zuvoJ477qZJgBDCKtKEykCpyQ==}
231 | engines: {node: '>= 10'}
232 | cpu: [arm64]
233 | os: [linux]
234 | requiresBuild: true
235 | dev: false
236 | optional: true
237 |
238 | /@next/swc-linux-x64-gnu@13.3.0:
239 | resolution: {integrity: sha512-jOFlpGuPD7W2tuXVJP4wt9a3cpNxWAPcloq5EfMJRiXsBBOjLVFZA7boXYxEBzSVgUiVVr1V9T0HFM7pULJ1qA==}
240 | engines: {node: '>= 10'}
241 | cpu: [x64]
242 | os: [linux]
243 | requiresBuild: true
244 | dev: false
245 | optional: true
246 |
247 | /@next/swc-linux-x64-musl@13.3.0:
248 | resolution: {integrity: sha512-2OwKlzaBgmuet9XYHc3KwsEilzb04F540rlRXkAcjMHL7eCxB7uZIGtsVvKOnQLvC/elrUegwSw1+5f7WmfyOw==}
249 | engines: {node: '>= 10'}
250 | cpu: [x64]
251 | os: [linux]
252 | requiresBuild: true
253 | dev: false
254 | optional: true
255 |
256 | /@next/swc-win32-arm64-msvc@13.3.0:
257 | resolution: {integrity: sha512-OeHiA6YEvndxT46g+rzFK/MQTfftKxJmzslERMu9LDdC6Kez0bdrgEYed5eXFK2Z1viKZJCGRlhd06rBusyztA==}
258 | engines: {node: '>= 10'}
259 | cpu: [arm64]
260 | os: [win32]
261 | requiresBuild: true
262 | dev: false
263 | optional: true
264 |
265 | /@next/swc-win32-ia32-msvc@13.3.0:
266 | resolution: {integrity: sha512-4aB7K9mcVK1lYEzpOpqWrXHEZympU3oK65fnNcY1Qc4HLJFLJj8AViuqQd4jjjPNuV4sl8jAwTz3gN5VNGWB7w==}
267 | engines: {node: '>= 10'}
268 | cpu: [ia32]
269 | os: [win32]
270 | requiresBuild: true
271 | dev: false
272 | optional: true
273 |
274 | /@next/swc-win32-x64-msvc@13.3.0:
275 | resolution: {integrity: sha512-Reer6rkLLcoOvB0dd66+Y7WrWVFH7sEEkF/4bJCIfsSKnTStTYaHtwIJAwbqnt9I392Tqvku0KkoqZOryWV9LQ==}
276 | engines: {node: '>= 10'}
277 | cpu: [x64]
278 | os: [win32]
279 | requiresBuild: true
280 | dev: false
281 | optional: true
282 |
283 | /@nodelib/fs.scandir@2.1.5:
284 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
285 | engines: {node: '>= 8'}
286 | dependencies:
287 | '@nodelib/fs.stat': 2.0.5
288 | run-parallel: 1.2.0
289 | dev: false
290 |
291 | /@nodelib/fs.stat@2.0.5:
292 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
293 | engines: {node: '>= 8'}
294 | dev: false
295 |
296 | /@nodelib/fs.walk@1.2.8:
297 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
298 | engines: {node: '>= 8'}
299 | dependencies:
300 | '@nodelib/fs.scandir': 2.1.5
301 | fastq: 1.13.0
302 | dev: false
303 |
304 | /@pkgr/utils@2.3.1:
305 | resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==}
306 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
307 | dependencies:
308 | cross-spawn: 7.0.3
309 | is-glob: 4.0.3
310 | open: 8.4.0
311 | picocolors: 1.0.0
312 | tiny-glob: 0.2.9
313 | tslib: 2.4.1
314 | dev: false
315 |
316 | /@rushstack/eslint-patch@1.2.0:
317 | resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==}
318 | dev: false
319 |
320 | /@swc/helpers@0.4.14:
321 | resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==}
322 | dependencies:
323 | tslib: 2.4.1
324 | dev: false
325 |
326 | /@types/json5@0.0.29:
327 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
328 | dev: false
329 |
330 | /@types/node@17.0.45:
331 | resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
332 | dev: true
333 |
334 | /@types/prop-types@15.7.5:
335 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
336 | dev: true
337 |
338 | /@types/react-dom@17.0.18:
339 | resolution: {integrity: sha512-rLVtIfbwyur2iFKykP2w0pl/1unw26b5td16d5xMgp7/yjTHomkyxPYChFoCr/FtEX1lN9wY6lFj1qvKdS5kDw==}
340 | dependencies:
341 | '@types/react': 17.0.52
342 | dev: true
343 |
344 | /@types/react-dom@18.0.9:
345 | resolution: {integrity: sha512-qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg==}
346 | dependencies:
347 | '@types/react': 18.0.25
348 | dev: true
349 |
350 | /@types/react@17.0.52:
351 | resolution: {integrity: sha512-vwk8QqVODi0VaZZpDXQCmEmiOuyjEFPY7Ttaw5vjM112LOq37yz1CDJGrRJwA1fYEq4Iitd5rnjd1yWAc/bT+A==}
352 | dependencies:
353 | '@types/prop-types': 15.7.5
354 | '@types/scheduler': 0.16.2
355 | csstype: 3.1.1
356 | dev: true
357 |
358 | /@types/react@18.0.25:
359 | resolution: {integrity: sha512-xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g==}
360 | dependencies:
361 | '@types/prop-types': 15.7.5
362 | '@types/scheduler': 0.16.2
363 | csstype: 3.1.1
364 | dev: true
365 |
366 | /@types/scheduler@0.16.2:
367 | resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
368 | dev: true
369 |
370 | /@typescript-eslint/parser@5.44.0(eslint@7.32.0)(typescript@4.9.3):
371 | resolution: {integrity: sha512-H7LCqbZnKqkkgQHaKLGC6KUjt3pjJDx8ETDqmwncyb6PuoigYajyAwBGz08VU/l86dZWZgI4zm5k2VaKqayYyA==}
372 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
373 | peerDependencies:
374 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
375 | typescript: '*'
376 | peerDependenciesMeta:
377 | typescript:
378 | optional: true
379 | dependencies:
380 | '@typescript-eslint/scope-manager': 5.44.0
381 | '@typescript-eslint/types': 5.44.0
382 | '@typescript-eslint/typescript-estree': 5.44.0(typescript@4.9.3)
383 | debug: 4.3.4
384 | eslint: 7.32.0
385 | typescript: 4.9.3
386 | transitivePeerDependencies:
387 | - supports-color
388 | dev: false
389 |
390 | /@typescript-eslint/scope-manager@5.44.0:
391 | resolution: {integrity: sha512-2pKml57KusI0LAhgLKae9kwWeITZ7IsZs77YxyNyIVOwQ1kToyXRaJLl+uDEXzMN5hnobKUOo2gKntK9H1YL8g==}
392 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
393 | dependencies:
394 | '@typescript-eslint/types': 5.44.0
395 | '@typescript-eslint/visitor-keys': 5.44.0
396 | dev: false
397 |
398 | /@typescript-eslint/types@5.44.0:
399 | resolution: {integrity: sha512-Tp+zDnHmGk4qKR1l+Y1rBvpjpm5tGXX339eAlRBDg+kgZkz9Bw+pqi4dyseOZMsGuSH69fYfPJCBKBrbPCxYFQ==}
400 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
401 | dev: false
402 |
403 | /@typescript-eslint/typescript-estree@5.44.0(typescript@4.9.3):
404 | resolution: {integrity: sha512-M6Jr+RM7M5zeRj2maSfsZK2660HKAJawv4Ud0xT+yauyvgrsHu276VtXlKDFnEmhG+nVEd0fYZNXGoAgxwDWJw==}
405 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
406 | peerDependencies:
407 | typescript: '*'
408 | peerDependenciesMeta:
409 | typescript:
410 | optional: true
411 | dependencies:
412 | '@typescript-eslint/types': 5.44.0
413 | '@typescript-eslint/visitor-keys': 5.44.0
414 | debug: 4.3.4
415 | globby: 11.1.0
416 | is-glob: 4.0.3
417 | semver: 7.3.8
418 | tsutils: 3.21.0(typescript@4.9.3)
419 | typescript: 4.9.3
420 | transitivePeerDependencies:
421 | - supports-color
422 | dev: false
423 |
424 | /@typescript-eslint/visitor-keys@5.44.0:
425 | resolution: {integrity: sha512-a48tLG8/4m62gPFbJ27FxwCOqPKxsb8KC3HkmYoq2As/4YyjQl1jDbRr1s63+g4FS/iIehjmN3L5UjmKva1HzQ==}
426 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
427 | dependencies:
428 | '@typescript-eslint/types': 5.44.0
429 | eslint-visitor-keys: 3.3.0
430 | dev: false
431 |
432 | /acorn-jsx@5.3.2(acorn@7.4.1):
433 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
434 | peerDependencies:
435 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
436 | dependencies:
437 | acorn: 7.4.1
438 |
439 | /acorn@7.4.1:
440 | resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
441 | engines: {node: '>=0.4.0'}
442 | hasBin: true
443 |
444 | /ajv@6.12.6:
445 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
446 | dependencies:
447 | fast-deep-equal: 3.1.3
448 | fast-json-stable-stringify: 2.1.0
449 | json-schema-traverse: 0.4.1
450 | uri-js: 4.4.1
451 |
452 | /ajv@8.11.2:
453 | resolution: {integrity: sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==}
454 | dependencies:
455 | fast-deep-equal: 3.1.3
456 | json-schema-traverse: 1.0.0
457 | require-from-string: 2.0.2
458 | uri-js: 4.4.1
459 |
460 | /ansi-colors@4.1.3:
461 | resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
462 | engines: {node: '>=6'}
463 |
464 | /ansi-regex@5.0.1:
465 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
466 | engines: {node: '>=8'}
467 |
468 | /ansi-styles@3.2.1:
469 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
470 | engines: {node: '>=4'}
471 | dependencies:
472 | color-convert: 1.9.3
473 |
474 | /ansi-styles@4.3.0:
475 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
476 | engines: {node: '>=8'}
477 | dependencies:
478 | color-convert: 2.0.1
479 |
480 | /argparse@1.0.10:
481 | resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
482 | dependencies:
483 | sprintf-js: 1.0.3
484 |
485 | /aria-query@4.2.2:
486 | resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
487 | engines: {node: '>=6.0'}
488 | dependencies:
489 | '@babel/runtime': 7.20.1
490 | '@babel/runtime-corejs3': 7.20.1
491 | dev: false
492 |
493 | /array-includes@3.1.6:
494 | resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
495 | engines: {node: '>= 0.4'}
496 | dependencies:
497 | call-bind: 1.0.2
498 | define-properties: 1.1.4
499 | es-abstract: 1.20.4
500 | get-intrinsic: 1.1.3
501 | is-string: 1.0.7
502 | dev: false
503 |
504 | /array-union@2.1.0:
505 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
506 | engines: {node: '>=8'}
507 | dev: false
508 |
509 | /array.prototype.flat@1.3.1:
510 | resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
511 | engines: {node: '>= 0.4'}
512 | dependencies:
513 | call-bind: 1.0.2
514 | define-properties: 1.1.4
515 | es-abstract: 1.20.4
516 | es-shim-unscopables: 1.0.0
517 | dev: false
518 |
519 | /array.prototype.flatmap@1.3.1:
520 | resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
521 | engines: {node: '>= 0.4'}
522 | dependencies:
523 | call-bind: 1.0.2
524 | define-properties: 1.1.4
525 | es-abstract: 1.20.4
526 | es-shim-unscopables: 1.0.0
527 | dev: false
528 |
529 | /array.prototype.tosorted@1.1.1:
530 | resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
531 | dependencies:
532 | call-bind: 1.0.2
533 | define-properties: 1.1.4
534 | es-abstract: 1.20.4
535 | es-shim-unscopables: 1.0.0
536 | get-intrinsic: 1.1.3
537 | dev: false
538 |
539 | /ast-types-flow@0.0.7:
540 | resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
541 | dev: false
542 |
543 | /astral-regex@2.0.0:
544 | resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
545 | engines: {node: '>=8'}
546 |
547 | /axe-core@4.5.2:
548 | resolution: {integrity: sha512-u2MVsXfew5HBvjsczCv+xlwdNnB1oQR9HlAcsejZttNjKKSkeDNVwB1vMThIUIFI9GoT57Vtk8iQLwqOfAkboA==}
549 | engines: {node: '>=4'}
550 | dev: false
551 |
552 | /axobject-query@2.2.0:
553 | resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
554 | dev: false
555 |
556 | /balanced-match@1.0.2:
557 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
558 |
559 | /brace-expansion@1.1.11:
560 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
561 | dependencies:
562 | balanced-match: 1.0.2
563 | concat-map: 0.0.1
564 |
565 | /braces@3.0.2:
566 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
567 | engines: {node: '>=8'}
568 | dependencies:
569 | fill-range: 7.0.1
570 | dev: false
571 |
572 | /busboy@1.6.0:
573 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
574 | engines: {node: '>=10.16.0'}
575 | dependencies:
576 | streamsearch: 1.1.0
577 | dev: false
578 |
579 | /call-bind@1.0.2:
580 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
581 | dependencies:
582 | function-bind: 1.1.1
583 | get-intrinsic: 1.1.3
584 | dev: false
585 |
586 | /callsites@3.1.0:
587 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
588 | engines: {node: '>=6'}
589 |
590 | /caniuse-lite@1.0.30001434:
591 | resolution: {integrity: sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA==}
592 | dev: false
593 |
594 | /chalk@2.4.2:
595 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
596 | engines: {node: '>=4'}
597 | dependencies:
598 | ansi-styles: 3.2.1
599 | escape-string-regexp: 1.0.5
600 | supports-color: 5.5.0
601 |
602 | /chalk@4.1.2:
603 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
604 | engines: {node: '>=10'}
605 | dependencies:
606 | ansi-styles: 4.3.0
607 | supports-color: 7.2.0
608 |
609 | /client-only@0.0.1:
610 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
611 | dev: false
612 |
613 | /color-convert@1.9.3:
614 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
615 | dependencies:
616 | color-name: 1.1.3
617 |
618 | /color-convert@2.0.1:
619 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
620 | engines: {node: '>=7.0.0'}
621 | dependencies:
622 | color-name: 1.1.4
623 |
624 | /color-name@1.1.3:
625 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
626 |
627 | /color-name@1.1.4:
628 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
629 |
630 | /concat-map@0.0.1:
631 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
632 |
633 | /core-js-pure@3.26.1:
634 | resolution: {integrity: sha512-VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ==}
635 | requiresBuild: true
636 | dev: false
637 |
638 | /cross-spawn@7.0.3:
639 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
640 | engines: {node: '>= 8'}
641 | dependencies:
642 | path-key: 3.1.1
643 | shebang-command: 2.0.0
644 | which: 2.0.2
645 |
646 | /csstype@3.1.1:
647 | resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==}
648 | dev: true
649 |
650 | /damerau-levenshtein@1.0.8:
651 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
652 | dev: false
653 |
654 | /debug@2.6.9:
655 | resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
656 | peerDependencies:
657 | supports-color: '*'
658 | peerDependenciesMeta:
659 | supports-color:
660 | optional: true
661 | dependencies:
662 | ms: 2.0.0
663 | dev: false
664 |
665 | /debug@3.2.7:
666 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
667 | peerDependencies:
668 | supports-color: '*'
669 | peerDependenciesMeta:
670 | supports-color:
671 | optional: true
672 | dependencies:
673 | ms: 2.1.3
674 | dev: false
675 |
676 | /debug@4.3.4:
677 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
678 | engines: {node: '>=6.0'}
679 | peerDependencies:
680 | supports-color: '*'
681 | peerDependenciesMeta:
682 | supports-color:
683 | optional: true
684 | dependencies:
685 | ms: 2.1.2
686 |
687 | /deep-is@0.1.4:
688 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
689 |
690 | /define-lazy-prop@2.0.0:
691 | resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
692 | engines: {node: '>=8'}
693 | dev: false
694 |
695 | /define-properties@1.1.4:
696 | resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==}
697 | engines: {node: '>= 0.4'}
698 | dependencies:
699 | has-property-descriptors: 1.0.0
700 | object-keys: 1.1.1
701 | dev: false
702 |
703 | /dir-glob@3.0.1:
704 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
705 | engines: {node: '>=8'}
706 | dependencies:
707 | path-type: 4.0.0
708 | dev: false
709 |
710 | /doctrine@2.1.0:
711 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
712 | engines: {node: '>=0.10.0'}
713 | dependencies:
714 | esutils: 2.0.3
715 | dev: false
716 |
717 | /doctrine@3.0.0:
718 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
719 | engines: {node: '>=6.0.0'}
720 | dependencies:
721 | esutils: 2.0.3
722 |
723 | /emoji-regex@8.0.0:
724 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
725 |
726 | /emoji-regex@9.2.2:
727 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
728 | dev: false
729 |
730 | /enhanced-resolve@5.12.0:
731 | resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==}
732 | engines: {node: '>=10.13.0'}
733 | dependencies:
734 | graceful-fs: 4.2.10
735 | tapable: 2.2.1
736 | dev: false
737 |
738 | /enquirer@2.3.6:
739 | resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
740 | engines: {node: '>=8.6'}
741 | dependencies:
742 | ansi-colors: 4.1.3
743 |
744 | /es-abstract@1.20.4:
745 | resolution: {integrity: sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==}
746 | engines: {node: '>= 0.4'}
747 | dependencies:
748 | call-bind: 1.0.2
749 | es-to-primitive: 1.2.1
750 | function-bind: 1.1.1
751 | function.prototype.name: 1.1.5
752 | get-intrinsic: 1.1.3
753 | get-symbol-description: 1.0.0
754 | has: 1.0.3
755 | has-property-descriptors: 1.0.0
756 | has-symbols: 1.0.3
757 | internal-slot: 1.0.3
758 | is-callable: 1.2.7
759 | is-negative-zero: 2.0.2
760 | is-regex: 1.1.4
761 | is-shared-array-buffer: 1.0.2
762 | is-string: 1.0.7
763 | is-weakref: 1.0.2
764 | object-inspect: 1.12.2
765 | object-keys: 1.1.1
766 | object.assign: 4.1.4
767 | regexp.prototype.flags: 1.4.3
768 | safe-regex-test: 1.0.0
769 | string.prototype.trimend: 1.0.6
770 | string.prototype.trimstart: 1.0.6
771 | unbox-primitive: 1.0.2
772 | dev: false
773 |
774 | /es-shim-unscopables@1.0.0:
775 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
776 | dependencies:
777 | has: 1.0.3
778 | dev: false
779 |
780 | /es-to-primitive@1.2.1:
781 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
782 | engines: {node: '>= 0.4'}
783 | dependencies:
784 | is-callable: 1.2.7
785 | is-date-object: 1.0.5
786 | is-symbol: 1.0.4
787 | dev: false
788 |
789 | /escape-string-regexp@1.0.5:
790 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
791 | engines: {node: '>=0.8.0'}
792 |
793 | /escape-string-regexp@4.0.0:
794 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
795 | engines: {node: '>=10'}
796 |
797 | /eslint-config-next@13.3.0(eslint@7.32.0)(typescript@4.9.3):
798 | resolution: {integrity: sha512-6YEwmFBX0VjBd3ODGW9df0Is0FLaRFdMN8eAahQG9CN6LjQ28J8AFr19ngxqMSg7Qv6Uca/3VeeBosJh1bzu0w==}
799 | peerDependencies:
800 | eslint: ^7.23.0 || ^8.0.0
801 | typescript: '>=3.3.1'
802 | peerDependenciesMeta:
803 | typescript:
804 | optional: true
805 | dependencies:
806 | '@next/eslint-plugin-next': 13.3.0
807 | '@rushstack/eslint-patch': 1.2.0
808 | '@typescript-eslint/parser': 5.44.0(eslint@7.32.0)(typescript@4.9.3)
809 | eslint: 7.32.0
810 | eslint-import-resolver-node: 0.3.6
811 | eslint-import-resolver-typescript: 3.5.2(eslint-plugin-import@2.26.0)(eslint@7.32.0)
812 | eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.44.0)(eslint-import-resolver-typescript@3.5.2)(eslint@7.32.0)
813 | eslint-plugin-jsx-a11y: 6.6.1(eslint@7.32.0)
814 | eslint-plugin-react: 7.31.11(eslint@7.32.0)
815 | eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0)
816 | typescript: 4.9.3
817 | transitivePeerDependencies:
818 | - eslint-import-resolver-webpack
819 | - supports-color
820 | dev: false
821 |
822 | /eslint-config-prettier@8.5.0(eslint@7.32.0):
823 | resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==}
824 | hasBin: true
825 | peerDependencies:
826 | eslint: '>=7.0.0'
827 | dependencies:
828 | eslint: 7.32.0
829 | dev: false
830 |
831 | /eslint-config-turbo@0.0.10(eslint@7.32.0):
832 | resolution: {integrity: sha512-o4ULFZYM1OihSd63eDGEuy9rt6tW4ma6xnW9grnr44BoJwKaGQko2aka9kfqQs0vtmwD1++Os3ThPHETmzkFzA==}
833 | peerDependencies:
834 | eslint: '>6.6.0'
835 | dependencies:
836 | eslint: 7.32.0
837 | eslint-plugin-turbo: 0.0.10(eslint@7.32.0)
838 | dev: false
839 |
840 | /eslint-import-resolver-node@0.3.6:
841 | resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==}
842 | dependencies:
843 | debug: 3.2.7
844 | resolve: 1.22.1
845 | transitivePeerDependencies:
846 | - supports-color
847 | dev: false
848 |
849 | /eslint-import-resolver-typescript@3.5.2(eslint-plugin-import@2.26.0)(eslint@7.32.0):
850 | resolution: {integrity: sha512-zX4ebnnyXiykjhcBvKIf5TNvt8K7yX6bllTRZ14MiurKPjDpCAZujlszTdB8pcNXhZcOf+god4s9SjQa5GnytQ==}
851 | engines: {node: ^14.18.0 || >=16.0.0}
852 | peerDependencies:
853 | eslint: '*'
854 | eslint-plugin-import: '*'
855 | dependencies:
856 | debug: 4.3.4
857 | enhanced-resolve: 5.12.0
858 | eslint: 7.32.0
859 | eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.44.0)(eslint-import-resolver-typescript@3.5.2)(eslint@7.32.0)
860 | get-tsconfig: 4.3.0
861 | globby: 13.1.3
862 | is-core-module: 2.11.0
863 | is-glob: 4.0.3
864 | synckit: 0.8.4
865 | transitivePeerDependencies:
866 | - supports-color
867 | dev: false
868 |
869 | /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.44.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@3.5.2)(eslint@7.32.0):
870 | resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
871 | engines: {node: '>=4'}
872 | peerDependencies:
873 | '@typescript-eslint/parser': '*'
874 | eslint: '*'
875 | eslint-import-resolver-node: '*'
876 | eslint-import-resolver-typescript: '*'
877 | eslint-import-resolver-webpack: '*'
878 | peerDependenciesMeta:
879 | '@typescript-eslint/parser':
880 | optional: true
881 | eslint:
882 | optional: true
883 | eslint-import-resolver-node:
884 | optional: true
885 | eslint-import-resolver-typescript:
886 | optional: true
887 | eslint-import-resolver-webpack:
888 | optional: true
889 | dependencies:
890 | '@typescript-eslint/parser': 5.44.0(eslint@7.32.0)(typescript@4.9.3)
891 | debug: 3.2.7
892 | eslint: 7.32.0
893 | eslint-import-resolver-node: 0.3.6
894 | eslint-import-resolver-typescript: 3.5.2(eslint-plugin-import@2.26.0)(eslint@7.32.0)
895 | transitivePeerDependencies:
896 | - supports-color
897 | dev: false
898 |
899 | /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.44.0)(eslint-import-resolver-typescript@3.5.2)(eslint@7.32.0):
900 | resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
901 | engines: {node: '>=4'}
902 | peerDependencies:
903 | '@typescript-eslint/parser': '*'
904 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
905 | peerDependenciesMeta:
906 | '@typescript-eslint/parser':
907 | optional: true
908 | dependencies:
909 | '@typescript-eslint/parser': 5.44.0(eslint@7.32.0)(typescript@4.9.3)
910 | array-includes: 3.1.6
911 | array.prototype.flat: 1.3.1
912 | debug: 2.6.9
913 | doctrine: 2.1.0
914 | eslint: 7.32.0
915 | eslint-import-resolver-node: 0.3.6
916 | eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.44.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@3.5.2)(eslint@7.32.0)
917 | has: 1.0.3
918 | is-core-module: 2.11.0
919 | is-glob: 4.0.3
920 | minimatch: 3.1.2
921 | object.values: 1.1.6
922 | resolve: 1.22.1
923 | tsconfig-paths: 3.14.1
924 | transitivePeerDependencies:
925 | - eslint-import-resolver-typescript
926 | - eslint-import-resolver-webpack
927 | - supports-color
928 | dev: false
929 |
930 | /eslint-plugin-jsx-a11y@6.6.1(eslint@7.32.0):
931 | resolution: {integrity: sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==}
932 | engines: {node: '>=4.0'}
933 | peerDependencies:
934 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
935 | dependencies:
936 | '@babel/runtime': 7.20.1
937 | aria-query: 4.2.2
938 | array-includes: 3.1.6
939 | ast-types-flow: 0.0.7
940 | axe-core: 4.5.2
941 | axobject-query: 2.2.0
942 | damerau-levenshtein: 1.0.8
943 | emoji-regex: 9.2.2
944 | eslint: 7.32.0
945 | has: 1.0.3
946 | jsx-ast-utils: 3.3.3
947 | language-tags: 1.0.5
948 | minimatch: 3.1.2
949 | semver: 6.3.0
950 | dev: false
951 |
952 | /eslint-plugin-react-hooks@4.6.0(eslint@7.32.0):
953 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
954 | engines: {node: '>=10'}
955 | peerDependencies:
956 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
957 | dependencies:
958 | eslint: 7.32.0
959 | dev: false
960 |
961 | /eslint-plugin-react@7.28.0(eslint@7.32.0):
962 | resolution: {integrity: sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==}
963 | engines: {node: '>=4'}
964 | peerDependencies:
965 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
966 | dependencies:
967 | array-includes: 3.1.6
968 | array.prototype.flatmap: 1.3.1
969 | doctrine: 2.1.0
970 | eslint: 7.32.0
971 | estraverse: 5.3.0
972 | jsx-ast-utils: 3.3.3
973 | minimatch: 3.1.2
974 | object.entries: 1.1.6
975 | object.fromentries: 2.0.6
976 | object.hasown: 1.1.2
977 | object.values: 1.1.6
978 | prop-types: 15.8.1
979 | resolve: 2.0.0-next.4
980 | semver: 6.3.0
981 | string.prototype.matchall: 4.0.8
982 | dev: false
983 |
984 | /eslint-plugin-react@7.31.11(eslint@7.32.0):
985 | resolution: {integrity: sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==}
986 | engines: {node: '>=4'}
987 | peerDependencies:
988 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
989 | dependencies:
990 | array-includes: 3.1.6
991 | array.prototype.flatmap: 1.3.1
992 | array.prototype.tosorted: 1.1.1
993 | doctrine: 2.1.0
994 | eslint: 7.32.0
995 | estraverse: 5.3.0
996 | jsx-ast-utils: 3.3.3
997 | minimatch: 3.1.2
998 | object.entries: 1.1.6
999 | object.fromentries: 2.0.6
1000 | object.hasown: 1.1.2
1001 | object.values: 1.1.6
1002 | prop-types: 15.8.1
1003 | resolve: 2.0.0-next.4
1004 | semver: 6.3.0
1005 | string.prototype.matchall: 4.0.8
1006 | dev: false
1007 |
1008 | /eslint-plugin-turbo@0.0.10(eslint@7.32.0):
1009 | resolution: {integrity: sha512-T7QRwF4rjBQCJD9AHLHn9ShtHCHNkfIZW5Oio92WtQYhoU5jZCU3ynU+ONFXLuvoUx4dJ19WergIyHL+DwL2+g==}
1010 | peerDependencies:
1011 | eslint: '>6.6.0'
1012 | dependencies:
1013 | eslint: 7.32.0
1014 | dev: false
1015 |
1016 | /eslint-scope@5.1.1:
1017 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
1018 | engines: {node: '>=8.0.0'}
1019 | dependencies:
1020 | esrecurse: 4.3.0
1021 | estraverse: 4.3.0
1022 |
1023 | /eslint-utils@2.1.0:
1024 | resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
1025 | engines: {node: '>=6'}
1026 | dependencies:
1027 | eslint-visitor-keys: 1.3.0
1028 |
1029 | /eslint-visitor-keys@1.3.0:
1030 | resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
1031 | engines: {node: '>=4'}
1032 |
1033 | /eslint-visitor-keys@2.1.0:
1034 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
1035 | engines: {node: '>=10'}
1036 |
1037 | /eslint-visitor-keys@3.3.0:
1038 | resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==}
1039 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1040 | dev: false
1041 |
1042 | /eslint@7.32.0:
1043 | resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==}
1044 | engines: {node: ^10.12.0 || >=12.0.0}
1045 | hasBin: true
1046 | dependencies:
1047 | '@babel/code-frame': 7.12.11
1048 | '@eslint/eslintrc': 0.4.3
1049 | '@humanwhocodes/config-array': 0.5.0
1050 | ajv: 6.12.6
1051 | chalk: 4.1.2
1052 | cross-spawn: 7.0.3
1053 | debug: 4.3.4
1054 | doctrine: 3.0.0
1055 | enquirer: 2.3.6
1056 | escape-string-regexp: 4.0.0
1057 | eslint-scope: 5.1.1
1058 | eslint-utils: 2.1.0
1059 | eslint-visitor-keys: 2.1.0
1060 | espree: 7.3.1
1061 | esquery: 1.4.0
1062 | esutils: 2.0.3
1063 | fast-deep-equal: 3.1.3
1064 | file-entry-cache: 6.0.1
1065 | functional-red-black-tree: 1.0.1
1066 | glob-parent: 5.1.2
1067 | globals: 13.18.0
1068 | ignore: 4.0.6
1069 | import-fresh: 3.3.0
1070 | imurmurhash: 0.1.4
1071 | is-glob: 4.0.3
1072 | js-yaml: 3.14.1
1073 | json-stable-stringify-without-jsonify: 1.0.1
1074 | levn: 0.4.1
1075 | lodash.merge: 4.6.2
1076 | minimatch: 3.1.2
1077 | natural-compare: 1.4.0
1078 | optionator: 0.9.1
1079 | progress: 2.0.3
1080 | regexpp: 3.2.0
1081 | semver: 7.3.8
1082 | strip-ansi: 6.0.1
1083 | strip-json-comments: 3.1.1
1084 | table: 6.8.1
1085 | text-table: 0.2.0
1086 | v8-compile-cache: 2.3.0
1087 | transitivePeerDependencies:
1088 | - supports-color
1089 |
1090 | /espree@7.3.1:
1091 | resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==}
1092 | engines: {node: ^10.12.0 || >=12.0.0}
1093 | dependencies:
1094 | acorn: 7.4.1
1095 | acorn-jsx: 5.3.2(acorn@7.4.1)
1096 | eslint-visitor-keys: 1.3.0
1097 |
1098 | /esprima@4.0.1:
1099 | resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
1100 | engines: {node: '>=4'}
1101 | hasBin: true
1102 |
1103 | /esquery@1.4.0:
1104 | resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==}
1105 | engines: {node: '>=0.10'}
1106 | dependencies:
1107 | estraverse: 5.3.0
1108 |
1109 | /esrecurse@4.3.0:
1110 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1111 | engines: {node: '>=4.0'}
1112 | dependencies:
1113 | estraverse: 5.3.0
1114 |
1115 | /estraverse@4.3.0:
1116 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
1117 | engines: {node: '>=4.0'}
1118 |
1119 | /estraverse@5.3.0:
1120 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1121 | engines: {node: '>=4.0'}
1122 |
1123 | /esutils@2.0.3:
1124 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1125 | engines: {node: '>=0.10.0'}
1126 |
1127 | /fast-deep-equal@3.1.3:
1128 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1129 |
1130 | /fast-glob@3.2.12:
1131 | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
1132 | engines: {node: '>=8.6.0'}
1133 | dependencies:
1134 | '@nodelib/fs.stat': 2.0.5
1135 | '@nodelib/fs.walk': 1.2.8
1136 | glob-parent: 5.1.2
1137 | merge2: 1.4.1
1138 | micromatch: 4.0.5
1139 | dev: false
1140 |
1141 | /fast-json-stable-stringify@2.1.0:
1142 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1143 |
1144 | /fast-levenshtein@2.0.6:
1145 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1146 |
1147 | /fastq@1.13.0:
1148 | resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==}
1149 | dependencies:
1150 | reusify: 1.0.4
1151 | dev: false
1152 |
1153 | /file-entry-cache@6.0.1:
1154 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
1155 | engines: {node: ^10.12.0 || >=12.0.0}
1156 | dependencies:
1157 | flat-cache: 3.0.4
1158 |
1159 | /fill-range@7.0.1:
1160 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
1161 | engines: {node: '>=8'}
1162 | dependencies:
1163 | to-regex-range: 5.0.1
1164 | dev: false
1165 |
1166 | /flat-cache@3.0.4:
1167 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
1168 | engines: {node: ^10.12.0 || >=12.0.0}
1169 | dependencies:
1170 | flatted: 3.2.7
1171 | rimraf: 3.0.2
1172 |
1173 | /flatted@3.2.7:
1174 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
1175 |
1176 | /fs.realpath@1.0.0:
1177 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
1178 |
1179 | /function-bind@1.1.1:
1180 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
1181 | dev: false
1182 |
1183 | /function.prototype.name@1.1.5:
1184 | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
1185 | engines: {node: '>= 0.4'}
1186 | dependencies:
1187 | call-bind: 1.0.2
1188 | define-properties: 1.1.4
1189 | es-abstract: 1.20.4
1190 | functions-have-names: 1.2.3
1191 | dev: false
1192 |
1193 | /functional-red-black-tree@1.0.1:
1194 | resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
1195 |
1196 | /functions-have-names@1.2.3:
1197 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
1198 | dev: false
1199 |
1200 | /get-intrinsic@1.1.3:
1201 | resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==}
1202 | dependencies:
1203 | function-bind: 1.1.1
1204 | has: 1.0.3
1205 | has-symbols: 1.0.3
1206 | dev: false
1207 |
1208 | /get-symbol-description@1.0.0:
1209 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
1210 | engines: {node: '>= 0.4'}
1211 | dependencies:
1212 | call-bind: 1.0.2
1213 | get-intrinsic: 1.1.3
1214 | dev: false
1215 |
1216 | /get-tsconfig@4.3.0:
1217 | resolution: {integrity: sha512-YCcF28IqSay3fqpIu5y3Krg/utCBHBeoflkZyHj/QcqI2nrLPC3ZegS9CmIo+hJb8K7aiGsuUl7PwWVjNG2HQQ==}
1218 | dev: false
1219 |
1220 | /glob-parent@5.1.2:
1221 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1222 | engines: {node: '>= 6'}
1223 | dependencies:
1224 | is-glob: 4.0.3
1225 |
1226 | /glob@7.1.7:
1227 | resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
1228 | dependencies:
1229 | fs.realpath: 1.0.0
1230 | inflight: 1.0.6
1231 | inherits: 2.0.4
1232 | minimatch: 3.1.2
1233 | once: 1.4.0
1234 | path-is-absolute: 1.0.1
1235 | dev: false
1236 |
1237 | /glob@7.2.3:
1238 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
1239 | dependencies:
1240 | fs.realpath: 1.0.0
1241 | inflight: 1.0.6
1242 | inherits: 2.0.4
1243 | minimatch: 3.1.2
1244 | once: 1.4.0
1245 | path-is-absolute: 1.0.1
1246 |
1247 | /globals@13.18.0:
1248 | resolution: {integrity: sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==}
1249 | engines: {node: '>=8'}
1250 | dependencies:
1251 | type-fest: 0.20.2
1252 |
1253 | /globalyzer@0.1.0:
1254 | resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
1255 | dev: false
1256 |
1257 | /globby@11.1.0:
1258 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
1259 | engines: {node: '>=10'}
1260 | dependencies:
1261 | array-union: 2.1.0
1262 | dir-glob: 3.0.1
1263 | fast-glob: 3.2.12
1264 | ignore: 5.2.0
1265 | merge2: 1.4.1
1266 | slash: 3.0.0
1267 | dev: false
1268 |
1269 | /globby@13.1.3:
1270 | resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==}
1271 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1272 | dependencies:
1273 | dir-glob: 3.0.1
1274 | fast-glob: 3.2.12
1275 | ignore: 5.2.0
1276 | merge2: 1.4.1
1277 | slash: 4.0.0
1278 | dev: false
1279 |
1280 | /globrex@0.1.2:
1281 | resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
1282 | dev: false
1283 |
1284 | /graceful-fs@4.2.10:
1285 | resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
1286 | dev: false
1287 |
1288 | /has-bigints@1.0.2:
1289 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
1290 | dev: false
1291 |
1292 | /has-flag@3.0.0:
1293 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
1294 | engines: {node: '>=4'}
1295 |
1296 | /has-flag@4.0.0:
1297 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1298 | engines: {node: '>=8'}
1299 |
1300 | /has-property-descriptors@1.0.0:
1301 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
1302 | dependencies:
1303 | get-intrinsic: 1.1.3
1304 | dev: false
1305 |
1306 | /has-symbols@1.0.3:
1307 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
1308 | engines: {node: '>= 0.4'}
1309 | dev: false
1310 |
1311 | /has-tostringtag@1.0.0:
1312 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
1313 | engines: {node: '>= 0.4'}
1314 | dependencies:
1315 | has-symbols: 1.0.3
1316 | dev: false
1317 |
1318 | /has@1.0.3:
1319 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
1320 | engines: {node: '>= 0.4.0'}
1321 | dependencies:
1322 | function-bind: 1.1.1
1323 | dev: false
1324 |
1325 | /ignore@4.0.6:
1326 | resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
1327 | engines: {node: '>= 4'}
1328 |
1329 | /ignore@5.2.0:
1330 | resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==}
1331 | engines: {node: '>= 4'}
1332 | dev: false
1333 |
1334 | /import-fresh@3.3.0:
1335 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
1336 | engines: {node: '>=6'}
1337 | dependencies:
1338 | parent-module: 1.0.1
1339 | resolve-from: 4.0.0
1340 |
1341 | /imurmurhash@0.1.4:
1342 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1343 | engines: {node: '>=0.8.19'}
1344 |
1345 | /inflight@1.0.6:
1346 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
1347 | dependencies:
1348 | once: 1.4.0
1349 | wrappy: 1.0.2
1350 |
1351 | /inherits@2.0.4:
1352 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1353 |
1354 | /internal-slot@1.0.3:
1355 | resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==}
1356 | engines: {node: '>= 0.4'}
1357 | dependencies:
1358 | get-intrinsic: 1.1.3
1359 | has: 1.0.3
1360 | side-channel: 1.0.4
1361 | dev: false
1362 |
1363 | /is-bigint@1.0.4:
1364 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
1365 | dependencies:
1366 | has-bigints: 1.0.2
1367 | dev: false
1368 |
1369 | /is-boolean-object@1.1.2:
1370 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
1371 | engines: {node: '>= 0.4'}
1372 | dependencies:
1373 | call-bind: 1.0.2
1374 | has-tostringtag: 1.0.0
1375 | dev: false
1376 |
1377 | /is-callable@1.2.7:
1378 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
1379 | engines: {node: '>= 0.4'}
1380 | dev: false
1381 |
1382 | /is-core-module@2.11.0:
1383 | resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==}
1384 | dependencies:
1385 | has: 1.0.3
1386 | dev: false
1387 |
1388 | /is-date-object@1.0.5:
1389 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
1390 | engines: {node: '>= 0.4'}
1391 | dependencies:
1392 | has-tostringtag: 1.0.0
1393 | dev: false
1394 |
1395 | /is-docker@2.2.1:
1396 | resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
1397 | engines: {node: '>=8'}
1398 | hasBin: true
1399 | dev: false
1400 |
1401 | /is-extglob@2.1.1:
1402 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1403 | engines: {node: '>=0.10.0'}
1404 |
1405 | /is-fullwidth-code-point@3.0.0:
1406 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
1407 | engines: {node: '>=8'}
1408 |
1409 | /is-glob@4.0.3:
1410 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1411 | engines: {node: '>=0.10.0'}
1412 | dependencies:
1413 | is-extglob: 2.1.1
1414 |
1415 | /is-negative-zero@2.0.2:
1416 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
1417 | engines: {node: '>= 0.4'}
1418 | dev: false
1419 |
1420 | /is-number-object@1.0.7:
1421 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
1422 | engines: {node: '>= 0.4'}
1423 | dependencies:
1424 | has-tostringtag: 1.0.0
1425 | dev: false
1426 |
1427 | /is-number@7.0.0:
1428 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1429 | engines: {node: '>=0.12.0'}
1430 | dev: false
1431 |
1432 | /is-regex@1.1.4:
1433 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
1434 | engines: {node: '>= 0.4'}
1435 | dependencies:
1436 | call-bind: 1.0.2
1437 | has-tostringtag: 1.0.0
1438 | dev: false
1439 |
1440 | /is-shared-array-buffer@1.0.2:
1441 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
1442 | dependencies:
1443 | call-bind: 1.0.2
1444 | dev: false
1445 |
1446 | /is-string@1.0.7:
1447 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
1448 | engines: {node: '>= 0.4'}
1449 | dependencies:
1450 | has-tostringtag: 1.0.0
1451 | dev: false
1452 |
1453 | /is-symbol@1.0.4:
1454 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
1455 | engines: {node: '>= 0.4'}
1456 | dependencies:
1457 | has-symbols: 1.0.3
1458 | dev: false
1459 |
1460 | /is-weakref@1.0.2:
1461 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
1462 | dependencies:
1463 | call-bind: 1.0.2
1464 | dev: false
1465 |
1466 | /is-wsl@2.2.0:
1467 | resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
1468 | engines: {node: '>=8'}
1469 | dependencies:
1470 | is-docker: 2.2.1
1471 | dev: false
1472 |
1473 | /isexe@2.0.0:
1474 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1475 |
1476 | /js-tokens@4.0.0:
1477 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1478 |
1479 | /js-yaml@3.14.1:
1480 | resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
1481 | hasBin: true
1482 | dependencies:
1483 | argparse: 1.0.10
1484 | esprima: 4.0.1
1485 |
1486 | /json-schema-traverse@0.4.1:
1487 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1488 |
1489 | /json-schema-traverse@1.0.0:
1490 | resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
1491 |
1492 | /json-stable-stringify-without-jsonify@1.0.1:
1493 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1494 |
1495 | /json5@1.0.1:
1496 | resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==}
1497 | hasBin: true
1498 | dependencies:
1499 | minimist: 1.2.7
1500 | dev: false
1501 |
1502 | /jsx-ast-utils@3.3.3:
1503 | resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
1504 | engines: {node: '>=4.0'}
1505 | dependencies:
1506 | array-includes: 3.1.6
1507 | object.assign: 4.1.4
1508 | dev: false
1509 |
1510 | /language-subtag-registry@0.3.22:
1511 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
1512 | dev: false
1513 |
1514 | /language-tags@1.0.5:
1515 | resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==}
1516 | dependencies:
1517 | language-subtag-registry: 0.3.22
1518 | dev: false
1519 |
1520 | /levn@0.4.1:
1521 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1522 | engines: {node: '>= 0.8.0'}
1523 | dependencies:
1524 | prelude-ls: 1.2.1
1525 | type-check: 0.4.0
1526 |
1527 | /lodash.merge@4.6.2:
1528 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1529 |
1530 | /lodash.truncate@4.4.2:
1531 | resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
1532 |
1533 | /loose-envify@1.4.0:
1534 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1535 | hasBin: true
1536 | dependencies:
1537 | js-tokens: 4.0.0
1538 |
1539 | /lru-cache@6.0.0:
1540 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
1541 | engines: {node: '>=10'}
1542 | dependencies:
1543 | yallist: 4.0.0
1544 |
1545 | /merge2@1.4.1:
1546 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1547 | engines: {node: '>= 8'}
1548 | dev: false
1549 |
1550 | /micromatch@4.0.5:
1551 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
1552 | engines: {node: '>=8.6'}
1553 | dependencies:
1554 | braces: 3.0.2
1555 | picomatch: 2.3.1
1556 | dev: false
1557 |
1558 | /minimatch@3.1.2:
1559 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1560 | dependencies:
1561 | brace-expansion: 1.1.11
1562 |
1563 | /minimist@1.2.7:
1564 | resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==}
1565 | dev: false
1566 |
1567 | /ms@2.0.0:
1568 | resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
1569 | dev: false
1570 |
1571 | /ms@2.1.2:
1572 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
1573 |
1574 | /ms@2.1.3:
1575 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1576 | dev: false
1577 |
1578 | /nanoid@3.3.4:
1579 | resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
1580 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1581 | hasBin: true
1582 | dev: false
1583 |
1584 | /natural-compare@1.4.0:
1585 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1586 |
1587 | /next@13.3.0(react-dom@18.2.0)(react@18.2.0):
1588 | resolution: {integrity: sha512-OVTw8MpIPa12+DCUkPqRGPS3thlJPcwae2ZL4xti3iBff27goH024xy4q2lhlsdoYiKOi8Kz6uJoLW/GXwgfOA==}
1589 | engines: {node: '>=14.6.0'}
1590 | hasBin: true
1591 | peerDependencies:
1592 | '@opentelemetry/api': ^1.1.0
1593 | fibers: '>= 3.1.0'
1594 | node-sass: ^6.0.0 || ^7.0.0
1595 | react: ^18.2.0
1596 | react-dom: ^18.2.0
1597 | sass: ^1.3.0
1598 | peerDependenciesMeta:
1599 | '@opentelemetry/api':
1600 | optional: true
1601 | fibers:
1602 | optional: true
1603 | node-sass:
1604 | optional: true
1605 | sass:
1606 | optional: true
1607 | dependencies:
1608 | '@next/env': 13.3.0
1609 | '@swc/helpers': 0.4.14
1610 | busboy: 1.6.0
1611 | caniuse-lite: 1.0.30001434
1612 | postcss: 8.4.14
1613 | react: 18.2.0
1614 | react-dom: 18.2.0(react@18.2.0)
1615 | styled-jsx: 5.1.1(react@18.2.0)
1616 | optionalDependencies:
1617 | '@next/swc-darwin-arm64': 13.3.0
1618 | '@next/swc-darwin-x64': 13.3.0
1619 | '@next/swc-linux-arm64-gnu': 13.3.0
1620 | '@next/swc-linux-arm64-musl': 13.3.0
1621 | '@next/swc-linux-x64-gnu': 13.3.0
1622 | '@next/swc-linux-x64-musl': 13.3.0
1623 | '@next/swc-win32-arm64-msvc': 13.3.0
1624 | '@next/swc-win32-ia32-msvc': 13.3.0
1625 | '@next/swc-win32-x64-msvc': 13.3.0
1626 | transitivePeerDependencies:
1627 | - '@babel/core'
1628 | - babel-plugin-macros
1629 | dev: false
1630 |
1631 | /object-assign@4.1.1:
1632 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1633 | engines: {node: '>=0.10.0'}
1634 |
1635 | /object-inspect@1.12.2:
1636 | resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
1637 | dev: false
1638 |
1639 | /object-keys@1.1.1:
1640 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
1641 | engines: {node: '>= 0.4'}
1642 | dev: false
1643 |
1644 | /object.assign@4.1.4:
1645 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
1646 | engines: {node: '>= 0.4'}
1647 | dependencies:
1648 | call-bind: 1.0.2
1649 | define-properties: 1.1.4
1650 | has-symbols: 1.0.3
1651 | object-keys: 1.1.1
1652 | dev: false
1653 |
1654 | /object.entries@1.1.6:
1655 | resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
1656 | engines: {node: '>= 0.4'}
1657 | dependencies:
1658 | call-bind: 1.0.2
1659 | define-properties: 1.1.4
1660 | es-abstract: 1.20.4
1661 | dev: false
1662 |
1663 | /object.fromentries@2.0.6:
1664 | resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
1665 | engines: {node: '>= 0.4'}
1666 | dependencies:
1667 | call-bind: 1.0.2
1668 | define-properties: 1.1.4
1669 | es-abstract: 1.20.4
1670 | dev: false
1671 |
1672 | /object.hasown@1.1.2:
1673 | resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
1674 | dependencies:
1675 | define-properties: 1.1.4
1676 | es-abstract: 1.20.4
1677 | dev: false
1678 |
1679 | /object.values@1.1.6:
1680 | resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
1681 | engines: {node: '>= 0.4'}
1682 | dependencies:
1683 | call-bind: 1.0.2
1684 | define-properties: 1.1.4
1685 | es-abstract: 1.20.4
1686 | dev: false
1687 |
1688 | /once@1.4.0:
1689 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
1690 | dependencies:
1691 | wrappy: 1.0.2
1692 |
1693 | /open@8.4.0:
1694 | resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==}
1695 | engines: {node: '>=12'}
1696 | dependencies:
1697 | define-lazy-prop: 2.0.0
1698 | is-docker: 2.2.1
1699 | is-wsl: 2.2.0
1700 | dev: false
1701 |
1702 | /optionator@0.9.1:
1703 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
1704 | engines: {node: '>= 0.8.0'}
1705 | dependencies:
1706 | deep-is: 0.1.4
1707 | fast-levenshtein: 2.0.6
1708 | levn: 0.4.1
1709 | prelude-ls: 1.2.1
1710 | type-check: 0.4.0
1711 | word-wrap: 1.2.3
1712 |
1713 | /parent-module@1.0.1:
1714 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1715 | engines: {node: '>=6'}
1716 | dependencies:
1717 | callsites: 3.1.0
1718 |
1719 | /path-is-absolute@1.0.1:
1720 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
1721 | engines: {node: '>=0.10.0'}
1722 |
1723 | /path-key@3.1.1:
1724 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1725 | engines: {node: '>=8'}
1726 |
1727 | /path-parse@1.0.7:
1728 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1729 | dev: false
1730 |
1731 | /path-type@4.0.0:
1732 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
1733 | engines: {node: '>=8'}
1734 | dev: false
1735 |
1736 | /picocolors@1.0.0:
1737 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
1738 | dev: false
1739 |
1740 | /picomatch@2.3.1:
1741 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1742 | engines: {node: '>=8.6'}
1743 | dev: false
1744 |
1745 | /postcss@8.4.14:
1746 | resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
1747 | engines: {node: ^10 || ^12 || >=14}
1748 | dependencies:
1749 | nanoid: 3.3.4
1750 | picocolors: 1.0.0
1751 | source-map-js: 1.0.2
1752 | dev: false
1753 |
1754 | /prelude-ls@1.2.1:
1755 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1756 | engines: {node: '>= 0.8.0'}
1757 |
1758 | /prettier@2.8.0:
1759 | resolution: {integrity: sha512-9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA==}
1760 | engines: {node: '>=10.13.0'}
1761 | hasBin: true
1762 | dev: true
1763 |
1764 | /progress@2.0.3:
1765 | resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
1766 | engines: {node: '>=0.4.0'}
1767 |
1768 | /prop-types@15.8.1:
1769 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
1770 | dependencies:
1771 | loose-envify: 1.4.0
1772 | object-assign: 4.1.1
1773 | react-is: 16.13.1
1774 | dev: false
1775 |
1776 | /punycode@2.1.1:
1777 | resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
1778 | engines: {node: '>=6'}
1779 |
1780 | /queue-microtask@1.2.3:
1781 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1782 | dev: false
1783 |
1784 | /react-dom@18.2.0(react@18.2.0):
1785 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
1786 | peerDependencies:
1787 | react: ^18.2.0
1788 | dependencies:
1789 | loose-envify: 1.4.0
1790 | react: 18.2.0
1791 | scheduler: 0.23.0
1792 | dev: false
1793 |
1794 | /react-is@16.13.1:
1795 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
1796 | dev: false
1797 |
1798 | /react@17.0.2:
1799 | resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==}
1800 | engines: {node: '>=0.10.0'}
1801 | dependencies:
1802 | loose-envify: 1.4.0
1803 | object-assign: 4.1.1
1804 | dev: true
1805 |
1806 | /react@18.2.0:
1807 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
1808 | engines: {node: '>=0.10.0'}
1809 | dependencies:
1810 | loose-envify: 1.4.0
1811 | dev: false
1812 |
1813 | /regenerator-runtime@0.13.11:
1814 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
1815 | dev: false
1816 |
1817 | /regexp.prototype.flags@1.4.3:
1818 | resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
1819 | engines: {node: '>= 0.4'}
1820 | dependencies:
1821 | call-bind: 1.0.2
1822 | define-properties: 1.1.4
1823 | functions-have-names: 1.2.3
1824 | dev: false
1825 |
1826 | /regexpp@3.2.0:
1827 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
1828 | engines: {node: '>=8'}
1829 |
1830 | /require-from-string@2.0.2:
1831 | resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
1832 | engines: {node: '>=0.10.0'}
1833 |
1834 | /resolve-from@4.0.0:
1835 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1836 | engines: {node: '>=4'}
1837 |
1838 | /resolve@1.22.1:
1839 | resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
1840 | hasBin: true
1841 | dependencies:
1842 | is-core-module: 2.11.0
1843 | path-parse: 1.0.7
1844 | supports-preserve-symlinks-flag: 1.0.0
1845 | dev: false
1846 |
1847 | /resolve@2.0.0-next.4:
1848 | resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
1849 | hasBin: true
1850 | dependencies:
1851 | is-core-module: 2.11.0
1852 | path-parse: 1.0.7
1853 | supports-preserve-symlinks-flag: 1.0.0
1854 | dev: false
1855 |
1856 | /reusify@1.0.4:
1857 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
1858 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
1859 | dev: false
1860 |
1861 | /rimraf@3.0.2:
1862 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
1863 | hasBin: true
1864 | dependencies:
1865 | glob: 7.2.3
1866 |
1867 | /run-parallel@1.2.0:
1868 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1869 | dependencies:
1870 | queue-microtask: 1.2.3
1871 | dev: false
1872 |
1873 | /safe-regex-test@1.0.0:
1874 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
1875 | dependencies:
1876 | call-bind: 1.0.2
1877 | get-intrinsic: 1.1.3
1878 | is-regex: 1.1.4
1879 | dev: false
1880 |
1881 | /scheduler@0.23.0:
1882 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
1883 | dependencies:
1884 | loose-envify: 1.4.0
1885 | dev: false
1886 |
1887 | /semver@6.3.0:
1888 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
1889 | hasBin: true
1890 | dev: false
1891 |
1892 | /semver@7.3.8:
1893 | resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==}
1894 | engines: {node: '>=10'}
1895 | hasBin: true
1896 | dependencies:
1897 | lru-cache: 6.0.0
1898 |
1899 | /shebang-command@2.0.0:
1900 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1901 | engines: {node: '>=8'}
1902 | dependencies:
1903 | shebang-regex: 3.0.0
1904 |
1905 | /shebang-regex@3.0.0:
1906 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1907 | engines: {node: '>=8'}
1908 |
1909 | /side-channel@1.0.4:
1910 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
1911 | dependencies:
1912 | call-bind: 1.0.2
1913 | get-intrinsic: 1.1.3
1914 | object-inspect: 1.12.2
1915 | dev: false
1916 |
1917 | /slash@3.0.0:
1918 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
1919 | engines: {node: '>=8'}
1920 | dev: false
1921 |
1922 | /slash@4.0.0:
1923 | resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
1924 | engines: {node: '>=12'}
1925 | dev: false
1926 |
1927 | /slice-ansi@4.0.0:
1928 | resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
1929 | engines: {node: '>=10'}
1930 | dependencies:
1931 | ansi-styles: 4.3.0
1932 | astral-regex: 2.0.0
1933 | is-fullwidth-code-point: 3.0.0
1934 |
1935 | /source-map-js@1.0.2:
1936 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
1937 | engines: {node: '>=0.10.0'}
1938 | dev: false
1939 |
1940 | /sprintf-js@1.0.3:
1941 | resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
1942 |
1943 | /streamsearch@1.1.0:
1944 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
1945 | engines: {node: '>=10.0.0'}
1946 | dev: false
1947 |
1948 | /string-width@4.2.3:
1949 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
1950 | engines: {node: '>=8'}
1951 | dependencies:
1952 | emoji-regex: 8.0.0
1953 | is-fullwidth-code-point: 3.0.0
1954 | strip-ansi: 6.0.1
1955 |
1956 | /string.prototype.matchall@4.0.8:
1957 | resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
1958 | dependencies:
1959 | call-bind: 1.0.2
1960 | define-properties: 1.1.4
1961 | es-abstract: 1.20.4
1962 | get-intrinsic: 1.1.3
1963 | has-symbols: 1.0.3
1964 | internal-slot: 1.0.3
1965 | regexp.prototype.flags: 1.4.3
1966 | side-channel: 1.0.4
1967 | dev: false
1968 |
1969 | /string.prototype.trimend@1.0.6:
1970 | resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
1971 | dependencies:
1972 | call-bind: 1.0.2
1973 | define-properties: 1.1.4
1974 | es-abstract: 1.20.4
1975 | dev: false
1976 |
1977 | /string.prototype.trimstart@1.0.6:
1978 | resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
1979 | dependencies:
1980 | call-bind: 1.0.2
1981 | define-properties: 1.1.4
1982 | es-abstract: 1.20.4
1983 | dev: false
1984 |
1985 | /strip-ansi@6.0.1:
1986 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
1987 | engines: {node: '>=8'}
1988 | dependencies:
1989 | ansi-regex: 5.0.1
1990 |
1991 | /strip-bom@3.0.0:
1992 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
1993 | engines: {node: '>=4'}
1994 | dev: false
1995 |
1996 | /strip-json-comments@3.1.1:
1997 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
1998 | engines: {node: '>=8'}
1999 |
2000 | /styled-jsx@5.1.1(react@18.2.0):
2001 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
2002 | engines: {node: '>= 12.0.0'}
2003 | peerDependencies:
2004 | '@babel/core': '*'
2005 | babel-plugin-macros: '*'
2006 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
2007 | peerDependenciesMeta:
2008 | '@babel/core':
2009 | optional: true
2010 | babel-plugin-macros:
2011 | optional: true
2012 | dependencies:
2013 | client-only: 0.0.1
2014 | react: 18.2.0
2015 | dev: false
2016 |
2017 | /supports-color@5.5.0:
2018 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
2019 | engines: {node: '>=4'}
2020 | dependencies:
2021 | has-flag: 3.0.0
2022 |
2023 | /supports-color@7.2.0:
2024 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
2025 | engines: {node: '>=8'}
2026 | dependencies:
2027 | has-flag: 4.0.0
2028 |
2029 | /supports-preserve-symlinks-flag@1.0.0:
2030 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
2031 | engines: {node: '>= 0.4'}
2032 | dev: false
2033 |
2034 | /synckit@0.8.4:
2035 | resolution: {integrity: sha512-Dn2ZkzMdSX827QbowGbU/4yjWuvNaCoScLLoMo/yKbu+P4GBR6cRGKZH27k6a9bRzdqcyd1DE96pQtQ6uNkmyw==}
2036 | engines: {node: ^14.18.0 || >=16.0.0}
2037 | dependencies:
2038 | '@pkgr/utils': 2.3.1
2039 | tslib: 2.4.1
2040 | dev: false
2041 |
2042 | /table@6.8.1:
2043 | resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==}
2044 | engines: {node: '>=10.0.0'}
2045 | dependencies:
2046 | ajv: 8.11.2
2047 | lodash.truncate: 4.4.2
2048 | slice-ansi: 4.0.0
2049 | string-width: 4.2.3
2050 | strip-ansi: 6.0.1
2051 |
2052 | /tapable@2.2.1:
2053 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
2054 | engines: {node: '>=6'}
2055 | dev: false
2056 |
2057 | /text-table@0.2.0:
2058 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
2059 |
2060 | /tiny-glob@0.2.9:
2061 | resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
2062 | dependencies:
2063 | globalyzer: 0.1.0
2064 | globrex: 0.1.2
2065 | dev: false
2066 |
2067 | /to-regex-range@5.0.1:
2068 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
2069 | engines: {node: '>=8.0'}
2070 | dependencies:
2071 | is-number: 7.0.0
2072 | dev: false
2073 |
2074 | /tsconfig-paths@3.14.1:
2075 | resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==}
2076 | dependencies:
2077 | '@types/json5': 0.0.29
2078 | json5: 1.0.1
2079 | minimist: 1.2.7
2080 | strip-bom: 3.0.0
2081 | dev: false
2082 |
2083 | /tslib@1.14.1:
2084 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
2085 | dev: false
2086 |
2087 | /tslib@2.4.1:
2088 | resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
2089 | dev: false
2090 |
2091 | /tsutils@3.21.0(typescript@4.9.3):
2092 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
2093 | engines: {node: '>= 6'}
2094 | peerDependencies:
2095 | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
2096 | dependencies:
2097 | tslib: 1.14.1
2098 | typescript: 4.9.3
2099 | dev: false
2100 |
2101 | /turbo-darwin-64@1.8.5:
2102 | resolution: {integrity: sha512-CAYh56bzeHfnh7jTm03r29bh8p5a/EjQo1Id5yLUH7hS7msTau/+YpxJWPodLbN0UQsUYivUqHQkglJ+eMJ7xA==}
2103 | cpu: [x64]
2104 | os: [darwin]
2105 | requiresBuild: true
2106 | dev: true
2107 | optional: true
2108 |
2109 | /turbo-darwin-arm64@1.8.5:
2110 | resolution: {integrity: sha512-R3jCPOv+lu3dcvMhj8b/Defv6dyUwX6W+tbX7d6YUCA46Plf/bGCQ8+MSbxmr/4E1GyGOVFsn1wRfiYk0us/Dg==}
2111 | cpu: [arm64]
2112 | os: [darwin]
2113 | requiresBuild: true
2114 | dev: true
2115 | optional: true
2116 |
2117 | /turbo-linux-64@1.8.5:
2118 | resolution: {integrity: sha512-YRc/KNRZeUVvth11UO4SDQZR2IqGgl9MSsbzqoHuFz4B4Q5QXH7onHogv9aXWE/BZBBbcrSBTlwBSG0Gg+J8hg==}
2119 | cpu: [x64]
2120 | os: [linux]
2121 | requiresBuild: true
2122 | dev: true
2123 | optional: true
2124 |
2125 | /turbo-linux-arm64@1.8.5:
2126 | resolution: {integrity: sha512-8exVZb7XBl/V3gHSweuUyG2D9IzfWqwLvlXoeLWlVYSj61Ajgdv+WU7lvUmx+H2s+sSKqmIFmewA5Lw6YY37sg==}
2127 | cpu: [arm64]
2128 | os: [linux]
2129 | requiresBuild: true
2130 | dev: true
2131 | optional: true
2132 |
2133 | /turbo-windows-64@1.8.5:
2134 | resolution: {integrity: sha512-fA8PU5ZNoFnQkapG06WiEqfsVQ5wbIPkIqTwUsd/M2Lp+KgxE79SQbuEI+2vQ9SmwM5qoMi515IPjgvXAJXgCw==}
2135 | cpu: [x64]
2136 | os: [win32]
2137 | requiresBuild: true
2138 | dev: true
2139 | optional: true
2140 |
2141 | /turbo-windows-arm64@1.8.5:
2142 | resolution: {integrity: sha512-SW/NvIdhckLsAWjU/iqBbCB0S8kXupKscUK3kEW1DZIr3MYcP/yIuaE/IdPuqcoF3VP0I3TLD4VTYCCKAo3tKA==}
2143 | cpu: [arm64]
2144 | os: [win32]
2145 | requiresBuild: true
2146 | dev: true
2147 | optional: true
2148 |
2149 | /turbo@1.8.5:
2150 | resolution: {integrity: sha512-UBnH2wIFb5g6OQCk8f34Ud15ZXV4xEMmugeDJTU5Ur2LpVRsNEny0isSCYdb3Iu3howoNyyXmtpaxWsAwNYkkg==}
2151 | hasBin: true
2152 | requiresBuild: true
2153 | optionalDependencies:
2154 | turbo-darwin-64: 1.8.5
2155 | turbo-darwin-arm64: 1.8.5
2156 | turbo-linux-64: 1.8.5
2157 | turbo-linux-arm64: 1.8.5
2158 | turbo-windows-64: 1.8.5
2159 | turbo-windows-arm64: 1.8.5
2160 | dev: true
2161 |
2162 | /type-check@0.4.0:
2163 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
2164 | engines: {node: '>= 0.8.0'}
2165 | dependencies:
2166 | prelude-ls: 1.2.1
2167 |
2168 | /type-fest@0.20.2:
2169 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
2170 | engines: {node: '>=10'}
2171 |
2172 | /typescript@4.9.3:
2173 | resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==}
2174 | engines: {node: '>=4.2.0'}
2175 | hasBin: true
2176 |
2177 | /unbox-primitive@1.0.2:
2178 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
2179 | dependencies:
2180 | call-bind: 1.0.2
2181 | has-bigints: 1.0.2
2182 | has-symbols: 1.0.3
2183 | which-boxed-primitive: 1.0.2
2184 | dev: false
2185 |
2186 | /uri-js@4.4.1:
2187 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
2188 | dependencies:
2189 | punycode: 2.1.1
2190 |
2191 | /v8-compile-cache@2.3.0:
2192 | resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
2193 |
2194 | /which-boxed-primitive@1.0.2:
2195 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
2196 | dependencies:
2197 | is-bigint: 1.0.4
2198 | is-boolean-object: 1.1.2
2199 | is-number-object: 1.0.7
2200 | is-string: 1.0.7
2201 | is-symbol: 1.0.4
2202 | dev: false
2203 |
2204 | /which@2.0.2:
2205 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
2206 | engines: {node: '>= 8'}
2207 | hasBin: true
2208 | dependencies:
2209 | isexe: 2.0.0
2210 |
2211 | /word-wrap@1.2.3:
2212 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
2213 | engines: {node: '>=0.10.0'}
2214 |
2215 | /wrappy@1.0.2:
2216 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
2217 |
2218 | /yallist@4.0.0:
2219 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
2220 |
--------------------------------------------------------------------------------
/pnpm-workspace.yaml:
--------------------------------------------------------------------------------
1 | packages:
2 | - "apps/*"
3 | - "packages/*"
4 |
--------------------------------------------------------------------------------
/turbo.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://turbo.build/schema.json",
3 | "globalDependencies": ["**/.env.*local"],
4 | "pipeline": {
5 | "build": {
6 | "outputs": [".next/**", "!.next/cache/**"]
7 | },
8 | "lint": {},
9 | "dev": {
10 | "cache": false,
11 | "persistent": true
12 | }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------