Projekt

Obecné

Profil

« Předchozí | Další » 

Revize ec88f816

Přidáno uživatelem Václav Honzík před asi 3 roky(ů)

frontend bootstrap #9137

Zobrazit rozdíly:

frontend/.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
# production
12
/build
13

  
14
# misc
15
.DS_Store
16
.env.local
17
.env.development.local
18
.env.test.local
19
.env.production.local
20

  
21
npm-debug.log*
22
yarn-debug.log*
23
yarn-error.log*
frontend/README.md
1
# Getting Started with Create React App
2

  
3
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4

  
5
## Available Scripts
6

  
7
In the project directory, you can run:
8

  
9
### `yarn start`
10

  
11
Runs the app in the development mode.\
12
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13

  
14
The page will reload if you make edits.\
15
You will also see any lint errors in the console.
16

  
17
### `yarn test`
18

  
19
Launches the test runner in the interactive watch mode.\
20
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21

  
22
### `yarn build`
23

  
24
Builds the app for production to the `build` folder.\
25
It correctly bundles React in production mode and optimizes the build for the best performance.
26

  
27
The build is minified and the filenames include the hashes.\
28
Your app is ready to be deployed!
29

  
30
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31

  
32
### `yarn eject`
33

  
34
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35

  
36
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37

  
38
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39

  
40
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41

  
42
## Learn More
43

  
44
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45

  
46
To learn React, check out the [React documentation](https://reactjs.org/).
frontend/package.json
1
{
2
  "name": "frontend",
3
  "version": "0.1.0",
4
  "private": true,
5
  "dependencies": {
6
    "@testing-library/jest-dom": "^5.14.1",
7
    "@testing-library/react": "^12.0.0",
8
    "@testing-library/user-event": "^13.2.1",
9
    "@types/jest": "^27.0.1",
10
    "@types/node": "^16.7.13",
11
    "@types/react": "^17.0.20",
12
    "@types/react-dom": "^17.0.9",
13
    "axios": "^0.26.0",
14
    "dotenv": "^16.0.0",
15
    "react": "^17.0.2",
16
    "react-dom": "^17.0.2",
17
    "react-scripts": "5.0.0",
18
    "typescript": "^4.4.2",
19
    "web-vitals": "^2.1.0"
20
  },
21
  "scripts": {
22
    "start": "react-scripts start",
23
    "build": "react-scripts build",
24
    "test": "react-scripts test",
25
    "eject": "react-scripts eject"
26
  },
27
  "eslintConfig": {
28
    "extends": [
29
      "react-app",
30
      "react-app/jest"
31
    ]
32
  },
33
  "browserslist": {
34
    "production": [
35
      ">0.2%",
36
      "not dead",
37
      "not op_mini all"
38
    ],
39
    "development": [
40
      "last 1 chrome version",
41
      "last 1 firefox version",
42
      "last 1 safari version"
43
    ]
44
  }
45
}
frontend/public/index.html
1
<!DOCTYPE html>
2
<html lang="en">
3
  <head>
4
    <meta charset="utf-8" />
5
    <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6
    <meta name="viewport" content="width=device-width, initial-scale=1" />
7
    <meta name="theme-color" content="#000000" />
8
    <meta
9
      name="description"
10
      content="Web site created using create-react-app"
11
    />
12
    <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13
    <!--
14
      manifest.json provides metadata used when your web app is installed on a
15
      user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
16
    -->
17
    <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
18
    <!--
19
      Notice the use of %PUBLIC_URL% in the tags above.
20
      It will be replaced with the URL of the `public` folder during the build.
21
      Only files inside the `public` folder can be referenced from the HTML.
22

  
23
      Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
24
      work correctly both with client-side routing and a non-root public URL.
25
      Learn how to configure a non-root public URL by running `npm run build`.
26
    -->
27
    <title>React App</title>
28
  </head>
29
  <body>
30
    <noscript>You need to enable JavaScript to run this app.</noscript>
31
    <div id="root"></div>
32
    <!--
33
      This HTML file is a template.
34
      If you open it directly in the browser, you will see an empty page.
35

  
36
      You can add webfonts, meta tags, or analytics to this file.
37
      The build step will place the bundled scripts into the <body> tag.
38

  
39
      To begin the development, run `npm start` or `yarn start`.
40
      To create a production bundle, use `npm run build` or `yarn build`.
41
    -->
42
  </body>
43
</html>
frontend/public/manifest.json
1
{
2
  "short_name": "React App",
3
  "name": "Create React App Sample",
4
  "icons": [
5
    {
6
      "src": "favicon.ico",
7
      "sizes": "64x64 32x32 24x24 16x16",
8
      "type": "image/x-icon"
9
    },
10
    {
11
      "src": "logo192.png",
12
      "type": "image/png",
13
      "sizes": "192x192"
14
    },
15
    {
16
      "src": "logo512.png",
17
      "type": "image/png",
18
      "sizes": "512x512"
19
    }
20
  ],
21
  "start_url": ".",
22
  "display": "standalone",
23
  "theme_color": "#000000",
24
  "background_color": "#ffffff"
25
}
frontend/public/robots.txt
1
# https://www.robotstxt.org/robotstxt.html
2
User-agent: *
3
Disallow:
frontend/src/App.css
1
.App {
2
  text-align: center;
3
}
4

  
5
.App-logo {
6
  height: 40vmin;
7
  pointer-events: none;
8
}
9

  
10
@media (prefers-reduced-motion: no-preference) {
11
  .App-logo {
12
    animation: App-logo-spin infinite 20s linear;
13
  }
14
}
15

  
16
.App-header {
17
  background-color: #282c34;
18
  min-height: 100vh;
19
  display: flex;
20
  flex-direction: column;
21
  align-items: center;
22
  justify-content: center;
23
  font-size: calc(10px + 2vmin);
24
  color: white;
25
}
26

  
27
.App-link {
28
  color: #61dafb;
29
}
30

  
31
@keyframes App-logo-spin {
32
  from {
33
    transform: rotate(0deg);
34
  }
35
  to {
36
    transform: rotate(360deg);
37
  }
38
}
frontend/src/App.test.tsx
1
import React from 'react';
2
import { render, screen } from '@testing-library/react';
3
import App from './App';
4

  
5
test('renders learn react link', () => {
6
  render(<App />);
7
  const linkElement = screen.getByText(/learn react/i);
8
  expect(linkElement).toBeInTheDocument();
9
});
frontend/src/App.tsx
1
import React from 'react';
2
import './App.css';
3
import StubComponent from './components/StubComponent'
4

  
5
function App() {
6
  return (
7
    <div className="App">
8
      <StubComponent />
9
    </div>
10
  );
11
}
12

  
13
export default App;
frontend/src/components/StubComponent.tsx
1
// Example component that connects to the backend API and fetches dummy data
2

  
3
import { useState } from 'react'
4
import AxiosClient from '../services/AxiosClient'
5

  
6
const StubComponent = () => {
7

  
8
    const [text, setText] = useState<string>('')
9

  
10
    // Sends api request to the backend
11
    const fetchStub = async () => {
12
        try {
13
            const { data } = await AxiosClient.get('/stub')
14
            if (!!data && data.success) {
15
                setText(data.message as string)
16
            }
17
        }
18
        catch (err) {
19
            console.log(`An error has occurred: ${err}`)
20
        }
21
    }
22

  
23
    return (
24
        <>
25
            <h1>Welcome to the internet</h1>
26
            <p>Click the button to fetch the message</p>
27
            <p>The message: {text}</p>
28
            <button onClick={fetchStub}>Fetch the message</button>
29
        </>
30
    )
31

  
32
}
33

  
34
export default StubComponent
frontend/src/config/Config.ts
1

  
2
export default {
3
    baseUrl: process.env.REACT_APP_API_BASE_URL || 'http://localhost:8080'
4
}
frontend/src/index.css
1
body {
2
  margin: 0;
3
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
4
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
5
    sans-serif;
6
  -webkit-font-smoothing: antialiased;
7
  -moz-osx-font-smoothing: grayscale;
8
}
9

  
10
code {
11
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
12
    monospace;
13
}
frontend/src/index.tsx
1
import React from 'react';
2
import ReactDOM from 'react-dom';
3
import './index.css';
4
import App from './App';
5
import reportWebVitals from './reportWebVitals';
6

  
7
ReactDOM.render(
8
  <React.StrictMode>
9
    <App />
10
  </React.StrictMode>,
11
  document.getElementById('root')
12
);
13

  
14
// If you want to start measuring performance in your app, pass a function
15
// to log results (for example: reportWebVitals(console.log))
16
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
17
reportWebVitals();
frontend/src/logo.svg
1
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3"><g fill="#61DAFB"><path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/><circle cx="420.9" cy="296.5" r="45.7"/><path d="M520.5 78.1z"/></g></svg>
frontend/src/react-app-env.d.ts
1
/// <reference types="react-scripts" />
frontend/src/reportWebVitals.ts
1
import { ReportHandler } from 'web-vitals';
2

  
3
const reportWebVitals = (onPerfEntry?: ReportHandler) => {
4
  if (onPerfEntry && onPerfEntry instanceof Function) {
5
    import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
6
      getCLS(onPerfEntry);
7
      getFID(onPerfEntry);
8
      getFCP(onPerfEntry);
9
      getLCP(onPerfEntry);
10
      getTTFB(onPerfEntry);
11
    });
12
  }
13
};
14

  
15
export default reportWebVitals;
frontend/src/services/AxiosClient.ts
1
import axios from 'axios'
2
import Config from '../config/Config'
3

  
4
export default axios.create({
5
    baseURL: Config.baseUrl,
6
})
frontend/src/setupTests.ts
1
// jest-dom adds custom jest matchers for asserting on DOM nodes.
2
// allows you to do things like:
3
// expect(element).toHaveTextContent(/react/i)
4
// learn more: https://github.com/testing-library/jest-dom
5
import '@testing-library/jest-dom';
frontend/tsconfig.json
1
{
2
  "compilerOptions": {
3
    "target": "es5",
4
    "lib": [
5
      "dom",
6
      "dom.iterable",
7
      "esnext"
8
    ],
9
    "allowJs": true,
10
    "skipLibCheck": true,
11
    "esModuleInterop": true,
12
    "allowSyntheticDefaultImports": true,
13
    "strict": true,
14
    "forceConsistentCasingInFileNames": true,
15
    "noFallthroughCasesInSwitch": true,
16
    "module": "esnext",
17
    "moduleResolution": "node",
18
    "resolveJsonModule": true,
19
    "isolatedModules": true,
20
    "noEmit": true,
21
    "jsx": "react-jsx"
22
  },
23
  "include": [
24
    "src"
25
  ]
26
}
frontend/yarn.lock
1
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
# yarn lockfile v1
3

  
4

  
5
"@ampproject/remapping@^2.1.0":
6
  version "2.1.2"
7
  resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.1.2.tgz#4edca94973ded9630d20101cd8559cedb8d8bd34"
8
  integrity sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==
9
  dependencies:
10
    "@jridgewell/trace-mapping" "^0.3.0"
11

  
12
"@apideck/better-ajv-errors@^0.3.1":
13
  version "0.3.3"
14
  resolved "https://registry.yarnpkg.com/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.3.tgz#ab0b1e981e1749bf59736cf7ebe25cfc9f949c15"
15
  integrity sha512-9o+HO2MbJhJHjDYZaDxJmSDckvDpiuItEsrIShV0DXeCshXWRHhqYyU/PKHMkuClOmFnZhRd6wzv4vpDu/dRKg==
16
  dependencies:
17
    json-schema "^0.4.0"
18
    jsonpointer "^5.0.0"
19
    leven "^3.1.0"
20

  
21
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.16.7", "@babel/code-frame@^7.8.3":
22
  version "7.16.7"
23
  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789"
24
  integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==
25
  dependencies:
26
    "@babel/highlight" "^7.16.7"
27

  
28
"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.16.4", "@babel/compat-data@^7.16.8", "@babel/compat-data@^7.17.0":
29
  version "7.17.0"
30
  resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.0.tgz#86850b8597ea6962089770952075dcaabb8dba34"
31
  integrity sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng==
32

  
33
"@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.3", "@babel/core@^7.16.0", "@babel/core@^7.7.2", "@babel/core@^7.8.0":
34
  version "7.17.5"
35
  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.17.5.tgz#6cd2e836058c28f06a4ca8ee7ed955bbf37c8225"
36
  integrity sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA==
37
  dependencies:
38
    "@ampproject/remapping" "^2.1.0"
39
    "@babel/code-frame" "^7.16.7"
40
    "@babel/generator" "^7.17.3"
41
    "@babel/helper-compilation-targets" "^7.16.7"
42
    "@babel/helper-module-transforms" "^7.16.7"
43
    "@babel/helpers" "^7.17.2"
44
    "@babel/parser" "^7.17.3"
45
    "@babel/template" "^7.16.7"
46
    "@babel/traverse" "^7.17.3"
47
    "@babel/types" "^7.17.0"
48
    convert-source-map "^1.7.0"
49
    debug "^4.1.0"
50
    gensync "^1.0.0-beta.2"
51
    json5 "^2.1.2"
52
    semver "^6.3.0"
53

  
54
"@babel/eslint-parser@^7.16.3":
55
  version "7.17.0"
56
  resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.17.0.tgz#eabb24ad9f0afa80e5849f8240d0e5facc2d90d6"
57
  integrity sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==
58
  dependencies:
59
    eslint-scope "^5.1.1"
60
    eslint-visitor-keys "^2.1.0"
61
    semver "^6.3.0"
62

  
63
"@babel/generator@^7.17.3", "@babel/generator@^7.7.2":
64
  version "7.17.3"
65
  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.3.tgz#a2c30b0c4f89858cb87050c3ffdfd36bdf443200"
66
  integrity sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg==
67
  dependencies:
68
    "@babel/types" "^7.17.0"
69
    jsesc "^2.5.1"
70
    source-map "^0.5.0"
71

  
72
"@babel/helper-annotate-as-pure@^7.16.7":
73
  version "7.16.7"
74
  resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz#bb2339a7534a9c128e3102024c60760a3a7f3862"
75
  integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==
76
  dependencies:
77
    "@babel/types" "^7.16.7"
78

  
79
"@babel/helper-builder-binary-assignment-operator-visitor@^7.16.7":
80
  version "7.16.7"
81
  resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz#38d138561ea207f0f69eb1626a418e4f7e6a580b"
82
  integrity sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==
83
  dependencies:
84
    "@babel/helper-explode-assignable-expression" "^7.16.7"
85
    "@babel/types" "^7.16.7"
86

  
87
"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.7":
88
  version "7.16.7"
89
  resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz#06e66c5f299601e6c7da350049315e83209d551b"
90
  integrity sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==
91
  dependencies:
92
    "@babel/compat-data" "^7.16.4"
93
    "@babel/helper-validator-option" "^7.16.7"
94
    browserslist "^4.17.5"
95
    semver "^6.3.0"
96

  
97
"@babel/helper-create-class-features-plugin@^7.16.10", "@babel/helper-create-class-features-plugin@^7.16.7", "@babel/helper-create-class-features-plugin@^7.17.1", "@babel/helper-create-class-features-plugin@^7.17.6":
98
  version "7.17.6"
99
  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz#3778c1ed09a7f3e65e6d6e0f6fbfcc53809d92c9"
100
  integrity sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==
101
  dependencies:
102
    "@babel/helper-annotate-as-pure" "^7.16.7"
103
    "@babel/helper-environment-visitor" "^7.16.7"
104
    "@babel/helper-function-name" "^7.16.7"
105
    "@babel/helper-member-expression-to-functions" "^7.16.7"
106
    "@babel/helper-optimise-call-expression" "^7.16.7"
107
    "@babel/helper-replace-supers" "^7.16.7"
108
    "@babel/helper-split-export-declaration" "^7.16.7"
109

  
110
"@babel/helper-create-regexp-features-plugin@^7.16.7":
111
  version "7.17.0"
112
  resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz#1dcc7d40ba0c6b6b25618997c5dbfd310f186fe1"
113
  integrity sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==
114
  dependencies:
115
    "@babel/helper-annotate-as-pure" "^7.16.7"
116
    regexpu-core "^5.0.1"
117

  
118
"@babel/helper-define-polyfill-provider@^0.3.1":
119
  version "0.3.1"
120
  resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz#52411b445bdb2e676869e5a74960d2d3826d2665"
121
  integrity sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==
122
  dependencies:
123
    "@babel/helper-compilation-targets" "^7.13.0"
124
    "@babel/helper-module-imports" "^7.12.13"
125
    "@babel/helper-plugin-utils" "^7.13.0"
126
    "@babel/traverse" "^7.13.0"
127
    debug "^4.1.1"
128
    lodash.debounce "^4.0.8"
129
    resolve "^1.14.2"
130
    semver "^6.1.2"
131

  
132
"@babel/helper-environment-visitor@^7.16.7":
133
  version "7.16.7"
134
  resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz#ff484094a839bde9d89cd63cba017d7aae80ecd7"
135
  integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==
136
  dependencies:
137
    "@babel/types" "^7.16.7"
138

  
139
"@babel/helper-explode-assignable-expression@^7.16.7":
140
  version "7.16.7"
141
  resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz#12a6d8522fdd834f194e868af6354e8650242b7a"
142
  integrity sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==
143
  dependencies:
144
    "@babel/types" "^7.16.7"
145

  
146
"@babel/helper-function-name@^7.16.7":
147
  version "7.16.7"
148
  resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz#f1ec51551fb1c8956bc8dd95f38523b6cf375f8f"
149
  integrity sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==
150
  dependencies:
151
    "@babel/helper-get-function-arity" "^7.16.7"
152
    "@babel/template" "^7.16.7"
153
    "@babel/types" "^7.16.7"
154

  
155
"@babel/helper-get-function-arity@^7.16.7":
156
  version "7.16.7"
157
  resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz#ea08ac753117a669f1508ba06ebcc49156387419"
158
  integrity sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==
159
  dependencies:
160
    "@babel/types" "^7.16.7"
161

  
162
"@babel/helper-hoist-variables@^7.16.7":
163
  version "7.16.7"
164
  resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246"
165
  integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==
166
  dependencies:
167
    "@babel/types" "^7.16.7"
168

  
169
"@babel/helper-member-expression-to-functions@^7.16.7":
170
  version "7.16.7"
171
  resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz#42b9ca4b2b200123c3b7e726b0ae5153924905b0"
172
  integrity sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==
173
  dependencies:
174
    "@babel/types" "^7.16.7"
175

  
176
"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7":
177
  version "7.16.7"
178
  resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437"
179
  integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==
180
  dependencies:
181
    "@babel/types" "^7.16.7"
182

  
183
"@babel/helper-module-transforms@^7.16.7":
184
  version "7.17.6"
185
  resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.17.6.tgz#3c3b03cc6617e33d68ef5a27a67419ac5199ccd0"
186
  integrity sha512-2ULmRdqoOMpdvkbT8jONrZML/XALfzxlb052bldftkicAUy8AxSCkD5trDPQcwHNmolcl7wP6ehNqMlyUw6AaA==
187
  dependencies:
188
    "@babel/helper-environment-visitor" "^7.16.7"
189
    "@babel/helper-module-imports" "^7.16.7"
190
    "@babel/helper-simple-access" "^7.16.7"
191
    "@babel/helper-split-export-declaration" "^7.16.7"
192
    "@babel/helper-validator-identifier" "^7.16.7"
193
    "@babel/template" "^7.16.7"
194
    "@babel/traverse" "^7.17.3"
195
    "@babel/types" "^7.17.0"
196

  
197
"@babel/helper-optimise-call-expression@^7.16.7":
198
  version "7.16.7"
199
  resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz#a34e3560605abbd31a18546bd2aad3e6d9a174f2"
200
  integrity sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==
201
  dependencies:
202
    "@babel/types" "^7.16.7"
203

  
204
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
205
  version "7.16.7"
206
  resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5"
207
  integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==
208

  
209
"@babel/helper-remap-async-to-generator@^7.16.8":
210
  version "7.16.8"
211
  resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz#29ffaade68a367e2ed09c90901986918d25e57e3"
212
  integrity sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==
213
  dependencies:
214
    "@babel/helper-annotate-as-pure" "^7.16.7"
215
    "@babel/helper-wrap-function" "^7.16.8"
216
    "@babel/types" "^7.16.8"
217

  
218
"@babel/helper-replace-supers@^7.16.7":
219
  version "7.16.7"
220
  resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz#e9f5f5f32ac90429c1a4bdec0f231ef0c2838ab1"
221
  integrity sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==
222
  dependencies:
223
    "@babel/helper-environment-visitor" "^7.16.7"
224
    "@babel/helper-member-expression-to-functions" "^7.16.7"
225
    "@babel/helper-optimise-call-expression" "^7.16.7"
226
    "@babel/traverse" "^7.16.7"
227
    "@babel/types" "^7.16.7"
228

  
229
"@babel/helper-simple-access@^7.16.7":
230
  version "7.16.7"
231
  resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz#d656654b9ea08dbb9659b69d61063ccd343ff0f7"
232
  integrity sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==
233
  dependencies:
234
    "@babel/types" "^7.16.7"
235

  
236
"@babel/helper-skip-transparent-expression-wrappers@^7.16.0":
237
  version "7.16.0"
238
  resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz#0ee3388070147c3ae051e487eca3ebb0e2e8bb09"
239
  integrity sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==
240
  dependencies:
241
    "@babel/types" "^7.16.0"
242

  
243
"@babel/helper-split-export-declaration@^7.16.7":
244
  version "7.16.7"
245
  resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b"
246
  integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==
247
  dependencies:
248
    "@babel/types" "^7.16.7"
249

  
250
"@babel/helper-validator-identifier@^7.16.7":
251
  version "7.16.7"
252
  resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad"
253
  integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==
254

  
255
"@babel/helper-validator-option@^7.16.7":
256
  version "7.16.7"
257
  resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23"
258
  integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==
259

  
260
"@babel/helper-wrap-function@^7.16.8":
261
  version "7.16.8"
262
  resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz#58afda087c4cd235de92f7ceedebca2c41274200"
263
  integrity sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==
264
  dependencies:
265
    "@babel/helper-function-name" "^7.16.7"
266
    "@babel/template" "^7.16.7"
267
    "@babel/traverse" "^7.16.8"
268
    "@babel/types" "^7.16.8"
269

  
270
"@babel/helpers@^7.17.2":
271
  version "7.17.2"
272
  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.17.2.tgz#23f0a0746c8e287773ccd27c14be428891f63417"
273
  integrity sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ==
274
  dependencies:
275
    "@babel/template" "^7.16.7"
276
    "@babel/traverse" "^7.17.0"
277
    "@babel/types" "^7.17.0"
278

  
279
"@babel/highlight@^7.16.7":
280
  version "7.16.10"
281
  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.10.tgz#744f2eb81579d6eea753c227b0f570ad785aba88"
282
  integrity sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==
283
  dependencies:
284
    "@babel/helper-validator-identifier" "^7.16.7"
285
    chalk "^2.0.0"
286
    js-tokens "^4.0.0"
287

  
288
"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.17.3":
289
  version "7.17.3"
290
  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.3.tgz#b07702b982990bf6fdc1da5049a23fece4c5c3d0"
291
  integrity sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA==
292

  
293
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.16.7":
294
  version "7.16.7"
295
  resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz#4eda6d6c2a0aa79c70fa7b6da67763dfe2141050"
296
  integrity sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==
297
  dependencies:
298
    "@babel/helper-plugin-utils" "^7.16.7"
299

  
300
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.16.7":
301
  version "7.16.7"
302
  resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz#cc001234dfc139ac45f6bcf801866198c8c72ff9"
303
  integrity sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==
304
  dependencies:
305
    "@babel/helper-plugin-utils" "^7.16.7"
306
    "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
307
    "@babel/plugin-proposal-optional-chaining" "^7.16.7"
308

  
309
"@babel/plugin-proposal-async-generator-functions@^7.16.8":
310
  version "7.16.8"
311
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz#3bdd1ebbe620804ea9416706cd67d60787504bc8"
312
  integrity sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==
313
  dependencies:
314
    "@babel/helper-plugin-utils" "^7.16.7"
315
    "@babel/helper-remap-async-to-generator" "^7.16.8"
316
    "@babel/plugin-syntax-async-generators" "^7.8.4"
317

  
318
"@babel/plugin-proposal-class-properties@^7.16.0", "@babel/plugin-proposal-class-properties@^7.16.7":
319
  version "7.16.7"
320
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz#925cad7b3b1a2fcea7e59ecc8eb5954f961f91b0"
321
  integrity sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==
322
  dependencies:
323
    "@babel/helper-create-class-features-plugin" "^7.16.7"
324
    "@babel/helper-plugin-utils" "^7.16.7"
325

  
326
"@babel/plugin-proposal-class-static-block@^7.16.7":
327
  version "7.17.6"
328
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz#164e8fd25f0d80fa48c5a4d1438a6629325ad83c"
329
  integrity sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==
330
  dependencies:
331
    "@babel/helper-create-class-features-plugin" "^7.17.6"
332
    "@babel/helper-plugin-utils" "^7.16.7"
333
    "@babel/plugin-syntax-class-static-block" "^7.14.5"
334

  
335
"@babel/plugin-proposal-decorators@^7.16.4":
336
  version "7.17.2"
337
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.17.2.tgz#c36372ddfe0360cac1ee331a238310bddca11493"
338
  integrity sha512-WH8Z95CwTq/W8rFbMqb9p3hicpt4RX4f0K659ax2VHxgOyT6qQmUaEVEjIh4WR9Eh9NymkVn5vwsrE68fAQNUw==
339
  dependencies:
340
    "@babel/helper-create-class-features-plugin" "^7.17.1"
341
    "@babel/helper-plugin-utils" "^7.16.7"
342
    "@babel/helper-replace-supers" "^7.16.7"
343
    "@babel/plugin-syntax-decorators" "^7.17.0"
344
    charcodes "^0.2.0"
345

  
346
"@babel/plugin-proposal-dynamic-import@^7.16.7":
347
  version "7.16.7"
348
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz#c19c897eaa46b27634a00fee9fb7d829158704b2"
349
  integrity sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==
350
  dependencies:
351
    "@babel/helper-plugin-utils" "^7.16.7"
352
    "@babel/plugin-syntax-dynamic-import" "^7.8.3"
353

  
354
"@babel/plugin-proposal-export-namespace-from@^7.16.7":
355
  version "7.16.7"
356
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz#09de09df18445a5786a305681423ae63507a6163"
357
  integrity sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==
358
  dependencies:
359
    "@babel/helper-plugin-utils" "^7.16.7"
360
    "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
361

  
362
"@babel/plugin-proposal-json-strings@^7.16.7":
363
  version "7.16.7"
364
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz#9732cb1d17d9a2626a08c5be25186c195b6fa6e8"
365
  integrity sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==
366
  dependencies:
367
    "@babel/helper-plugin-utils" "^7.16.7"
368
    "@babel/plugin-syntax-json-strings" "^7.8.3"
369

  
370
"@babel/plugin-proposal-logical-assignment-operators@^7.16.7":
371
  version "7.16.7"
372
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz#be23c0ba74deec1922e639832904be0bea73cdea"
373
  integrity sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==
374
  dependencies:
375
    "@babel/helper-plugin-utils" "^7.16.7"
376
    "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
377

  
378
"@babel/plugin-proposal-nullish-coalescing-operator@^7.16.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.16.7":
379
  version "7.16.7"
380
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz#141fc20b6857e59459d430c850a0011e36561d99"
381
  integrity sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==
382
  dependencies:
383
    "@babel/helper-plugin-utils" "^7.16.7"
384
    "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
385

  
386
"@babel/plugin-proposal-numeric-separator@^7.16.0", "@babel/plugin-proposal-numeric-separator@^7.16.7":
387
  version "7.16.7"
388
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz#d6b69f4af63fb38b6ca2558442a7fb191236eba9"
389
  integrity sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==
390
  dependencies:
391
    "@babel/helper-plugin-utils" "^7.16.7"
392
    "@babel/plugin-syntax-numeric-separator" "^7.10.4"
393

  
394
"@babel/plugin-proposal-object-rest-spread@^7.16.7":
395
  version "7.17.3"
396
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz#d9eb649a54628a51701aef7e0ea3d17e2b9dd390"
397
  integrity sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==
398
  dependencies:
399
    "@babel/compat-data" "^7.17.0"
400
    "@babel/helper-compilation-targets" "^7.16.7"
401
    "@babel/helper-plugin-utils" "^7.16.7"
402
    "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
403
    "@babel/plugin-transform-parameters" "^7.16.7"
404

  
405
"@babel/plugin-proposal-optional-catch-binding@^7.16.7":
406
  version "7.16.7"
407
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz#c623a430674ffc4ab732fd0a0ae7722b67cb74cf"
408
  integrity sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==
409
  dependencies:
410
    "@babel/helper-plugin-utils" "^7.16.7"
411
    "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
412

  
413
"@babel/plugin-proposal-optional-chaining@^7.16.0", "@babel/plugin-proposal-optional-chaining@^7.16.7":
414
  version "7.16.7"
415
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz#7cd629564724816c0e8a969535551f943c64c39a"
416
  integrity sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==
417
  dependencies:
418
    "@babel/helper-plugin-utils" "^7.16.7"
419
    "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
420
    "@babel/plugin-syntax-optional-chaining" "^7.8.3"
421

  
422
"@babel/plugin-proposal-private-methods@^7.16.0", "@babel/plugin-proposal-private-methods@^7.16.11":
423
  version "7.16.11"
424
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz#e8df108288555ff259f4527dbe84813aac3a1c50"
425
  integrity sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==
426
  dependencies:
427
    "@babel/helper-create-class-features-plugin" "^7.16.10"
428
    "@babel/helper-plugin-utils" "^7.16.7"
429

  
430
"@babel/plugin-proposal-private-property-in-object@^7.16.7":
431
  version "7.16.7"
432
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz#b0b8cef543c2c3d57e59e2c611994861d46a3fce"
433
  integrity sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==
434
  dependencies:
435
    "@babel/helper-annotate-as-pure" "^7.16.7"
436
    "@babel/helper-create-class-features-plugin" "^7.16.7"
437
    "@babel/helper-plugin-utils" "^7.16.7"
438
    "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
439

  
440
"@babel/plugin-proposal-unicode-property-regex@^7.16.7", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
441
  version "7.16.7"
442
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz#635d18eb10c6214210ffc5ff4932552de08188a2"
443
  integrity sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==
444
  dependencies:
445
    "@babel/helper-create-regexp-features-plugin" "^7.16.7"
446
    "@babel/helper-plugin-utils" "^7.16.7"
447

  
448
"@babel/plugin-syntax-async-generators@^7.8.4":
449
  version "7.8.4"
450
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
451
  integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
452
  dependencies:
453
    "@babel/helper-plugin-utils" "^7.8.0"
454

  
455
"@babel/plugin-syntax-bigint@^7.8.3":
456
  version "7.8.3"
457
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea"
458
  integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
459
  dependencies:
460
    "@babel/helper-plugin-utils" "^7.8.0"
461

  
462
"@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3":
463
  version "7.12.13"
464
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
465
  integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
466
  dependencies:
467
    "@babel/helper-plugin-utils" "^7.12.13"
468

  
469
"@babel/plugin-syntax-class-static-block@^7.14.5":
470
  version "7.14.5"
471
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406"
472
  integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
473
  dependencies:
474
    "@babel/helper-plugin-utils" "^7.14.5"
475

  
476
"@babel/plugin-syntax-decorators@^7.17.0":
477
  version "7.17.0"
478
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.17.0.tgz#a2be3b2c9fe7d78bd4994e790896bc411e2f166d"
479
  integrity sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==
480
  dependencies:
481
    "@babel/helper-plugin-utils" "^7.16.7"
482

  
483
"@babel/plugin-syntax-dynamic-import@^7.8.3":
484
  version "7.8.3"
485
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
486
  integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
487
  dependencies:
488
    "@babel/helper-plugin-utils" "^7.8.0"
489

  
490
"@babel/plugin-syntax-export-namespace-from@^7.8.3":
491
  version "7.8.3"
492
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
493
  integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
494
  dependencies:
495
    "@babel/helper-plugin-utils" "^7.8.3"
496

  
497
"@babel/plugin-syntax-flow@^7.16.7":
498
  version "7.16.7"
499
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.16.7.tgz#202b147e5892b8452bbb0bb269c7ed2539ab8832"
500
  integrity sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==
501
  dependencies:
502
    "@babel/helper-plugin-utils" "^7.16.7"
503

  
504
"@babel/plugin-syntax-import-meta@^7.8.3":
505
  version "7.10.4"
506
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
507
  integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
508
  dependencies:
509
    "@babel/helper-plugin-utils" "^7.10.4"
510

  
511
"@babel/plugin-syntax-json-strings@^7.8.3":
512
  version "7.8.3"
513
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
514
  integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
515
  dependencies:
516
    "@babel/helper-plugin-utils" "^7.8.0"
517

  
518
"@babel/plugin-syntax-jsx@^7.16.7":
519
  version "7.16.7"
520
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz#50b6571d13f764266a113d77c82b4a6508bbe665"
521
  integrity sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==
522
  dependencies:
523
    "@babel/helper-plugin-utils" "^7.16.7"
524

  
525
"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
526
  version "7.10.4"
527
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
528
  integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
529
  dependencies:
530
    "@babel/helper-plugin-utils" "^7.10.4"
531

  
532
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
533
  version "7.8.3"
534
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
535
  integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
536
  dependencies:
537
    "@babel/helper-plugin-utils" "^7.8.0"
538

  
539
"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3":
540
  version "7.10.4"
541
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
542
  integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
543
  dependencies:
544
    "@babel/helper-plugin-utils" "^7.10.4"
545

  
546
"@babel/plugin-syntax-object-rest-spread@^7.8.3":
547
  version "7.8.3"
548
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
549
  integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
550
  dependencies:
551
    "@babel/helper-plugin-utils" "^7.8.0"
552

  
553
"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
554
  version "7.8.3"
555
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
556
  integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
557
  dependencies:
558
    "@babel/helper-plugin-utils" "^7.8.0"
559

  
560
"@babel/plugin-syntax-optional-chaining@^7.8.3":
561
  version "7.8.3"
562
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
563
  integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
564
  dependencies:
565
    "@babel/helper-plugin-utils" "^7.8.0"
566

  
567
"@babel/plugin-syntax-private-property-in-object@^7.14.5":
568
  version "7.14.5"
569
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad"
570
  integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
571
  dependencies:
572
    "@babel/helper-plugin-utils" "^7.14.5"
573

  
574
"@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3":
575
  version "7.14.5"
576
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
577
  integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
578
  dependencies:
579
    "@babel/helper-plugin-utils" "^7.14.5"
580

  
581
"@babel/plugin-syntax-typescript@^7.16.7", "@babel/plugin-syntax-typescript@^7.7.2":
582
  version "7.16.7"
583
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz#39c9b55ee153151990fb038651d58d3fd03f98f8"
584
  integrity sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==
585
  dependencies:
586
    "@babel/helper-plugin-utils" "^7.16.7"
587

  
588
"@babel/plugin-transform-arrow-functions@^7.16.7":
589
  version "7.16.7"
590
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz#44125e653d94b98db76369de9c396dc14bef4154"
591
  integrity sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==
592
  dependencies:
593
    "@babel/helper-plugin-utils" "^7.16.7"
594

  
595
"@babel/plugin-transform-async-to-generator@^7.16.8":
596
  version "7.16.8"
597
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz#b83dff4b970cf41f1b819f8b49cc0cfbaa53a808"
598
  integrity sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==
599
  dependencies:
600
    "@babel/helper-module-imports" "^7.16.7"
601
    "@babel/helper-plugin-utils" "^7.16.7"
602
    "@babel/helper-remap-async-to-generator" "^7.16.8"
603

  
604
"@babel/plugin-transform-block-scoped-functions@^7.16.7":
605
  version "7.16.7"
606
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz#4d0d57d9632ef6062cdf354bb717102ee042a620"
607
  integrity sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==
608
  dependencies:
609
    "@babel/helper-plugin-utils" "^7.16.7"
610

  
611
"@babel/plugin-transform-block-scoping@^7.16.7":
612
  version "7.16.7"
613
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz#f50664ab99ddeaee5bc681b8f3a6ea9d72ab4f87"
614
  integrity sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==
615
  dependencies:
616
    "@babel/helper-plugin-utils" "^7.16.7"
617

  
618
"@babel/plugin-transform-classes@^7.16.7":
619
  version "7.16.7"
620
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz#8f4b9562850cd973de3b498f1218796eb181ce00"
621
  integrity sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==
622
  dependencies:
623
    "@babel/helper-annotate-as-pure" "^7.16.7"
624
    "@babel/helper-environment-visitor" "^7.16.7"
625
    "@babel/helper-function-name" "^7.16.7"
626
    "@babel/helper-optimise-call-expression" "^7.16.7"
627
    "@babel/helper-plugin-utils" "^7.16.7"
628
    "@babel/helper-replace-supers" "^7.16.7"
629
    "@babel/helper-split-export-declaration" "^7.16.7"
630
    globals "^11.1.0"
631

  
632
"@babel/plugin-transform-computed-properties@^7.16.7":
633
  version "7.16.7"
634
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz#66dee12e46f61d2aae7a73710f591eb3df616470"
635
  integrity sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==
636
  dependencies:
637
    "@babel/helper-plugin-utils" "^7.16.7"
638

  
639
"@babel/plugin-transform-destructuring@^7.16.7":
640
  version "7.17.3"
641
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.3.tgz#c445f75819641788a27a0a3a759d9df911df6abc"
642
  integrity sha512-dDFzegDYKlPqa72xIlbmSkly5MluLoaC1JswABGktyt6NTXSBcUuse/kWE/wvKFWJHPETpi158qJZFS3JmykJg==
643
  dependencies:
644
    "@babel/helper-plugin-utils" "^7.16.7"
645

  
646
"@babel/plugin-transform-dotall-regex@^7.16.7", "@babel/plugin-transform-dotall-regex@^7.4.4":
647
  version "7.16.7"
648
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz#6b2d67686fab15fb6a7fd4bd895d5982cfc81241"
649
  integrity sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==
650
  dependencies:
651
    "@babel/helper-create-regexp-features-plugin" "^7.16.7"
652
    "@babel/helper-plugin-utils" "^7.16.7"
653

  
654
"@babel/plugin-transform-duplicate-keys@^7.16.7":
655
  version "7.16.7"
656
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz#2207e9ca8f82a0d36a5a67b6536e7ef8b08823c9"
657
  integrity sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==
658
  dependencies:
659
    "@babel/helper-plugin-utils" "^7.16.7"
660

  
661
"@babel/plugin-transform-exponentiation-operator@^7.16.7":
662
  version "7.16.7"
663
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz#efa9862ef97e9e9e5f653f6ddc7b665e8536fe9b"
664
  integrity sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==
665
  dependencies:
666
    "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.7"
667
    "@babel/helper-plugin-utils" "^7.16.7"
668

  
669
"@babel/plugin-transform-flow-strip-types@^7.16.0":
670
  version "7.16.7"
671
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.16.7.tgz#291fb140c78dabbf87f2427e7c7c332b126964b8"
672
  integrity sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==
673
  dependencies:
674
    "@babel/helper-plugin-utils" "^7.16.7"
675
    "@babel/plugin-syntax-flow" "^7.16.7"
676

  
677
"@babel/plugin-transform-for-of@^7.16.7":
678
  version "7.16.7"
679
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz#649d639d4617dff502a9a158c479b3b556728d8c"
680
  integrity sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==
681
  dependencies:
682
    "@babel/helper-plugin-utils" "^7.16.7"
683

  
684
"@babel/plugin-transform-function-name@^7.16.7":
685
  version "7.16.7"
686
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz#5ab34375c64d61d083d7d2f05c38d90b97ec65cf"
687
  integrity sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==
688
  dependencies:
689
    "@babel/helper-compilation-targets" "^7.16.7"
690
    "@babel/helper-function-name" "^7.16.7"
691
    "@babel/helper-plugin-utils" "^7.16.7"
692

  
693
"@babel/plugin-transform-literals@^7.16.7":
694
  version "7.16.7"
695
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz#254c9618c5ff749e87cb0c0cef1a0a050c0bdab1"
696
  integrity sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==
697
  dependencies:
698
    "@babel/helper-plugin-utils" "^7.16.7"
699

  
700
"@babel/plugin-transform-member-expression-literals@^7.16.7":
701
  version "7.16.7"
702
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz#6e5dcf906ef8a098e630149d14c867dd28f92384"
703
  integrity sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==
704
  dependencies:
705
    "@babel/helper-plugin-utils" "^7.16.7"
706

  
707
"@babel/plugin-transform-modules-amd@^7.16.7":
708
  version "7.16.7"
709
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz#b28d323016a7daaae8609781d1f8c9da42b13186"
710
  integrity sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==
711
  dependencies:
712
    "@babel/helper-module-transforms" "^7.16.7"
713
    "@babel/helper-plugin-utils" "^7.16.7"
714
    babel-plugin-dynamic-import-node "^2.3.3"
715

  
716
"@babel/plugin-transform-modules-commonjs@^7.16.8":
717
  version "7.16.8"
718
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz#cdee19aae887b16b9d331009aa9a219af7c86afe"
719
  integrity sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA==
720
  dependencies:
721
    "@babel/helper-module-transforms" "^7.16.7"
722
    "@babel/helper-plugin-utils" "^7.16.7"
723
    "@babel/helper-simple-access" "^7.16.7"
724
    babel-plugin-dynamic-import-node "^2.3.3"
725

  
726
"@babel/plugin-transform-modules-systemjs@^7.16.7":
727
  version "7.16.7"
728
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz#887cefaef88e684d29558c2b13ee0563e287c2d7"
729
  integrity sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==
730
  dependencies:
731
    "@babel/helper-hoist-variables" "^7.16.7"
732
    "@babel/helper-module-transforms" "^7.16.7"
733
    "@babel/helper-plugin-utils" "^7.16.7"
734
    "@babel/helper-validator-identifier" "^7.16.7"
735
    babel-plugin-dynamic-import-node "^2.3.3"
736

  
737
"@babel/plugin-transform-modules-umd@^7.16.7":
738
  version "7.16.7"
739
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz#23dad479fa585283dbd22215bff12719171e7618"
740
  integrity sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==
741
  dependencies:
742
    "@babel/helper-module-transforms" "^7.16.7"
743
    "@babel/helper-plugin-utils" "^7.16.7"
744

  
745
"@babel/plugin-transform-named-capturing-groups-regex@^7.16.8":
746
  version "7.16.8"
747
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz#7f860e0e40d844a02c9dcf9d84965e7dfd666252"
748
  integrity sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==
749
  dependencies:
750
    "@babel/helper-create-regexp-features-plugin" "^7.16.7"
751

  
752
"@babel/plugin-transform-new-target@^7.16.7":
753
  version "7.16.7"
754
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz#9967d89a5c243818e0800fdad89db22c5f514244"
755
  integrity sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==
756
  dependencies:
757
    "@babel/helper-plugin-utils" "^7.16.7"
758

  
759
"@babel/plugin-transform-object-super@^7.16.7":
760
  version "7.16.7"
761
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz#ac359cf8d32cf4354d27a46867999490b6c32a94"
762
  integrity sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==
763
  dependencies:
764
    "@babel/helper-plugin-utils" "^7.16.7"
765
    "@babel/helper-replace-supers" "^7.16.7"
766

  
767
"@babel/plugin-transform-parameters@^7.16.7":
768
  version "7.16.7"
769
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz#a1721f55b99b736511cb7e0152f61f17688f331f"
770
  integrity sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==
771
  dependencies:
772
    "@babel/helper-plugin-utils" "^7.16.7"
773

  
774
"@babel/plugin-transform-property-literals@^7.16.7":
775
  version "7.16.7"
776
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz#2dadac85155436f22c696c4827730e0fe1057a55"
777
  integrity sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==
778
  dependencies:
779
    "@babel/helper-plugin-utils" "^7.16.7"
780

  
781
"@babel/plugin-transform-react-constant-elements@^7.12.1":
782
  version "7.17.6"
783
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.17.6.tgz#6cc273c2f612a6a50cb657e63ee1303e5e68d10a"
784
  integrity sha512-OBv9VkyyKtsHZiHLoSfCn+h6yU7YKX8nrs32xUmOa1SRSk+t03FosB6fBZ0Yz4BpD1WV7l73Nsad+2Tz7APpqw==
785
  dependencies:
786
    "@babel/helper-plugin-utils" "^7.16.7"
787

  
788
"@babel/plugin-transform-react-display-name@^7.16.0", "@babel/plugin-transform-react-display-name@^7.16.7":
789
  version "7.16.7"
790
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz#7b6d40d232f4c0f550ea348593db3b21e2404340"
791
  integrity sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==
792
  dependencies:
793
    "@babel/helper-plugin-utils" "^7.16.7"
794

  
795
"@babel/plugin-transform-react-jsx-development@^7.16.7":
796
  version "7.16.7"
797
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.7.tgz#43a00724a3ed2557ed3f276a01a929e6686ac7b8"
798
  integrity sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==
799
  dependencies:
800
    "@babel/plugin-transform-react-jsx" "^7.16.7"
801

  
802
"@babel/plugin-transform-react-jsx@^7.16.7":
803
  version "7.17.3"
804
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.17.3.tgz#eac1565da176ccb1a715dae0b4609858808008c1"
805
  integrity sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==
806
  dependencies:
807
    "@babel/helper-annotate-as-pure" "^7.16.7"
808
    "@babel/helper-module-imports" "^7.16.7"
809
    "@babel/helper-plugin-utils" "^7.16.7"
810
    "@babel/plugin-syntax-jsx" "^7.16.7"
811
    "@babel/types" "^7.17.0"
812

  
813
"@babel/plugin-transform-react-pure-annotations@^7.16.7":
814
  version "7.16.7"
815
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.7.tgz#232bfd2f12eb551d6d7d01d13fe3f86b45eb9c67"
816
  integrity sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==
817
  dependencies:
818
    "@babel/helper-annotate-as-pure" "^7.16.7"
819
    "@babel/helper-plugin-utils" "^7.16.7"
820

  
821
"@babel/plugin-transform-regenerator@^7.16.7":
822
  version "7.16.7"
823
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz#9e7576dc476cb89ccc5096fff7af659243b4adeb"
824
  integrity sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==
825
  dependencies:
826
    regenerator-transform "^0.14.2"
827

  
828
"@babel/plugin-transform-reserved-words@^7.16.7":
829
  version "7.16.7"
830
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz#1d798e078f7c5958eec952059c460b220a63f586"
831
  integrity sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==
832
  dependencies:
833
    "@babel/helper-plugin-utils" "^7.16.7"
834

  
835
"@babel/plugin-transform-runtime@^7.16.4":
836
  version "7.17.0"
837
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.17.0.tgz#0a2e08b5e2b2d95c4b1d3b3371a2180617455b70"
838
  integrity sha512-fr7zPWnKXNc1xoHfrIU9mN/4XKX4VLZ45Q+oMhfsYIaHvg7mHgmhfOy/ckRWqDK7XF3QDigRpkh5DKq6+clE8A==
839
  dependencies:
840
    "@babel/helper-module-imports" "^7.16.7"
841
    "@babel/helper-plugin-utils" "^7.16.7"
842
    babel-plugin-polyfill-corejs2 "^0.3.0"
843
    babel-plugin-polyfill-corejs3 "^0.5.0"
844
    babel-plugin-polyfill-regenerator "^0.3.0"
845
    semver "^6.3.0"
846

  
847
"@babel/plugin-transform-shorthand-properties@^7.16.7":
848
  version "7.16.7"
849
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz#e8549ae4afcf8382f711794c0c7b6b934c5fbd2a"
850
  integrity sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==
851
  dependencies:
852
    "@babel/helper-plugin-utils" "^7.16.7"
853

  
854
"@babel/plugin-transform-spread@^7.16.7":
855
  version "7.16.7"
856
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz#a303e2122f9f12e0105daeedd0f30fb197d8ff44"
857
  integrity sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==
858
  dependencies:
859
    "@babel/helper-plugin-utils" "^7.16.7"
860
    "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
861

  
862
"@babel/plugin-transform-sticky-regex@^7.16.7":
863
  version "7.16.7"
864
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz#c84741d4f4a38072b9a1e2e3fd56d359552e8660"
865
  integrity sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==
866
  dependencies:
867
    "@babel/helper-plugin-utils" "^7.16.7"
868

  
869
"@babel/plugin-transform-template-literals@^7.16.7":
870
  version "7.16.7"
871
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz#f3d1c45d28967c8e80f53666fc9c3e50618217ab"
872
  integrity sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==
873
  dependencies:
874
    "@babel/helper-plugin-utils" "^7.16.7"
875

  
876
"@babel/plugin-transform-typeof-symbol@^7.16.7":
877
  version "7.16.7"
878
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz#9cdbe622582c21368bd482b660ba87d5545d4f7e"
879
  integrity sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==
880
  dependencies:
881
    "@babel/helper-plugin-utils" "^7.16.7"
882

  
883
"@babel/plugin-transform-typescript@^7.16.7":
884
  version "7.16.8"
885
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.8.tgz#591ce9b6b83504903fa9dd3652c357c2ba7a1ee0"
886
  integrity sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==
887
  dependencies:
888
    "@babel/helper-create-class-features-plugin" "^7.16.7"
889
    "@babel/helper-plugin-utils" "^7.16.7"
890
    "@babel/plugin-syntax-typescript" "^7.16.7"
891

  
892
"@babel/plugin-transform-unicode-escapes@^7.16.7":
893
  version "7.16.7"
894
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz#da8717de7b3287a2c6d659750c964f302b31ece3"
895
  integrity sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==
896
  dependencies:
897
    "@babel/helper-plugin-utils" "^7.16.7"
898

  
899
"@babel/plugin-transform-unicode-regex@^7.16.7":
900
  version "7.16.7"
901
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz#0f7aa4a501198976e25e82702574c34cfebe9ef2"
902
  integrity sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==
903
  dependencies:
904
    "@babel/helper-create-regexp-features-plugin" "^7.16.7"
905
    "@babel/helper-plugin-utils" "^7.16.7"
906

  
907
"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.12.1", "@babel/preset-env@^7.16.4":
908
  version "7.16.11"
909
  resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.16.11.tgz#5dd88fd885fae36f88fd7c8342475c9f0abe2982"
910
  integrity sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==
911
  dependencies:
912
    "@babel/compat-data" "^7.16.8"
913
    "@babel/helper-compilation-targets" "^7.16.7"
914
    "@babel/helper-plugin-utils" "^7.16.7"
915
    "@babel/helper-validator-option" "^7.16.7"
916
    "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.16.7"
917
    "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.16.7"
918
    "@babel/plugin-proposal-async-generator-functions" "^7.16.8"
919
    "@babel/plugin-proposal-class-properties" "^7.16.7"
920
    "@babel/plugin-proposal-class-static-block" "^7.16.7"
921
    "@babel/plugin-proposal-dynamic-import" "^7.16.7"
922
    "@babel/plugin-proposal-export-namespace-from" "^7.16.7"
923
    "@babel/plugin-proposal-json-strings" "^7.16.7"
924
    "@babel/plugin-proposal-logical-assignment-operators" "^7.16.7"
925
    "@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.7"
926
    "@babel/plugin-proposal-numeric-separator" "^7.16.7"
927
    "@babel/plugin-proposal-object-rest-spread" "^7.16.7"
928
    "@babel/plugin-proposal-optional-catch-binding" "^7.16.7"
929
    "@babel/plugin-proposal-optional-chaining" "^7.16.7"
930
    "@babel/plugin-proposal-private-methods" "^7.16.11"
931
    "@babel/plugin-proposal-private-property-in-object" "^7.16.7"
932
    "@babel/plugin-proposal-unicode-property-regex" "^7.16.7"
933
    "@babel/plugin-syntax-async-generators" "^7.8.4"
934
    "@babel/plugin-syntax-class-properties" "^7.12.13"
935
    "@babel/plugin-syntax-class-static-block" "^7.14.5"
936
    "@babel/plugin-syntax-dynamic-import" "^7.8.3"
937
    "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
938
    "@babel/plugin-syntax-json-strings" "^7.8.3"
939
    "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
940
    "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
941
    "@babel/plugin-syntax-numeric-separator" "^7.10.4"
942
    "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
943
    "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
944
    "@babel/plugin-syntax-optional-chaining" "^7.8.3"
945
    "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
946
    "@babel/plugin-syntax-top-level-await" "^7.14.5"
947
    "@babel/plugin-transform-arrow-functions" "^7.16.7"
948
    "@babel/plugin-transform-async-to-generator" "^7.16.8"
949
    "@babel/plugin-transform-block-scoped-functions" "^7.16.7"
950
    "@babel/plugin-transform-block-scoping" "^7.16.7"
951
    "@babel/plugin-transform-classes" "^7.16.7"
952
    "@babel/plugin-transform-computed-properties" "^7.16.7"
953
    "@babel/plugin-transform-destructuring" "^7.16.7"
954
    "@babel/plugin-transform-dotall-regex" "^7.16.7"
955
    "@babel/plugin-transform-duplicate-keys" "^7.16.7"
956
    "@babel/plugin-transform-exponentiation-operator" "^7.16.7"
957
    "@babel/plugin-transform-for-of" "^7.16.7"
958
    "@babel/plugin-transform-function-name" "^7.16.7"
959
    "@babel/plugin-transform-literals" "^7.16.7"
960
    "@babel/plugin-transform-member-expression-literals" "^7.16.7"
961
    "@babel/plugin-transform-modules-amd" "^7.16.7"
962
    "@babel/plugin-transform-modules-commonjs" "^7.16.8"
963
    "@babel/plugin-transform-modules-systemjs" "^7.16.7"
964
    "@babel/plugin-transform-modules-umd" "^7.16.7"
965
    "@babel/plugin-transform-named-capturing-groups-regex" "^7.16.8"
966
    "@babel/plugin-transform-new-target" "^7.16.7"
967
    "@babel/plugin-transform-object-super" "^7.16.7"
968
    "@babel/plugin-transform-parameters" "^7.16.7"
969
    "@babel/plugin-transform-property-literals" "^7.16.7"
970
    "@babel/plugin-transform-regenerator" "^7.16.7"
971
    "@babel/plugin-transform-reserved-words" "^7.16.7"
972
    "@babel/plugin-transform-shorthand-properties" "^7.16.7"
973
    "@babel/plugin-transform-spread" "^7.16.7"
974
    "@babel/plugin-transform-sticky-regex" "^7.16.7"
975
    "@babel/plugin-transform-template-literals" "^7.16.7"
976
    "@babel/plugin-transform-typeof-symbol" "^7.16.7"
977
    "@babel/plugin-transform-unicode-escapes" "^7.16.7"
978
    "@babel/plugin-transform-unicode-regex" "^7.16.7"
979
    "@babel/preset-modules" "^0.1.5"
980
    "@babel/types" "^7.16.8"
981
    babel-plugin-polyfill-corejs2 "^0.3.0"
982
    babel-plugin-polyfill-corejs3 "^0.5.0"
983
    babel-plugin-polyfill-regenerator "^0.3.0"
984
    core-js-compat "^3.20.2"
985
    semver "^6.3.0"
986

  
987
"@babel/preset-modules@^0.1.5":
988
  version "0.1.5"
989
  resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9"
990
  integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==
991
  dependencies:
992
    "@babel/helper-plugin-utils" "^7.0.0"
... Rozdílový soubor je zkrácen, protože jeho délka přesahuje max. limit.

Také k dispozici: Unified diff