Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 56cc66d8

Přidáno uživatelem Lukáš Vlček před více než 2 roky(ů)

WebApp (React + Next + TypeScript) project added

Zobrazit rozdíly:

webapp/.gitignore
1
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2

  
3
# dependencies
4
/node_modules
5
/.pnp
6
.pnp.js
7

  
8
# testing
9
/coverage
10

  
11
# next.js
12
/.next/
13
/out/
14

  
15
# production
16
/build
17

  
18
# misc
19
.DS_Store
20
*.pem
21

  
22
# debug
23
npm-debug.log*
24
yarn-debug.log*
25
yarn-error.log*
26
.pnpm-debug.log*
27

  
28
# local env files
29
.env.local
30
.env.development.local
31
.env.test.local
32
.env.production.local
33

  
34
# vercel
35
.vercel
36

  
37
# typescript
38
*.tsbuildinfo
webapp/.idea/.gitignore
1
# Default ignored files
2
/shelf/
3
/workspace.xml
4
# Editor-based HTTP Client requests
5
/httpRequests/
webapp/.idea/codeStyles/Project.xml
1
<component name="ProjectCodeStyleConfiguration">
2
  <code_scheme name="Project" version="173">
3
    <HTMLCodeStyleSettings>
4
      <option name="HTML_SPACE_INSIDE_EMPTY_TAG" value="true" />
5
      <option name="HTML_QUOTE_STYLE" value="Single" />
6
      <option name="HTML_ENFORCE_QUOTES" value="true" />
7
    </HTMLCodeStyleSettings>
8
    <JSCodeStyleSettings version="0">
9
      <option name="FORCE_SEMICOLON_STYLE" value="true" />
10
      <option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
11
      <option name="USE_DOUBLE_QUOTES" value="false" />
12
      <option name="FORCE_QUOTE_STYlE" value="true" />
13
      <option name="ENFORCE_TRAILING_COMMA" value="WhenMultiline" />
14
      <option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
15
      <option name="SPACES_WITHIN_IMPORTS" value="true" />
16
    </JSCodeStyleSettings>
17
    <TypeScriptCodeStyleSettings version="0">
18
      <option name="FORCE_SEMICOLON_STYLE" value="true" />
19
      <option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
20
      <option name="USE_DOUBLE_QUOTES" value="false" />
21
      <option name="FORCE_QUOTE_STYlE" value="true" />
22
      <option name="ENFORCE_TRAILING_COMMA" value="WhenMultiline" />
23
      <option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
24
      <option name="SPACES_WITHIN_IMPORTS" value="true" />
25
    </TypeScriptCodeStyleSettings>
26
    <VueCodeStyleSettings>
27
      <option name="INTERPOLATION_NEW_LINE_AFTER_START_DELIMITER" value="false" />
28
      <option name="INTERPOLATION_NEW_LINE_BEFORE_END_DELIMITER" value="false" />
29
    </VueCodeStyleSettings>
30
    <codeStyleSettings language="HTML">
31
      <option name="SOFT_MARGINS" value="90" />
32
      <indentOptions>
33
        <option name="CONTINUATION_INDENT_SIZE" value="4" />
34
      </indentOptions>
35
    </codeStyleSettings>
36
    <codeStyleSettings language="JavaScript">
37
      <option name="SOFT_MARGINS" value="90" />
38
    </codeStyleSettings>
39
    <codeStyleSettings language="TypeScript">
40
      <option name="SOFT_MARGINS" value="90" />
41
    </codeStyleSettings>
42
    <codeStyleSettings language="Vue">
43
      <option name="SOFT_MARGINS" value="90" />
44
      <indentOptions>
45
        <option name="INDENT_SIZE" value="4" />
46
        <option name="TAB_SIZE" value="4" />
47
      </indentOptions>
48
    </codeStyleSettings>
49
  </code_scheme>
50
</component>
webapp/.idea/codeStyles/codeStyleConfig.xml
1
<component name="ProjectCodeStyleConfiguration">
2
  <state>
3
    <option name="USE_PER_PROJECT_SETTINGS" value="true" />
4
  </state>
5
</component>
webapp/.idea/inspectionProfiles/Project_Default.xml
1
<component name="InspectionProjectProfileManager">
2
  <profile version="1.0">
3
    <option name="myName" value="Project Default" />
4
    <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
5
  </profile>
6
</component>
webapp/.idea/modules.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project version="4">
3
  <component name="ProjectModuleManager">
4
    <modules>
5
      <module fileurl="file://$PROJECT_DIR$/.idea/webapp.iml" filepath="$PROJECT_DIR$/.idea/webapp.iml" />
6
    </modules>
7
  </component>
8
</project>
webapp/.idea/prettier.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project version="4">
3
  <component name="PrettierConfiguration">
4
    <option name="myRunOnSave" value="true" />
5
    <option name="myRunOnReformat" value="true" />
6
  </component>
7
</project>
webapp/.idea/vcs.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project version="4">
3
  <component name="VcsDirectoryMappings">
4
    <mapping directory="$PROJECT_DIR$/.." vcs="Git" />
5
  </component>
6
</project>
webapp/.idea/webapp.iml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<module type="WEB_MODULE" version="4">
3
  <component name="NewModuleRootManager">
4
    <content url="file://$MODULE_DIR$">
5
      <excludeFolder url="file://$MODULE_DIR$/temp" />
6
      <excludeFolder url="file://$MODULE_DIR$/.tmp" />
7
      <excludeFolder url="file://$MODULE_DIR$/tmp" />
8
    </content>
9
    <orderEntry type="inheritedJdk" />
10
    <orderEntry type="sourceFolder" forTests="false" />
11
  </component>
12
</module>
webapp/README.md
1
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
2

  
3
## Getting Started
4

  
5
First, run the development server:
6

  
7
```bash
8
npm run dev
9
# or
10
yarn dev
11
```
12

  
13
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
14

  
15
You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file.
16

  
17
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`.
18

  
19
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
20

  
21
## Learn More
22

  
23
To learn more about Next.js, take a look at the following resources:
24

  
25
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
26
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
27

  
28
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
29

  
30
## Deploy on Vercel
31

  
32
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
33

  
34
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
webapp/next-env.d.ts
1
/// <reference types="next" />
2
/// <reference types="next/image-types/global" />
3

  
4
// NOTE: This file should not be edited
5
// see https://nextjs.org/docs/basic-features/typescript for more information.
webapp/next.config.js
1
/** @type {import('next').NextConfig} */
2
const nextConfig = {
3
  reactStrictMode: true,
4
}
5

  
6
module.exports = nextConfig
webapp/package.json
1
{
2
  "name": "webapp",
3
  "version": "0.1.0",
4
  "private": true,
5
  "scripts": {
6
    "dev": "next dev",
7
    "build": "next build",
8
    "start": "next start",
9
    "lint": "next lint"
10
  },
11
  "dependencies": {
12
    "@fortawesome/fontawesome-free": "^6.1.0",
13
    "axios": "^0.26.1",
14
    "bootstrap": "^5.1.3",
15
    "http-status-codes": "^2.2.0",
16
    "next": "12.1.0",
17
    "react": "17.0.2",
18
    "react-bootstrap": "^2.2.1",
19
    "react-dom": "17.0.2"
20
  },
21
  "devDependencies": {
22
    "@types/node": "17.0.21",
23
    "@types/react": "17.0.41",
24
    "eslint": "8.11.0",
25
    "eslint-config-next": "12.1.0",
26
    "prettier": "^2.6.0",
27
    "sass": "^1.49.9",
28
    "typescript": "4.6.2"
29
  }
30
}
webapp/pages/_app.tsx
1
import '../styles/globals.css'
2
import type {AppProps} from 'next/app'
3

  
4
import 'bootstrap/dist/css/bootstrap.css'
5

  
6
function MyApp({Component, pageProps}: AppProps) {
7
    return <Component {...pageProps} />
8
}
9

  
10
export default MyApp
webapp/pages/index.tsx
1
import type { NextPage } from 'next';
2
import Head from 'next/head';
3
import Image from 'next/image';
4
import styles from '../styles/Home.module.css';
5

  
6
const Home: NextPage = () => {
7
    return (
8
        <div className={styles.container}>
9
            <Head>
10
                <title>Create Next App</title>
11
                <meta name="description" content="Generated by create next app" />
12
                <link rel="icon" href="/favicon.ico" />
13
            </Head>
14

  
15
            <main className={styles.main}>
16
                <h1 className={styles.title}>
17
                    Welcome to <a href="https://nextjs.org">Next.js!</a>
18
                </h1>
19

  
20
                <div>test {'ahoj'}</div>
21
                <p className={styles.description}>
22
                    Get started by editing{' '}
23
                    <code className={styles.code}>pages/index.tsx</code>
24
                </p>
25

  
26
                <div className={styles.grid}>
27
                    <a href="https://nextjs.org/docs" className={styles.card}>
28
                        <h2>Documentation &rarr;</h2>
29
                        <p>Find in-depth information about Next.js features and API.</p>
30
                    </a>
31

  
32
                    <a href="https://nextjs.org/learn" className={styles.card}>
33
                        <h2>Learn &rarr;</h2>
34
                        <p>Learn about Next.js in an interactive course with quizzes!</p>
35
                    </a>
36

  
37
                    <a
38
                        href="https://github.com/vercel/next.js/tree/canary/examples"
39
                        className={styles.card}
40
                    >
41
                        <h2>Examples &rarr;</h2>
42
                        <p>Discover and deploy boilerplate example Next.js projects.</p>
43
                    </a>
44

  
45
                    <a
46
                        href="https://vercel.com/new?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
47
                        className={styles.card}
48
                    >
49
                        <h2>Deploy &rarr;</h2>
50
                        <p>
51
                            Instantly deploy your Next.js site to a public URL with
52
                            Vercel.
53
                        </p>
54
                    </a>
55
                </div>
56
            </main>
57

  
58
            <footer className={styles.footer}>
59
                <a
60
                    href="https://vercel.com?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
61
                    target="_blank"
62
                    rel="noopener noreferrer"
63
                >
64
                    Powered by{' '}
65
                    <span className={styles.logo}>
66
                        <Image
67
                            src="/vercel.svg"
68
                            alt="Vercel Logo"
69
                            width={72}
70
                            height={16}
71
                        />
72
                    </span>
73
                </a>
74
            </footer>
75
        </div>
76
    );
77
};
78

  
79
export default Home;
webapp/public/vercel.svg
1
<svg width="283" height="64" viewBox="0 0 283 64" fill="none" 
2
    xmlns="http://www.w3.org/2000/svg">
3
    <path d="M141.04 16c-11.04 0-19 7.2-19 18s8.96 18 20 18c6.67 0 12.55-2.64 16.19-7.09l-7.65-4.42c-2.02 2.21-5.09 3.5-8.54 3.5-4.79 0-8.86-2.5-10.37-6.5h28.02c.22-1.12.35-2.28.35-3.5 0-10.79-7.96-17.99-19-17.99zm-9.46 14.5c1.25-3.99 4.67-6.5 9.45-6.5 4.79 0 8.21 2.51 9.45 6.5h-18.9zM248.72 16c-11.04 0-19 7.2-19 18s8.96 18 20 18c6.67 0 12.55-2.64 16.19-7.09l-7.65-4.42c-2.02 2.21-5.09 3.5-8.54 3.5-4.79 0-8.86-2.5-10.37-6.5h28.02c.22-1.12.35-2.28.35-3.5 0-10.79-7.96-17.99-19-17.99zm-9.45 14.5c1.25-3.99 4.67-6.5 9.45-6.5 4.79 0 8.21 2.51 9.45 6.5h-18.9zM200.24 34c0 6 3.92 10 10 10 4.12 0 7.21-1.87 8.8-4.92l7.68 4.43c-3.18 5.3-9.14 8.49-16.48 8.49-11.05 0-19-7.2-19-18s7.96-18 19-18c7.34 0 13.29 3.19 16.48 8.49l-7.68 4.43c-1.59-3.05-4.68-4.92-8.8-4.92-6.07 0-10 4-10 10zm82.48-29v46h-9V5h9zM36.95 0L73.9 64H0L36.95 0zm92.38 5l-27.71 48L73.91 5H84.3l17.32 30 17.32-30h10.39zm58.91 12v9.69c-1-.29-2.06-.49-3.2-.49-5.81 0-10 4-10 10V51h-9V17h9v9.2c0-5.08 5.91-9.2 13.2-9.2z" fill="#000"/>
4
</svg>
webapp/styles/Home.module.css
1
.container {
2
  padding: 0 2rem;
3
}
4

  
5
.main {
6
  min-height: 100vh;
7
  padding: 4rem 0;
8
  flex: 1;
9
  display: flex;
10
  flex-direction: column;
11
  justify-content: center;
12
  align-items: center;
13
}
14

  
15
.footer {
16
  display: flex;
17
  flex: 1;
18
  padding: 2rem 0;
19
  border-top: 1px solid #eaeaea;
20
  justify-content: center;
21
  align-items: center;
22
}
23

  
24
.footer a {
25
  display: flex;
26
  justify-content: center;
27
  align-items: center;
28
  flex-grow: 1;
29
}
30

  
31
.title a {
32
  color: #0070f3;
33
  text-decoration: none;
34
}
35

  
36
.title a:hover,
37
.title a:focus,
38
.title a:active {
39
  text-decoration: underline;
40
}
41

  
42
.title {
43
  margin: 0;
44
  line-height: 1.15;
45
  font-size: 4rem;
46
}
47

  
48
.title,
49
.description {
50
  text-align: center;
51
}
52

  
53
.description {
54
  margin: 4rem 0;
55
  line-height: 1.5;
56
  font-size: 1.5rem;
57
}
58

  
59
.code {
60
  background: #fafafa;
61
  border-radius: 5px;
62
  padding: 0.75rem;
63
  font-size: 1.1rem;
64
  font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
65
    Bitstream Vera Sans Mono, Courier New, monospace;
66
}
67

  
68
.grid {
69
  display: flex;
70
  align-items: center;
71
  justify-content: center;
72
  flex-wrap: wrap;
73
  max-width: 800px;
74
}
75

  
76
.card {
77
  margin: 1rem;
78
  padding: 1.5rem;
79
  text-align: left;
80
  color: inherit;
81
  text-decoration: none;
82
  border: 1px solid #eaeaea;
83
  border-radius: 10px;
84
  transition: color 0.15s ease, border-color 0.15s ease;
85
  max-width: 300px;
86
}
87

  
88
.card:hover,
89
.card:focus,
90
.card:active {
91
  color: #0070f3;
92
  border-color: #0070f3;
93
}
94

  
95
.card h2 {
96
  margin: 0 0 1rem 0;
97
  font-size: 1.5rem;
98
}
99

  
100
.card p {
101
  margin: 0;
102
  font-size: 1.25rem;
103
  line-height: 1.5;
104
}
105

  
106
.logo {
107
  height: 1em;
108
  margin-left: 0.5rem;
109
}
110

  
111
@media (max-width: 600px) {
112
  .grid {
113
    width: 100%;
114
    flex-direction: column;
115
  }
116
}
webapp/styles/globals.css
1
html,
2
body {
3
  padding: 0;
4
  margin: 0;
5
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
6
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
7
}
8

  
9
a {
10
  color: inherit;
11
  text-decoration: none;
12
}
13

  
14
* {
15
  box-sizing: border-box;
16
}
webapp/tsconfig.json
1
{
2
  "compilerOptions": {
3
    "target": "es5",
4
    "lib": ["dom", "dom.iterable", "esnext"],
5
    "allowJs": true,
6
    "skipLibCheck": true,
7
    "strict": true,
8
    "forceConsistentCasingInFileNames": true,
9
    "noEmit": true,
10
    "esModuleInterop": true,
11
    "module": "esnext",
12
    "moduleResolution": "node",
13
    "resolveJsonModule": true,
14
    "isolatedModules": true,
15
    "jsx": "preserve",
16
    "incremental": true
17
  },
18
  "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
19
  "exclude": ["node_modules"]
20
}
webapp/yarn.lock
1
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
# yarn lockfile v1
3

  
4

  
5
"@babel/runtime-corejs3@^7.10.2":
6
  version "7.17.8"
7
  resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.17.8.tgz#d7dd49fb812f29c61c59126da3792d8740d4e284"
8
  integrity sha512-ZbYSUvoSF6dXZmMl/CYTMOvzIFnbGfv4W3SEHYgMvNsFTeLaF2gkGAF4K2ddmtSK4Emej+0aYcnSC6N5dPCXUQ==
9
  dependencies:
10
    core-js-pure "^3.20.2"
11
    regenerator-runtime "^0.13.4"
12

  
13
"@babel/runtime@^7.10.2", "@babel/runtime@^7.13.16", "@babel/runtime@^7.16.3", "@babel/runtime@^7.17.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.6.3", "@babel/runtime@^7.8.7":
14
  version "7.17.8"
15
  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.8.tgz#3e56e4aff81befa55ac3ac6a0967349fd1c5bca2"
16
  integrity sha512-dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA==
17
  dependencies:
18
    regenerator-runtime "^0.13.4"
19

  
20
"@eslint/eslintrc@^1.2.1":
21
  version "1.2.1"
22
  resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.2.1.tgz#8b5e1c49f4077235516bc9ec7d41378c0f69b8c6"
23
  integrity sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==
24
  dependencies:
25
    ajv "^6.12.4"
26
    debug "^4.3.2"
27
    espree "^9.3.1"
28
    globals "^13.9.0"
29
    ignore "^5.2.0"
30
    import-fresh "^3.2.1"
31
    js-yaml "^4.1.0"
32
    minimatch "^3.0.4"
33
    strip-json-comments "^3.1.1"
34

  
35
"@fortawesome/fontawesome-free@^6.1.0":
36
  version "6.1.0"
37
  resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.1.0.tgz#db162f63c6fdb3ecc6d44de3bbc8ed178390d709"
38
  integrity sha512-OgM74M6+Q7BuKAj8r+VfzwjnIGZrY62R4ipbiDvBW4FA0mLnB3yeuV/2bW63j+zppGyTvBp/3jqXp9ZXy43nFw==
39

  
40
"@humanwhocodes/config-array@^0.9.2":
41
  version "0.9.5"
42
  resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7"
43
  integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==
44
  dependencies:
45
    "@humanwhocodes/object-schema" "^1.2.1"
46
    debug "^4.1.1"
47
    minimatch "^3.0.4"
48

  
49
"@humanwhocodes/object-schema@^1.2.1":
50
  version "1.2.1"
51
  resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
52
  integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
53

  
54
"@next/env@12.1.0":
55
  version "12.1.0"
56
  resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.0.tgz#73713399399b34aa5a01771fb73272b55b22c314"
57
  integrity sha512-nrIgY6t17FQ9xxwH3jj0a6EOiQ/WDHUos35Hghtr+SWN/ntHIQ7UpuvSi0vaLzZVHQWaDupKI+liO5vANcDeTQ==
58

  
59
"@next/eslint-plugin-next@12.1.0":
60
  version "12.1.0"
61
  resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.1.0.tgz#32586a11378b3ffa5a93ac40a3c44ad99d70e95a"
62
  integrity sha512-WFiyvSM2G5cQmh32t/SiQuJ+I2O+FHVlK/RFw5b1565O2kEM/36EXncjt88Pa+X5oSc+1SS+tWxowWJd1lqI+g==
63
  dependencies:
64
    glob "7.1.7"
65

  
66
"@next/swc-android-arm64@12.1.0":
67
  version "12.1.0"
68
  resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.1.0.tgz#865ba3a9afc204ff2bdeea49dd64d58705007a39"
69
  integrity sha512-/280MLdZe0W03stA69iL+v6I+J1ascrQ6FrXBlXGCsGzrfMaGr7fskMa0T5AhQIVQD4nA/46QQWxG//DYuFBcA==
70

  
71
"@next/swc-darwin-arm64@12.1.0":
72
  version "12.1.0"
73
  resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.0.tgz#08e8b411b8accd095009ed12efbc2f1d4d547135"
74
  integrity sha512-R8vcXE2/iONJ1Unf5Ptqjk6LRW3bggH+8drNkkzH4FLEQkHtELhvcmJwkXcuipyQCsIakldAXhRbZmm3YN1vXg==
75

  
76
"@next/swc-darwin-x64@12.1.0":
77
  version "12.1.0"
78
  resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.1.0.tgz#fcd684497a76e8feaca88db3c394480ff0b007cd"
79
  integrity sha512-ieAz0/J0PhmbZBB8+EA/JGdhRHBogF8BWaeqR7hwveb6SYEIJaDNQy0I+ZN8gF8hLj63bEDxJAs/cEhdnTq+ug==
80

  
81
"@next/swc-linux-arm-gnueabihf@12.1.0":
82
  version "12.1.0"
83
  resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.1.0.tgz#9ec6380a27938a5799aaa6035c205b3c478468a7"
84
  integrity sha512-njUd9hpl6o6A5d08dC0cKAgXKCzm5fFtgGe6i0eko8IAdtAPbtHxtpre3VeSxdZvuGFh+hb0REySQP9T1ttkog==
85

  
86
"@next/swc-linux-arm64-gnu@12.1.0":
87
  version "12.1.0"
88
  resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.1.0.tgz#7f4196dff1049cea479607c75b81033ae2dbd093"
89
  integrity sha512-OqangJLkRxVxMhDtcb7Qn1xjzFA3s50EIxY7mljbSCLybU+sByPaWAHY4px97ieOlr2y4S0xdPKkQ3BCAwyo6Q==
90

  
91
"@next/swc-linux-arm64-musl@12.1.0":
92
  version "12.1.0"
93
  resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.1.0.tgz#b445f767569cdc2dddee785ca495e1a88c025566"
94
  integrity sha512-hB8cLSt4GdmOpcwRe2UzI5UWn6HHO/vLkr5OTuNvCJ5xGDwpPXelVkYW/0+C3g5axbDW2Tym4S+MQCkkH9QfWA==
95

  
96
"@next/swc-linux-x64-gnu@12.1.0":
97
  version "12.1.0"
98
  resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.1.0.tgz#67610e9be4fbc987de7535f1bcb17e45fe12f90e"
99
  integrity sha512-OKO4R/digvrVuweSw/uBM4nSdyzsBV5EwkUeeG4KVpkIZEe64ZwRpnFB65bC6hGwxIBnTv5NMSnJ+0K/WmG78A==
100

  
101
"@next/swc-linux-x64-musl@12.1.0":
102
  version "12.1.0"
103
  resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.1.0.tgz#ea19a23db08a9f2e34ac30401f774cf7d1669d31"
104
  integrity sha512-JohhgAHZvOD3rQY7tlp7NlmvtvYHBYgY0x5ZCecUT6eCCcl9lv6iV3nfu82ErkxNk1H893fqH0FUpznZ/H3pSw==
105

  
106
"@next/swc-win32-arm64-msvc@12.1.0":
107
  version "12.1.0"
108
  resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.1.0.tgz#eadf054fc412085659b98e145435bbba200b5283"
109
  integrity sha512-T/3gIE6QEfKIJ4dmJk75v9hhNiYZhQYAoYm4iVo1TgcsuaKLFa+zMPh4056AHiG6n9tn2UQ1CFE8EoybEsqsSw==
110

  
111
"@next/swc-win32-ia32-msvc@12.1.0":
112
  version "12.1.0"
113
  resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.1.0.tgz#68faeae10c89f698bf9d28759172b74c9c21bda1"
114
  integrity sha512-iwnKgHJdqhIW19H9PRPM9j55V6RdcOo6rX+5imx832BCWzkDbyomWnlzBfr6ByUYfhohb8QuH4hSGEikpPqI0Q==
115

  
116
"@next/swc-win32-x64-msvc@12.1.0":
117
  version "12.1.0"
118
  resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.0.tgz#d27e7e76c87a460a4da99c5bfdb1618dcd6cd064"
119
  integrity sha512-aBvcbMwuanDH4EMrL2TthNJy+4nP59Bimn8egqv6GHMVj0a44cU6Au4PjOhLNqEh9l+IpRGBqMTzec94UdC5xg==
120

  
121
"@nodelib/fs.scandir@2.1.5":
122
  version "2.1.5"
123
  resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
124
  integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
125
  dependencies:
126
    "@nodelib/fs.stat" "2.0.5"
127
    run-parallel "^1.1.9"
128

  
129
"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
130
  version "2.0.5"
131
  resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
132
  integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
133

  
134
"@nodelib/fs.walk@^1.2.3":
135
  version "1.2.8"
136
  resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
137
  integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
138
  dependencies:
139
    "@nodelib/fs.scandir" "2.1.5"
140
    fastq "^1.6.0"
141

  
142
"@popperjs/core@^2.10.1":
143
  version "2.11.4"
144
  resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.4.tgz#d8c7b8db9226d2d7664553a0741ad7d0397ee503"
145
  integrity sha512-q/ytXxO5NKvyT37pmisQAItCFqA7FD/vNb8dgaJy3/630Fsc+Mz9/9f2SziBoIZ30TJooXyTwZmhi1zjXmObYg==
146

  
147
"@react-aria/ssr@^3.0.1":
148
  version "3.1.2"
149
  resolved "https://registry.yarnpkg.com/@react-aria/ssr/-/ssr-3.1.2.tgz#665a6fd56385068c7417922af2d0d71b0618e52d"
150
  integrity sha512-amXY11ImpokvkTMeKRHjsSsG7v1yzzs6yeqArCyBIk60J3Yhgxwx9Cah+Uu/804ATFwqzN22AXIo7SdtIaMP+g==
151
  dependencies:
152
    "@babel/runtime" "^7.6.2"
153

  
154
"@restart/hooks@^0.4.0", "@restart/hooks@^0.4.5":
155
  version "0.4.5"
156
  resolved "https://registry.yarnpkg.com/@restart/hooks/-/hooks-0.4.5.tgz#e7acbea237bfc9e479970500cf87538b41a1ed02"
157
  integrity sha512-tLGtY0aHeIfT7aPwUkvQuhIy3+q3w4iqmUzFLPlOAf/vNUacLaBt1j/S//jv/dQhenRh8jvswyMojCwmLvJw8A==
158
  dependencies:
159
    dequal "^2.0.2"
160

  
161
"@restart/ui@^1.0.2":
162
  version "1.1.0"
163
  resolved "https://registry.yarnpkg.com/@restart/ui/-/ui-1.1.0.tgz#46d436225162b47ecccdf191cfbcf9ec3d1d5f47"
164
  integrity sha512-sYAO1LP78Suz5cT2VEkU4U/mvdjFXNg69QHanc5OAFTWyhCBG2lFJ9FITZ7hT8P8LPqcWXcwEGzHhuxPUDDDYQ==
165
  dependencies:
166
    "@babel/runtime" "^7.13.16"
167
    "@popperjs/core" "^2.10.1"
168
    "@react-aria/ssr" "^3.0.1"
169
    "@restart/hooks" "^0.4.0"
170
    "@types/warning" "^3.0.0"
171
    dequal "^2.0.2"
172
    dom-helpers "^5.2.0"
173
    prop-types "^15.7.2"
174
    uncontrollable "^7.2.1"
175
    warning "^4.0.3"
176

  
177
"@rushstack/eslint-patch@^1.0.8":
178
  version "1.1.1"
179
  resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.1.1.tgz#782fa5da44c4f38ae9fd38e9184b54e451936118"
180
  integrity sha512-BUyKJGdDWqvWC5GEhyOiUrGNi9iJUr4CU0O2WxJL6QJhHeeA/NVBalH+FeK0r/x/W0rPymXt5s78TDS7d6lCwg==
181

  
182
"@types/invariant@^2.2.35":
183
  version "2.2.35"
184
  resolved "https://registry.yarnpkg.com/@types/invariant/-/invariant-2.2.35.tgz#cd3ebf581a6557452735688d8daba6cf0bd5a3be"
185
  integrity sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg==
186

  
187
"@types/json5@^0.0.29":
188
  version "0.0.29"
189
  resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
190
  integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
191

  
192
"@types/node@17.0.21":
193
  version "17.0.21"
194
  resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.21.tgz#864b987c0c68d07b4345845c3e63b75edd143644"
195
  integrity sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==
196

  
197
"@types/prop-types@*", "@types/prop-types@^15.7.4":
198
  version "15.7.4"
199
  resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11"
200
  integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==
201

  
202
"@types/react-transition-group@^4.4.4":
203
  version "4.4.4"
204
  resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.4.tgz#acd4cceaa2be6b757db61ed7b432e103242d163e"
205
  integrity sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug==
206
  dependencies:
207
    "@types/react" "*"
208

  
209
"@types/react@*", "@types/react@17.0.41", "@types/react@>=16.14.8", "@types/react@>=16.9.11":
210
  version "17.0.41"
211
  resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.41.tgz#6e179590d276394de1e357b3f89d05d7d3da8b85"
212
  integrity sha512-chYZ9ogWUodyC7VUTRBfblysKLjnohhFY9bGLwvnUFFy48+vB9DikmB3lW0qTFmBcKSzmdglcvkHK71IioOlDA==
213
  dependencies:
214
    "@types/prop-types" "*"
215
    "@types/scheduler" "*"
216
    csstype "^3.0.2"
217

  
218
"@types/scheduler@*":
219
  version "0.16.2"
220
  resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
221
  integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
222

  
223
"@types/warning@^3.0.0":
224
  version "3.0.0"
225
  resolved "https://registry.yarnpkg.com/@types/warning/-/warning-3.0.0.tgz#0d2501268ad8f9962b740d387c4654f5f8e23e52"
226
  integrity sha1-DSUBJorY+ZYrdA04fEZU9fjiPlI=
227

  
228
"@typescript-eslint/parser@^5.0.0":
229
  version "5.15.0"
230
  resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.15.0.tgz#95f603f8fe6eca7952a99bfeef9b85992972e728"
231
  integrity sha512-NGAYP/+RDM2sVfmKiKOCgJYPstAO40vPAgACoWPO/+yoYKSgAXIFaBKsV8P0Cc7fwKgvj27SjRNX4L7f4/jCKQ==
232
  dependencies:
233
    "@typescript-eslint/scope-manager" "5.15.0"
234
    "@typescript-eslint/types" "5.15.0"
235
    "@typescript-eslint/typescript-estree" "5.15.0"
236
    debug "^4.3.2"
237

  
238
"@typescript-eslint/scope-manager@5.15.0":
239
  version "5.15.0"
240
  resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.15.0.tgz#d97afab5e0abf4018d1289bd711be21676cdd0ee"
241
  integrity sha512-EFiZcSKrHh4kWk0pZaa+YNJosvKE50EnmN4IfgjkA3bTHElPtYcd2U37QQkNTqwMCS7LXeDeZzEqnsOH8chjSg==
242
  dependencies:
243
    "@typescript-eslint/types" "5.15.0"
244
    "@typescript-eslint/visitor-keys" "5.15.0"
245

  
246
"@typescript-eslint/types@5.15.0":
247
  version "5.15.0"
248
  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.15.0.tgz#c7bdd103843b1abae97b5518219d3e2a0d79a501"
249
  integrity sha512-yEiTN4MDy23vvsIksrShjNwQl2vl6kJeG9YkVJXjXZnkJElzVK8nfPsWKYxcsGWG8GhurYXP4/KGj3aZAxbeOA==
250

  
251
"@typescript-eslint/typescript-estree@5.15.0":
252
  version "5.15.0"
253
  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.15.0.tgz#81513a742a9c657587ad1ddbca88e76c6efb0aac"
254
  integrity sha512-Hb0e3dGc35b75xLzixM3cSbG1sSbrTBQDfIScqdyvrfJZVEi4XWAT+UL/HMxEdrJNB8Yk28SKxPLtAhfCbBInA==
255
  dependencies:
256
    "@typescript-eslint/types" "5.15.0"
257
    "@typescript-eslint/visitor-keys" "5.15.0"
258
    debug "^4.3.2"
259
    globby "^11.0.4"
260
    is-glob "^4.0.3"
261
    semver "^7.3.5"
262
    tsutils "^3.21.0"
263

  
264
"@typescript-eslint/visitor-keys@5.15.0":
265
  version "5.15.0"
266
  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.15.0.tgz#5669739fbf516df060f978be6a6dce75855a8027"
267
  integrity sha512-+vX5FKtgvyHbmIJdxMJ2jKm9z2BIlXJiuewI8dsDYMp5LzPUcuTT78Ya5iwvQg3VqSVdmxyM8Anj1Jeq7733ZQ==
268
  dependencies:
269
    "@typescript-eslint/types" "5.15.0"
270
    eslint-visitor-keys "^3.0.0"
271

  
272
acorn-jsx@^5.3.1:
273
  version "5.3.2"
274
  resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
275
  integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
276

  
277
acorn@^8.7.0:
278
  version "8.7.0"
279
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf"
280
  integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==
281

  
282
ajv@^6.10.0, ajv@^6.12.4:
283
  version "6.12.6"
284
  resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
285
  integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
286
  dependencies:
287
    fast-deep-equal "^3.1.1"
288
    fast-json-stable-stringify "^2.0.0"
289
    json-schema-traverse "^0.4.1"
290
    uri-js "^4.2.2"
291

  
292
ansi-regex@^5.0.1:
293
  version "5.0.1"
294
  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
295
  integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
296

  
297
ansi-styles@^4.1.0:
298
  version "4.3.0"
299
  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
300
  integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
301
  dependencies:
302
    color-convert "^2.0.1"
303

  
304
anymatch@~3.1.2:
305
  version "3.1.2"
306
  resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
307
  integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
308
  dependencies:
309
    normalize-path "^3.0.0"
310
    picomatch "^2.0.4"
311

  
312
argparse@^2.0.1:
313
  version "2.0.1"
314
  resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
315
  integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
316

  
317
aria-query@^4.2.2:
318
  version "4.2.2"
319
  resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
320
  integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
321
  dependencies:
322
    "@babel/runtime" "^7.10.2"
323
    "@babel/runtime-corejs3" "^7.10.2"
324

  
325
array-includes@^3.1.3, array-includes@^3.1.4:
326
  version "3.1.4"
327
  resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz#f5b493162c760f3539631f005ba2bb46acb45ba9"
328
  integrity sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==
329
  dependencies:
330
    call-bind "^1.0.2"
331
    define-properties "^1.1.3"
332
    es-abstract "^1.19.1"
333
    get-intrinsic "^1.1.1"
334
    is-string "^1.0.7"
335

  
336
array-union@^2.1.0:
337
  version "2.1.0"
338
  resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
339
  integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
340

  
341
array.prototype.flat@^1.2.5:
342
  version "1.2.5"
343
  resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz#07e0975d84bbc7c48cd1879d609e682598d33e13"
344
  integrity sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==
345
  dependencies:
346
    call-bind "^1.0.2"
347
    define-properties "^1.1.3"
348
    es-abstract "^1.19.0"
349

  
350
array.prototype.flatmap@^1.2.5:
351
  version "1.2.5"
352
  resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz#908dc82d8a406930fdf38598d51e7411d18d4446"
353
  integrity sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==
354
  dependencies:
355
    call-bind "^1.0.0"
356
    define-properties "^1.1.3"
357
    es-abstract "^1.19.0"
358

  
359
ast-types-flow@^0.0.7:
360
  version "0.0.7"
361
  resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
362
  integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
363

  
364
axe-core@^4.3.5:
365
  version "4.4.1"
366
  resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.1.tgz#7dbdc25989298f9ad006645cd396782443757413"
367
  integrity sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw==
368

  
369
axios@^0.26.1:
370
  version "0.26.1"
371
  resolved "https://registry.yarnpkg.com/axios/-/axios-0.26.1.tgz#1ede41c51fcf51bbbd6fd43669caaa4f0495aaa9"
372
  integrity sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==
373
  dependencies:
374
    follow-redirects "^1.14.8"
375

  
376
axobject-query@^2.2.0:
377
  version "2.2.0"
378
  resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
379
  integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
380

  
381
balanced-match@^1.0.0:
382
  version "1.0.2"
383
  resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
384
  integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
385

  
386
binary-extensions@^2.0.0:
387
  version "2.2.0"
388
  resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
389
  integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
390

  
391
bootstrap@^5.1.3:
392
  version "5.1.3"
393
  resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.1.3.tgz#ba081b0c130f810fa70900acbc1c6d3c28fa8f34"
394
  integrity sha512-fcQztozJ8jToQWXxVuEyXWW+dSo8AiXWKwiSSrKWsRB/Qt+Ewwza+JWoLKiTuQLaEPhdNAJ7+Dosc9DOIqNy7Q==
395

  
396
brace-expansion@^1.1.7:
397
  version "1.1.11"
398
  resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
399
  integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
400
  dependencies:
401
    balanced-match "^1.0.0"
402
    concat-map "0.0.1"
403

  
404
braces@^3.0.1, braces@~3.0.2:
405
  version "3.0.2"
406
  resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
407
  integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
408
  dependencies:
409
    fill-range "^7.0.1"
410

  
411
call-bind@^1.0.0, call-bind@^1.0.2:
412
  version "1.0.2"
413
  resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
414
  integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
415
  dependencies:
416
    function-bind "^1.1.1"
417
    get-intrinsic "^1.0.2"
418

  
419
callsites@^3.0.0:
420
  version "3.1.0"
421
  resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
422
  integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
423

  
424
caniuse-lite@^1.0.30001283:
425
  version "1.0.30001319"
426
  resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001319.tgz#eb4da4eb3ecdd409f7ba1907820061d56096e88f"
427
  integrity sha512-xjlIAFHucBRSMUo1kb5D4LYgcN1M45qdKP++lhqowDpwJwGkpIRTt5qQqnhxjj1vHcI7nrJxWhCC1ATrCEBTcw==
428

  
429
chalk@^4.0.0:
430
  version "4.1.2"
431
  resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
432
  integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
433
  dependencies:
434
    ansi-styles "^4.1.0"
435
    supports-color "^7.1.0"
436

  
437
"chokidar@>=3.0.0 <4.0.0":
438
  version "3.5.3"
439
  resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
440
  integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
441
  dependencies:
442
    anymatch "~3.1.2"
443
    braces "~3.0.2"
444
    glob-parent "~5.1.2"
445
    is-binary-path "~2.1.0"
446
    is-glob "~4.0.1"
447
    normalize-path "~3.0.0"
448
    readdirp "~3.6.0"
449
  optionalDependencies:
450
    fsevents "~2.3.2"
451

  
452
classnames@^2.3.1:
453
  version "2.3.1"
454
  resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e"
455
  integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==
456

  
457
color-convert@^2.0.1:
458
  version "2.0.1"
459
  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
460
  integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
461
  dependencies:
462
    color-name "~1.1.4"
463

  
464
color-name@~1.1.4:
465
  version "1.1.4"
466
  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
467
  integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
468

  
469
concat-map@0.0.1:
470
  version "0.0.1"
471
  resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
472
  integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
473

  
474
core-js-pure@^3.20.2:
475
  version "3.21.1"
476
  resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.21.1.tgz#8c4d1e78839f5f46208de7230cebfb72bc3bdb51"
477
  integrity sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==
478

  
479
cross-spawn@^7.0.2:
480
  version "7.0.3"
481
  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
482
  integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
483
  dependencies:
484
    path-key "^3.1.0"
485
    shebang-command "^2.0.0"
486
    which "^2.0.1"
487

  
488
csstype@^3.0.2:
489
  version "3.0.11"
490
  resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.11.tgz#d66700c5eacfac1940deb4e3ee5642792d85cd33"
491
  integrity sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==
492

  
493
damerau-levenshtein@^1.0.7:
494
  version "1.0.8"
495
  resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7"
496
  integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==
497

  
498
debug@^2.6.9:
499
  version "2.6.9"
500
  resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
501
  integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
502
  dependencies:
503
    ms "2.0.0"
504

  
505
debug@^3.2.7:
506
  version "3.2.7"
507
  resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
508
  integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
509
  dependencies:
510
    ms "^2.1.1"
511

  
512
debug@^4.1.1, debug@^4.3.1, debug@^4.3.2:
513
  version "4.3.4"
514
  resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
515
  integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
516
  dependencies:
517
    ms "2.1.2"
518

  
519
deep-is@^0.1.3:
520
  version "0.1.4"
521
  resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
522
  integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
523

  
524
define-properties@^1.1.3:
525
  version "1.1.3"
526
  resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
527
  integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
528
  dependencies:
529
    object-keys "^1.0.12"
530

  
531
dequal@^2.0.2:
532
  version "2.0.2"
533
  resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.2.tgz#85ca22025e3a87e65ef75a7a437b35284a7e319d"
534
  integrity sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==
535

  
536
dir-glob@^3.0.1:
537
  version "3.0.1"
538
  resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
539
  integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
540
  dependencies:
541
    path-type "^4.0.0"
542

  
543
doctrine@^2.1.0:
544
  version "2.1.0"
545
  resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
546
  integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
547
  dependencies:
548
    esutils "^2.0.2"
549

  
550
doctrine@^3.0.0:
551
  version "3.0.0"
552
  resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
553
  integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
554
  dependencies:
555
    esutils "^2.0.2"
556

  
557
dom-helpers@^5.0.1, dom-helpers@^5.2.0, dom-helpers@^5.2.1:
558
  version "5.2.1"
559
  resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902"
560
  integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==
561
  dependencies:
562
    "@babel/runtime" "^7.8.7"
563
    csstype "^3.0.2"
564

  
565
emoji-regex@^9.2.2:
566
  version "9.2.2"
567
  resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
568
  integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
569

  
570
es-abstract@^1.19.0, es-abstract@^1.19.1:
571
  version "1.19.1"
572
  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz#d4885796876916959de78edaa0df456627115ec3"
573
  integrity sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==
574
  dependencies:
575
    call-bind "^1.0.2"
576
    es-to-primitive "^1.2.1"
577
    function-bind "^1.1.1"
578
    get-intrinsic "^1.1.1"
579
    get-symbol-description "^1.0.0"
580
    has "^1.0.3"
581
    has-symbols "^1.0.2"
582
    internal-slot "^1.0.3"
583
    is-callable "^1.2.4"
584
    is-negative-zero "^2.0.1"
585
    is-regex "^1.1.4"
586
    is-shared-array-buffer "^1.0.1"
587
    is-string "^1.0.7"
588
    is-weakref "^1.0.1"
589
    object-inspect "^1.11.0"
590
    object-keys "^1.1.1"
591
    object.assign "^4.1.2"
592
    string.prototype.trimend "^1.0.4"
593
    string.prototype.trimstart "^1.0.4"
594
    unbox-primitive "^1.0.1"
595

  
596
es-to-primitive@^1.2.1:
597
  version "1.2.1"
598
  resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
599
  integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
600
  dependencies:
601
    is-callable "^1.1.4"
602
    is-date-object "^1.0.1"
603
    is-symbol "^1.0.2"
604

  
605
escape-string-regexp@^4.0.0:
606
  version "4.0.0"
607
  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
608
  integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
609

  
610
eslint-config-next@12.1.0:
611
  version "12.1.0"
612
  resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.1.0.tgz#8ace680dc5207e6ab6c915f3989adec122f582e7"
613
  integrity sha512-tBhuUgoDITcdcM7xFvensi9I5WTI4dnvH4ETGRg1U8ZKpXrZsWQFdOKIDzR3RLP5HR3xXrLviaMM4c3zVoE/pA==
614
  dependencies:
615
    "@next/eslint-plugin-next" "12.1.0"
616
    "@rushstack/eslint-patch" "^1.0.8"
617
    "@typescript-eslint/parser" "^5.0.0"
618
    eslint-import-resolver-node "^0.3.4"
619
    eslint-import-resolver-typescript "^2.4.0"
620
    eslint-plugin-import "^2.25.2"
621
    eslint-plugin-jsx-a11y "^6.5.1"
622
    eslint-plugin-react "^7.27.0"
623
    eslint-plugin-react-hooks "^4.3.0"
624

  
625
eslint-import-resolver-node@^0.3.4, eslint-import-resolver-node@^0.3.6:
626
  version "0.3.6"
627
  resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
628
  integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==
629
  dependencies:
630
    debug "^3.2.7"
631
    resolve "^1.20.0"
632

  
633
eslint-import-resolver-typescript@^2.4.0:
634
  version "2.5.0"
635
  resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.5.0.tgz#07661966b272d14ba97f597b51e1a588f9722f0a"
636
  integrity sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ==
637
  dependencies:
638
    debug "^4.3.1"
639
    glob "^7.1.7"
640
    is-glob "^4.0.1"
641
    resolve "^1.20.0"
642
    tsconfig-paths "^3.9.0"
643

  
644
eslint-module-utils@^2.7.2:
645
  version "2.7.3"
646
  resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz#ad7e3a10552fdd0642e1e55292781bd6e34876ee"
647
  integrity sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==
648
  dependencies:
649
    debug "^3.2.7"
650
    find-up "^2.1.0"
651

  
652
eslint-plugin-import@^2.25.2:
653
  version "2.25.4"
654
  resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.25.4.tgz#322f3f916a4e9e991ac7af32032c25ce313209f1"
655
  integrity sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==
656
  dependencies:
657
    array-includes "^3.1.4"
658
    array.prototype.flat "^1.2.5"
659
    debug "^2.6.9"
660
    doctrine "^2.1.0"
661
    eslint-import-resolver-node "^0.3.6"
662
    eslint-module-utils "^2.7.2"
663
    has "^1.0.3"
664
    is-core-module "^2.8.0"
665
    is-glob "^4.0.3"
666
    minimatch "^3.0.4"
667
    object.values "^1.1.5"
668
    resolve "^1.20.0"
669
    tsconfig-paths "^3.12.0"
670

  
671
eslint-plugin-jsx-a11y@^6.5.1:
672
  version "6.5.1"
673
  resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz#cdbf2df901040ca140b6ec14715c988889c2a6d8"
674
  integrity sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==
675
  dependencies:
676
    "@babel/runtime" "^7.16.3"
677
    aria-query "^4.2.2"
678
    array-includes "^3.1.4"
679
    ast-types-flow "^0.0.7"
680
    axe-core "^4.3.5"
681
    axobject-query "^2.2.0"
682
    damerau-levenshtein "^1.0.7"
683
    emoji-regex "^9.2.2"
684
    has "^1.0.3"
685
    jsx-ast-utils "^3.2.1"
686
    language-tags "^1.0.5"
687
    minimatch "^3.0.4"
688

  
689
eslint-plugin-react-hooks@^4.3.0:
690
  version "4.3.0"
691
  resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz#318dbf312e06fab1c835a4abef00121751ac1172"
692
  integrity sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==
693

  
694
eslint-plugin-react@^7.27.0:
695
  version "7.29.4"
696
  resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.29.4.tgz#4717de5227f55f3801a5fd51a16a4fa22b5914d2"
697
  integrity sha512-CVCXajliVh509PcZYRFyu/BoUEz452+jtQJq2b3Bae4v3xBUWPLCmtmBM+ZinG4MzwmxJgJ2M5rMqhqLVn7MtQ==
698
  dependencies:
699
    array-includes "^3.1.4"
700
    array.prototype.flatmap "^1.2.5"
701
    doctrine "^2.1.0"
702
    estraverse "^5.3.0"
703
    jsx-ast-utils "^2.4.1 || ^3.0.0"
704
    minimatch "^3.1.2"
705
    object.entries "^1.1.5"
706
    object.fromentries "^2.0.5"
707
    object.hasown "^1.1.0"
708
    object.values "^1.1.5"
709
    prop-types "^15.8.1"
710
    resolve "^2.0.0-next.3"
711
    semver "^6.3.0"
712
    string.prototype.matchall "^4.0.6"
713

  
714
eslint-scope@^7.1.1:
715
  version "7.1.1"
716
  resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642"
717
  integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==
718
  dependencies:
719
    esrecurse "^4.3.0"
720
    estraverse "^5.2.0"
721

  
722
eslint-utils@^3.0.0:
723
  version "3.0.0"
724
  resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
725
  integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
726
  dependencies:
727
    eslint-visitor-keys "^2.0.0"
728

  
729
eslint-visitor-keys@^2.0.0:
730
  version "2.1.0"
731
  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
732
  integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
733

  
734
eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0:
735
  version "3.3.0"
736
  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
737
  integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
738

  
739
eslint@8.11.0:
740
  version "8.11.0"
741
  resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.11.0.tgz#88b91cfba1356fc10bb9eb592958457dfe09fb37"
742
  integrity sha512-/KRpd9mIRg2raGxHRGwW9ZywYNAClZrHjdueHcrVDuO3a6bj83eoTirCCk0M0yPwOjWYKHwRVRid+xK4F/GHgA==
743
  dependencies:
744
    "@eslint/eslintrc" "^1.2.1"
745
    "@humanwhocodes/config-array" "^0.9.2"
746
    ajv "^6.10.0"
747
    chalk "^4.0.0"
748
    cross-spawn "^7.0.2"
749
    debug "^4.3.2"
750
    doctrine "^3.0.0"
751
    escape-string-regexp "^4.0.0"
752
    eslint-scope "^7.1.1"
753
    eslint-utils "^3.0.0"
754
    eslint-visitor-keys "^3.3.0"
755
    espree "^9.3.1"
756
    esquery "^1.4.0"
757
    esutils "^2.0.2"
758
    fast-deep-equal "^3.1.3"
759
    file-entry-cache "^6.0.1"
760
    functional-red-black-tree "^1.0.1"
761
    glob-parent "^6.0.1"
762
    globals "^13.6.0"
763
    ignore "^5.2.0"
764
    import-fresh "^3.0.0"
765
    imurmurhash "^0.1.4"
766
    is-glob "^4.0.0"
767
    js-yaml "^4.1.0"
768
    json-stable-stringify-without-jsonify "^1.0.1"
769
    levn "^0.4.1"
770
    lodash.merge "^4.6.2"
771
    minimatch "^3.0.4"
772
    natural-compare "^1.4.0"
773
    optionator "^0.9.1"
774
    regexpp "^3.2.0"
775
    strip-ansi "^6.0.1"
776
    strip-json-comments "^3.1.0"
777
    text-table "^0.2.0"
778
    v8-compile-cache "^2.0.3"
779

  
780
espree@^9.3.1:
781
  version "9.3.1"
782
  resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.1.tgz#8793b4bc27ea4c778c19908e0719e7b8f4115bcd"
783
  integrity sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==
784
  dependencies:
785
    acorn "^8.7.0"
786
    acorn-jsx "^5.3.1"
787
    eslint-visitor-keys "^3.3.0"
788

  
789
esquery@^1.4.0:
790
  version "1.4.0"
791
  resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
792
  integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
793
  dependencies:
794
    estraverse "^5.1.0"
795

  
796
esrecurse@^4.3.0:
797
  version "4.3.0"
798
  resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
799
  integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
800
  dependencies:
801
    estraverse "^5.2.0"
802

  
803
estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
804
  version "5.3.0"
805
  resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
806
  integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
807

  
808
esutils@^2.0.2:
809
  version "2.0.3"
810
  resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
811
  integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
812

  
813
fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
814
  version "3.1.3"
815
  resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
816
  integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
817

  
818
fast-glob@^3.2.9:
819
  version "3.2.11"
820
  resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9"
821
  integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==
822
  dependencies:
823
    "@nodelib/fs.stat" "^2.0.2"
824
    "@nodelib/fs.walk" "^1.2.3"
825
    glob-parent "^5.1.2"
826
    merge2 "^1.3.0"
827
    micromatch "^4.0.4"
828

  
829
fast-json-stable-stringify@^2.0.0:
830
  version "2.1.0"
831
  resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
832
  integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
833

  
834
fast-levenshtein@^2.0.6:
835
  version "2.0.6"
836
  resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
837
  integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
838

  
839
fastq@^1.6.0:
840
  version "1.13.0"
841
  resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
842
  integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
843
  dependencies:
844
    reusify "^1.0.4"
845

  
846
file-entry-cache@^6.0.1:
847
  version "6.0.1"
848
  resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
849
  integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
850
  dependencies:
851
    flat-cache "^3.0.4"
852

  
853
fill-range@^7.0.1:
854
  version "7.0.1"
855
  resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
856
  integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
857
  dependencies:
858
    to-regex-range "^5.0.1"
859

  
860
find-up@^2.1.0:
861
  version "2.1.0"
862
  resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
863
  integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
864
  dependencies:
865
    locate-path "^2.0.0"
866

  
867
flat-cache@^3.0.4:
868
  version "3.0.4"
869
  resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
870
  integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
871
  dependencies:
872
    flatted "^3.1.0"
873
    rimraf "^3.0.2"
874

  
875
flatted@^3.1.0:
876
  version "3.2.5"
877
  resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3"
878
  integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==
879

  
880
follow-redirects@^1.14.8:
881
  version "1.14.9"
882
  resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.9.tgz#dd4ea157de7bfaf9ea9b3fbd85aa16951f78d8d7"
883
  integrity sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==
884

  
885
fs.realpath@^1.0.0:
886
  version "1.0.0"
887
  resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
888
  integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
889

  
890
fsevents@~2.3.2:
891
  version "2.3.2"
892
  resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
893
  integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
894

  
895
function-bind@^1.1.1:
896
  version "1.1.1"
897
  resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
898
  integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
899

  
900
functional-red-black-tree@^1.0.1:
901
  version "1.0.1"
902
  resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
903
  integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
904

  
905
get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
906
  version "1.1.1"
... Rozdílový soubor je zkrácen, protože jeho délka přesahuje max. limit.

Také k dispozici: Unified diff