diff --git a/.eslintignore b/.eslintignore
new file mode 100755
index 0000000..dd7caa1
--- /dev/null
+++ b/.eslintignore
@@ -0,0 +1,3 @@
+node_modules
+coverage
+build
diff --git a/.eslintrc b/.eslintrc
new file mode 100755
index 0000000..c4d16ad
--- /dev/null
+++ b/.eslintrc
@@ -0,0 +1,60 @@
+{
+ "env": {
+ "browser": true,
+ "es2021": true
+ },
+ "parser": "babel-eslint",
+ "extends": ["react-app", "airbnb", "prettier"],
+ "parserOptions": {
+ "ecmaFeatures": {
+ "jsx": true
+ },
+ "ecmaVersion": 12,
+ "sourceType": "module"
+ },
+ "plugins": ["prettier"],
+ "overrides": [
+ {
+ "files": ["styledComponents.js"],
+ "rules": {
+ "import/prefer-default-export": "off"
+ }
+ }
+ ],
+ "rules": {
+ "prettier/prettier": "error",
+ "react/jsx-filename-extension": [1, {"extensions": [".js", ".jsx"]}],
+ "react/state-in-constructor": "off",
+ "react/react-in-jsx-scope": "off",
+ "react/jsx-uses-react": "off",
+ "no-console": "off",
+ "react/prop-types": "off",
+ "jsx-a11y/label-has-associated-control": [
+ 2,
+ {
+ "labelAttributes": ["htmlFor"]
+ }
+ ],
+ "jsx-a11y/click-events-have-key-events": 0,
+ "jsx-a11y/no-noninteractive-element-interactions": [
+ "off",
+ {
+ "handlers": ["onClick"]
+ }
+ ],
+ "react/prefer-stateless-function": [
+ 0,
+ {
+ "ignorePureComponents": true
+ }
+ ],
+ "no-unused-vars": "warn",
+ "jsx-a11y/alt-text": 1,
+ "react/no-unused-state": "warn",
+ "react/button-has-type": "warn",
+ "react/no-unescaped-entities": "warn",
+ "react/jsx-props-no-spreading": "off",
+ "operator-assignment": ["warn", "always"],
+ "radix": "off"
+ }
+}
diff --git a/.gitattributes b/.gitattributes
new file mode 100755
index 0000000..6313b56
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+* text=auto eol=lf
diff --git a/.gitignore b/.gitignore
new file mode 100755
index 0000000..912e978
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,26 @@
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# production
+/build
+
+# misc
+.DS_Store
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
+
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+.idea/
+.eslintcache
+.vscode/
+.results
\ No newline at end of file
diff --git a/.npmrc b/.npmrc
new file mode 100755
index 0000000..827637a
--- /dev/null
+++ b/.npmrc
@@ -0,0 +1,3 @@
+registry=https://registry.npmjs.org/
+package-lock=true
+save-exact=true
diff --git a/.prettierignore b/.prettierignore
new file mode 100755
index 0000000..dd7caa1
--- /dev/null
+++ b/.prettierignore
@@ -0,0 +1,3 @@
+node_modules
+coverage
+build
diff --git a/.prettierrc b/.prettierrc
new file mode 100755
index 0000000..282a4ab
--- /dev/null
+++ b/.prettierrc
@@ -0,0 +1,26 @@
+{
+ "arrowParens": "avoid",
+ "bracketSpacing": false,
+ "endOfLine": "lf",
+ "htmlWhitespaceSensitivity": "css",
+ "insertPragma": false,
+ "jsxBracketSameLine": false,
+ "jsxSingleQuote": false,
+ "printWidth": 80,
+ "overrides": [
+ {
+ "files": "*.md",
+ "options": {
+ "printWidth": 1000
+ }
+ }
+ ],
+ "proseWrap": "always",
+ "quoteProps": "as-needed",
+ "requirePragma": false,
+ "semi": false,
+ "singleQuote": true,
+ "tabWidth": 2,
+ "trailingComma": "all",
+ "useTabs": false
+}
diff --git a/README.md b/README.md
new file mode 100755
index 0000000..821cb40
--- /dev/null
+++ b/README.md
@@ -0,0 +1,127 @@
+In this project, let's build a **Match Game** by applying the concepts we have learned till now.
+
+### Refer to the video below:
+
+
+
+
+
+
+
+
+
+### Design Files
+
+
+Click to view
+
+- [Extra Small (Size < 576px) and Small (Size >= 576px)](https://assets.ccbp.in/frontend/content/react-js/match-game-sm-outputs.png)
+- [Medium (Size >= 768px), Large (Size >= 992px) and Extra Large (Size >= 1200px) - Match Game](https://assets.ccbp.in/frontend/content/react-js/match-game-lg-output.png)
+- [Medium (Size >= 768px), Large (Size >= 992px) and Extra Large (Size >= 1200px) - Scorecard](https://assets.ccbp.in/frontend/content/react-js/match-game-score-card-lg-output.png)
+
+
+
+### Set Up Instructions
+
+
+Click to view
+
+- Download dependencies by running `npm install`
+- Start up the app using `npm start`
+
+
+### Completion Instructions
+
+
+Functionality to be added
+
+
+The app must have the following functionalities
+
+- Initially,
+ - Score should be `0` and time should be `60` sec
+ - The image to be matched should have the src attribute value as the value of the key `imageUrl` from the first object in **imagesList** provided
+ - The **Fruits** tab should be active and the thumbnails with **FRUIT** as their category should be displayed
+- The timer should start running backwards from the `60` sec
+- When a tab is clicked, then the thumbnails in the corresponding category should be displayed
+- When a thumbnail is clicked, if that is matched with the image to be matched,
+ - Score is incremented by one
+ - The new image to be matched should be generated randomly among the value of the key `imageUrl` from **imagesList** provided
+- When a thumbnail is clicked, if it is not matched with the image to be matched,
+ - The game should end, and the [Scorecard](https://assets.ccbp.in/frontend/content/react-js/match-game-score-card-lg-output.png) view should be displayed
+ - When **PLAY AGAIN** button is clicked, then we should be able to play the game again
+ - The score and time values should be reset to `0` and `60` sec respectively
+ - The image to be matched should reset to the value of the key `imageUrl` from the first object in **imagesList** provided
+ - The active tab should reset to **Fruits**, and the thumbnails with **FRUIT** as their category should be displayed
+- When the timer reached `0` sec, then the game should end, and the [Scorecard](https://assets.ccbp.in/frontend/content/react-js/match-game-score-card-lg-output.png) view should be displayed
+- The App is provided with `tabsList`. It consists of a list of tabItem objects with the following properties in each tabItem object
+
+ | Key | Data Type |
+ | :---------: | :-------: |
+ | tabId | String |
+ | displayText | String |
+
+- The App is provided with `imagesList`. It consists of a list of imageItem objects with the following properties in each imageItem object
+
+ | Key | Data Type |
+ | :----------: | :-------: |
+ | id | String |
+ | imageUrl | String |
+ | thumbnailUrl | String |
+ | category | String |
+
+
+
+### Important Note
+
+
+Click to view
+
+
+
+**The following instructions are required for the tests to pass**
+
+- The image to be matched in the app should have the alt as **match**
+- The thumbnail images in the app should have the alt as **thumbnail**
+
+
+
+### Resources
+
+
+Image URLs
+
+- [https://assets.ccbp.in/frontend/react-js/match-game-bg.png](https://assets.ccbp.in/frontend/react-js/match-game-bg.png)
+- [https://assets.ccbp.in/frontend/react-js/match-game-score-card-lg-bg.png](https://assets.ccbp.in/frontend/react-js/match-game-score-card-lg-bg.png)
+- [https://assets.ccbp.in/frontend/react-js/match-game-score-card-sm-bg.png](https://assets.ccbp.in/frontend/react-js/match-game-score-card-sm-bg.png)
+- [https://assets.ccbp.in/frontend/react-js/match-game-website-logo.png](https://assets.ccbp.in/frontend/react-js/match-game-website-logo.png) alt should be **website logo**
+- [https://assets.ccbp.in/frontend/react-js/match-game-timer-img.png](https://assets.ccbp.in/frontend/react-js/match-game-timer-img.png) alt should be **timer**
+- [https://assets.ccbp.in/frontend/react-js/match-game-play-again-img.png](https://assets.ccbp.in/frontend/react-js/match-game-play-again-img.png) alt should be **reset**
+- [https://assets.ccbp.in/frontend/react-js/match-game-trophy.png](https://assets.ccbp.in/frontend/react-js/match-game-trophy.png) alt should be **trophy**
+
+
+
+
+Colors
+
+
+
+Hex: #2c0e3a
+Hex: #ffffff
+Hex: #fec653
+Hex: #cf60c8
+
+
+
+Font-families
+
+- Roboto
+
+
+
+> ### _Things to Keep in Mind_
+>
+> - All components you implement should go in the `src/components` directory.
+> - Don't change the component folder names as those are the files being imported into the tests.
+> - **Do not remove the pre-filled code**
+> - Want to quickly review some of the concepts you’ve been learning? Take a look at the Cheat Sheets.
diff --git a/package.json b/package.json
new file mode 100755
index 0000000..5e2e49c
--- /dev/null
+++ b/package.json
@@ -0,0 +1,67 @@
+{
+ "name": "match-game",
+ "private": true,
+ "version": "1.0.0",
+ "engines": {
+ "node": "^10.13 || 12 || 14 || 15",
+ "npm": ">=6"
+ },
+ "dependencies": {
+ "@testing-library/jest-dom": "5.11.9",
+ "@testing-library/react": "11.2.5",
+ "@testing-library/user-event": "12.6.2",
+ "chalk": "4.1.0",
+ "react": "17.0.1",
+ "react-dom": "17.0.1"
+ },
+ "devDependencies": {
+ "eslint-config-airbnb": "18.2.1",
+ "eslint-config-prettier": "8.1.0",
+ "eslint-plugin-prettier": "3.3.1",
+ "husky": "4.3.8",
+ "lint-staged": "10.5.4",
+ "npm-run-all": "4.1.5",
+ "prettier": "2.2.1",
+ "react-scripts": "4.0.3"
+ },
+ "scripts": {
+ "start": "react-scripts start",
+ "build": "react-scripts build",
+ "test": "react-scripts test",
+ "lint": "eslint .",
+ "lint:fix": "eslint --fix src/",
+ "format": "prettier --write \"./src\"",
+ "run-all": "npm-run-all --parallel test lint:fix"
+ },
+ "lint-staged": {
+ "*.js": [
+ "npm run lint:fix"
+ ],
+ "*.{js, jsx, json, html, css}": [
+ "npm run format"
+ ]
+ },
+ "husky": {
+ "hooks": {
+ "pre-commit": "lint-staged"
+ }
+ },
+ "jest": {
+ "collectCoverageFrom": [
+ "src/**/*.js"
+ ]
+ },
+ "browserslist": {
+ "development": [
+ "last 2 chrome versions",
+ "last 2 firefox versions",
+ "last 2 edge versions"
+ ],
+ "production": [
+ ">1%",
+ "last 4 versions",
+ "Firefox ESR",
+ "not ie < 11"
+ ]
+ }
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
new file mode 100644
index 0000000..6b4fef4
--- /dev/null
+++ b/pnpm-lock.yaml
@@ -0,0 +1,14837 @@
+dependencies:
+ '@testing-library/jest-dom': 5.11.9
+ '@testing-library/react': 11.2.5_react-dom@17.0.1+react@17.0.1
+ '@testing-library/user-event': 12.6.2
+ chalk: 4.1.0
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+devDependencies:
+ eslint-config-airbnb: 18.2.1
+ eslint-config-prettier: 8.1.0
+ eslint-plugin-prettier: 3.3.1_a5f306c245f9405bc973aa159985476e
+ husky: 4.3.8
+ lint-staged: 10.5.4
+ npm-run-all: 4.1.5
+ prettier: 2.2.1
+ react-scripts: 4.0.3_react@17.0.1
+lockfileVersion: 5.2
+packages:
+ /@ampproject/remapping/2.3.0:
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==
+ /@babel/code-frame/7.10.4:
+ dependencies:
+ '@babel/highlight': 7.24.6
+ dev: true
+ resolution:
+ integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
+ /@babel/code-frame/7.12.11:
+ dependencies:
+ '@babel/highlight': 7.24.6
+ dev: true
+ resolution:
+ integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
+ /@babel/code-frame/7.24.6:
+ dependencies:
+ '@babel/highlight': 7.24.6
+ picocolors: 1.0.1
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==
+ /@babel/compat-data/7.24.6:
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ==
+ /@babel/core/7.12.3:
+ dependencies:
+ '@babel/code-frame': 7.24.6
+ '@babel/generator': 7.24.6
+ '@babel/helper-module-transforms': 7.24.6_@babel+core@7.12.3
+ '@babel/helpers': 7.24.6
+ '@babel/parser': 7.24.6
+ '@babel/template': 7.24.6
+ '@babel/traverse': 7.24.6
+ '@babel/types': 7.24.6
+ convert-source-map: 1.9.0
+ debug: 4.3.4
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ lodash: 4.17.21
+ resolve: 1.18.1
+ semver: 5.7.2
+ source-map: 0.5.7
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==
+ /@babel/core/7.24.6:
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.24.6
+ '@babel/generator': 7.24.6
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-module-transforms': 7.24.6_@babel+core@7.24.6
+ '@babel/helpers': 7.24.6
+ '@babel/parser': 7.24.6
+ '@babel/template': 7.24.6
+ '@babel/traverse': 7.24.6
+ '@babel/types': 7.24.6
+ convert-source-map: 2.0.0
+ debug: 4.3.4
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ==
+ /@babel/generator/7.24.6:
+ dependencies:
+ '@babel/types': 7.24.6
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 2.5.2
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==
+ /@babel/helper-annotate-as-pure/7.24.6:
+ dependencies:
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==
+ /@babel/helper-builder-binary-assignment-operator-visitor/7.24.6:
+ dependencies:
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-+wnfqc5uHiMYtvRX7qu80Toef8BXeh4HHR1SPeonGb1SKPniNEd4a/nlaJJMv/OIEYvIVavvo0yR7u10Gqz0Iw==
+ /@babel/helper-compilation-targets/7.24.6:
+ dependencies:
+ '@babel/compat-data': 7.24.6
+ '@babel/helper-validator-option': 7.24.6
+ browserslist: 4.23.0
+ lru-cache: 5.1.1
+ semver: 6.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg==
+ /@babel/helper-create-class-features-plugin/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-member-expression-to-functions': 7.24.6
+ '@babel/helper-optimise-call-expression': 7.24.6
+ '@babel/helper-replace-supers': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ '@babel/helper-split-export-declaration': 7.24.6
+ semver: 6.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-djsosdPJVZE6Vsw3kk7IPRWethP94WHGOhQTc67SNXE0ZzMhHgALw8iGmYS0TD1bbMM0VDROy43od7/hN6WYcA==
+ /@babel/helper-create-class-features-plugin/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-member-expression-to-functions': 7.24.6
+ '@babel/helper-optimise-call-expression': 7.24.6
+ '@babel/helper-replace-supers': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ '@babel/helper-split-export-declaration': 7.24.6
+ semver: 6.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-djsosdPJVZE6Vsw3kk7IPRWethP94WHGOhQTc67SNXE0ZzMhHgALw8iGmYS0TD1bbMM0VDROy43od7/hN6WYcA==
+ /@babel/helper-create-regexp-features-plugin/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-annotate-as-pure': 7.24.6
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-C875lFBIWWwyv6MHZUG9HmRrlTDgOsLWZfYR0nW69gaKJNe0/Mpxx5r0EID2ZdHQkdUmQo2t0uNckTL08/1BgA==
+ /@babel/helper-create-regexp-features-plugin/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-annotate-as-pure': 7.24.6
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-C875lFBIWWwyv6MHZUG9HmRrlTDgOsLWZfYR0nW69gaKJNe0/Mpxx5r0EID2ZdHQkdUmQo2t0uNckTL08/1BgA==
+ /@babel/helper-define-polyfill-provider/0.6.2_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ debug: 4.3.4
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ resolution:
+ integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==
+ /@babel/helper-define-polyfill-provider/0.6.2_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ debug: 4.3.4
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ resolution:
+ integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==
+ /@babel/helper-environment-visitor/7.24.6:
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==
+ /@babel/helper-function-name/7.24.6:
+ dependencies:
+ '@babel/template': 7.24.6
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==
+ /@babel/helper-hoist-variables/7.24.6:
+ dependencies:
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==
+ /@babel/helper-member-expression-to-functions/7.24.6:
+ dependencies:
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-OTsCufZTxDUsv2/eDXanw/mUZHWOxSbEmC3pP8cgjcy5rgeVPWWMStnv274DV60JtHxTk0adT0QrCzC4M9NWGg==
+ /@babel/helper-module-imports/7.24.6:
+ dependencies:
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==
+ /@babel/helper-module-transforms/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-module-imports': 7.24.6
+ '@babel/helper-simple-access': 7.24.6
+ '@babel/helper-split-export-declaration': 7.24.6
+ '@babel/helper-validator-identifier': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==
+ /@babel/helper-module-transforms/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-module-imports': 7.24.6
+ '@babel/helper-simple-access': 7.24.6
+ '@babel/helper-split-export-declaration': 7.24.6
+ '@babel/helper-validator-identifier': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==
+ /@babel/helper-optimise-call-expression/7.24.6:
+ dependencies:
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-3SFDJRbx7KuPRl8XDUr8O7GAEB8iGyWPjLKJh/ywP/Iy9WOmEfMrsWbaZpvBu2HSYn4KQygIsz0O7m8y10ncMA==
+ /@babel/helper-plugin-utils/7.24.6:
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg==
+ /@babel/helper-remap-async-to-generator/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-wrap-function': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-1Qursq9ArRZPAMOZf/nuzVW8HgJLkTB9y9LfP4lW2MVp4e9WkLJDovfKBxoDcCk6VuzIxyqWHyBoaCtSRP10yg==
+ /@babel/helper-remap-async-to-generator/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-wrap-function': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-1Qursq9ArRZPAMOZf/nuzVW8HgJLkTB9y9LfP4lW2MVp4e9WkLJDovfKBxoDcCk6VuzIxyqWHyBoaCtSRP10yg==
+ /@babel/helper-replace-supers/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-member-expression-to-functions': 7.24.6
+ '@babel/helper-optimise-call-expression': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-mRhfPwDqDpba8o1F8ESxsEkJMQkUF8ZIWrAc0FtWhxnjfextxMWxr22RtFizxxSYLjVHDeMgVsRq8BBZR2ikJQ==
+ /@babel/helper-replace-supers/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-member-expression-to-functions': 7.24.6
+ '@babel/helper-optimise-call-expression': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-mRhfPwDqDpba8o1F8ESxsEkJMQkUF8ZIWrAc0FtWhxnjfextxMWxr22RtFizxxSYLjVHDeMgVsRq8BBZR2ikJQ==
+ /@babel/helper-simple-access/7.24.6:
+ dependencies:
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==
+ /@babel/helper-skip-transparent-expression-wrappers/7.24.6:
+ dependencies:
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-jhbbkK3IUKc4T43WadP96a27oYti9gEf1LdyGSP2rHGH77kwLwfhO7TgwnWvxxQVmke0ImmCSS47vcuxEMGD3Q==
+ /@babel/helper-split-export-declaration/7.24.6:
+ dependencies:
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==
+ /@babel/helper-string-parser/7.24.6:
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==
+ /@babel/helper-validator-identifier/7.24.6:
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==
+ /@babel/helper-validator-option/7.24.6:
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ==
+ /@babel/helper-wrap-function/7.24.6:
+ dependencies:
+ '@babel/helper-function-name': 7.24.6
+ '@babel/template': 7.24.6
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-f1JLrlw/jbiNfxvdrfBgio/gRBk3yTAEJWirpAkiJG2Hb22E7cEYKHWo0dFPTv/niPovzIdPdEDetrv6tC6gPQ==
+ /@babel/helpers/7.24.6:
+ dependencies:
+ '@babel/template': 7.24.6
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==
+ /@babel/highlight/7.24.6:
+ dependencies:
+ '@babel/helper-validator-identifier': 7.24.6
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+ picocolors: 1.0.1
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==
+ /@babel/parser/7.24.6:
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==
+ /@babel/plugin-bugfix-firefox-class-in-computed-class-key/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-bYndrJ6Ph6Ar+GaB5VAc0JPoP80bQCm4qon6JEzXfRl5QZyQ8Ur1K6k7htxWmPA5z+k7JQvaMUrtXlqclWYzKw==
+ /@babel/plugin-bugfix-firefox-class-in-computed-class-key/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-bYndrJ6Ph6Ar+GaB5VAc0JPoP80bQCm4qon6JEzXfRl5QZyQ8Ur1K6k7htxWmPA5z+k7JQvaMUrtXlqclWYzKw==
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-iVuhb6poq5ikqRq2XWU6OQ+R5o9wF+r/or9CeUyovgptz0UlnK4/seOQ1Istu/XybYjAhQv1FRSSfHHufIku5Q==
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-iVuhb6poq5ikqRq2XWU6OQ+R5o9wF+r/or9CeUyovgptz0UlnK4/seOQ1Istu/XybYjAhQv1FRSSfHHufIku5Q==
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ '@babel/plugin-transform-optional-chaining': 7.24.6_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.13.0
+ resolution:
+ integrity: sha512-c8TER5xMDYzzFcGqOEp9l4hvB7dcbhcGjcLVwxWfe4P5DOafdwjsBJZKsmv+o3aXh7NhopvayQIovHrh2zSRUQ==
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ '@babel/plugin-transform-optional-chaining': 7.24.6_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.13.0
+ resolution:
+ integrity: sha512-c8TER5xMDYzzFcGqOEp9l4hvB7dcbhcGjcLVwxWfe4P5DOafdwjsBJZKsmv+o3aXh7NhopvayQIovHrh2zSRUQ==
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-z8zEjYmwBUHN/pCF3NuWBhHQjJCrd33qAi8MgANfMrAvn72k2cImT8VjK9LJFu4ysOLJqhfkYYb3MvwANRUNZQ==
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-z8zEjYmwBUHN/pCF3NuWBhHQjJCrd33qAi8MgANfMrAvn72k2cImT8VjK9LJFu4ysOLJqhfkYYb3MvwANRUNZQ==
+ /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
+ /@babel/plugin-proposal-decorators/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-decorators': 7.24.6_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-8DjR0/DzlBhz2SVi9a19/N2U5+C3y3rseXuyoKL9SP8vnbewscj1eHZtL6kpEn4UCuUmqEo0mvqyDYRFoN2gpA==
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.24.6
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==
+ /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.24.6
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==
+ /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.24.6
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==
+ /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==
+ /@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==
+ /@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
+ /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
+ /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
+ /@babel/plugin-syntax-decorators/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-gInH8LEqBp+wkwTVihCd/qf+4s28g81FZyvlIbAurHk9eSiItEKG7E0uNK2UdpgsD79aJVAW3R3c85h0YJ0jsw==
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
+ /@babel/plugin-syntax-flow/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-gNkksSdV8RbsCoHF9sjVYrHfYACMl/8U32UfUhJ9+84/ASXw8dlx+eHyyF0m6ncQJ9IBSxfuCkB36GJqYdXTOA==
+ /@babel/plugin-syntax-import-assertions/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-BE6o2BogJKJImTmGpkmOic4V0hlRRxVtzqxiSPa8TIFxyhi4EFjHm08nq1M4STK4RytuLMgnSz0/wfflvGFNOg==
+ /@babel/plugin-syntax-import-assertions/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-BE6o2BogJKJImTmGpkmOic4V0hlRRxVtzqxiSPa8TIFxyhi4EFjHm08nq1M4STK4RytuLMgnSz0/wfflvGFNOg==
+ /@babel/plugin-syntax-import-attributes/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-D+CfsVZousPXIdudSII7RGy52+dYRtbyKAZcvtQKq/NpsivyMVduepzcLqG5pMBugtMdedxdC8Ramdpcne9ZWQ==
+ /@babel/plugin-syntax-import-attributes/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-D+CfsVZousPXIdudSII7RGy52+dYRtbyKAZcvtQKq/NpsivyMVduepzcLqG5pMBugtMdedxdC8Ramdpcne9ZWQ==
+ /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
+ /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
+ /@babel/plugin-syntax-jsx/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-lWfvAIFNWMlCsU0DRUun2GpFwZdGTukLaHJqRh1JRb80NdAP5Sb1HDHB5X9P9OtgZHQl089UzQkpYlBq2VTPRw==
+ /@babel/plugin-syntax-jsx/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-lWfvAIFNWMlCsU0DRUun2GpFwZdGTukLaHJqRh1JRb80NdAP5Sb1HDHB5X9P9OtgZHQl089UzQkpYlBq2VTPRw==
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
+ /@babel/plugin-syntax-typescript/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-TzCtxGgVTEJWWwcYwQhCIQ6WaKlo80/B+Onsk4RRCcYqpYGFcG9etPW94VToGte5AAcxRrhjPUFvUS3Y2qKi4A==
+ /@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-create-regexp-features-plugin': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==
+ /@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-regexp-features-plugin': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==
+ /@babel/plugin-transform-arrow-functions/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-jSSSDt4ZidNMggcLx8SaKsbGNEfIl0PHx/4mFEulorE7bpYLbN0d3pDW3eJ7Y5Z3yPhy3L3NaPCYyTUY7TuugQ==
+ /@babel/plugin-transform-arrow-functions/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-jSSSDt4ZidNMggcLx8SaKsbGNEfIl0PHx/4mFEulorE7bpYLbN0d3pDW3eJ7Y5Z3yPhy3L3NaPCYyTUY7TuugQ==
+ /@babel/plugin-transform-async-generator-functions/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-remap-async-to-generator': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-VEP2o4iR2DqQU6KPgizTW2mnMx6BG5b5O9iQdrW9HesLkv8GIA8x2daXBQxw1MrsIkFQGA/iJ204CKoQ8UcnAA==
+ /@babel/plugin-transform-async-generator-functions/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-remap-async-to-generator': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-VEP2o4iR2DqQU6KPgizTW2mnMx6BG5b5O9iQdrW9HesLkv8GIA8x2daXBQxw1MrsIkFQGA/iJ204CKoQ8UcnAA==
+ /@babel/plugin-transform-async-to-generator/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-module-imports': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-remap-async-to-generator': 7.24.6_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-NTBA2SioI3OsHeIn6sQmhvXleSl9T70YY/hostQLveWs0ic+qvbA3fa0kwAwQ0OA/XGaAerNZRQGJyRfhbJK4g==
+ /@babel/plugin-transform-async-to-generator/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-module-imports': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-remap-async-to-generator': 7.24.6_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-NTBA2SioI3OsHeIn6sQmhvXleSl9T70YY/hostQLveWs0ic+qvbA3fa0kwAwQ0OA/XGaAerNZRQGJyRfhbJK4g==
+ /@babel/plugin-transform-block-scoped-functions/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-XNW7jolYHW9CwORrZgA/97tL/k05qe/HL0z/qqJq1mdWhwwCM6D4BJBV7wAz9HgFziN5dTOG31znkVIzwxv+vw==
+ /@babel/plugin-transform-block-scoped-functions/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-XNW7jolYHW9CwORrZgA/97tL/k05qe/HL0z/qqJq1mdWhwwCM6D4BJBV7wAz9HgFziN5dTOG31znkVIzwxv+vw==
+ /@babel/plugin-transform-block-scoping/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-S/t1Xh4ehW7sGA7c1j/hiOBLnEYCp/c2sEG4ZkL8kI1xX9tW2pqJTCHKtdhe/jHKt8nG0pFCrDHUXd4DvjHS9w==
+ /@babel/plugin-transform-block-scoping/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-S/t1Xh4ehW7sGA7c1j/hiOBLnEYCp/c2sEG4ZkL8kI1xX9tW2pqJTCHKtdhe/jHKt8nG0pFCrDHUXd4DvjHS9w==
+ /@babel/plugin-transform-class-properties/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-create-class-features-plugin': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-j6dZ0Z2Z2slWLR3kt9aOmSIrBvnntWjMDN/TVcMPxhXMLmJVqX605CBRlcGI4b32GMbfifTEsdEjGjiE+j/c3A==
+ /@babel/plugin-transform-class-properties/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-j6dZ0Z2Z2slWLR3kt9aOmSIrBvnntWjMDN/TVcMPxhXMLmJVqX605CBRlcGI4b32GMbfifTEsdEjGjiE+j/c3A==
+ /@babel/plugin-transform-class-static-block/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-create-class-features-plugin': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.12.0
+ resolution:
+ integrity: sha512-1QSRfoPI9RoLRa8Mnakc6v3e0gJxiZQTYrMfLn+mD0sz5+ndSzwymp2hDcYJTyT0MOn0yuWzj8phlIvO72gTHA==
+ /@babel/plugin-transform-class-static-block/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.12.0
+ resolution:
+ integrity: sha512-1QSRfoPI9RoLRa8Mnakc6v3e0gJxiZQTYrMfLn+mD0sz5+ndSzwymp2hDcYJTyT0MOn0yuWzj8phlIvO72gTHA==
+ /@babel/plugin-transform-classes/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-replace-supers': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-split-export-declaration': 7.24.6
+ globals: 11.12.0
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-+fN+NO2gh8JtRmDSOB6gaCVo36ha8kfCW1nMq2Gc0DABln0VcHN4PrALDvF5/diLzIRKptC7z/d7Lp64zk92Fg==
+ /@babel/plugin-transform-classes/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-replace-supers': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-split-export-declaration': 7.24.6
+ globals: 11.12.0
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-+fN+NO2gh8JtRmDSOB6gaCVo36ha8kfCW1nMq2Gc0DABln0VcHN4PrALDvF5/diLzIRKptC7z/d7Lp64zk92Fg==
+ /@babel/plugin-transform-computed-properties/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/template': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-cRzPobcfRP0ZtuIEkA8QzghoUpSB3X3qSH5W2+FzG+VjWbJXExtx0nbRqwumdBN1x/ot2SlTNQLfBCnPdzp6kg==
+ /@babel/plugin-transform-computed-properties/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/template': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-cRzPobcfRP0ZtuIEkA8QzghoUpSB3X3qSH5W2+FzG+VjWbJXExtx0nbRqwumdBN1x/ot2SlTNQLfBCnPdzp6kg==
+ /@babel/plugin-transform-destructuring/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-YLW6AE5LQpk5npNXL7i/O+U9CE4XsBCuRPgyjl1EICZYKmcitV+ayuuUGMJm2lC1WWjXYszeTnIxF/dq/GhIZQ==
+ /@babel/plugin-transform-destructuring/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-YLW6AE5LQpk5npNXL7i/O+U9CE4XsBCuRPgyjl1EICZYKmcitV+ayuuUGMJm2lC1WWjXYszeTnIxF/dq/GhIZQ==
+ /@babel/plugin-transform-dotall-regex/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-create-regexp-features-plugin': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-rCXPnSEKvkm/EjzOtLoGvKseK+dS4kZwx1HexO3BtRtgL0fQ34awHn34aeSHuXtZY2F8a1X8xqBBPRtOxDVmcA==
+ /@babel/plugin-transform-dotall-regex/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-regexp-features-plugin': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-rCXPnSEKvkm/EjzOtLoGvKseK+dS4kZwx1HexO3BtRtgL0fQ34awHn34aeSHuXtZY2F8a1X8xqBBPRtOxDVmcA==
+ /@babel/plugin-transform-duplicate-keys/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-/8Odwp/aVkZwPFJMllSbawhDAO3UJi65foB00HYnK/uXvvCPm0TAXSByjz1mpRmp0q6oX2SIxpkUOpPFHk7FLA==
+ /@babel/plugin-transform-duplicate-keys/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-/8Odwp/aVkZwPFJMllSbawhDAO3UJi65foB00HYnK/uXvvCPm0TAXSByjz1mpRmp0q6oX2SIxpkUOpPFHk7FLA==
+ /@babel/plugin-transform-dynamic-import/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-vpq8SSLRTBLOHUZHSnBqVo0AKX3PBaoPs2vVzYVWslXDTDIpwAcCDtfhUcHSQQoYoUvcFPTdC8TZYXu9ZnLT/w==
+ /@babel/plugin-transform-dynamic-import/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-vpq8SSLRTBLOHUZHSnBqVo0AKX3PBaoPs2vVzYVWslXDTDIpwAcCDtfhUcHSQQoYoUvcFPTdC8TZYXu9ZnLT/w==
+ /@babel/plugin-transform-exponentiation-operator/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-EemYpHtmz0lHE7hxxxYEuTYOOBZ43WkDgZ4arQ4r+VX9QHuNZC+WH3wUWmRNvR8ECpTRne29aZV6XO22qpOtdA==
+ /@babel/plugin-transform-exponentiation-operator/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-EemYpHtmz0lHE7hxxxYEuTYOOBZ43WkDgZ4arQ4r+VX9QHuNZC+WH3wUWmRNvR8ECpTRne29aZV6XO22qpOtdA==
+ /@babel/plugin-transform-export-namespace-from/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-inXaTM1SVrIxCkIJ5gqWiozHfFMStuGbGJAxZFBoHcRRdDP0ySLb3jH6JOwmfiinPwyMZqMBX+7NBDCO4z0NSA==
+ /@babel/plugin-transform-export-namespace-from/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-inXaTM1SVrIxCkIJ5gqWiozHfFMStuGbGJAxZFBoHcRRdDP0ySLb3jH6JOwmfiinPwyMZqMBX+7NBDCO4z0NSA==
+ /@babel/plugin-transform-flow-strip-types/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-flow': 7.24.6_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-1l8b24NoCpaQ13Vi6FtLG1nv6kNoi8PWvQb1AYO7GHZDpFfBYc3lbXArx1lP2KRt8b4pej1eWc/zrRmsQTfOdQ==
+ /@babel/plugin-transform-for-of/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-n3Sf72TnqK4nw/jziSqEl1qaWPbCRw2CziHH+jdRYvw4J6yeCzsj4jdw8hIntOEeDGTmHVe2w4MVL44PN0GMzg==
+ /@babel/plugin-transform-for-of/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-n3Sf72TnqK4nw/jziSqEl1qaWPbCRw2CziHH+jdRYvw4J6yeCzsj4jdw8hIntOEeDGTmHVe2w4MVL44PN0GMzg==
+ /@babel/plugin-transform-function-name/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-sOajCu6V0P1KPljWHKiDq6ymgqB+vfo3isUS4McqW1DZtvSVU2v/wuMhmRmkg3sFoq6GMaUUf8W4WtoSLkOV/Q==
+ /@babel/plugin-transform-function-name/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-sOajCu6V0P1KPljWHKiDq6ymgqB+vfo3isUS4McqW1DZtvSVU2v/wuMhmRmkg3sFoq6GMaUUf8W4WtoSLkOV/Q==
+ /@babel/plugin-transform-json-strings/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-Uvgd9p2gUnzYJxVdBLcU0KurF8aVhkmVyMKW4MIY1/BByvs3EBpv45q01o7pRTVmTvtQq5zDlytP3dcUgm7v9w==
+ /@babel/plugin-transform-json-strings/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-Uvgd9p2gUnzYJxVdBLcU0KurF8aVhkmVyMKW4MIY1/BByvs3EBpv45q01o7pRTVmTvtQq5zDlytP3dcUgm7v9w==
+ /@babel/plugin-transform-literals/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-f2wHfR2HF6yMj+y+/y07+SLqnOSwRp8KYLpQKOzS58XLVlULhXbiYcygfXQxJlMbhII9+yXDwOUFLf60/TL5tw==
+ /@babel/plugin-transform-literals/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-f2wHfR2HF6yMj+y+/y07+SLqnOSwRp8KYLpQKOzS58XLVlULhXbiYcygfXQxJlMbhII9+yXDwOUFLf60/TL5tw==
+ /@babel/plugin-transform-logical-assignment-operators/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-EKaWvnezBCMkRIHxMJSIIylzhqK09YpiJtDbr2wsXTwnO0TxyjMUkaw4RlFIZMIS0iDj0KyIg7H7XCguHu/YDA==
+ /@babel/plugin-transform-logical-assignment-operators/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-EKaWvnezBCMkRIHxMJSIIylzhqK09YpiJtDbr2wsXTwnO0TxyjMUkaw4RlFIZMIS0iDj0KyIg7H7XCguHu/YDA==
+ /@babel/plugin-transform-member-expression-literals/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-9g8iV146szUo5GWgXpRbq/GALTnY+WnNuRTuRHWWFfWGbP9ukRL0aO/jpu9dmOPikclkxnNsjY8/gsWl6bmZJQ==
+ /@babel/plugin-transform-member-expression-literals/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-9g8iV146szUo5GWgXpRbq/GALTnY+WnNuRTuRHWWFfWGbP9ukRL0aO/jpu9dmOPikclkxnNsjY8/gsWl6bmZJQ==
+ /@babel/plugin-transform-modules-amd/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-module-transforms': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-eAGogjZgcwqAxhyFgqghvoHRr+EYRQPFjUXrTYKBRb5qPnAVxOOglaxc4/byHqjvq/bqO2F3/CGwTHsgKJYHhQ==
+ /@babel/plugin-transform-modules-amd/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-module-transforms': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-eAGogjZgcwqAxhyFgqghvoHRr+EYRQPFjUXrTYKBRb5qPnAVxOOglaxc4/byHqjvq/bqO2F3/CGwTHsgKJYHhQ==
+ /@babel/plugin-transform-modules-commonjs/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-module-transforms': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-simple-access': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-JEV8l3MHdmmdb7S7Cmx6rbNEjRCgTQMZxllveHO0mx6uiclB0NflCawlQQ6+o5ZrwjUBYPzHm2XoK4wqGVUFuw==
+ /@babel/plugin-transform-modules-commonjs/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-module-transforms': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-simple-access': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-JEV8l3MHdmmdb7S7Cmx6rbNEjRCgTQMZxllveHO0mx6uiclB0NflCawlQQ6+o5ZrwjUBYPzHm2XoK4wqGVUFuw==
+ /@babel/plugin-transform-modules-systemjs/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-hoist-variables': 7.24.6
+ '@babel/helper-module-transforms': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-validator-identifier': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-xg1Z0J5JVYxtpX954XqaaAT6NpAY6LtZXvYFCJmGFJWwtlz2EmJoR8LycFRGNE8dBKizGWkGQZGegtkV8y8s+w==
+ /@babel/plugin-transform-modules-systemjs/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-hoist-variables': 7.24.6
+ '@babel/helper-module-transforms': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-validator-identifier': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-xg1Z0J5JVYxtpX954XqaaAT6NpAY6LtZXvYFCJmGFJWwtlz2EmJoR8LycFRGNE8dBKizGWkGQZGegtkV8y8s+w==
+ /@babel/plugin-transform-modules-umd/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-module-transforms': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-esRCC/KsSEUvrSjv5rFYnjZI6qv4R1e/iHQrqwbZIoRJqk7xCvEUiN7L1XrmW5QSmQe3n1XD88wbgDTWLbVSyg==
+ /@babel/plugin-transform-modules-umd/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-module-transforms': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-esRCC/KsSEUvrSjv5rFYnjZI6qv4R1e/iHQrqwbZIoRJqk7xCvEUiN7L1XrmW5QSmQe3n1XD88wbgDTWLbVSyg==
+ /@babel/plugin-transform-named-capturing-groups-regex/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-create-regexp-features-plugin': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-6DneiCiu91wm3YiNIGDWZsl6GfTTbspuj/toTEqLh9d4cx50UIzSdg+T96p8DuT7aJOBRhFyaE9ZvTHkXrXr6Q==
+ /@babel/plugin-transform-named-capturing-groups-regex/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-regexp-features-plugin': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-6DneiCiu91wm3YiNIGDWZsl6GfTTbspuj/toTEqLh9d4cx50UIzSdg+T96p8DuT7aJOBRhFyaE9ZvTHkXrXr6Q==
+ /@babel/plugin-transform-new-target/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-f8liz9JG2Va8A4J5ZBuaSdwfPqN6axfWRK+y66fjKYbwf9VBLuq4WxtinhJhvp1w6lamKUwLG0slK2RxqFgvHA==
+ /@babel/plugin-transform-new-target/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-f8liz9JG2Va8A4J5ZBuaSdwfPqN6axfWRK+y66fjKYbwf9VBLuq4WxtinhJhvp1w6lamKUwLG0slK2RxqFgvHA==
+ /@babel/plugin-transform-nullish-coalescing-operator/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-+QlAiZBMsBK5NqrBWFXCYeXyiU1y7BQ/OYaiPAcQJMomn5Tyg+r5WuVtyEuvTbpV7L25ZSLfE+2E9ywj4FD48A==
+ /@babel/plugin-transform-nullish-coalescing-operator/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-+QlAiZBMsBK5NqrBWFXCYeXyiU1y7BQ/OYaiPAcQJMomn5Tyg+r5WuVtyEuvTbpV7L25ZSLfE+2E9ywj4FD48A==
+ /@babel/plugin-transform-numeric-separator/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-6voawq8T25Jvvnc4/rXcWZQKKxUNZcKMS8ZNrjxQqoRFernJJKjE3s18Qo6VFaatG5aiX5JV1oPD7DbJhn0a4Q==
+ /@babel/plugin-transform-numeric-separator/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-6voawq8T25Jvvnc4/rXcWZQKKxUNZcKMS8ZNrjxQqoRFernJJKjE3s18Qo6VFaatG5aiX5JV1oPD7DbJhn0a4Q==
+ /@babel/plugin-transform-object-rest-spread/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-transform-parameters': 7.24.6_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-OKmi5wiMoRW5Smttne7BwHM8s/fb5JFs+bVGNSeHWzwZkWXWValR1M30jyXo1s/RaqgwwhEC62u4rFH/FBcBPg==
+ /@babel/plugin-transform-object-rest-spread/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.24.6
+ '@babel/plugin-transform-parameters': 7.24.6_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-OKmi5wiMoRW5Smttne7BwHM8s/fb5JFs+bVGNSeHWzwZkWXWValR1M30jyXo1s/RaqgwwhEC62u4rFH/FBcBPg==
+ /@babel/plugin-transform-object-super/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-replace-supers': 7.24.6_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-N/C76ihFKlZgKfdkEYKtaRUtXZAgK7sOY4h2qrbVbVTXPrKGIi8aww5WGe/+Wmg8onn8sr2ut6FXlsbu/j6JHg==
+ /@babel/plugin-transform-object-super/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-replace-supers': 7.24.6_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-N/C76ihFKlZgKfdkEYKtaRUtXZAgK7sOY4h2qrbVbVTXPrKGIi8aww5WGe/+Wmg8onn8sr2ut6FXlsbu/j6JHg==
+ /@babel/plugin-transform-optional-catch-binding/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-L5pZ+b3O1mSzJ71HmxSCmTVd03VOT2GXOigug6vDYJzE5awLI7P1g0wFcdmGuwSDSrQ0L2rDOe/hHws8J1rv3w==
+ /@babel/plugin-transform-optional-catch-binding/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-L5pZ+b3O1mSzJ71HmxSCmTVd03VOT2GXOigug6vDYJzE5awLI7P1g0wFcdmGuwSDSrQ0L2rDOe/hHws8J1rv3w==
+ /@babel/plugin-transform-optional-chaining/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-cHbqF6l1QP11OkYTYQ+hhVx1E017O5ZcSPXk9oODpqhcAD1htsWG2NpHrrhthEO2qZomLK0FXS+u7NfrkF5aOQ==
+ /@babel/plugin-transform-optional-chaining/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-cHbqF6l1QP11OkYTYQ+hhVx1E017O5ZcSPXk9oODpqhcAD1htsWG2NpHrrhthEO2qZomLK0FXS+u7NfrkF5aOQ==
+ /@babel/plugin-transform-parameters/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-ST7guE8vLV+vI70wmAxuZpIKzVjvFX9Qs8bl5w6tN/6gOypPWUmMQL2p7LJz5E63vEGrDhAiYetniJFyBH1RkA==
+ /@babel/plugin-transform-parameters/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-ST7guE8vLV+vI70wmAxuZpIKzVjvFX9Qs8bl5w6tN/6gOypPWUmMQL2p7LJz5E63vEGrDhAiYetniJFyBH1RkA==
+ /@babel/plugin-transform-private-methods/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-create-class-features-plugin': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-T9LtDI0BgwXOzyXrvgLTT8DFjCC/XgWLjflczTLXyvxbnSR/gpv0hbmzlHE/kmh9nOvlygbamLKRo6Op4yB6aw==
+ /@babel/plugin-transform-private-methods/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-T9LtDI0BgwXOzyXrvgLTT8DFjCC/XgWLjflczTLXyvxbnSR/gpv0hbmzlHE/kmh9nOvlygbamLKRo6Op4yB6aw==
+ /@babel/plugin-transform-private-property-in-object/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-Qu/ypFxCY5NkAnEhCF86Mvg3NSabKsh/TPpBVswEdkGl7+FbsYHy1ziRqJpwGH4thBdQHh8zx+z7vMYmcJ7iaQ==
+ /@babel/plugin-transform-private-property-in-object/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-Qu/ypFxCY5NkAnEhCF86Mvg3NSabKsh/TPpBVswEdkGl7+FbsYHy1ziRqJpwGH4thBdQHh8zx+z7vMYmcJ7iaQ==
+ /@babel/plugin-transform-property-literals/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-oARaglxhRsN18OYsnPTpb8TcKQWDYNsPNmTnx5++WOAsUJ0cSC/FZVlIJCKvPbU4yn/UXsS0551CFKJhN0CaMw==
+ /@babel/plugin-transform-property-literals/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-oARaglxhRsN18OYsnPTpb8TcKQWDYNsPNmTnx5++WOAsUJ0cSC/FZVlIJCKvPbU4yn/UXsS0551CFKJhN0CaMw==
+ /@babel/plugin-transform-react-constant-elements/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-vQfyXRtG/kNIcTYRd/49uJnwvMig9X3R4XsTVXRml2RFupZFY+2RDuK+/ymb+MfX2WuIHAgUZc2xEvQrnI7QCg==
+ /@babel/plugin-transform-react-display-name/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-/3iiEEHDsJuj9QU09gbyWGSUxDboFcD7Nj6dnHIlboWSodxXAoaY/zlNMHeYAC0WsERMqgO9a7UaM77CsYgWcg==
+ /@babel/plugin-transform-react-display-name/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-/3iiEEHDsJuj9QU09gbyWGSUxDboFcD7Nj6dnHIlboWSodxXAoaY/zlNMHeYAC0WsERMqgO9a7UaM77CsYgWcg==
+ /@babel/plugin-transform-react-jsx-development/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/plugin-transform-react-jsx': 7.24.6_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-F7EsNp5StNDouSSdYyDSxh4J+xvj/JqG+Cb6s2fA+jCyHOzigG5vTwgH8tU2U8Voyiu5zCG9bAK49wTr/wPH0w==
+ /@babel/plugin-transform-react-jsx-development/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/plugin-transform-react-jsx': 7.24.6_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-F7EsNp5StNDouSSdYyDSxh4J+xvj/JqG+Cb6s2fA+jCyHOzigG5vTwgH8tU2U8Voyiu5zCG9bAK49wTr/wPH0w==
+ /@babel/plugin-transform-react-jsx/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-module-imports': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-jsx': 7.24.6_@babel+core@7.12.3
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-pCtPHhpRZHfwdA5G1Gpk5mIzMA99hv0R8S/Ket50Rw+S+8hkt3wBWqdqHaPw0CuUYxdshUgsPiLQ5fAs4ASMhw==
+ /@babel/plugin-transform-react-jsx/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-module-imports': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-jsx': 7.24.6_@babel+core@7.24.6
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-pCtPHhpRZHfwdA5G1Gpk5mIzMA99hv0R8S/Ket50Rw+S+8hkt3wBWqdqHaPw0CuUYxdshUgsPiLQ5fAs4ASMhw==
+ /@babel/plugin-transform-react-pure-annotations/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-0HoDQlFJJkXRyV2N+xOpUETbKHcouSwijRQbKWVtxsPoq5bbB30qZag9/pSc5xcWVYjTHlLsBsY+hZDnzQTPNw==
+ /@babel/plugin-transform-react-pure-annotations/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-0HoDQlFJJkXRyV2N+xOpUETbKHcouSwijRQbKWVtxsPoq5bbB30qZag9/pSc5xcWVYjTHlLsBsY+hZDnzQTPNw==
+ /@babel/plugin-transform-regenerator/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ regenerator-transform: 0.15.2
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-SMDxO95I8WXRtXhTAc8t/NFQUT7VYbIWwJCJgEli9ml4MhqUMh4S6hxgH6SmAC3eAQNWCDJFxcFeEt9w2sDdXg==
+ /@babel/plugin-transform-regenerator/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ regenerator-transform: 0.15.2
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-SMDxO95I8WXRtXhTAc8t/NFQUT7VYbIWwJCJgEli9ml4MhqUMh4S6hxgH6SmAC3eAQNWCDJFxcFeEt9w2sDdXg==
+ /@babel/plugin-transform-reserved-words/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-DcrgFXRRlK64dGE0ZFBPD5egM2uM8mgfrvTMOSB2yKzOtjpGegVYkzh3s1zZg1bBck3nkXiaOamJUqK3Syk+4A==
+ /@babel/plugin-transform-reserved-words/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-DcrgFXRRlK64dGE0ZFBPD5egM2uM8mgfrvTMOSB2yKzOtjpGegVYkzh3s1zZg1bBck3nkXiaOamJUqK3Syk+4A==
+ /@babel/plugin-transform-runtime/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-module-imports': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ babel-plugin-polyfill-corejs2: 0.4.11_@babel+core@7.24.6
+ babel-plugin-polyfill-corejs3: 0.10.4_@babel+core@7.24.6
+ babel-plugin-polyfill-regenerator: 0.6.2_@babel+core@7.24.6
+ semver: 6.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-W3gQydMb0SY99y/2lV0Okx2xg/8KzmZLQsLaiCmwNRl1kKomz14VurEm+2TossUb+sRvBCnGe+wx8KtIgDtBbQ==
+ /@babel/plugin-transform-shorthand-properties/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-xnEUvHSMr9eOWS5Al2YPfc32ten7CXdH7Zwyyk7IqITg4nX61oHj+GxpNvl+y5JHjfN3KXE2IV55wAWowBYMVw==
+ /@babel/plugin-transform-shorthand-properties/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-xnEUvHSMr9eOWS5Al2YPfc32ten7CXdH7Zwyyk7IqITg4nX61oHj+GxpNvl+y5JHjfN3KXE2IV55wAWowBYMVw==
+ /@babel/plugin-transform-spread/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-h/2j7oIUDjS+ULsIrNZ6/TKG97FgmEk1PXryk/HQq6op4XUUUwif2f69fJrzK0wza2zjCS1xhXmouACaWV5uPA==
+ /@babel/plugin-transform-spread/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-h/2j7oIUDjS+ULsIrNZ6/TKG97FgmEk1PXryk/HQq6op4XUUUwif2f69fJrzK0wza2zjCS1xhXmouACaWV5uPA==
+ /@babel/plugin-transform-sticky-regex/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-fN8OcTLfGmYv7FnDrsjodYBo1DhPL3Pze/9mIIE2MGCT1KgADYIOD7rEglpLHZj8PZlC/JFX5WcD+85FLAQusw==
+ /@babel/plugin-transform-sticky-regex/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-fN8OcTLfGmYv7FnDrsjodYBo1DhPL3Pze/9mIIE2MGCT1KgADYIOD7rEglpLHZj8PZlC/JFX5WcD+85FLAQusw==
+ /@babel/plugin-transform-template-literals/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-BJbEqJIcKwrqUP+KfUIkxz3q8VzXe2R8Wv8TaNgO1cx+nNavxn/2+H8kp9tgFSOL6wYPPEgFvU6IKS4qoGqhmg==
+ /@babel/plugin-transform-template-literals/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-BJbEqJIcKwrqUP+KfUIkxz3q8VzXe2R8Wv8TaNgO1cx+nNavxn/2+H8kp9tgFSOL6wYPPEgFvU6IKS4qoGqhmg==
+ /@babel/plugin-transform-typeof-symbol/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-IshCXQ+G9JIFJI7bUpxTE/oA2lgVLAIK8q1KdJNoPXOpvRaNjMySGuvLfBw/Xi2/1lLo953uE8hyYSDW3TSYig==
+ /@babel/plugin-transform-typeof-symbol/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-IshCXQ+G9JIFJI7bUpxTE/oA2lgVLAIK8q1KdJNoPXOpvRaNjMySGuvLfBw/Xi2/1lLo953uE8hyYSDW3TSYig==
+ /@babel/plugin-transform-typescript/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-typescript': 7.24.6_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-H0i+hDLmaYYSt6KU9cZE0gb3Cbssa/oxWis7PX4ofQzbvsfix9Lbh8SRk7LCPDlLWJHUiFeHU0qRRpF/4Zv7mQ==
+ /@babel/plugin-transform-unicode-escapes/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-bKl3xxcPbkQQo5eX9LjjDpU2xYHeEeNQbOhj0iPvetSzA+Tu9q/o5lujF4Sek60CM6MgYvOS/DJuwGbiEYAnLw==
+ /@babel/plugin-transform-unicode-escapes/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-bKl3xxcPbkQQo5eX9LjjDpU2xYHeEeNQbOhj0iPvetSzA+Tu9q/o5lujF4Sek60CM6MgYvOS/DJuwGbiEYAnLw==
+ /@babel/plugin-transform-unicode-property-regex/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-create-regexp-features-plugin': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-8EIgImzVUxy15cZiPii9GvLZwsy7Vxc+8meSlR3cXFmBIl5W5Tn9LGBf7CDKkHj4uVfNXCJB8RsVfnmY61iedA==
+ /@babel/plugin-transform-unicode-property-regex/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-regexp-features-plugin': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-8EIgImzVUxy15cZiPii9GvLZwsy7Vxc+8meSlR3cXFmBIl5W5Tn9LGBf7CDKkHj4uVfNXCJB8RsVfnmY61iedA==
+ /@babel/plugin-transform-unicode-regex/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-create-regexp-features-plugin': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-pssN6ExsvxaKU638qcWb81RrvvgZom3jDgU/r5xFZ7TONkZGFf4MhI2ltMb8OcQWhHyxgIavEU+hgqtbKOmsPA==
+ /@babel/plugin-transform-unicode-regex/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-regexp-features-plugin': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-pssN6ExsvxaKU638qcWb81RrvvgZom3jDgU/r5xFZ7TONkZGFf4MhI2ltMb8OcQWhHyxgIavEU+hgqtbKOmsPA==
+ /@babel/plugin-transform-unicode-sets-regex/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-create-regexp-features-plugin': 7.24.6_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-quiMsb28oXWIDK0gXLALOJRXLgICLiulqdZGOaPPd0vRT7fQp74NtdADAVu+D8s00C+0Xs0MxVP0VKF/sZEUgw==
+ /@babel/plugin-transform-unicode-sets-regex/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-regexp-features-plugin': 7.24.6_@babel+core@7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-quiMsb28oXWIDK0gXLALOJRXLgICLiulqdZGOaPPd0vRT7fQp74NtdADAVu+D8s00C+0Xs0MxVP0VKF/sZEUgw==
+ /@babel/preset-env/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/compat-data': 7.24.6
+ '@babel/core': 7.12.3
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-validator-option': 7.24.6
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2_@babel+core@7.12.3
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.12.3
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.12.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-import-assertions': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-syntax-import-attributes': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.12.3
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.12.3
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.12.3
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6_@babel+core@7.12.3
+ '@babel/plugin-transform-arrow-functions': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-async-generator-functions': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-async-to-generator': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-block-scoped-functions': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-block-scoping': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-class-properties': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-class-static-block': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-classes': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-computed-properties': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-destructuring': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-dotall-regex': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-duplicate-keys': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-dynamic-import': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-exponentiation-operator': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-export-namespace-from': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-for-of': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-function-name': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-json-strings': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-literals': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-member-expression-literals': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-modules-amd': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-modules-commonjs': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-modules-systemjs': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-modules-umd': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-new-target': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-numeric-separator': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-object-rest-spread': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-object-super': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-optional-catch-binding': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-optional-chaining': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-parameters': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-private-methods': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-private-property-in-object': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-property-literals': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-regenerator': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-reserved-words': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-shorthand-properties': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-spread': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-sticky-regex': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-template-literals': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-typeof-symbol': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-unicode-escapes': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-unicode-property-regex': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-unicode-regex': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.6_@babel+core@7.12.3
+ '@babel/preset-modules': 0.1.6-no-external-plugins_@babel+core@7.12.3
+ babel-plugin-polyfill-corejs2: 0.4.11_@babel+core@7.12.3
+ babel-plugin-polyfill-corejs3: 0.10.4_@babel+core@7.12.3
+ babel-plugin-polyfill-regenerator: 0.6.2_@babel+core@7.12.3
+ core-js-compat: 3.37.1
+ semver: 6.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-CrxEAvN7VxfjOG8JNF2Y/eMqMJbZPZ185amwGUBp8D9USK90xQmv7dLdFSa+VbD7fdIqcy/Mfv7WtzG8+/qxKg==
+ /@babel/preset-env/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/compat-data': 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-validator-option': 7.24.6
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2_@babel+core@7.24.6
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.24.6
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.24.6
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.24.6
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.24.6
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.24.6
+ '@babel/plugin-syntax-import-assertions': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-syntax-import-attributes': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.24.6
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.24.6
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.24.6
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.24.6
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.24.6
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.24.6
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.24.6
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.24.6
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.24.6
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.24.6
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6_@babel+core@7.24.6
+ '@babel/plugin-transform-arrow-functions': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-async-generator-functions': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-async-to-generator': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-block-scoped-functions': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-block-scoping': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-class-properties': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-class-static-block': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-classes': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-computed-properties': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-destructuring': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-dotall-regex': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-duplicate-keys': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-dynamic-import': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-exponentiation-operator': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-export-namespace-from': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-for-of': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-function-name': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-json-strings': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-literals': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-member-expression-literals': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-modules-amd': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-modules-commonjs': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-modules-systemjs': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-modules-umd': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-new-target': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-numeric-separator': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-object-rest-spread': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-object-super': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-optional-catch-binding': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-optional-chaining': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-parameters': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-private-methods': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-private-property-in-object': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-property-literals': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-regenerator': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-reserved-words': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-shorthand-properties': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-spread': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-sticky-regex': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-template-literals': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-typeof-symbol': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-unicode-escapes': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-unicode-property-regex': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-unicode-regex': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.6_@babel+core@7.24.6
+ '@babel/preset-modules': 0.1.6-no-external-plugins_@babel+core@7.24.6
+ babel-plugin-polyfill-corejs2: 0.4.11_@babel+core@7.24.6
+ babel-plugin-polyfill-corejs3: 0.10.4_@babel+core@7.24.6
+ babel-plugin-polyfill-regenerator: 0.6.2_@babel+core@7.24.6
+ core-js-compat: 3.37.1
+ semver: 6.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-CrxEAvN7VxfjOG8JNF2Y/eMqMJbZPZ185amwGUBp8D9USK90xQmv7dLdFSa+VbD7fdIqcy/Mfv7WtzG8+/qxKg==
+ /@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/types': 7.24.6
+ esutils: 2.0.3
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
+ resolution:
+ integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==
+ /@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/types': 7.24.6
+ esutils: 2.0.3
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
+ resolution:
+ integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==
+ /@babel/preset-react/7.24.6_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-validator-option': 7.24.6
+ '@babel/plugin-transform-react-display-name': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-react-jsx': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-react-jsx-development': 7.24.6_@babel+core@7.12.3
+ '@babel/plugin-transform-react-pure-annotations': 7.24.6_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-8mpzh1bWvmINmwM3xpz6ahu57mNaWavMm+wBNjQ4AFu1nghKBiIRET7l/Wmj4drXany/BBGjJZngICcD98F1iw==
+ /@babel/preset-react/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-validator-option': 7.24.6
+ '@babel/plugin-transform-react-display-name': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-react-jsx': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-react-jsx-development': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-react-pure-annotations': 7.24.6_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-8mpzh1bWvmINmwM3xpz6ahu57mNaWavMm+wBNjQ4AFu1nghKBiIRET7l/Wmj4drXany/BBGjJZngICcD98F1iw==
+ /@babel/preset-typescript/7.24.6_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-validator-option': 7.24.6
+ '@babel/plugin-syntax-jsx': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-modules-commonjs': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-typescript': 7.24.6_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-U10aHPDnokCFRXgyT/MaIRTivUu2K/mu0vJlwRS9LxJmJet+PFQNKpggPyFCUtC6zWSBPjvxjnpNkAn3Uw2m5w==
+ /@babel/regjsgen/0.8.0:
+ dev: true
+ resolution:
+ integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
+ /@babel/runtime-corejs3/7.24.6:
+ dependencies:
+ core-js-pure: 3.37.1
+ regenerator-runtime: 0.14.1
+ dev: false
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-tbC3o8uHK9xMgMsvUm9qGqxVpbv6yborMBLbDteHIc7JDNHsTV0vDMQ5j1O1NXvO+BDELtL9KgoWYaUVIVGt8w==
+ /@babel/runtime/7.24.6:
+ dependencies:
+ regenerator-runtime: 0.14.1
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-Ja18XcETdEl5mzzACGd+DKgaGJzPTCow7EglgwTmHdwokzDFYh/MHua6lU6DV/hjF2IaOJ4oX2nqnjG7RElKOw==
+ /@babel/template/7.24.6:
+ dependencies:
+ '@babel/code-frame': 7.24.6
+ '@babel/parser': 7.24.6
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==
+ /@babel/traverse/7.24.6:
+ dependencies:
+ '@babel/code-frame': 7.24.6
+ '@babel/generator': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-hoist-variables': 7.24.6
+ '@babel/helper-split-export-declaration': 7.24.6
+ '@babel/parser': 7.24.6
+ '@babel/types': 7.24.6
+ debug: 4.3.4
+ globals: 11.12.0
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw==
+ /@babel/types/7.24.6:
+ dependencies:
+ '@babel/helper-string-parser': 7.24.6
+ '@babel/helper-validator-identifier': 7.24.6
+ to-fast-properties: 2.0.0
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==
+ /@bcoe/v8-coverage/0.2.3:
+ dev: true
+ resolution:
+ integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
+ /@cnakazawa/watch/1.0.4:
+ dependencies:
+ exec-sh: 0.3.6
+ minimist: 1.2.8
+ dev: true
+ engines:
+ node: '>=0.1.95'
+ hasBin: true
+ resolution:
+ integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==
+ /@csstools/convert-colors/1.4.0:
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==
+ /@csstools/normalize.css/10.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==
+ /@eslint/eslintrc/0.4.3:
+ dependencies:
+ ajv: 6.12.6
+ debug: 4.3.4
+ espree: 7.3.1
+ globals: 13.24.0
+ ignore: 4.0.6
+ import-fresh: 3.3.0
+ js-yaml: 3.14.1
+ minimatch: 3.1.2
+ strip-json-comments: 3.1.1
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ resolution:
+ integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==
+ /@gar/promisify/1.1.3:
+ dev: true
+ resolution:
+ integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==
+ /@hapi/address/2.1.4:
+ deprecated: Moved to 'npm install @sideway/address'
+ dev: true
+ resolution:
+ integrity: sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==
+ /@hapi/bourne/1.3.2:
+ deprecated: This version has been deprecated and is no longer supported or maintained
+ dev: true
+ resolution:
+ integrity: sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==
+ /@hapi/hoek/8.5.1:
+ deprecated: This version has been deprecated and is no longer supported or maintained
+ dev: true
+ resolution:
+ integrity: sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==
+ /@hapi/joi/15.1.1:
+ dependencies:
+ '@hapi/address': 2.1.4
+ '@hapi/bourne': 1.3.2
+ '@hapi/hoek': 8.5.1
+ '@hapi/topo': 3.1.6
+ deprecated: Switch to 'npm install joi'
+ dev: true
+ resolution:
+ integrity: sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==
+ /@hapi/topo/3.1.6:
+ dependencies:
+ '@hapi/hoek': 8.5.1
+ deprecated: This version has been deprecated and is no longer supported or maintained
+ dev: true
+ resolution:
+ integrity: sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==
+ /@humanwhocodes/config-array/0.5.0:
+ dependencies:
+ '@humanwhocodes/object-schema': 1.2.1
+ debug: 4.3.4
+ minimatch: 3.1.2
+ dev: true
+ engines:
+ node: '>=10.10.0'
+ resolution:
+ integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==
+ /@humanwhocodes/object-schema/1.2.1:
+ dev: true
+ resolution:
+ integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
+ /@istanbuljs/load-nyc-config/1.1.0:
+ dependencies:
+ camelcase: 5.3.1
+ find-up: 4.1.0
+ get-package-type: 0.1.0
+ js-yaml: 3.14.1
+ resolve-from: 5.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==
+ /@istanbuljs/schema/0.1.3:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
+ /@jest/console/26.6.2:
+ dependencies:
+ '@jest/types': 26.6.2
+ '@types/node': 20.12.12
+ chalk: 4.1.0
+ jest-message-util: 26.6.2
+ jest-util: 26.6.2
+ slash: 3.0.0
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==
+ /@jest/core/26.6.3:
+ dependencies:
+ '@jest/console': 26.6.2
+ '@jest/reporters': 26.6.2
+ '@jest/test-result': 26.6.2
+ '@jest/transform': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/node': 20.12.12
+ ansi-escapes: 4.3.2
+ chalk: 4.1.0
+ exit: 0.1.2
+ graceful-fs: 4.2.11
+ jest-changed-files: 26.6.2
+ jest-config: 26.6.3
+ jest-haste-map: 26.6.2
+ jest-message-util: 26.6.2
+ jest-regex-util: 26.0.0
+ jest-resolve: 26.6.2
+ jest-resolve-dependencies: 26.6.3
+ jest-runner: 26.6.3
+ jest-runtime: 26.6.3
+ jest-snapshot: 26.6.2
+ jest-util: 26.6.2
+ jest-validate: 26.6.2
+ jest-watcher: 26.6.2
+ micromatch: 4.0.7
+ p-each-series: 2.2.0
+ rimraf: 3.0.2
+ slash: 3.0.0
+ strip-ansi: 6.0.1
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==
+ /@jest/environment/26.6.2:
+ dependencies:
+ '@jest/fake-timers': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/node': 20.12.12
+ jest-mock: 26.6.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==
+ /@jest/expect-utils/29.7.0:
+ dependencies:
+ jest-get-type: 29.6.3
+ dev: false
+ engines:
+ node: ^14.15.0 || ^16.10.0 || >=18.0.0
+ resolution:
+ integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==
+ /@jest/fake-timers/26.6.2:
+ dependencies:
+ '@jest/types': 26.6.2
+ '@sinonjs/fake-timers': 6.0.1
+ '@types/node': 20.12.12
+ jest-message-util: 26.6.2
+ jest-mock: 26.6.2
+ jest-util: 26.6.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==
+ /@jest/globals/26.6.2:
+ dependencies:
+ '@jest/environment': 26.6.2
+ '@jest/types': 26.6.2
+ expect: 26.6.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==
+ /@jest/reporters/26.6.2:
+ dependencies:
+ '@bcoe/v8-coverage': 0.2.3
+ '@jest/console': 26.6.2
+ '@jest/test-result': 26.6.2
+ '@jest/transform': 26.6.2
+ '@jest/types': 26.6.2
+ chalk: 4.1.0
+ collect-v8-coverage: 1.0.2
+ exit: 0.1.2
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-instrument: 4.0.3
+ istanbul-lib-report: 3.0.1
+ istanbul-lib-source-maps: 4.0.1
+ istanbul-reports: 3.1.7
+ jest-haste-map: 26.6.2
+ jest-resolve: 26.6.2
+ jest-util: 26.6.2
+ jest-worker: 26.6.2
+ slash: 3.0.0
+ source-map: 0.6.1
+ string-length: 4.0.2
+ terminal-link: 2.1.1
+ v8-to-istanbul: 7.1.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ optionalDependencies:
+ node-notifier: 8.0.2
+ resolution:
+ integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==
+ /@jest/schemas/29.6.3:
+ dependencies:
+ '@sinclair/typebox': 0.27.8
+ dev: false
+ engines:
+ node: ^14.15.0 || ^16.10.0 || >=18.0.0
+ resolution:
+ integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==
+ /@jest/source-map/26.6.2:
+ dependencies:
+ callsites: 3.1.0
+ graceful-fs: 4.2.11
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==
+ /@jest/test-result/26.6.2:
+ dependencies:
+ '@jest/console': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/istanbul-lib-coverage': 2.0.6
+ collect-v8-coverage: 1.0.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==
+ /@jest/test-sequencer/26.6.3:
+ dependencies:
+ '@jest/test-result': 26.6.2
+ graceful-fs: 4.2.11
+ jest-haste-map: 26.6.2
+ jest-runner: 26.6.3
+ jest-runtime: 26.6.3
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==
+ /@jest/transform/26.6.2:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@jest/types': 26.6.2
+ babel-plugin-istanbul: 6.1.1
+ chalk: 4.1.0
+ convert-source-map: 1.9.0
+ fast-json-stable-stringify: 2.1.0
+ graceful-fs: 4.2.11
+ jest-haste-map: 26.6.2
+ jest-regex-util: 26.0.0
+ jest-util: 26.6.2
+ micromatch: 4.0.7
+ pirates: 4.0.6
+ slash: 3.0.0
+ source-map: 0.6.1
+ write-file-atomic: 3.0.3
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==
+ /@jest/types/26.6.2:
+ dependencies:
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 20.12.12
+ '@types/yargs': 15.0.19
+ chalk: 4.1.0
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==
+ /@jest/types/29.6.3:
+ dependencies:
+ '@jest/schemas': 29.6.3
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 20.12.12
+ '@types/yargs': 17.0.32
+ chalk: 4.1.0
+ dev: false
+ engines:
+ node: ^14.15.0 || ^16.10.0 || >=18.0.0
+ resolution:
+ integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==
+ /@jridgewell/gen-mapping/0.3.5:
+ dependencies:
+ '@jridgewell/set-array': 1.2.1
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/trace-mapping': 0.3.25
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==
+ /@jridgewell/resolve-uri/3.1.2:
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==
+ /@jridgewell/set-array/1.2.1:
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==
+ /@jridgewell/source-map/0.3.6:
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ dev: true
+ resolution:
+ integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==
+ /@jridgewell/sourcemap-codec/1.4.15:
+ dev: true
+ resolution:
+ integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
+ /@jridgewell/trace-mapping/0.3.25:
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.4.15
+ dev: true
+ resolution:
+ integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==
+ /@nodelib/fs.scandir/2.1.5:
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ run-parallel: 1.2.0
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
+ /@nodelib/fs.stat/2.0.5:
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
+ /@nodelib/fs.walk/1.2.8:
+ dependencies:
+ '@nodelib/fs.scandir': 2.1.5
+ fastq: 1.17.1
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
+ /@npmcli/fs/1.1.1:
+ dependencies:
+ '@gar/promisify': 1.1.3
+ semver: 7.6.2
+ dev: true
+ resolution:
+ integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==
+ /@npmcli/move-file/1.1.2:
+ dependencies:
+ mkdirp: 1.0.4
+ rimraf: 3.0.2
+ deprecated: This functionality has been moved to @npmcli/fs
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==
+ /@pmmmwh/react-refresh-webpack-plugin/0.4.3_9f0995138d24e525eb86c097d82409c0:
+ dependencies:
+ ansi-html: 0.0.7
+ error-stack-parser: 2.1.4
+ html-entities: 1.4.0
+ native-url: 0.2.6
+ react-refresh: 0.8.3
+ schema-utils: 2.7.1
+ source-map: 0.7.4
+ webpack: 4.44.2
+ webpack-dev-server: 3.11.1_webpack@4.44.2
+ dev: true
+ engines:
+ node: '>= 10.x'
+ peerDependencies:
+ '@types/webpack': 4.x
+ react-refresh: '>=0.8.3 <0.10.0'
+ sockjs-client: ^1.4.0
+ type-fest: ^0.13.1
+ webpack: '>=4.43.0 <6.0.0'
+ webpack-dev-server: 3.x
+ webpack-hot-middleware: 2.x
+ webpack-plugin-serve: 0.x || 1.x
+ peerDependenciesMeta:
+ '@types/webpack':
+ optional: true
+ sockjs-client:
+ optional: true
+ type-fest:
+ optional: true
+ webpack-dev-server:
+ optional: true
+ webpack-hot-middleware:
+ optional: true
+ webpack-plugin-serve:
+ optional: true
+ resolution:
+ integrity: sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==
+ /@rollup/plugin-node-resolve/7.1.3_rollup@1.32.1:
+ dependencies:
+ '@rollup/pluginutils': 3.1.0_rollup@1.32.1
+ '@types/resolve': 0.0.8
+ builtin-modules: 3.3.0
+ is-module: 1.0.0
+ resolve: 1.22.8
+ rollup: 1.32.1
+ dev: true
+ engines:
+ node: '>= 8.0.0'
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0
+ resolution:
+ integrity: sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==
+ /@rollup/plugin-replace/2.4.2_rollup@1.32.1:
+ dependencies:
+ '@rollup/pluginutils': 3.1.0_rollup@1.32.1
+ magic-string: 0.25.9
+ rollup: 1.32.1
+ dev: true
+ peerDependencies:
+ rollup: ^1.20.0 || ^2.0.0
+ resolution:
+ integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==
+ /@rollup/pluginutils/3.1.0_rollup@1.32.1:
+ dependencies:
+ '@types/estree': 0.0.39
+ estree-walker: 1.0.1
+ picomatch: 2.3.1
+ rollup: 1.32.1
+ dev: true
+ engines:
+ node: '>= 8.0.0'
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0
+ resolution:
+ integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==
+ /@sinclair/typebox/0.27.8:
+ dev: false
+ resolution:
+ integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==
+ /@sinonjs/commons/1.8.6:
+ dependencies:
+ type-detect: 4.0.8
+ dev: true
+ resolution:
+ integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==
+ /@sinonjs/fake-timers/6.0.1:
+ dependencies:
+ '@sinonjs/commons': 1.8.6
+ dev: true
+ resolution:
+ integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==
+ /@surma/rollup-plugin-off-main-thread/1.4.2:
+ dependencies:
+ ejs: 2.7.4
+ magic-string: 0.25.9
+ dev: true
+ resolution:
+ integrity: sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==
+ /@svgr/babel-plugin-add-jsx-attribute/5.4.0:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==
+ /@svgr/babel-plugin-remove-jsx-attribute/5.4.0:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==
+ /@svgr/babel-plugin-remove-jsx-empty-expression/5.0.1:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==
+ /@svgr/babel-plugin-replace-jsx-attribute-value/5.0.1:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==
+ /@svgr/babel-plugin-svg-dynamic-title/5.4.0:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==
+ /@svgr/babel-plugin-svg-em-dimensions/5.4.0:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==
+ /@svgr/babel-plugin-transform-react-native-svg/5.4.0:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==
+ /@svgr/babel-plugin-transform-svg-component/5.5.0:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==
+ /@svgr/babel-preset/5.5.0:
+ dependencies:
+ '@svgr/babel-plugin-add-jsx-attribute': 5.4.0
+ '@svgr/babel-plugin-remove-jsx-attribute': 5.4.0
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 5.0.1
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 5.0.1
+ '@svgr/babel-plugin-svg-dynamic-title': 5.4.0
+ '@svgr/babel-plugin-svg-em-dimensions': 5.4.0
+ '@svgr/babel-plugin-transform-react-native-svg': 5.4.0
+ '@svgr/babel-plugin-transform-svg-component': 5.5.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==
+ /@svgr/core/5.5.0:
+ dependencies:
+ '@svgr/plugin-jsx': 5.5.0
+ camelcase: 6.3.0
+ cosmiconfig: 7.1.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==
+ /@svgr/hast-util-to-babel-ast/5.5.0:
+ dependencies:
+ '@babel/types': 7.24.6
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==
+ /@svgr/plugin-jsx/5.5.0:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@svgr/babel-preset': 5.5.0
+ '@svgr/hast-util-to-babel-ast': 5.5.0
+ svg-parser: 2.0.4
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==
+ /@svgr/plugin-svgo/5.5.0:
+ dependencies:
+ cosmiconfig: 7.1.0
+ deepmerge: 4.3.1
+ svgo: 1.3.2
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==
+ /@svgr/webpack/5.5.0:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/plugin-transform-react-constant-elements': 7.24.6_@babel+core@7.12.3
+ '@babel/preset-env': 7.24.6_@babel+core@7.12.3
+ '@babel/preset-react': 7.24.6_@babel+core@7.12.3
+ '@svgr/core': 5.5.0
+ '@svgr/plugin-jsx': 5.5.0
+ '@svgr/plugin-svgo': 5.5.0
+ loader-utils: 2.0.4
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==
+ /@testing-library/dom/7.31.2:
+ dependencies:
+ '@babel/code-frame': 7.24.6
+ '@babel/runtime': 7.24.6
+ '@types/aria-query': 4.2.2
+ aria-query: 4.2.2
+ chalk: 4.1.0
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
+ pretty-format: 26.6.2
+ dev: false
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==
+ /@testing-library/jest-dom/5.11.9:
+ dependencies:
+ '@babel/runtime': 7.24.6
+ '@types/testing-library__jest-dom': 5.14.9
+ aria-query: 4.2.2
+ chalk: 3.0.0
+ css: 3.0.0
+ css.escape: 1.5.1
+ lodash: 4.17.21
+ redent: 3.0.0
+ dev: false
+ engines:
+ node: '>=8'
+ npm: '>=6'
+ yarn: '>=1'
+ resolution:
+ integrity: sha512-Mn2gnA9d1wStlAIT2NU8J15LNob0YFBVjs2aEQ3j8rsfRQo+lAs7/ui1i2TGaJjapLmuNPLTsrm+nPjmZDwpcQ==
+ /@testing-library/react/11.2.5_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ '@babel/runtime': 7.24.6
+ '@testing-library/dom': 7.31.2
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ dev: false
+ engines:
+ node: '>=10'
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-yEx7oIa/UWLe2F2dqK0FtMF9sJWNXD+2PPtp39BvE0Kh9MJ9Kl0HrZAgEuhUJR+Lx8Di6Xz+rKwSdEPY2UV8ZQ==
+ /@testing-library/user-event/12.6.2:
+ dependencies:
+ '@babel/runtime': 7.24.6
+ dev: false
+ engines:
+ node: '>=10'
+ npm: '>=6'
+ peerDependencies:
+ '@testing-library/dom': '>=7.21.4'
+ resolution:
+ integrity: sha512-4OsiTSo2vbQm+eOnm1un8b9i2Re4mn+D7d7ET6HXtzYKY7vPe3O01iYKRmSW9vS5mNrQcCLwvRhVq1gWs5YGKA==
+ /@tootallnate/once/1.1.2:
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
+ /@types/aria-query/4.2.2:
+ dev: false
+ resolution:
+ integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==
+ /@types/babel__core/7.20.5:
+ dependencies:
+ '@babel/parser': 7.24.6
+ '@babel/types': 7.24.6
+ '@types/babel__generator': 7.6.8
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.20.6
+ dev: true
+ resolution:
+ integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==
+ /@types/babel__generator/7.6.8:
+ dependencies:
+ '@babel/types': 7.24.6
+ dev: true
+ resolution:
+ integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==
+ /@types/babel__template/7.4.4:
+ dependencies:
+ '@babel/parser': 7.24.6
+ '@babel/types': 7.24.6
+ dev: true
+ resolution:
+ integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==
+ /@types/babel__traverse/7.20.6:
+ dependencies:
+ '@babel/types': 7.24.6
+ dev: true
+ resolution:
+ integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==
+ /@types/eslint/7.29.0:
+ dependencies:
+ '@types/estree': 1.0.5
+ '@types/json-schema': 7.0.15
+ dev: true
+ resolution:
+ integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==
+ /@types/estree/0.0.39:
+ dev: true
+ resolution:
+ integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
+ /@types/estree/1.0.5:
+ dev: true
+ resolution:
+ integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==
+ /@types/glob/7.2.0:
+ dependencies:
+ '@types/minimatch': 5.1.2
+ '@types/node': 20.12.12
+ dev: true
+ resolution:
+ integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==
+ /@types/graceful-fs/4.1.9:
+ dependencies:
+ '@types/node': 20.12.12
+ dev: true
+ resolution:
+ integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==
+ /@types/html-minifier-terser/5.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==
+ /@types/istanbul-lib-coverage/2.0.6:
+ resolution:
+ integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==
+ /@types/istanbul-lib-report/3.0.3:
+ dependencies:
+ '@types/istanbul-lib-coverage': 2.0.6
+ resolution:
+ integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==
+ /@types/istanbul-reports/3.0.4:
+ dependencies:
+ '@types/istanbul-lib-report': 3.0.3
+ resolution:
+ integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==
+ /@types/jest/29.5.12:
+ dependencies:
+ expect: 29.7.0
+ pretty-format: 29.7.0
+ dev: false
+ resolution:
+ integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==
+ /@types/json-schema/7.0.15:
+ dev: true
+ resolution:
+ integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
+ /@types/json5/0.0.29:
+ dev: true
+ resolution:
+ integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
+ /@types/minimatch/5.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==
+ /@types/node/20.12.12:
+ dependencies:
+ undici-types: 5.26.5
+ resolution:
+ integrity: sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==
+ /@types/normalize-package-data/2.4.4:
+ dev: true
+ resolution:
+ integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==
+ /@types/parse-json/4.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==
+ /@types/prettier/2.7.3:
+ dev: true
+ resolution:
+ integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==
+ /@types/q/1.5.8:
+ dev: true
+ resolution:
+ integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==
+ /@types/resolve/0.0.8:
+ dependencies:
+ '@types/node': 20.12.12
+ dev: true
+ resolution:
+ integrity: sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==
+ /@types/source-list-map/0.1.6:
+ dev: true
+ resolution:
+ integrity: sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==
+ /@types/stack-utils/2.0.3:
+ resolution:
+ integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==
+ /@types/tapable/1.0.12:
+ dev: true
+ resolution:
+ integrity: sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==
+ /@types/testing-library__jest-dom/5.14.9:
+ dependencies:
+ '@types/jest': 29.5.12
+ dev: false
+ resolution:
+ integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==
+ /@types/uglify-js/3.17.5:
+ dependencies:
+ source-map: 0.6.1
+ dev: true
+ resolution:
+ integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==
+ /@types/webpack-sources/3.2.3:
+ dependencies:
+ '@types/node': 20.12.12
+ '@types/source-list-map': 0.1.6
+ source-map: 0.7.4
+ dev: true
+ resolution:
+ integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==
+ /@types/webpack/4.41.38:
+ dependencies:
+ '@types/node': 20.12.12
+ '@types/tapable': 1.0.12
+ '@types/uglify-js': 3.17.5
+ '@types/webpack-sources': 3.2.3
+ anymatch: 3.1.3
+ source-map: 0.6.1
+ dev: true
+ resolution:
+ integrity: sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==
+ /@types/yargs-parser/21.0.3:
+ resolution:
+ integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==
+ /@types/yargs/15.0.19:
+ dependencies:
+ '@types/yargs-parser': 21.0.3
+ resolution:
+ integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==
+ /@types/yargs/17.0.32:
+ dependencies:
+ '@types/yargs-parser': 21.0.3
+ dev: false
+ resolution:
+ integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==
+ /@typescript-eslint/eslint-plugin/4.33.0_2951ba233cd46bb4e0f2f0a3f7fe108e:
+ dependencies:
+ '@typescript-eslint/experimental-utils': 4.33.0_eslint@7.32.0
+ '@typescript-eslint/parser': 4.33.0_eslint@7.32.0
+ '@typescript-eslint/scope-manager': 4.33.0
+ debug: 4.3.4
+ eslint: 7.32.0
+ functional-red-black-tree: 1.0.1
+ ignore: 5.3.1
+ regexpp: 3.2.0
+ semver: 7.6.2
+ tsutils: 3.21.0
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ peerDependencies:
+ '@typescript-eslint/parser': ^4.0.0
+ eslint: ^5.0.0 || ^6.0.0 || ^7.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ resolution:
+ integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==
+ /@typescript-eslint/experimental-utils/3.10.1_eslint@7.32.0:
+ dependencies:
+ '@types/json-schema': 7.0.15
+ '@typescript-eslint/types': 3.10.1
+ '@typescript-eslint/typescript-estree': 3.10.1
+ eslint: 7.32.0
+ eslint-scope: 5.1.1
+ eslint-utils: 2.1.0
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ peerDependencies:
+ eslint: '*'
+ resolution:
+ integrity: sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==
+ /@typescript-eslint/experimental-utils/4.33.0_eslint@7.32.0:
+ dependencies:
+ '@types/json-schema': 7.0.15
+ '@typescript-eslint/scope-manager': 4.33.0
+ '@typescript-eslint/types': 4.33.0
+ '@typescript-eslint/typescript-estree': 4.33.0
+ eslint: 7.32.0
+ eslint-scope: 5.1.1
+ eslint-utils: 3.0.0_eslint@7.32.0
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ peerDependencies:
+ eslint: '*'
+ resolution:
+ integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==
+ /@typescript-eslint/parser/4.33.0_eslint@7.32.0:
+ dependencies:
+ '@typescript-eslint/scope-manager': 4.33.0
+ '@typescript-eslint/types': 4.33.0
+ '@typescript-eslint/typescript-estree': 4.33.0
+ debug: 4.3.4
+ eslint: 7.32.0
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ peerDependencies:
+ eslint: ^5.0.0 || ^6.0.0 || ^7.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ resolution:
+ integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==
+ /@typescript-eslint/scope-manager/4.33.0:
+ dependencies:
+ '@typescript-eslint/types': 4.33.0
+ '@typescript-eslint/visitor-keys': 4.33.0
+ dev: true
+ engines:
+ node: ^8.10.0 || ^10.13.0 || >=11.10.1
+ resolution:
+ integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==
+ /@typescript-eslint/types/3.10.1:
+ dev: true
+ engines:
+ node: ^8.10.0 || ^10.13.0 || >=11.10.1
+ resolution:
+ integrity: sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==
+ /@typescript-eslint/types/4.33.0:
+ dev: true
+ engines:
+ node: ^8.10.0 || ^10.13.0 || >=11.10.1
+ resolution:
+ integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==
+ /@typescript-eslint/typescript-estree/3.10.1:
+ dependencies:
+ '@typescript-eslint/types': 3.10.1
+ '@typescript-eslint/visitor-keys': 3.10.1
+ debug: 4.3.4
+ glob: 7.2.3
+ is-glob: 4.0.3
+ lodash: 4.17.21
+ semver: 7.6.2
+ tsutils: 3.21.0
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ resolution:
+ integrity: sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==
+ /@typescript-eslint/typescript-estree/4.33.0:
+ dependencies:
+ '@typescript-eslint/types': 4.33.0
+ '@typescript-eslint/visitor-keys': 4.33.0
+ debug: 4.3.4
+ globby: 11.1.0
+ is-glob: 4.0.3
+ semver: 7.6.2
+ tsutils: 3.21.0
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ resolution:
+ integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==
+ /@typescript-eslint/visitor-keys/3.10.1:
+ dependencies:
+ eslint-visitor-keys: 1.3.0
+ dev: true
+ engines:
+ node: ^8.10.0 || ^10.13.0 || >=11.10.1
+ resolution:
+ integrity: sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==
+ /@typescript-eslint/visitor-keys/4.33.0:
+ dependencies:
+ '@typescript-eslint/types': 4.33.0
+ eslint-visitor-keys: 2.1.0
+ dev: true
+ engines:
+ node: ^8.10.0 || ^10.13.0 || >=11.10.1
+ resolution:
+ integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==
+ /@webassemblyjs/ast/1.9.0:
+ dependencies:
+ '@webassemblyjs/helper-module-context': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/wast-parser': 1.9.0
+ dev: true
+ resolution:
+ integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==
+ /@webassemblyjs/floating-point-hex-parser/1.9.0:
+ dev: true
+ resolution:
+ integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==
+ /@webassemblyjs/helper-api-error/1.9.0:
+ dev: true
+ resolution:
+ integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==
+ /@webassemblyjs/helper-buffer/1.9.0:
+ dev: true
+ resolution:
+ integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==
+ /@webassemblyjs/helper-code-frame/1.9.0:
+ dependencies:
+ '@webassemblyjs/wast-printer': 1.9.0
+ dev: true
+ resolution:
+ integrity: sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==
+ /@webassemblyjs/helper-fsm/1.9.0:
+ dev: true
+ resolution:
+ integrity: sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==
+ /@webassemblyjs/helper-module-context/1.9.0:
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ dev: true
+ resolution:
+ integrity: sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==
+ /@webassemblyjs/helper-wasm-bytecode/1.9.0:
+ dev: true
+ resolution:
+ integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==
+ /@webassemblyjs/helper-wasm-section/1.9.0:
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-buffer': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/wasm-gen': 1.9.0
+ dev: true
+ resolution:
+ integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==
+ /@webassemblyjs/ieee754/1.9.0:
+ dependencies:
+ '@xtuc/ieee754': 1.2.0
+ dev: true
+ resolution:
+ integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==
+ /@webassemblyjs/leb128/1.9.0:
+ dependencies:
+ '@xtuc/long': 4.2.2
+ dev: true
+ resolution:
+ integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==
+ /@webassemblyjs/utf8/1.9.0:
+ dev: true
+ resolution:
+ integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==
+ /@webassemblyjs/wasm-edit/1.9.0:
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-buffer': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/helper-wasm-section': 1.9.0
+ '@webassemblyjs/wasm-gen': 1.9.0
+ '@webassemblyjs/wasm-opt': 1.9.0
+ '@webassemblyjs/wasm-parser': 1.9.0
+ '@webassemblyjs/wast-printer': 1.9.0
+ dev: true
+ resolution:
+ integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==
+ /@webassemblyjs/wasm-gen/1.9.0:
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/ieee754': 1.9.0
+ '@webassemblyjs/leb128': 1.9.0
+ '@webassemblyjs/utf8': 1.9.0
+ dev: true
+ resolution:
+ integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==
+ /@webassemblyjs/wasm-opt/1.9.0:
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-buffer': 1.9.0
+ '@webassemblyjs/wasm-gen': 1.9.0
+ '@webassemblyjs/wasm-parser': 1.9.0
+ dev: true
+ resolution:
+ integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==
+ /@webassemblyjs/wasm-parser/1.9.0:
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-api-error': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/ieee754': 1.9.0
+ '@webassemblyjs/leb128': 1.9.0
+ '@webassemblyjs/utf8': 1.9.0
+ dev: true
+ resolution:
+ integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==
+ /@webassemblyjs/wast-parser/1.9.0:
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/floating-point-hex-parser': 1.9.0
+ '@webassemblyjs/helper-api-error': 1.9.0
+ '@webassemblyjs/helper-code-frame': 1.9.0
+ '@webassemblyjs/helper-fsm': 1.9.0
+ '@xtuc/long': 4.2.2
+ dev: true
+ resolution:
+ integrity: sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==
+ /@webassemblyjs/wast-printer/1.9.0:
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/wast-parser': 1.9.0
+ '@xtuc/long': 4.2.2
+ dev: true
+ resolution:
+ integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==
+ /@xtuc/ieee754/1.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
+ /@xtuc/long/4.2.2:
+ dev: true
+ resolution:
+ integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
+ /abab/2.0.6:
+ deprecated: Use your platform's native atob() and btoa() methods instead
+ dev: true
+ resolution:
+ integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==
+ /accepts/1.3.8:
+ dependencies:
+ mime-types: 2.1.35
+ negotiator: 0.6.3
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==
+ /acorn-globals/6.0.0:
+ dependencies:
+ acorn: 7.4.1
+ acorn-walk: 7.2.0
+ dev: true
+ resolution:
+ integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==
+ /acorn-jsx/5.3.2_acorn@7.4.1:
+ dependencies:
+ acorn: 7.4.1
+ dev: true
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ resolution:
+ integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
+ /acorn-walk/7.2.0:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ resolution:
+ integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
+ /acorn/6.4.2:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
+ /acorn/7.4.1:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
+ /acorn/8.11.3:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==
+ /address/1.1.2:
+ dev: true
+ engines:
+ node: '>= 0.12.0'
+ resolution:
+ integrity: sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==
+ /adjust-sourcemap-loader/3.0.0:
+ dependencies:
+ loader-utils: 2.0.4
+ regex-parser: 2.3.0
+ dev: true
+ engines:
+ node: '>=8.9'
+ resolution:
+ integrity: sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==
+ /agent-base/6.0.2:
+ dependencies:
+ debug: 4.3.4
+ dev: true
+ engines:
+ node: '>= 6.0.0'
+ resolution:
+ integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==
+ /aggregate-error/3.1.0:
+ dependencies:
+ clean-stack: 2.2.0
+ indent-string: 4.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==
+ /ajv-errors/1.0.1_ajv@6.12.6:
+ dependencies:
+ ajv: 6.12.6
+ dev: true
+ peerDependencies:
+ ajv: '>=5.0.0'
+ resolution:
+ integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
+ /ajv-keywords/3.5.2_ajv@6.12.6:
+ dependencies:
+ ajv: 6.12.6
+ dev: true
+ peerDependencies:
+ ajv: ^6.9.1
+ resolution:
+ integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
+ /ajv/6.12.6:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-json-stable-stringify: 2.1.0
+ json-schema-traverse: 0.4.1
+ uri-js: 4.4.1
+ dev: true
+ resolution:
+ integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
+ /ajv/8.13.0:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+ uri-js: 4.4.1
+ dev: true
+ resolution:
+ integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==
+ /alphanum-sort/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==
+ /ansi-colors/3.2.4:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==
+ /ansi-colors/4.1.3:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==
+ /ansi-escapes/4.3.2:
+ dependencies:
+ type-fest: 0.21.3
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
+ /ansi-html/0.0.7:
+ dev: true
+ engines:
+ '0': node >= 0.8.0
+ hasBin: true
+ resolution:
+ integrity: sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==
+ /ansi-regex/2.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==
+ /ansi-regex/4.1.1:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==
+ /ansi-regex/5.0.1:
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
+ /ansi-styles/3.2.1:
+ dependencies:
+ color-convert: 1.9.3
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
+ /ansi-styles/4.3.0:
+ dependencies:
+ color-convert: 2.0.1
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
+ /ansi-styles/5.2.0:
+ dev: false
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
+ /anymatch/2.0.0:
+ dependencies:
+ micromatch: 3.1.10
+ normalize-path: 2.1.1
+ dev: true
+ resolution:
+ integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
+ /anymatch/3.1.3:
+ dependencies:
+ normalize-path: 3.0.0
+ picomatch: 2.3.1
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
+ /aproba/1.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
+ /argparse/1.0.10:
+ dependencies:
+ sprintf-js: 1.0.3
+ dev: true
+ resolution:
+ integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
+ /aria-query/4.2.2:
+ dependencies:
+ '@babel/runtime': 7.24.6
+ '@babel/runtime-corejs3': 7.24.6
+ dev: false
+ engines:
+ node: '>=6.0'
+ resolution:
+ integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
+ /aria-query/5.3.0:
+ dependencies:
+ dequal: 2.0.3
+ dev: true
+ resolution:
+ integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==
+ /arity-n/1.0.4:
+ dev: true
+ resolution:
+ integrity: sha512-fExL2kFDC1Q2DUOx3whE/9KoN66IzkY4b4zUHUBFM1ojEYjZZYDcUW3bek/ufGionX9giIKDC5redH2IlGqcQQ==
+ /arr-diff/4.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==
+ /arr-flatten/1.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
+ /arr-union/3.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==
+ /array-buffer-byte-length/1.0.1:
+ dependencies:
+ call-bind: 1.0.7
+ is-array-buffer: 3.0.4
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==
+ /array-flatten/1.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==
+ /array-flatten/2.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
+ /array-includes/3.1.8:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
+ get-intrinsic: 1.2.4
+ is-string: 1.0.7
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==
+ /array-union/1.0.2:
+ dependencies:
+ array-uniq: 1.0.3
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==
+ /array-union/2.1.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
+ /array-uniq/1.0.3:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==
+ /array-unique/0.3.2:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==
+ /array.prototype.findlast/1.2.5:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ es-shim-unscopables: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==
+ /array.prototype.findlastindex/1.2.5:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ es-shim-unscopables: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==
+ /array.prototype.flat/1.3.2:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-shim-unscopables: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==
+ /array.prototype.flatmap/1.3.2:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-shim-unscopables: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==
+ /array.prototype.reduce/1.0.7:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-array-method-boxes-properly: 1.0.0
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ is-string: 1.0.7
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==
+ /array.prototype.toreversed/1.1.2:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-shim-unscopables: 1.0.2
+ dev: true
+ resolution:
+ integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==
+ /array.prototype.tosorted/1.1.3:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ es-shim-unscopables: 1.0.2
+ dev: true
+ resolution:
+ integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==
+ /arraybuffer.prototype.slice/1.0.3:
+ dependencies:
+ array-buffer-byte-length: 1.0.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ is-array-buffer: 3.0.4
+ is-shared-array-buffer: 1.0.3
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==
+ /arrify/2.0.1:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==
+ /asap/2.0.6:
+ dev: true
+ resolution:
+ integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==
+ /asn1.js/4.10.1:
+ dependencies:
+ bn.js: 4.12.0
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==
+ /assert/1.5.1:
+ dependencies:
+ object.assign: 4.1.5
+ util: 0.10.4
+ dev: true
+ resolution:
+ integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==
+ /assign-symbols/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==
+ /ast-types-flow/0.0.8:
+ dev: true
+ resolution:
+ integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==
+ /astral-regex/2.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
+ /async-each/1.0.6:
+ dev: true
+ resolution:
+ integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==
+ /async-limiter/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
+ /async/2.6.4:
+ dependencies:
+ lodash: 4.17.21
+ dev: true
+ resolution:
+ integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==
+ /asynckit/0.4.0:
+ dev: true
+ resolution:
+ integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==
+ /at-least-node/1.0.0:
+ dev: true
+ engines:
+ node: '>= 4.0.0'
+ resolution:
+ integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
+ /atob/2.1.2:
+ engines:
+ node: '>= 4.5.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
+ /autoprefixer/9.8.8:
+ dependencies:
+ browserslist: 4.23.0
+ caniuse-lite: 1.0.30001621
+ normalize-range: 0.1.2
+ num2fraction: 1.2.2
+ picocolors: 0.2.1
+ postcss: 7.0.39
+ postcss-value-parser: 4.2.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==
+ /available-typed-arrays/1.0.7:
+ dependencies:
+ possible-typed-array-names: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==
+ /axe-core/4.7.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==
+ /axobject-query/3.2.1:
+ dependencies:
+ dequal: 2.0.3
+ dev: true
+ resolution:
+ integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==
+ /babel-eslint/10.1.0_eslint@7.32.0:
+ dependencies:
+ '@babel/code-frame': 7.24.6
+ '@babel/parser': 7.24.6
+ '@babel/traverse': 7.24.6
+ '@babel/types': 7.24.6
+ eslint: 7.32.0
+ eslint-visitor-keys: 1.3.0
+ resolve: 1.18.1
+ deprecated: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.
+ dev: true
+ engines:
+ node: '>=6'
+ peerDependencies:
+ eslint: '>= 4.12.1'
+ resolution:
+ integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==
+ /babel-extract-comments/1.0.0:
+ dependencies:
+ babylon: 6.18.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==
+ /babel-jest/26.6.3_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@jest/transform': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/babel__core': 7.20.5
+ babel-plugin-istanbul: 6.1.1
+ babel-preset-jest: 26.6.2_@babel+core@7.12.3
+ chalk: 4.1.0
+ graceful-fs: 4.2.11
+ slash: 3.0.0
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==
+ /babel-jest/26.6.3_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@jest/transform': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/babel__core': 7.20.5
+ babel-plugin-istanbul: 6.1.1
+ babel-preset-jest: 26.6.2_@babel+core@7.24.6
+ chalk: 4.1.0
+ graceful-fs: 4.2.11
+ slash: 3.0.0
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==
+ /babel-loader/8.1.0_427212bc1158d185e577033f19ca0757:
+ dependencies:
+ '@babel/core': 7.12.3
+ find-cache-dir: 2.1.0
+ loader-utils: 1.4.2
+ mkdirp: 0.5.6
+ pify: 4.0.1
+ schema-utils: 2.7.1
+ webpack: 4.44.2
+ dev: true
+ engines:
+ node: '>= 6.9'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ webpack: '>=2'
+ resolution:
+ integrity: sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==
+ /babel-plugin-istanbul/6.1.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.24.6
+ '@istanbuljs/load-nyc-config': 1.1.0
+ '@istanbuljs/schema': 0.1.3
+ istanbul-lib-instrument: 5.2.1
+ test-exclude: 6.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==
+ /babel-plugin-jest-hoist/26.6.2:
+ dependencies:
+ '@babel/template': 7.24.6
+ '@babel/types': 7.24.6
+ '@types/babel__core': 7.20.5
+ '@types/babel__traverse': 7.20.6
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==
+ /babel-plugin-macros/3.1.0:
+ dependencies:
+ '@babel/runtime': 7.24.6
+ cosmiconfig: 7.1.0
+ resolve: 1.22.8
+ dev: true
+ engines:
+ node: '>=10'
+ npm: '>=6'
+ resolution:
+ integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==
+ /babel-plugin-named-asset-import/0.3.8_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.1.0
+ resolution:
+ integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==
+ /babel-plugin-polyfill-corejs2/0.4.11_@babel+core@7.12.3:
+ dependencies:
+ '@babel/compat-data': 7.24.6
+ '@babel/core': 7.12.3
+ '@babel/helper-define-polyfill-provider': 0.6.2_@babel+core@7.12.3
+ semver: 6.3.1
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ resolution:
+ integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==
+ /babel-plugin-polyfill-corejs2/0.4.11_@babel+core@7.24.6:
+ dependencies:
+ '@babel/compat-data': 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-define-polyfill-provider': 0.6.2_@babel+core@7.24.6
+ semver: 6.3.1
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ resolution:
+ integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==
+ /babel-plugin-polyfill-corejs3/0.10.4_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-define-polyfill-provider': 0.6.2_@babel+core@7.12.3
+ core-js-compat: 3.37.1
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ resolution:
+ integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==
+ /babel-plugin-polyfill-corejs3/0.10.4_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-define-polyfill-provider': 0.6.2_@babel+core@7.24.6
+ core-js-compat: 3.37.1
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ resolution:
+ integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==
+ /babel-plugin-polyfill-regenerator/0.6.2_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-define-polyfill-provider': 0.6.2_@babel+core@7.12.3
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ resolution:
+ integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==
+ /babel-plugin-polyfill-regenerator/0.6.2_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-define-polyfill-provider': 0.6.2_@babel+core@7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ resolution:
+ integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==
+ /babel-plugin-syntax-object-rest-spread/6.13.0:
+ dev: true
+ resolution:
+ integrity: sha512-C4Aq+GaAj83pRQ0EFgTvw5YO6T3Qz2KGrNRwIj9mSoNHVvdZY4KO2uA6HNtNXCw993iSZnckY1aLW8nOi8i4+w==
+ /babel-plugin-transform-object-rest-spread/6.26.0:
+ dependencies:
+ babel-plugin-syntax-object-rest-spread: 6.13.0
+ babel-runtime: 6.26.0
+ dev: true
+ resolution:
+ integrity: sha512-ocgA9VJvyxwt+qJB0ncxV8kb/CjfTcECUY4tQ5VT7nP6Aohzobm8CDFaQ5FHdvZQzLmf0sgDxB8iRXZXxwZcyA==
+ /babel-plugin-transform-react-remove-prop-types/0.4.24:
+ dev: true
+ resolution:
+ integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==
+ /babel-preset-current-node-syntax/1.0.1_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3
+ '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.12.3
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.12.3
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.12.3
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==
+ /babel-preset-current-node-syntax/1.0.1_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.24.6
+ '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.24.6
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.24.6
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.24.6
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.24.6
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.24.6
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.24.6
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.24.6
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.24.6
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.24.6
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.24.6
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.24.6
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==
+ /babel-preset-jest/26.6.2_@babel+core@7.12.3:
+ dependencies:
+ '@babel/core': 7.12.3
+ babel-plugin-jest-hoist: 26.6.2
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.12.3
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==
+ /babel-preset-jest/26.6.2_@babel+core@7.24.6:
+ dependencies:
+ '@babel/core': 7.24.6
+ babel-plugin-jest-hoist: 26.6.2
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.24.6
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==
+ /babel-preset-react-app/10.0.1:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.24.6
+ '@babel/plugin-proposal-decorators': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.24.6
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.24.6
+ '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.24.6
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.24.6
+ '@babel/plugin-transform-flow-strip-types': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-react-display-name': 7.24.6_@babel+core@7.24.6
+ '@babel/plugin-transform-runtime': 7.24.6_@babel+core@7.24.6
+ '@babel/preset-env': 7.24.6_@babel+core@7.24.6
+ '@babel/preset-react': 7.24.6_@babel+core@7.24.6
+ '@babel/preset-typescript': 7.24.6_@babel+core@7.24.6
+ '@babel/runtime': 7.24.6
+ babel-plugin-macros: 3.1.0
+ babel-plugin-transform-react-remove-prop-types: 0.4.24
+ dev: true
+ resolution:
+ integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==
+ /babel-runtime/6.26.0:
+ dependencies:
+ core-js: 2.6.12
+ regenerator-runtime: 0.11.1
+ dev: true
+ resolution:
+ integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==
+ /babylon/6.18.0:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==
+ /balanced-match/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
+ /base/0.11.2:
+ dependencies:
+ cache-base: 1.0.1
+ class-utils: 0.3.6
+ component-emitter: 1.3.1
+ define-property: 1.0.0
+ isobject: 3.0.1
+ mixin-deep: 1.3.2
+ pascalcase: 0.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
+ /base64-js/1.5.1:
+ dev: true
+ resolution:
+ integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
+ /batch/0.6.1:
+ dev: true
+ resolution:
+ integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==
+ /bfj/7.1.0:
+ dependencies:
+ bluebird: 3.7.2
+ check-types: 11.2.3
+ hoopy: 0.1.4
+ jsonpath: 1.1.1
+ tryer: 1.0.1
+ dev: true
+ engines:
+ node: '>= 8.0.0'
+ resolution:
+ integrity: sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==
+ /big.js/5.2.2:
+ dev: true
+ resolution:
+ integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
+ /binary-extensions/1.13.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
+ /binary-extensions/2.3.0:
+ dev: true
+ engines:
+ node: '>=8'
+ optional: true
+ resolution:
+ integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==
+ /bindings/1.5.0:
+ dependencies:
+ file-uri-to-path: 1.0.0
+ dev: true
+ optional: true
+ resolution:
+ integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
+ /bluebird/3.7.2:
+ dev: true
+ resolution:
+ integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
+ /bn.js/4.12.0:
+ dev: true
+ resolution:
+ integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==
+ /bn.js/5.2.1:
+ dev: true
+ resolution:
+ integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==
+ /body-parser/1.20.2:
+ dependencies:
+ bytes: 3.1.2
+ content-type: 1.0.5
+ debug: 2.6.9
+ depd: 2.0.0
+ destroy: 1.2.0
+ http-errors: 2.0.0
+ iconv-lite: 0.4.24
+ on-finished: 2.4.1
+ qs: 6.11.0
+ raw-body: 2.5.2
+ type-is: 1.6.18
+ unpipe: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.8'
+ npm: 1.2.8000 || >= 1.4.16
+ resolution:
+ integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==
+ /bonjour/3.5.0:
+ dependencies:
+ array-flatten: 2.1.2
+ deep-equal: 1.1.2
+ dns-equal: 1.0.0
+ dns-txt: 2.0.2
+ multicast-dns: 6.2.3
+ multicast-dns-service-types: 1.1.0
+ dev: true
+ resolution:
+ integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==
+ /boolbase/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==
+ /brace-expansion/1.1.11:
+ dependencies:
+ balanced-match: 1.0.2
+ concat-map: 0.0.1
+ dev: true
+ resolution:
+ integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
+ /braces/2.3.2:
+ dependencies:
+ arr-flatten: 1.1.0
+ array-unique: 0.3.2
+ extend-shallow: 2.0.1
+ fill-range: 4.0.0
+ isobject: 3.0.1
+ repeat-element: 1.1.4
+ snapdragon: 0.8.2
+ snapdragon-node: 2.1.1
+ split-string: 3.1.0
+ to-regex: 3.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
+ /braces/3.0.3:
+ dependencies:
+ fill-range: 7.1.1
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
+ /brorand/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==
+ /browser-process-hrtime/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
+ /browserify-aes/1.2.0:
+ dependencies:
+ buffer-xor: 1.0.3
+ cipher-base: 1.0.4
+ create-hash: 1.2.0
+ evp_bytestokey: 1.0.3
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: true
+ resolution:
+ integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
+ /browserify-cipher/1.0.1:
+ dependencies:
+ browserify-aes: 1.2.0
+ browserify-des: 1.0.2
+ evp_bytestokey: 1.0.3
+ dev: true
+ resolution:
+ integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
+ /browserify-des/1.0.2:
+ dependencies:
+ cipher-base: 1.0.4
+ des.js: 1.1.0
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: true
+ resolution:
+ integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
+ /browserify-rsa/4.1.0:
+ dependencies:
+ bn.js: 5.2.1
+ randombytes: 2.1.0
+ dev: true
+ resolution:
+ integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==
+ /browserify-sign/4.2.3:
+ dependencies:
+ bn.js: 5.2.1
+ browserify-rsa: 4.1.0
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ elliptic: 6.5.5
+ hash-base: 3.0.4
+ inherits: 2.0.4
+ parse-asn1: 5.1.7
+ readable-stream: 2.3.8
+ safe-buffer: 5.2.1
+ dev: true
+ engines:
+ node: '>= 0.12'
+ resolution:
+ integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==
+ /browserify-zlib/0.2.0:
+ dependencies:
+ pako: 1.0.11
+ dev: true
+ resolution:
+ integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==
+ /browserslist/4.14.2:
+ dependencies:
+ caniuse-lite: 1.0.30001621
+ electron-to-chromium: 1.4.783
+ escalade: 3.1.2
+ node-releases: 1.1.77
+ dev: true
+ engines:
+ node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7
+ hasBin: true
+ resolution:
+ integrity: sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==
+ /browserslist/4.23.0:
+ dependencies:
+ caniuse-lite: 1.0.30001621
+ electron-to-chromium: 1.4.783
+ node-releases: 2.0.14
+ update-browserslist-db: 1.0.16_browserslist@4.23.0
+ dev: true
+ engines:
+ node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7
+ hasBin: true
+ resolution:
+ integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==
+ /bser/2.1.1:
+ dependencies:
+ node-int64: 0.4.0
+ dev: true
+ resolution:
+ integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==
+ /buffer-from/1.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
+ /buffer-indexof/1.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==
+ /buffer-xor/1.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==
+ /buffer/4.9.2:
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+ isarray: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
+ /builtin-modules/3.3.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==
+ /builtin-status-codes/3.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==
+ /bytes/3.0.0:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==
+ /bytes/3.1.2:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==
+ /cacache/12.0.4:
+ dependencies:
+ bluebird: 3.7.2
+ chownr: 1.1.4
+ figgy-pudding: 3.5.2
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ infer-owner: 1.0.4
+ lru-cache: 5.1.1
+ mississippi: 3.0.0
+ mkdirp: 0.5.6
+ move-concurrently: 1.0.1
+ promise-inflight: 1.0.1
+ rimraf: 2.7.1
+ ssri: 6.0.2
+ unique-filename: 1.1.1
+ y18n: 4.0.3
+ dev: true
+ resolution:
+ integrity: sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==
+ /cacache/15.3.0:
+ dependencies:
+ '@npmcli/fs': 1.1.1
+ '@npmcli/move-file': 1.1.2
+ chownr: 2.0.0
+ fs-minipass: 2.1.0
+ glob: 7.2.3
+ infer-owner: 1.0.4
+ lru-cache: 6.0.0
+ minipass: 3.3.6
+ minipass-collect: 1.0.2
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ mkdirp: 1.0.4
+ p-map: 4.0.0
+ promise-inflight: 1.0.1
+ rimraf: 3.0.2
+ ssri: 8.0.1
+ tar: 6.2.1
+ unique-filename: 1.1.1
+ dev: true
+ engines:
+ node: '>= 10'
+ resolution:
+ integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==
+ /cache-base/1.0.1:
+ dependencies:
+ collection-visit: 1.0.0
+ component-emitter: 1.3.1
+ get-value: 2.0.6
+ has-value: 1.0.0
+ isobject: 3.0.1
+ set-value: 2.0.1
+ to-object-path: 0.3.0
+ union-value: 1.0.1
+ unset-value: 1.0.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
+ /call-bind/1.0.7:
+ dependencies:
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ set-function-length: 1.2.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==
+ /caller-callsite/2.0.0:
+ dependencies:
+ callsites: 2.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==
+ /caller-path/2.0.0:
+ dependencies:
+ caller-callsite: 2.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==
+ /callsites/2.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==
+ /callsites/3.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
+ /camel-case/4.1.2:
+ dependencies:
+ pascal-case: 3.1.2
+ tslib: 2.6.2
+ dev: true
+ resolution:
+ integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==
+ /camelcase/5.3.1:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
+ /camelcase/6.3.0:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
+ /caniuse-api/3.0.0:
+ dependencies:
+ browserslist: 4.23.0
+ caniuse-lite: 1.0.30001621
+ lodash.memoize: 4.1.2
+ lodash.uniq: 4.5.0
+ dev: true
+ resolution:
+ integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==
+ /caniuse-lite/1.0.30001621:
+ dev: true
+ resolution:
+ integrity: sha512-+NLXZiviFFKX0fk8Piwv3PfLPGtRqJeq2TiNoUff/qB5KJgwecJTvCXDpmlyP/eCI/GUEmp/h/y5j0yckiiZrA==
+ /capture-exit/2.0.0:
+ dependencies:
+ rsvp: 4.8.5
+ dev: true
+ engines:
+ node: 6.* || 8.* || >= 10.*
+ resolution:
+ integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==
+ /case-sensitive-paths-webpack-plugin/2.3.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==
+ /chalk/2.4.2:
+ dependencies:
+ ansi-styles: 3.2.1
+ escape-string-regexp: 1.0.5
+ supports-color: 5.5.0
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
+ /chalk/3.0.0:
+ dependencies:
+ ansi-styles: 4.3.0
+ supports-color: 7.2.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
+ /chalk/4.1.0:
+ dependencies:
+ ansi-styles: 4.3.0
+ supports-color: 7.2.0
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
+ /char-regex/1.0.2:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
+ /check-types/11.2.3:
+ dev: true
+ resolution:
+ integrity: sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==
+ /chokidar/2.1.8:
+ dependencies:
+ anymatch: 2.0.0
+ async-each: 1.0.6
+ braces: 2.3.2
+ glob-parent: 3.1.0
+ inherits: 2.0.4
+ is-binary-path: 1.0.1
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ path-is-absolute: 1.0.1
+ readdirp: 2.2.1
+ upath: 1.2.0
+ deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies
+ dev: true
+ optionalDependencies:
+ fsevents: 1.2.13
+ resolution:
+ integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
+ /chokidar/3.6.0:
+ dependencies:
+ anymatch: 3.1.3
+ braces: 3.0.3
+ glob-parent: 5.1.2
+ is-binary-path: 2.1.0
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ readdirp: 3.6.0
+ dev: true
+ engines:
+ node: '>= 8.10.0'
+ optional: true
+ optionalDependencies:
+ fsevents: 2.3.3
+ resolution:
+ integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==
+ /chownr/1.1.4:
+ dev: true
+ resolution:
+ integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
+ /chownr/2.0.0:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
+ /chrome-trace-event/1.0.3:
+ dev: true
+ engines:
+ node: '>=6.0'
+ resolution:
+ integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==
+ /ci-info/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
+ /ci-info/3.9.0:
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==
+ /cipher-base/1.0.4:
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: true
+ resolution:
+ integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
+ /cjs-module-lexer/0.6.0:
+ dev: true
+ resolution:
+ integrity: sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==
+ /class-utils/0.3.6:
+ dependencies:
+ arr-union: 3.1.0
+ define-property: 0.2.5
+ isobject: 3.0.1
+ static-extend: 0.1.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
+ /clean-css/4.2.4:
+ dependencies:
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>= 4.0'
+ resolution:
+ integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==
+ /clean-stack/2.2.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
+ /cli-cursor/3.1.0:
+ dependencies:
+ restore-cursor: 3.1.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
+ /cli-truncate/2.1.0:
+ dependencies:
+ slice-ansi: 3.0.0
+ string-width: 4.2.3
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==
+ /cliui/5.0.0:
+ dependencies:
+ string-width: 3.1.0
+ strip-ansi: 5.2.0
+ wrap-ansi: 5.1.0
+ dev: true
+ resolution:
+ integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
+ /cliui/6.0.0:
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+ dev: true
+ resolution:
+ integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
+ /co/4.6.0:
+ dev: true
+ engines:
+ iojs: '>= 1.0.0'
+ node: '>= 0.12.0'
+ resolution:
+ integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==
+ /coa/2.0.2:
+ dependencies:
+ '@types/q': 1.5.8
+ chalk: 2.4.2
+ q: 1.5.1
+ dev: true
+ engines:
+ node: '>= 4.0'
+ resolution:
+ integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==
+ /collect-v8-coverage/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==
+ /collection-visit/1.0.0:
+ dependencies:
+ map-visit: 1.0.0
+ object-visit: 1.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==
+ /color-convert/1.9.3:
+ dependencies:
+ color-name: 1.1.3
+ resolution:
+ integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
+ /color-convert/2.0.1:
+ dependencies:
+ color-name: 1.1.4
+ engines:
+ node: '>=7.0.0'
+ resolution:
+ integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
+ /color-name/1.1.3:
+ resolution:
+ integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
+ /color-name/1.1.4:
+ resolution:
+ integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
+ /color-string/1.9.1:
+ dependencies:
+ color-name: 1.1.4
+ simple-swizzle: 0.2.2
+ dev: true
+ resolution:
+ integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==
+ /color/3.2.1:
+ dependencies:
+ color-convert: 1.9.3
+ color-string: 1.9.1
+ dev: true
+ resolution:
+ integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==
+ /colorette/2.0.20:
+ dev: true
+ resolution:
+ integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==
+ /combined-stream/1.0.8:
+ dependencies:
+ delayed-stream: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
+ /commander/2.20.3:
+ dev: true
+ resolution:
+ integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
+ /commander/4.1.1:
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
+ /commander/6.2.1:
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==
+ /common-tags/1.8.2:
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==
+ /commondir/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==
+ /compare-versions/3.6.0:
+ dev: true
+ resolution:
+ integrity: sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==
+ /component-emitter/1.3.1:
+ dev: true
+ resolution:
+ integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==
+ /compose-function/3.0.3:
+ dependencies:
+ arity-n: 1.0.4
+ dev: true
+ resolution:
+ integrity: sha512-xzhzTJ5eC+gmIzvZq+C3kCJHsp9os6tJkrigDRZclyGtOKINbZtE8n1Tzmeh32jW+BUDPbvZpibwvJHBLGMVwg==
+ /compressible/2.0.18:
+ dependencies:
+ mime-db: 1.52.0
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
+ /compression/1.7.4:
+ dependencies:
+ accepts: 1.3.8
+ bytes: 3.0.0
+ compressible: 2.0.18
+ debug: 2.6.9
+ on-headers: 1.0.2
+ safe-buffer: 5.1.2
+ vary: 1.1.2
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
+ /concat-map/0.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
+ /concat-stream/1.6.2:
+ dependencies:
+ buffer-from: 1.1.2
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ typedarray: 0.0.6
+ dev: true
+ engines:
+ '0': node >= 0.8
+ resolution:
+ integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
+ /confusing-browser-globals/1.0.11:
+ dev: true
+ resolution:
+ integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==
+ /connect-history-api-fallback/1.6.0:
+ dev: true
+ engines:
+ node: '>=0.8'
+ resolution:
+ integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==
+ /console-browserify/1.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
+ /constants-browserify/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==
+ /content-disposition/0.5.4:
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==
+ /content-type/1.0.5:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
+ /convert-source-map/0.3.5:
+ dev: true
+ resolution:
+ integrity: sha512-+4nRk0k3oEpwUB7/CalD7xE2z4VmtEnnq0GO2IPTkrooTrAhEsWvuLF5iWP1dXrwluki/azwXV1ve7gtYuPldg==
+ /convert-source-map/1.7.0:
+ dependencies:
+ safe-buffer: 5.1.2
+ dev: true
+ resolution:
+ integrity: sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
+ /convert-source-map/1.9.0:
+ dev: true
+ resolution:
+ integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
+ /convert-source-map/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
+ /cookie-signature/1.0.6:
+ dev: true
+ resolution:
+ integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==
+ /cookie/0.6.0:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==
+ /copy-concurrently/1.0.5:
+ dependencies:
+ aproba: 1.2.0
+ fs-write-stream-atomic: 1.0.10
+ iferr: 0.1.5
+ mkdirp: 0.5.6
+ rimraf: 2.7.1
+ run-queue: 1.0.3
+ deprecated: This package is no longer supported.
+ dev: true
+ resolution:
+ integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==
+ /copy-descriptor/0.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==
+ /core-js-compat/3.37.1:
+ dependencies:
+ browserslist: 4.23.0
+ dev: true
+ resolution:
+ integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==
+ /core-js-pure/3.37.1:
+ dev: false
+ requiresBuild: true
+ resolution:
+ integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==
+ /core-js/2.6.12:
+ deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
+ dev: true
+ requiresBuild: true
+ resolution:
+ integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
+ /core-js/3.37.1:
+ dev: true
+ requiresBuild: true
+ resolution:
+ integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==
+ /core-util-is/1.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
+ /cosmiconfig/5.2.1:
+ dependencies:
+ import-fresh: 2.0.0
+ is-directory: 0.3.1
+ js-yaml: 3.14.1
+ parse-json: 4.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
+ /cosmiconfig/7.1.0:
+ dependencies:
+ '@types/parse-json': 4.0.2
+ import-fresh: 3.3.0
+ parse-json: 5.2.0
+ path-type: 4.0.0
+ yaml: 1.10.2
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==
+ /create-ecdh/4.0.4:
+ dependencies:
+ bn.js: 4.12.0
+ elliptic: 6.5.5
+ dev: true
+ resolution:
+ integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
+ /create-hash/1.2.0:
+ dependencies:
+ cipher-base: 1.0.4
+ inherits: 2.0.4
+ md5.js: 1.3.5
+ ripemd160: 2.0.2
+ sha.js: 2.4.11
+ dev: true
+ resolution:
+ integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
+ /create-hmac/1.1.7:
+ dependencies:
+ cipher-base: 1.0.4
+ create-hash: 1.2.0
+ inherits: 2.0.4
+ ripemd160: 2.0.2
+ safe-buffer: 5.2.1
+ sha.js: 2.4.11
+ dev: true
+ resolution:
+ integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
+ /cross-spawn/6.0.5:
+ dependencies:
+ nice-try: 1.0.5
+ path-key: 2.0.1
+ semver: 5.7.2
+ shebang-command: 1.2.0
+ which: 1.3.1
+ dev: true
+ engines:
+ node: '>=4.8'
+ resolution:
+ integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
+ /cross-spawn/7.0.3:
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
+ /crypto-browserify/3.12.0:
+ dependencies:
+ browserify-cipher: 1.0.1
+ browserify-sign: 4.2.3
+ create-ecdh: 4.0.4
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ diffie-hellman: 5.0.3
+ inherits: 2.0.4
+ pbkdf2: 3.1.2
+ public-encrypt: 4.0.3
+ randombytes: 2.1.0
+ randomfill: 1.0.4
+ dev: true
+ resolution:
+ integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==
+ /crypto-random-string/1.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==
+ /css-blank-pseudo/0.1.4:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==
+ /css-color-names/0.0.4:
+ dev: true
+ resolution:
+ integrity: sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==
+ /css-declaration-sorter/4.0.1:
+ dependencies:
+ postcss: 7.0.39
+ timsort: 0.3.0
+ dev: true
+ engines:
+ node: '>4'
+ resolution:
+ integrity: sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==
+ /css-has-pseudo/0.10.0:
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 5.0.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==
+ /css-loader/4.3.0_webpack@4.44.2:
+ dependencies:
+ camelcase: 6.3.0
+ cssesc: 3.0.0
+ icss-utils: 4.1.1
+ loader-utils: 2.0.4
+ postcss: 7.0.39
+ postcss-modules-extract-imports: 2.0.0
+ postcss-modules-local-by-default: 3.0.3
+ postcss-modules-scope: 2.2.0
+ postcss-modules-values: 3.0.0
+ postcss-value-parser: 4.2.0
+ schema-utils: 2.7.1
+ semver: 7.6.2
+ webpack: 4.44.2
+ dev: true
+ engines:
+ node: '>= 10.13.0'
+ peerDependencies:
+ webpack: ^4.27.0 || ^5.0.0
+ resolution:
+ integrity: sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==
+ /css-prefers-color-scheme/3.1.1:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==
+ /css-select-base-adapter/0.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==
+ /css-select/2.1.0:
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 3.4.2
+ domutils: 1.7.0
+ nth-check: 1.0.2
+ dev: true
+ resolution:
+ integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==
+ /css-select/4.3.0:
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 6.1.0
+ domhandler: 4.3.1
+ domutils: 2.8.0
+ nth-check: 2.1.1
+ dev: true
+ resolution:
+ integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==
+ /css-tree/1.0.0-alpha.37:
+ dependencies:
+ mdn-data: 2.0.4
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ resolution:
+ integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==
+ /css-tree/1.1.3:
+ dependencies:
+ mdn-data: 2.0.14
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ resolution:
+ integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==
+ /css-what/3.4.2:
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==
+ /css-what/6.1.0:
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==
+ /css.escape/1.5.1:
+ dev: false
+ resolution:
+ integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==
+ /css/2.2.4:
+ dependencies:
+ inherits: 2.0.4
+ source-map: 0.6.1
+ source-map-resolve: 0.5.3
+ urix: 0.1.0
+ dev: true
+ resolution:
+ integrity: sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==
+ /css/3.0.0:
+ dependencies:
+ inherits: 2.0.4
+ source-map: 0.6.1
+ source-map-resolve: 0.6.0
+ dev: false
+ resolution:
+ integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==
+ /cssdb/4.4.0:
+ dev: true
+ resolution:
+ integrity: sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==
+ /cssesc/2.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==
+ /cssesc/3.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
+ /cssnano-preset-default/4.0.8:
+ dependencies:
+ css-declaration-sorter: 4.0.1
+ cssnano-util-raw-cache: 4.0.1
+ postcss: 7.0.39
+ postcss-calc: 7.0.5
+ postcss-colormin: 4.0.3
+ postcss-convert-values: 4.0.1
+ postcss-discard-comments: 4.0.2
+ postcss-discard-duplicates: 4.0.2
+ postcss-discard-empty: 4.0.1
+ postcss-discard-overridden: 4.0.1
+ postcss-merge-longhand: 4.0.11
+ postcss-merge-rules: 4.0.3
+ postcss-minify-font-values: 4.0.2
+ postcss-minify-gradients: 4.0.2
+ postcss-minify-params: 4.0.2
+ postcss-minify-selectors: 4.0.2
+ postcss-normalize-charset: 4.0.1
+ postcss-normalize-display-values: 4.0.2
+ postcss-normalize-positions: 4.0.2
+ postcss-normalize-repeat-style: 4.0.2
+ postcss-normalize-string: 4.0.2
+ postcss-normalize-timing-functions: 4.0.2
+ postcss-normalize-unicode: 4.0.1
+ postcss-normalize-url: 4.0.1
+ postcss-normalize-whitespace: 4.0.2
+ postcss-ordered-values: 4.1.2
+ postcss-reduce-initial: 4.0.3
+ postcss-reduce-transforms: 4.0.2
+ postcss-svgo: 4.0.3
+ postcss-unique-selectors: 4.0.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==
+ /cssnano-util-get-arguments/4.0.0:
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==
+ /cssnano-util-get-match/4.0.0:
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw==
+ /cssnano-util-raw-cache/4.0.1:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==
+ /cssnano-util-same-parent/4.0.1:
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==
+ /cssnano/4.1.11:
+ dependencies:
+ cosmiconfig: 5.2.1
+ cssnano-preset-default: 4.0.8
+ is-resolvable: 1.1.0
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==
+ /csso/4.2.0:
+ dependencies:
+ css-tree: 1.1.3
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ resolution:
+ integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==
+ /cssom/0.3.8:
+ dev: true
+ resolution:
+ integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
+ /cssom/0.4.4:
+ dev: true
+ resolution:
+ integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==
+ /cssstyle/2.3.0:
+ dependencies:
+ cssom: 0.3.8
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
+ /cyclist/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==
+ /d/1.0.2:
+ dependencies:
+ es5-ext: 0.10.64
+ type: 2.7.2
+ dev: true
+ engines:
+ node: '>=0.12'
+ resolution:
+ integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==
+ /damerau-levenshtein/1.0.8:
+ dev: true
+ resolution:
+ integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==
+ /data-urls/2.0.0:
+ dependencies:
+ abab: 2.0.6
+ whatwg-mimetype: 2.3.0
+ whatwg-url: 8.7.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==
+ /data-view-buffer/1.0.1:
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==
+ /data-view-byte-length/1.0.1:
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==
+ /data-view-byte-offset/1.0.0:
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==
+ /debug/2.6.9:
+ dependencies:
+ ms: 2.0.0
+ dev: true
+ resolution:
+ integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+ /debug/3.2.7:
+ dependencies:
+ ms: 2.1.3
+ dev: true
+ resolution:
+ integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
+ /debug/4.3.4:
+ dependencies:
+ ms: 2.1.2
+ dev: true
+ engines:
+ node: '>=6.0'
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ resolution:
+ integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
+ /debug/4.3.4_supports-color@6.1.0:
+ dependencies:
+ ms: 2.1.2
+ supports-color: 6.1.0
+ dev: true
+ engines:
+ node: '>=6.0'
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ resolution:
+ integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
+ /decamelize/1.2.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==
+ /decimal.js/10.4.3:
+ dev: true
+ resolution:
+ integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==
+ /decode-uri-component/0.2.2:
+ engines:
+ node: '>=0.10'
+ resolution:
+ integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
+ /dedent/0.7.0:
+ dev: true
+ resolution:
+ integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==
+ /deep-equal/1.1.2:
+ dependencies:
+ is-arguments: 1.1.1
+ is-date-object: 1.0.5
+ is-regex: 1.1.4
+ object-is: 1.1.6
+ object-keys: 1.1.1
+ regexp.prototype.flags: 1.5.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==
+ /deep-is/0.1.4:
+ dev: true
+ resolution:
+ integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
+ /deepmerge/4.3.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
+ /default-gateway/4.2.0:
+ dependencies:
+ execa: 1.0.0
+ ip-regex: 2.1.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==
+ /define-data-property/1.1.4:
+ dependencies:
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ gopd: 1.0.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==
+ /define-properties/1.2.1:
+ dependencies:
+ define-data-property: 1.1.4
+ has-property-descriptors: 1.0.2
+ object-keys: 1.1.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==
+ /define-property/0.2.5:
+ dependencies:
+ is-descriptor: 0.1.7
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==
+ /define-property/1.0.0:
+ dependencies:
+ is-descriptor: 1.0.3
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==
+ /define-property/2.0.2:
+ dependencies:
+ is-descriptor: 1.0.3
+ isobject: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
+ /del/4.1.1:
+ dependencies:
+ '@types/glob': 7.2.0
+ globby: 6.1.0
+ is-path-cwd: 2.2.0
+ is-path-in-cwd: 2.1.0
+ p-map: 2.1.0
+ pify: 4.0.1
+ rimraf: 2.7.1
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==
+ /delayed-stream/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ resolution:
+ integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==
+ /depd/1.1.2:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==
+ /depd/2.0.0:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
+ /dequal/2.0.3:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==
+ /des.js/1.1.0:
+ dependencies:
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==
+ /destroy/1.2.0:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ npm: 1.2.8000 || >= 1.4.16
+ resolution:
+ integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==
+ /detect-newline/3.1.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
+ /detect-node/2.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==
+ /detect-port-alt/1.1.6:
+ dependencies:
+ address: 1.1.2
+ debug: 2.6.9
+ dev: true
+ engines:
+ node: '>= 4.2.1'
+ hasBin: true
+ resolution:
+ integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==
+ /diff-sequences/26.6.2:
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==
+ /diff-sequences/29.6.3:
+ dev: false
+ engines:
+ node: ^14.15.0 || ^16.10.0 || >=18.0.0
+ resolution:
+ integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==
+ /diffie-hellman/5.0.3:
+ dependencies:
+ bn.js: 4.12.0
+ miller-rabin: 4.0.1
+ randombytes: 2.1.0
+ dev: true
+ resolution:
+ integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
+ /dir-glob/3.0.1:
+ dependencies:
+ path-type: 4.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
+ /dns-equal/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==
+ /dns-packet/1.3.4:
+ dependencies:
+ ip: 1.1.9
+ safe-buffer: 5.2.1
+ dev: true
+ resolution:
+ integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==
+ /dns-txt/2.0.2:
+ dependencies:
+ buffer-indexof: 1.1.1
+ dev: true
+ resolution:
+ integrity: sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==
+ /doctrine/2.1.0:
+ dependencies:
+ esutils: 2.0.3
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
+ /doctrine/3.0.0:
+ dependencies:
+ esutils: 2.0.3
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
+ /dom-accessibility-api/0.5.16:
+ dev: false
+ resolution:
+ integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==
+ /dom-converter/0.2.0:
+ dependencies:
+ utila: 0.4.0
+ dev: true
+ resolution:
+ integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==
+ /dom-serializer/0.2.2:
+ dependencies:
+ domelementtype: 2.3.0
+ entities: 2.2.0
+ dev: true
+ resolution:
+ integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
+ /dom-serializer/1.4.1:
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+ entities: 2.2.0
+ dev: true
+ resolution:
+ integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==
+ /domain-browser/1.2.0:
+ dev: true
+ engines:
+ node: '>=0.4'
+ npm: '>=1.2'
+ resolution:
+ integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
+ /domelementtype/1.3.1:
+ dev: true
+ resolution:
+ integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
+ /domelementtype/2.3.0:
+ dev: true
+ resolution:
+ integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==
+ /domexception/2.0.1:
+ dependencies:
+ webidl-conversions: 5.0.0
+ deprecated: Use your platform's native DOMException instead
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==
+ /domhandler/4.3.1:
+ dependencies:
+ domelementtype: 2.3.0
+ dev: true
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==
+ /domutils/1.7.0:
+ dependencies:
+ dom-serializer: 0.2.2
+ domelementtype: 1.3.1
+ dev: true
+ resolution:
+ integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==
+ /domutils/2.8.0:
+ dependencies:
+ dom-serializer: 1.4.1
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+ dev: true
+ resolution:
+ integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==
+ /dot-case/3.0.4:
+ dependencies:
+ no-case: 3.0.4
+ tslib: 2.6.2
+ dev: true
+ resolution:
+ integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==
+ /dot-prop/5.3.0:
+ dependencies:
+ is-obj: 2.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==
+ /dotenv-expand/5.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==
+ /dotenv/8.2.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==
+ /duplexer/0.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
+ /duplexify/3.7.1:
+ dependencies:
+ end-of-stream: 1.4.4
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ stream-shift: 1.0.3
+ dev: true
+ resolution:
+ integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==
+ /ee-first/1.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
+ /ejs/2.7.4:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ requiresBuild: true
+ resolution:
+ integrity: sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==
+ /electron-to-chromium/1.4.783:
+ dev: true
+ resolution:
+ integrity: sha512-bT0jEz/Xz1fahQpbZ1D7LgmPYZ3iHVY39NcWWro1+hA2IvjiPeaXtfSqrQ+nXjApMvQRE2ASt1itSLRrebHMRQ==
+ /elliptic/6.5.5:
+ dependencies:
+ bn.js: 4.12.0
+ brorand: 1.1.0
+ hash.js: 1.1.7
+ hmac-drbg: 1.0.1
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ minimalistic-crypto-utils: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==
+ /emittery/0.7.2:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==
+ /emoji-regex/7.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
+ /emoji-regex/8.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
+ /emoji-regex/9.2.2:
+ dev: true
+ resolution:
+ integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
+ /emojis-list/3.0.0:
+ dev: true
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
+ /encodeurl/1.0.2:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==
+ /end-of-stream/1.4.4:
+ dependencies:
+ once: 1.4.0
+ dev: true
+ resolution:
+ integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
+ /enhanced-resolve/4.5.0:
+ dependencies:
+ graceful-fs: 4.2.11
+ memory-fs: 0.5.0
+ tapable: 1.1.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==
+ /enquirer/2.4.1:
+ dependencies:
+ ansi-colors: 4.1.3
+ strip-ansi: 6.0.1
+ dev: true
+ engines:
+ node: '>=8.6'
+ resolution:
+ integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==
+ /entities/2.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==
+ /errno/0.1.8:
+ dependencies:
+ prr: 1.0.1
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==
+ /error-ex/1.3.2:
+ dependencies:
+ is-arrayish: 0.2.1
+ dev: true
+ resolution:
+ integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
+ /error-stack-parser/2.1.4:
+ dependencies:
+ stackframe: 1.3.4
+ dev: true
+ resolution:
+ integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==
+ /es-abstract/1.23.3:
+ dependencies:
+ array-buffer-byte-length: 1.0.1
+ arraybuffer.prototype.slice: 1.0.3
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ data-view-buffer: 1.0.1
+ data-view-byte-length: 1.0.1
+ data-view-byte-offset: 1.0.0
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ es-set-tostringtag: 2.0.3
+ es-to-primitive: 1.2.1
+ function.prototype.name: 1.1.6
+ get-intrinsic: 1.2.4
+ get-symbol-description: 1.0.2
+ globalthis: 1.0.4
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.2
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
+ hasown: 2.0.2
+ internal-slot: 1.0.7
+ is-array-buffer: 3.0.4
+ is-callable: 1.2.7
+ is-data-view: 1.0.1
+ is-negative-zero: 2.0.3
+ is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.3
+ is-string: 1.0.7
+ is-typed-array: 1.1.13
+ is-weakref: 1.0.2
+ object-inspect: 1.13.1
+ object-keys: 1.1.1
+ object.assign: 4.1.5
+ regexp.prototype.flags: 1.5.2
+ safe-array-concat: 1.1.2
+ safe-regex-test: 1.0.3
+ string.prototype.trim: 1.2.9
+ string.prototype.trimend: 1.0.8
+ string.prototype.trimstart: 1.0.8
+ typed-array-buffer: 1.0.2
+ typed-array-byte-length: 1.0.1
+ typed-array-byte-offset: 1.0.2
+ typed-array-length: 1.0.6
+ unbox-primitive: 1.0.2
+ which-typed-array: 1.1.15
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==
+ /es-array-method-boxes-properly/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==
+ /es-define-property/1.0.0:
+ dependencies:
+ get-intrinsic: 1.2.4
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==
+ /es-errors/1.3.0:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==
+ /es-iterator-helpers/1.0.19:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ es-set-tostringtag: 2.0.3
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ globalthis: 1.0.4
+ has-property-descriptors: 1.0.2
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
+ internal-slot: 1.0.7
+ iterator.prototype: 1.1.2
+ safe-array-concat: 1.1.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==
+ /es-object-atoms/1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==
+ /es-set-tostringtag/2.0.3:
+ dependencies:
+ get-intrinsic: 1.2.4
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==
+ /es-shim-unscopables/1.0.2:
+ dependencies:
+ hasown: 2.0.2
+ dev: true
+ resolution:
+ integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==
+ /es-to-primitive/1.2.1:
+ dependencies:
+ is-callable: 1.2.7
+ is-date-object: 1.0.5
+ is-symbol: 1.0.4
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
+ /es5-ext/0.10.64:
+ dependencies:
+ es6-iterator: 2.0.3
+ es6-symbol: 3.1.4
+ esniff: 2.0.1
+ next-tick: 1.1.0
+ dev: true
+ engines:
+ node: '>=0.10'
+ requiresBuild: true
+ resolution:
+ integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==
+ /es6-iterator/2.0.3:
+ dependencies:
+ d: 1.0.2
+ es5-ext: 0.10.64
+ es6-symbol: 3.1.4
+ dev: true
+ resolution:
+ integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==
+ /es6-symbol/3.1.4:
+ dependencies:
+ d: 1.0.2
+ ext: 1.7.0
+ dev: true
+ engines:
+ node: '>=0.12'
+ resolution:
+ integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==
+ /escalade/3.1.2:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==
+ /escape-html/1.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==
+ /escape-string-regexp/1.0.5:
+ engines:
+ node: '>=0.8.0'
+ resolution:
+ integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
+ /escape-string-regexp/2.0.0:
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
+ /escape-string-regexp/4.0.0:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
+ /escodegen/1.14.3:
+ dependencies:
+ esprima: 4.0.1
+ estraverse: 4.3.0
+ esutils: 2.0.3
+ optionator: 0.8.3
+ dev: true
+ engines:
+ node: '>=4.0'
+ hasBin: true
+ optionalDependencies:
+ source-map: 0.6.1
+ resolution:
+ integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
+ /escodegen/2.1.0:
+ dependencies:
+ esprima: 4.0.1
+ estraverse: 5.3.0
+ esutils: 2.0.3
+ dev: true
+ engines:
+ node: '>=6.0'
+ hasBin: true
+ optionalDependencies:
+ source-map: 0.6.1
+ resolution:
+ integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==
+ /eslint-config-airbnb-base/14.2.1:
+ dependencies:
+ confusing-browser-globals: 1.0.11
+ object.assign: 4.1.5
+ object.entries: 1.1.8
+ dev: true
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ eslint: ^5.16.0 || ^6.8.0 || ^7.2.0
+ eslint-plugin-import: ^2.22.1
+ resolution:
+ integrity: sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==
+ /eslint-config-airbnb/18.2.1:
+ dependencies:
+ eslint-config-airbnb-base: 14.2.1
+ object.assign: 4.1.5
+ object.entries: 1.1.8
+ dev: true
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ eslint: ^5.16.0 || ^6.8.0 || ^7.2.0
+ eslint-plugin-import: ^2.22.1
+ eslint-plugin-jsx-a11y: ^6.4.1
+ eslint-plugin-react: ^7.21.5
+ eslint-plugin-react-hooks: ^4 || ^3 || ^2.3.0 || ^1.7.0
+ resolution:
+ integrity: sha512-glZNDEZ36VdlZWoxn/bUR1r/sdFKPd1mHPbqUtkctgNG4yT2DLLtJ3D+yCV+jzZCc2V1nBVkmdknOJBZ5Hc0fg==
+ /eslint-config-prettier/8.1.0:
+ dev: true
+ hasBin: true
+ peerDependencies:
+ eslint: '>=7.0.0'
+ resolution:
+ integrity: sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==
+ /eslint-config-react-app/6.0.0_4798a6c50332b96981ea5a73bef4b3a3:
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 4.33.0_2951ba233cd46bb4e0f2f0a3f7fe108e
+ '@typescript-eslint/parser': 4.33.0_eslint@7.32.0
+ babel-eslint: 10.1.0_eslint@7.32.0
+ confusing-browser-globals: 1.0.11
+ eslint: 7.32.0
+ eslint-plugin-flowtype: 5.10.0_eslint@7.32.0
+ eslint-plugin-import: 2.29.1_eslint@7.32.0
+ eslint-plugin-jest: 24.7.0_d3b4c2d4ac51f4275548d5d796aee5d5
+ eslint-plugin-jsx-a11y: 6.8.0_eslint@7.32.0
+ eslint-plugin-react: 7.34.1_eslint@7.32.0
+ eslint-plugin-react-hooks: 4.6.2_eslint@7.32.0
+ eslint-plugin-testing-library: 3.10.2_eslint@7.32.0
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ peerDependencies:
+ '@typescript-eslint/eslint-plugin': ^4.0.0
+ '@typescript-eslint/parser': ^4.0.0
+ babel-eslint: ^10.0.0
+ eslint: ^7.5.0
+ eslint-plugin-flowtype: ^5.2.0
+ eslint-plugin-import: ^2.22.0
+ eslint-plugin-jest: ^24.0.0
+ eslint-plugin-jsx-a11y: ^6.3.1
+ eslint-plugin-react: ^7.20.3
+ eslint-plugin-react-hooks: ^4.0.8
+ eslint-plugin-testing-library: ^3.9.0
+ peerDependenciesMeta:
+ eslint-plugin-jest:
+ optional: true
+ eslint-plugin-testing-library:
+ optional: true
+ resolution:
+ integrity: sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==
+ /eslint-import-resolver-node/0.3.9:
+ dependencies:
+ debug: 3.2.7
+ is-core-module: 2.13.1
+ resolve: 1.22.8
+ dev: true
+ resolution:
+ integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==
+ /eslint-module-utils/2.8.1_eslint@7.32.0:
+ dependencies:
+ debug: 3.2.7
+ eslint: 7.32.0
+ dev: true
+ engines:
+ node: '>=4'
+ peerDependencies:
+ eslint: '*'
+ peerDependenciesMeta:
+ eslint:
+ optional: true
+ resolution:
+ integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==
+ /eslint-plugin-flowtype/5.10.0_eslint@7.32.0:
+ dependencies:
+ eslint: 7.32.0
+ lodash: 4.17.21
+ string-natural-compare: 3.0.1
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ peerDependencies:
+ eslint: ^7.1.0
+ resolution:
+ integrity: sha512-vcz32f+7TP+kvTUyMXZmCnNujBQZDNmcqPImw8b9PZ+16w1Qdm6ryRuYZYVaG9xRqqmAPr2Cs9FAX5gN+x/bjw==
+ /eslint-plugin-import/2.29.1_eslint@7.32.0:
+ dependencies:
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
+ debug: 3.2.7
+ doctrine: 2.1.0
+ eslint: 7.32.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.1_eslint@7.32.0
+ hasown: 2.0.2
+ is-core-module: 2.13.1
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
+ semver: 6.3.1
+ tsconfig-paths: 3.15.0
+ dev: true
+ engines:
+ node: '>=4'
+ peerDependencies:
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ resolution:
+ integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==
+ /eslint-plugin-jest/24.7.0_d3b4c2d4ac51f4275548d5d796aee5d5:
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 4.33.0_2951ba233cd46bb4e0f2f0a3f7fe108e
+ '@typescript-eslint/experimental-utils': 4.33.0_eslint@7.32.0
+ eslint: 7.32.0
+ dev: true
+ engines:
+ node: '>=10'
+ peerDependencies:
+ '@typescript-eslint/eslint-plugin': '>= 4'
+ eslint: '>=5'
+ peerDependenciesMeta:
+ '@typescript-eslint/eslint-plugin':
+ optional: true
+ resolution:
+ integrity: sha512-wUxdF2bAZiYSKBclsUMrYHH6WxiBreNjyDxbRv345TIvPeoCEgPNEn3Sa+ZrSqsf1Dl9SqqSREXMHExlMMu1DA==
+ /eslint-plugin-jsx-a11y/6.8.0_eslint@7.32.0:
+ dependencies:
+ '@babel/runtime': 7.24.6
+ aria-query: 5.3.0
+ array-includes: 3.1.8
+ array.prototype.flatmap: 1.3.2
+ ast-types-flow: 0.0.8
+ axe-core: 4.7.0
+ axobject-query: 3.2.1
+ damerau-levenshtein: 1.0.8
+ emoji-regex: 9.2.2
+ es-iterator-helpers: 1.0.19
+ eslint: 7.32.0
+ hasown: 2.0.2
+ jsx-ast-utils: 3.3.5
+ language-tags: 1.0.9
+ minimatch: 3.1.2
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
+ dev: true
+ engines:
+ node: '>=4.0'
+ peerDependencies:
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ resolution:
+ integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==
+ /eslint-plugin-prettier/3.3.1_a5f306c245f9405bc973aa159985476e:
+ dependencies:
+ eslint-config-prettier: 8.1.0
+ prettier: 2.2.1
+ prettier-linter-helpers: 1.0.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ peerDependencies:
+ eslint: '>=5.0.0'
+ eslint-config-prettier: '*'
+ prettier: '>=1.13.0'
+ peerDependenciesMeta:
+ eslint-config-prettier:
+ optional: true
+ resolution:
+ integrity: sha512-Rq3jkcFY8RYeQLgk2cCwuc0P7SEFwDravPhsJZOQ5N4YI4DSg50NyqJ/9gdZHzQlHf8MvafSesbNJCcP/FF6pQ==
+ /eslint-plugin-react-hooks/4.6.2_eslint@7.32.0:
+ dependencies:
+ eslint: 7.32.0
+ dev: true
+ engines:
+ node: '>=10'
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
+ resolution:
+ integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==
+ /eslint-plugin-react/7.34.1_eslint@7.32.0:
+ dependencies:
+ array-includes: 3.1.8
+ array.prototype.findlast: 1.2.5
+ array.prototype.flatmap: 1.3.2
+ array.prototype.toreversed: 1.1.2
+ array.prototype.tosorted: 1.1.3
+ doctrine: 2.1.0
+ es-iterator-helpers: 1.0.19
+ eslint: 7.32.0
+ estraverse: 5.3.0
+ jsx-ast-utils: 3.3.5
+ minimatch: 3.1.2
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
+ object.hasown: 1.1.4
+ object.values: 1.2.0
+ prop-types: 15.8.1
+ resolve: 2.0.0-next.5
+ semver: 6.3.1
+ string.prototype.matchall: 4.0.11
+ dev: true
+ engines:
+ node: '>=4'
+ peerDependencies:
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ resolution:
+ integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==
+ /eslint-plugin-testing-library/3.10.2_eslint@7.32.0:
+ dependencies:
+ '@typescript-eslint/experimental-utils': 3.10.1_eslint@7.32.0
+ eslint: 7.32.0
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ npm: '>=6'
+ peerDependencies:
+ eslint: ^5 || ^6 || ^7
+ resolution:
+ integrity: sha512-WAmOCt7EbF1XM8XfbCKAEzAPnShkNSwcIsAD2jHdsMUT9mZJPjLCG7pMzbcC8kK366NOuGip8HKLDC+Xk4yIdA==
+ /eslint-scope/4.0.3:
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 4.3.0
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
+ /eslint-scope/5.1.1:
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 4.3.0
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ resolution:
+ integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
+ /eslint-utils/2.1.0:
+ dependencies:
+ eslint-visitor-keys: 1.3.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
+ /eslint-utils/3.0.0_eslint@7.32.0:
+ dependencies:
+ eslint: 7.32.0
+ eslint-visitor-keys: 2.1.0
+ dev: true
+ engines:
+ node: ^10.0.0 || ^12.0.0 || >= 14.0.0
+ peerDependencies:
+ eslint: '>=5'
+ resolution:
+ integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
+ /eslint-visitor-keys/1.3.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
+ /eslint-visitor-keys/2.1.0:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
+ /eslint-webpack-plugin/2.7.0_eslint@7.32.0+webpack@4.44.2:
+ dependencies:
+ '@types/eslint': 7.29.0
+ arrify: 2.0.1
+ eslint: 7.32.0
+ jest-worker: 27.5.1
+ micromatch: 4.0.7
+ normalize-path: 3.0.0
+ schema-utils: 3.3.0
+ webpack: 4.44.2
+ dev: true
+ engines:
+ node: '>= 10.13.0'
+ peerDependencies:
+ eslint: ^7.0.0 || ^8.0.0
+ webpack: ^4.0.0 || ^5.0.0
+ resolution:
+ integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==
+ /eslint/7.32.0:
+ dependencies:
+ '@babel/code-frame': 7.12.11
+ '@eslint/eslintrc': 0.4.3
+ '@humanwhocodes/config-array': 0.5.0
+ ajv: 6.12.6
+ chalk: 4.1.0
+ cross-spawn: 7.0.3
+ debug: 4.3.4
+ doctrine: 3.0.0
+ enquirer: 2.4.1
+ escape-string-regexp: 4.0.0
+ eslint-scope: 5.1.1
+ eslint-utils: 2.1.0
+ eslint-visitor-keys: 2.1.0
+ espree: 7.3.1
+ esquery: 1.5.0
+ esutils: 2.0.3
+ fast-deep-equal: 3.1.3
+ file-entry-cache: 6.0.1
+ functional-red-black-tree: 1.0.1
+ glob-parent: 5.1.2
+ globals: 13.24.0
+ ignore: 4.0.6
+ import-fresh: 3.3.0
+ imurmurhash: 0.1.4
+ is-glob: 4.0.3
+ js-yaml: 3.14.1
+ json-stable-stringify-without-jsonify: 1.0.1
+ levn: 0.4.1
+ lodash.merge: 4.6.2
+ minimatch: 3.1.2
+ natural-compare: 1.4.0
+ optionator: 0.9.4
+ progress: 2.0.3
+ regexpp: 3.2.0
+ semver: 7.6.2
+ strip-ansi: 6.0.1
+ strip-json-comments: 3.1.1
+ table: 6.8.2
+ text-table: 0.2.0
+ v8-compile-cache: 2.4.0
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ hasBin: true
+ resolution:
+ integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==
+ /esniff/2.0.1:
+ dependencies:
+ d: 1.0.2
+ es5-ext: 0.10.64
+ event-emitter: 0.3.5
+ type: 2.7.2
+ dev: true
+ engines:
+ node: '>=0.10'
+ resolution:
+ integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==
+ /espree/7.3.1:
+ dependencies:
+ acorn: 7.4.1
+ acorn-jsx: 5.3.2_acorn@7.4.1
+ eslint-visitor-keys: 1.3.0
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ resolution:
+ integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
+ /esprima/1.2.2:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==
+ /esprima/4.0.1:
+ dev: true
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
+ /esquery/1.5.0:
+ dependencies:
+ estraverse: 5.3.0
+ dev: true
+ engines:
+ node: '>=0.10'
+ resolution:
+ integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==
+ /esrecurse/4.3.0:
+ dependencies:
+ estraverse: 5.3.0
+ dev: true
+ engines:
+ node: '>=4.0'
+ resolution:
+ integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
+ /estraverse/4.3.0:
+ dev: true
+ engines:
+ node: '>=4.0'
+ resolution:
+ integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
+ /estraverse/5.3.0:
+ dev: true
+ engines:
+ node: '>=4.0'
+ resolution:
+ integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
+ /estree-walker/0.6.1:
+ dev: true
+ resolution:
+ integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==
+ /estree-walker/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==
+ /esutils/2.0.3:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
+ /etag/1.8.1:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==
+ /event-emitter/0.3.5:
+ dependencies:
+ d: 1.0.2
+ es5-ext: 0.10.64
+ dev: true
+ resolution:
+ integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==
+ /eventemitter3/4.0.7:
+ dev: true
+ resolution:
+ integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
+ /events/3.3.0:
+ dev: true
+ engines:
+ node: '>=0.8.x'
+ resolution:
+ integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
+ /eventsource/2.0.2:
+ dev: true
+ engines:
+ node: '>=12.0.0'
+ resolution:
+ integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==
+ /evp_bytestokey/1.0.3:
+ dependencies:
+ md5.js: 1.3.5
+ safe-buffer: 5.2.1
+ dev: true
+ resolution:
+ integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
+ /exec-sh/0.3.6:
+ dev: true
+ resolution:
+ integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==
+ /execa/1.0.0:
+ dependencies:
+ cross-spawn: 6.0.5
+ get-stream: 4.1.0
+ is-stream: 1.1.0
+ npm-run-path: 2.0.2
+ p-finally: 1.0.0
+ signal-exit: 3.0.7
+ strip-eof: 1.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==
+ /execa/4.1.0:
+ dependencies:
+ cross-spawn: 7.0.3
+ get-stream: 5.2.0
+ human-signals: 1.1.1
+ is-stream: 2.0.1
+ merge-stream: 2.0.0
+ npm-run-path: 4.0.1
+ onetime: 5.1.2
+ signal-exit: 3.0.7
+ strip-final-newline: 2.0.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==
+ /exit/0.1.2:
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==
+ /expand-brackets/2.1.4:
+ dependencies:
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ posix-character-classes: 0.1.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==
+ /expect/26.6.2:
+ dependencies:
+ '@jest/types': 26.6.2
+ ansi-styles: 4.3.0
+ jest-get-type: 26.3.0
+ jest-matcher-utils: 26.6.2
+ jest-message-util: 26.6.2
+ jest-regex-util: 26.0.0
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==
+ /expect/29.7.0:
+ dependencies:
+ '@jest/expect-utils': 29.7.0
+ jest-get-type: 29.6.3
+ jest-matcher-utils: 29.7.0
+ jest-message-util: 29.7.0
+ jest-util: 29.7.0
+ dev: false
+ engines:
+ node: ^14.15.0 || ^16.10.0 || >=18.0.0
+ resolution:
+ integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==
+ /express/4.19.2:
+ dependencies:
+ accepts: 1.3.8
+ array-flatten: 1.1.1
+ body-parser: 1.20.2
+ content-disposition: 0.5.4
+ content-type: 1.0.5
+ cookie: 0.6.0
+ cookie-signature: 1.0.6
+ debug: 2.6.9
+ depd: 2.0.0
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 1.2.0
+ fresh: 0.5.2
+ http-errors: 2.0.0
+ merge-descriptors: 1.0.1
+ methods: 1.1.2
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ path-to-regexp: 0.1.7
+ proxy-addr: 2.0.7
+ qs: 6.11.0
+ range-parser: 1.2.1
+ safe-buffer: 5.2.1
+ send: 0.18.0
+ serve-static: 1.15.0
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
+ type-is: 1.6.18
+ utils-merge: 1.0.1
+ vary: 1.1.2
+ dev: true
+ engines:
+ node: '>= 0.10.0'
+ resolution:
+ integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==
+ /ext/1.7.0:
+ dependencies:
+ type: 2.7.2
+ dev: true
+ resolution:
+ integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==
+ /extend-shallow/2.0.1:
+ dependencies:
+ is-extendable: 0.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==
+ /extend-shallow/3.0.2:
+ dependencies:
+ assign-symbols: 1.0.0
+ is-extendable: 1.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==
+ /extglob/2.0.4:
+ dependencies:
+ array-unique: 0.3.2
+ define-property: 1.0.0
+ expand-brackets: 2.1.4
+ extend-shallow: 2.0.1
+ fragment-cache: 0.2.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
+ /fast-deep-equal/3.1.3:
+ dev: true
+ resolution:
+ integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
+ /fast-diff/1.3.0:
+ dev: true
+ resolution:
+ integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==
+ /fast-glob/3.3.2:
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ '@nodelib/fs.walk': 1.2.8
+ glob-parent: 5.1.2
+ merge2: 1.4.1
+ micromatch: 4.0.7
+ dev: true
+ engines:
+ node: '>=8.6.0'
+ resolution:
+ integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
+ /fast-json-stable-stringify/2.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
+ /fast-levenshtein/2.0.6:
+ dev: true
+ resolution:
+ integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
+ /fastq/1.17.1:
+ dependencies:
+ reusify: 1.0.4
+ dev: true
+ resolution:
+ integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==
+ /faye-websocket/0.11.4:
+ dependencies:
+ websocket-driver: 0.7.4
+ dev: true
+ engines:
+ node: '>=0.8.0'
+ resolution:
+ integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==
+ /fb-watchman/2.0.2:
+ dependencies:
+ bser: 2.1.1
+ dev: true
+ resolution:
+ integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==
+ /figgy-pudding/3.5.2:
+ deprecated: This module is no longer supported.
+ dev: true
+ resolution:
+ integrity: sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==
+ /file-entry-cache/6.0.1:
+ dependencies:
+ flat-cache: 3.2.0
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ resolution:
+ integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
+ /file-loader/6.1.1_webpack@4.44.2:
+ dependencies:
+ loader-utils: 2.0.4
+ schema-utils: 3.3.0
+ webpack: 4.44.2
+ dev: true
+ engines:
+ node: '>= 10.13.0'
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ resolution:
+ integrity: sha512-Klt8C4BjWSXYQAfhpYYkG4qHNTna4toMHEbWrI5IuVoxbU6uiDKeKAP99R8mmbJi3lvewn/jQBOgU4+NS3tDQw==
+ /file-uri-to-path/1.0.0:
+ dev: true
+ optional: true
+ resolution:
+ integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
+ /filesize/6.1.0:
+ dev: true
+ engines:
+ node: '>= 0.4.0'
+ resolution:
+ integrity: sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==
+ /fill-range/4.0.0:
+ dependencies:
+ extend-shallow: 2.0.1
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ to-regex-range: 2.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==
+ /fill-range/7.1.1:
+ dependencies:
+ to-regex-range: 5.0.1
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
+ /finalhandler/1.2.0:
+ dependencies:
+ debug: 2.6.9
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ statuses: 2.0.1
+ unpipe: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==
+ /find-cache-dir/2.1.0:
+ dependencies:
+ commondir: 1.0.1
+ make-dir: 2.1.0
+ pkg-dir: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
+ /find-cache-dir/3.3.2:
+ dependencies:
+ commondir: 1.0.1
+ make-dir: 3.1.0
+ pkg-dir: 4.2.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==
+ /find-up/3.0.0:
+ dependencies:
+ locate-path: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
+ /find-up/4.1.0:
+ dependencies:
+ locate-path: 5.0.0
+ path-exists: 4.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
+ /find-up/5.0.0:
+ dependencies:
+ locate-path: 6.0.0
+ path-exists: 4.0.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
+ /find-versions/4.0.0:
+ dependencies:
+ semver-regex: 3.1.4
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ==
+ /flat-cache/3.2.0:
+ dependencies:
+ flatted: 3.3.1
+ keyv: 4.5.4
+ rimraf: 3.0.2
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ resolution:
+ integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==
+ /flatted/3.3.1:
+ dev: true
+ resolution:
+ integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==
+ /flatten/1.0.3:
+ deprecated: flatten is deprecated in favor of utility frameworks such as lodash.
+ dev: true
+ resolution:
+ integrity: sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==
+ /flush-write-stream/1.1.1:
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ dev: true
+ resolution:
+ integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
+ /follow-redirects/1.15.6_debug@4.3.4:
+ dependencies:
+ debug: 4.3.4_supports-color@6.1.0
+ dev: true
+ engines:
+ node: '>=4.0'
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+ resolution:
+ integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==
+ /for-each/0.3.3:
+ dependencies:
+ is-callable: 1.2.7
+ dev: true
+ resolution:
+ integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==
+ /for-in/1.0.2:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==
+ /fork-ts-checker-webpack-plugin/4.1.6:
+ dependencies:
+ '@babel/code-frame': 7.10.4
+ chalk: 2.4.2
+ micromatch: 3.1.10
+ minimatch: 3.1.2
+ semver: 5.7.2
+ tapable: 1.1.3
+ worker-rpc: 0.1.1
+ dev: true
+ engines:
+ node: '>=6.11.5'
+ yarn: '>=1.0.0'
+ resolution:
+ integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==
+ /form-data/3.0.1:
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ mime-types: 2.1.35
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==
+ /forwarded/0.2.0:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==
+ /fragment-cache/0.2.1:
+ dependencies:
+ map-cache: 0.2.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==
+ /fresh/0.5.2:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==
+ /from2/2.3.0:
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ dev: true
+ resolution:
+ integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==
+ /fs-extra/7.0.1:
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: true
+ engines:
+ node: '>=6 <7 || >=8'
+ resolution:
+ integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==
+ /fs-extra/8.1.0:
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: true
+ engines:
+ node: '>=6 <7 || >=8'
+ resolution:
+ integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==
+ /fs-extra/9.1.0:
+ dependencies:
+ at-least-node: 1.0.0
+ graceful-fs: 4.2.11
+ jsonfile: 6.1.0
+ universalify: 2.0.1
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==
+ /fs-minipass/2.1.0:
+ dependencies:
+ minipass: 3.3.6
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==
+ /fs-write-stream-atomic/1.0.10:
+ dependencies:
+ graceful-fs: 4.2.11
+ iferr: 0.1.5
+ imurmurhash: 0.1.4
+ readable-stream: 2.3.8
+ deprecated: This package is no longer supported.
+ dev: true
+ resolution:
+ integrity: sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==
+ /fs.realpath/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
+ /fsevents/1.2.13:
+ dependencies:
+ bindings: 1.5.0
+ nan: 2.19.0
+ deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2
+ dev: true
+ engines:
+ node: '>= 4.0'
+ optional: true
+ os:
+ - darwin
+ requiresBuild: true
+ resolution:
+ integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==
+ /fsevents/2.3.3:
+ dev: true
+ engines:
+ node: ^8.16.0 || ^10.6.0 || >=11.0.0
+ optional: true
+ os:
+ - darwin
+ resolution:
+ integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
+ /function-bind/1.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
+ /function.prototype.name/1.1.6:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ functions-have-names: 1.2.3
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==
+ /functional-red-black-tree/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==
+ /functions-have-names/1.2.3:
+ dev: true
+ resolution:
+ integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
+ /gensync/1.0.0-beta.2:
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
+ /get-caller-file/2.0.5:
+ dev: true
+ engines:
+ node: 6.* || 8.* || >= 10.*
+ resolution:
+ integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
+ /get-intrinsic/1.2.4:
+ dependencies:
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
+ hasown: 2.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==
+ /get-own-enumerable-property-symbols/3.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==
+ /get-package-type/0.1.0:
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ resolution:
+ integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==
+ /get-stream/4.1.0:
+ dependencies:
+ pump: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
+ /get-stream/5.2.0:
+ dependencies:
+ pump: 3.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==
+ /get-symbol-description/1.0.2:
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==
+ /get-value/2.0.6:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==
+ /glob-parent/3.1.0:
+ dependencies:
+ is-glob: 3.1.0
+ path-dirname: 1.0.2
+ dev: true
+ resolution:
+ integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==
+ /glob-parent/5.1.2:
+ dependencies:
+ is-glob: 4.0.3
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
+ /glob/7.2.3:
+ dependencies:
+ fs.realpath: 1.0.0
+ inflight: 1.0.6
+ inherits: 2.0.4
+ minimatch: 3.1.2
+ once: 1.4.0
+ path-is-absolute: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
+ /global-modules/2.0.0:
+ dependencies:
+ global-prefix: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==
+ /global-prefix/3.0.0:
+ dependencies:
+ ini: 1.3.8
+ kind-of: 6.0.3
+ which: 1.3.1
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==
+ /globals/11.12.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
+ /globals/13.24.0:
+ dependencies:
+ type-fest: 0.20.2
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==
+ /globalthis/1.0.4:
+ dependencies:
+ define-properties: 1.2.1
+ gopd: 1.0.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==
+ /globby/11.0.1:
+ dependencies:
+ array-union: 2.1.0
+ dir-glob: 3.0.1
+ fast-glob: 3.3.2
+ ignore: 5.3.1
+ merge2: 1.4.1
+ slash: 3.0.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==
+ /globby/11.1.0:
+ dependencies:
+ array-union: 2.1.0
+ dir-glob: 3.0.1
+ fast-glob: 3.3.2
+ ignore: 5.3.1
+ merge2: 1.4.1
+ slash: 3.0.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
+ /globby/6.1.0:
+ dependencies:
+ array-union: 1.0.2
+ glob: 7.2.3
+ object-assign: 4.1.1
+ pify: 2.3.0
+ pinkie-promise: 2.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==
+ /gopd/1.0.1:
+ dependencies:
+ get-intrinsic: 1.2.4
+ dev: true
+ resolution:
+ integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
+ /graceful-fs/4.2.11:
+ resolution:
+ integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
+ /growly/1.3.0:
+ dev: true
+ optional: true
+ resolution:
+ integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==
+ /gzip-size/5.1.1:
+ dependencies:
+ duplexer: 0.1.2
+ pify: 4.0.1
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==
+ /handle-thing/2.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==
+ /harmony-reflect/1.6.2:
+ dev: true
+ resolution:
+ integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==
+ /has-bigints/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
+ /has-flag/3.0.0:
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
+ /has-flag/4.0.0:
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
+ /has-property-descriptors/1.0.2:
+ dependencies:
+ es-define-property: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==
+ /has-proto/1.0.3:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==
+ /has-symbols/1.0.3:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
+ /has-tostringtag/1.0.2:
+ dependencies:
+ has-symbols: 1.0.3
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==
+ /has-value/0.3.1:
+ dependencies:
+ get-value: 2.0.6
+ has-values: 0.1.4
+ isobject: 2.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==
+ /has-value/1.0.0:
+ dependencies:
+ get-value: 2.0.6
+ has-values: 1.0.0
+ isobject: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==
+ /has-values/0.1.4:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==
+ /has-values/1.0.0:
+ dependencies:
+ is-number: 3.0.0
+ kind-of: 4.0.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==
+ /has/1.0.4:
+ dev: true
+ engines:
+ node: '>= 0.4.0'
+ resolution:
+ integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==
+ /hash-base/3.0.4:
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==
+ /hash-base/3.1.0:
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+ safe-buffer: 5.2.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==
+ /hash.js/1.1.7:
+ dependencies:
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
+ /hasown/2.0.2:
+ dependencies:
+ function-bind: 1.1.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==
+ /he/1.2.0:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
+ /hex-color-regex/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
+ /hmac-drbg/1.0.1:
+ dependencies:
+ hash.js: 1.1.7
+ minimalistic-assert: 1.0.1
+ minimalistic-crypto-utils: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==
+ /hoopy/0.1.4:
+ dev: true
+ engines:
+ node: '>= 6.0.0'
+ resolution:
+ integrity: sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==
+ /hosted-git-info/2.8.9:
+ dev: true
+ resolution:
+ integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
+ /hpack.js/2.1.6:
+ dependencies:
+ inherits: 2.0.4
+ obuf: 1.1.2
+ readable-stream: 2.3.8
+ wbuf: 1.7.3
+ dev: true
+ resolution:
+ integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==
+ /hsl-regex/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==
+ /hsla-regex/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==
+ /html-encoding-sniffer/2.0.1:
+ dependencies:
+ whatwg-encoding: 1.0.5
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==
+ /html-entities/1.4.0:
+ dev: true
+ resolution:
+ integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==
+ /html-escaper/2.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
+ /html-minifier-terser/5.1.1:
+ dependencies:
+ camel-case: 4.1.2
+ clean-css: 4.2.4
+ commander: 4.1.1
+ he: 1.2.0
+ param-case: 3.0.4
+ relateurl: 0.2.7
+ terser: 4.8.1
+ dev: true
+ engines:
+ node: '>=6'
+ hasBin: true
+ resolution:
+ integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==
+ /html-webpack-plugin/4.5.0_webpack@4.44.2:
+ dependencies:
+ '@types/html-minifier-terser': 5.1.2
+ '@types/tapable': 1.0.12
+ '@types/webpack': 4.41.38
+ html-minifier-terser: 5.1.1
+ loader-utils: 1.4.2
+ lodash: 4.17.21
+ pretty-error: 2.1.2
+ tapable: 1.1.3
+ util.promisify: 1.0.0
+ webpack: 4.44.2
+ dev: true
+ engines:
+ node: '>=6.9'
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ resolution:
+ integrity: sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw==
+ /htmlparser2/6.1.0:
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+ domutils: 2.8.0
+ entities: 2.2.0
+ dev: true
+ resolution:
+ integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==
+ /http-deceiver/1.2.7:
+ dev: true
+ resolution:
+ integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==
+ /http-errors/1.6.3:
+ dependencies:
+ depd: 1.1.2
+ inherits: 2.0.3
+ setprototypeof: 1.1.0
+ statuses: 1.5.0
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==
+ /http-errors/2.0.0:
+ dependencies:
+ depd: 2.0.0
+ inherits: 2.0.4
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
+ toidentifier: 1.0.1
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==
+ /http-parser-js/0.5.8:
+ dev: true
+ resolution:
+ integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==
+ /http-proxy-agent/4.0.1:
+ dependencies:
+ '@tootallnate/once': 1.1.2
+ agent-base: 6.0.2
+ debug: 4.3.4
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==
+ /http-proxy-middleware/0.19.1_debug@4.3.4:
+ dependencies:
+ http-proxy: 1.18.1_debug@4.3.4
+ is-glob: 4.0.3
+ lodash: 4.17.21
+ micromatch: 3.1.10
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ peerDependencies:
+ debug: '*'
+ resolution:
+ integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==
+ /http-proxy/1.18.1_debug@4.3.4:
+ dependencies:
+ eventemitter3: 4.0.7
+ follow-redirects: 1.15.6_debug@4.3.4
+ requires-port: 1.0.0
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ peerDependencies:
+ debug: '*'
+ resolution:
+ integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==
+ /https-browserify/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==
+ /https-proxy-agent/5.0.1:
+ dependencies:
+ agent-base: 6.0.2
+ debug: 4.3.4
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==
+ /human-signals/1.1.1:
+ dev: true
+ engines:
+ node: '>=8.12.0'
+ resolution:
+ integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
+ /husky/4.3.8:
+ dependencies:
+ chalk: 4.1.0
+ ci-info: 2.0.0
+ compare-versions: 3.6.0
+ cosmiconfig: 7.1.0
+ find-versions: 4.0.0
+ opencollective-postinstall: 2.0.3
+ pkg-dir: 5.0.0
+ please-upgrade-node: 3.2.0
+ slash: 3.0.0
+ which-pm-runs: 1.1.0
+ dev: true
+ engines:
+ node: '>=10'
+ hasBin: true
+ requiresBuild: true
+ resolution:
+ integrity: sha512-LCqqsB0PzJQ/AlCgfrfzRe3e3+NvmefAdKQhRYpxS4u6clblBoDdzzvHi8fmxKRzvMxPY/1WZWzomPZww0Anow==
+ /iconv-lite/0.4.24:
+ dependencies:
+ safer-buffer: 2.1.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
+ /icss-utils/4.1.1:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==
+ /identity-obj-proxy/3.0.0:
+ dependencies:
+ harmony-reflect: 1.6.2
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==
+ /ieee754/1.2.1:
+ dev: true
+ resolution:
+ integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
+ /iferr/0.1.5:
+ dev: true
+ resolution:
+ integrity: sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==
+ /ignore/4.0.6:
+ dev: true
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
+ /ignore/5.3.1:
+ dev: true
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==
+ /immer/8.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==
+ /import-cwd/2.1.0:
+ dependencies:
+ import-from: 2.1.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==
+ /import-fresh/2.0.0:
+ dependencies:
+ caller-path: 2.0.0
+ resolve-from: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==
+ /import-fresh/3.3.0:
+ dependencies:
+ parent-module: 1.0.1
+ resolve-from: 4.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
+ /import-from/2.1.0:
+ dependencies:
+ resolve-from: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==
+ /import-local/2.0.0:
+ dependencies:
+ pkg-dir: 3.0.0
+ resolve-cwd: 2.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ hasBin: true
+ resolution:
+ integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==
+ /import-local/3.1.0:
+ dependencies:
+ pkg-dir: 4.2.0
+ resolve-cwd: 3.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ hasBin: true
+ resolution:
+ integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==
+ /imurmurhash/0.1.4:
+ dev: true
+ engines:
+ node: '>=0.8.19'
+ resolution:
+ integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
+ /indent-string/4.0.0:
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
+ /indexes-of/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==
+ /infer-owner/1.0.4:
+ dev: true
+ resolution:
+ integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
+ /inflight/1.0.6:
+ dependencies:
+ once: 1.4.0
+ wrappy: 1.0.2
+ deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
+ dev: true
+ resolution:
+ integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
+ /inherits/2.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==
+ /inherits/2.0.4:
+ resolution:
+ integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
+ /ini/1.3.8:
+ dev: true
+ resolution:
+ integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
+ /internal-ip/4.3.0:
+ dependencies:
+ default-gateway: 4.2.0
+ ipaddr.js: 1.9.1
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==
+ /internal-slot/1.0.7:
+ dependencies:
+ es-errors: 1.3.0
+ hasown: 2.0.2
+ side-channel: 1.0.6
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==
+ /ip-regex/2.1.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==
+ /ip/1.1.9:
+ dev: true
+ resolution:
+ integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==
+ /ipaddr.js/1.9.1:
+ dev: true
+ engines:
+ node: '>= 0.10'
+ resolution:
+ integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
+ /is-absolute-url/2.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg==
+ /is-absolute-url/3.0.3:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==
+ /is-accessor-descriptor/1.0.1:
+ dependencies:
+ hasown: 2.0.2
+ dev: true
+ engines:
+ node: '>= 0.10'
+ resolution:
+ integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==
+ /is-arguments/1.1.1:
+ dependencies:
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==
+ /is-array-buffer/3.0.4:
+ dependencies:
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==
+ /is-arrayish/0.2.1:
+ dev: true
+ resolution:
+ integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
+ /is-arrayish/0.3.2:
+ dev: true
+ resolution:
+ integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==
+ /is-async-function/2.0.0:
+ dependencies:
+ has-tostringtag: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==
+ /is-bigint/1.0.4:
+ dependencies:
+ has-bigints: 1.0.2
+ dev: true
+ resolution:
+ integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
+ /is-binary-path/1.0.1:
+ dependencies:
+ binary-extensions: 1.13.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==
+ /is-binary-path/2.1.0:
+ dependencies:
+ binary-extensions: 2.3.0
+ dev: true
+ engines:
+ node: '>=8'
+ optional: true
+ resolution:
+ integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
+ /is-boolean-object/1.1.2:
+ dependencies:
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
+ /is-buffer/1.1.6:
+ dev: true
+ resolution:
+ integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
+ /is-callable/1.2.7:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
+ /is-ci/2.0.0:
+ dependencies:
+ ci-info: 2.0.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
+ /is-color-stop/1.1.0:
+ dependencies:
+ css-color-names: 0.0.4
+ hex-color-regex: 1.1.0
+ hsl-regex: 1.0.0
+ hsla-regex: 1.0.0
+ rgb-regex: 1.0.1
+ rgba-regex: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==
+ /is-core-module/2.13.1:
+ dependencies:
+ hasown: 2.0.2
+ dev: true
+ resolution:
+ integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==
+ /is-data-descriptor/1.0.1:
+ dependencies:
+ hasown: 2.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==
+ /is-data-view/1.0.1:
+ dependencies:
+ is-typed-array: 1.1.13
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==
+ /is-date-object/1.0.5:
+ dependencies:
+ has-tostringtag: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
+ /is-descriptor/0.1.7:
+ dependencies:
+ is-accessor-descriptor: 1.0.1
+ is-data-descriptor: 1.0.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==
+ /is-descriptor/1.0.3:
+ dependencies:
+ is-accessor-descriptor: 1.0.1
+ is-data-descriptor: 1.0.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==
+ /is-directory/0.3.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==
+ /is-docker/2.2.1:
+ dev: true
+ engines:
+ node: '>=8'
+ hasBin: true
+ resolution:
+ integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==
+ /is-extendable/0.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==
+ /is-extendable/1.0.1:
+ dependencies:
+ is-plain-object: 2.0.4
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
+ /is-extglob/2.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
+ /is-finalizationregistry/1.0.2:
+ dependencies:
+ call-bind: 1.0.7
+ dev: true
+ resolution:
+ integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==
+ /is-fullwidth-code-point/2.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==
+ /is-fullwidth-code-point/3.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
+ /is-generator-fn/2.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
+ /is-generator-function/1.0.10:
+ dependencies:
+ has-tostringtag: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==
+ /is-glob/3.1.0:
+ dependencies:
+ is-extglob: 2.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==
+ /is-glob/4.0.3:
+ dependencies:
+ is-extglob: 2.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
+ /is-map/2.0.3:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==
+ /is-module/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==
+ /is-negative-zero/2.0.3:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==
+ /is-number-object/1.0.7:
+ dependencies:
+ has-tostringtag: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
+ /is-number/3.0.0:
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==
+ /is-number/7.0.0:
+ engines:
+ node: '>=0.12.0'
+ resolution:
+ integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
+ /is-obj/1.0.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==
+ /is-obj/2.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
+ /is-path-cwd/2.2.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
+ /is-path-in-cwd/2.1.0:
+ dependencies:
+ is-path-inside: 2.1.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==
+ /is-path-inside/2.1.0:
+ dependencies:
+ path-is-inside: 1.0.2
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==
+ /is-plain-obj/1.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==
+ /is-plain-object/2.0.4:
+ dependencies:
+ isobject: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
+ /is-potential-custom-element-name/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==
+ /is-regex/1.1.4:
+ dependencies:
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
+ /is-regexp/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==
+ /is-resolvable/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
+ /is-root/2.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==
+ /is-set/2.0.3:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==
+ /is-shared-array-buffer/1.0.3:
+ dependencies:
+ call-bind: 1.0.7
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==
+ /is-stream/1.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==
+ /is-stream/2.0.1:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
+ /is-string/1.0.7:
+ dependencies:
+ has-tostringtag: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
+ /is-symbol/1.0.4:
+ dependencies:
+ has-symbols: 1.0.3
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
+ /is-typed-array/1.1.13:
+ dependencies:
+ which-typed-array: 1.1.15
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==
+ /is-typedarray/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==
+ /is-unicode-supported/0.1.0:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
+ /is-weakmap/2.0.2:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==
+ /is-weakref/1.0.2:
+ dependencies:
+ call-bind: 1.0.7
+ dev: true
+ resolution:
+ integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
+ /is-weakset/2.0.3:
+ dependencies:
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==
+ /is-windows/1.0.2:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
+ /is-wsl/1.1.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==
+ /is-wsl/2.2.0:
+ dependencies:
+ is-docker: 2.2.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
+ /isarray/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==
+ /isarray/2.0.5:
+ dev: true
+ resolution:
+ integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
+ /isexe/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
+ /isobject/2.1.0:
+ dependencies:
+ isarray: 1.0.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==
+ /isobject/3.0.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==
+ /istanbul-lib-coverage/3.2.2:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==
+ /istanbul-lib-instrument/4.0.3:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@istanbuljs/schema': 0.1.3
+ istanbul-lib-coverage: 3.2.2
+ semver: 6.3.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==
+ /istanbul-lib-instrument/5.2.1:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/parser': 7.24.6
+ '@istanbuljs/schema': 0.1.3
+ istanbul-lib-coverage: 3.2.2
+ semver: 6.3.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==
+ /istanbul-lib-report/3.0.1:
+ dependencies:
+ istanbul-lib-coverage: 3.2.2
+ make-dir: 4.0.0
+ supports-color: 7.2.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==
+ /istanbul-lib-source-maps/4.0.1:
+ dependencies:
+ debug: 4.3.4
+ istanbul-lib-coverage: 3.2.2
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==
+ /istanbul-reports/3.1.7:
+ dependencies:
+ html-escaper: 2.0.2
+ istanbul-lib-report: 3.0.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==
+ /iterator.prototype/1.1.2:
+ dependencies:
+ define-properties: 1.2.1
+ get-intrinsic: 1.2.4
+ has-symbols: 1.0.3
+ reflect.getprototypeof: 1.0.6
+ set-function-name: 2.0.2
+ dev: true
+ resolution:
+ integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==
+ /jest-changed-files/26.6.2:
+ dependencies:
+ '@jest/types': 26.6.2
+ execa: 4.1.0
+ throat: 5.0.0
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==
+ /jest-circus/26.6.0:
+ dependencies:
+ '@babel/traverse': 7.24.6
+ '@jest/environment': 26.6.2
+ '@jest/test-result': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/babel__traverse': 7.20.6
+ '@types/node': 20.12.12
+ chalk: 4.1.0
+ co: 4.6.0
+ dedent: 0.7.0
+ expect: 26.6.2
+ is-generator-fn: 2.1.0
+ jest-each: 26.6.2
+ jest-matcher-utils: 26.6.2
+ jest-message-util: 26.6.2
+ jest-runner: 26.6.3
+ jest-runtime: 26.6.3
+ jest-snapshot: 26.6.2
+ jest-util: 26.6.2
+ pretty-format: 26.6.2
+ stack-utils: 2.0.6
+ throat: 5.0.0
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-L2/Y9szN6FJPWFK8kzWXwfp+FOR7xq0cUL4lIsdbIdwz3Vh6P1nrpcqOleSzr28zOtSHQNV9Z7Tl+KkuK7t5Ng==
+ /jest-cli/26.6.3:
+ dependencies:
+ '@jest/core': 26.6.3
+ '@jest/test-result': 26.6.2
+ '@jest/types': 26.6.2
+ chalk: 4.1.0
+ exit: 0.1.2
+ graceful-fs: 4.2.11
+ import-local: 3.1.0
+ is-ci: 2.0.0
+ jest-config: 26.6.3
+ jest-util: 26.6.2
+ jest-validate: 26.6.2
+ prompts: 2.4.0
+ yargs: 15.4.1
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ hasBin: true
+ resolution:
+ integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==
+ /jest-config/26.6.3:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@jest/test-sequencer': 26.6.3
+ '@jest/types': 26.6.2
+ babel-jest: 26.6.3_@babel+core@7.24.6
+ chalk: 4.1.0
+ deepmerge: 4.3.1
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ jest-environment-jsdom: 26.6.2
+ jest-environment-node: 26.6.2
+ jest-get-type: 26.3.0
+ jest-jasmine2: 26.6.3
+ jest-regex-util: 26.0.0
+ jest-resolve: 26.6.2
+ jest-util: 26.6.2
+ jest-validate: 26.6.2
+ micromatch: 4.0.7
+ pretty-format: 26.6.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ peerDependencies:
+ ts-node: '>=9.0.0'
+ peerDependenciesMeta:
+ ts-node:
+ optional: true
+ resolution:
+ integrity: sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==
+ /jest-diff/26.6.2:
+ dependencies:
+ chalk: 4.1.0
+ diff-sequences: 26.6.2
+ jest-get-type: 26.3.0
+ pretty-format: 26.6.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==
+ /jest-diff/29.7.0:
+ dependencies:
+ chalk: 4.1.0
+ diff-sequences: 29.6.3
+ jest-get-type: 29.6.3
+ pretty-format: 29.7.0
+ dev: false
+ engines:
+ node: ^14.15.0 || ^16.10.0 || >=18.0.0
+ resolution:
+ integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==
+ /jest-docblock/26.0.0:
+ dependencies:
+ detect-newline: 3.1.0
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==
+ /jest-each/26.6.2:
+ dependencies:
+ '@jest/types': 26.6.2
+ chalk: 4.1.0
+ jest-get-type: 26.3.0
+ jest-util: 26.6.2
+ pretty-format: 26.6.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==
+ /jest-environment-jsdom/26.6.2:
+ dependencies:
+ '@jest/environment': 26.6.2
+ '@jest/fake-timers': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/node': 20.12.12
+ jest-mock: 26.6.2
+ jest-util: 26.6.2
+ jsdom: 16.7.0
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==
+ /jest-environment-node/26.6.2:
+ dependencies:
+ '@jest/environment': 26.6.2
+ '@jest/fake-timers': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/node': 20.12.12
+ jest-mock: 26.6.2
+ jest-util: 26.6.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==
+ /jest-get-type/26.3.0:
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==
+ /jest-get-type/29.6.3:
+ dev: false
+ engines:
+ node: ^14.15.0 || ^16.10.0 || >=18.0.0
+ resolution:
+ integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==
+ /jest-haste-map/26.6.2:
+ dependencies:
+ '@jest/types': 26.6.2
+ '@types/graceful-fs': 4.1.9
+ '@types/node': 20.12.12
+ anymatch: 3.1.3
+ fb-watchman: 2.0.2
+ graceful-fs: 4.2.11
+ jest-regex-util: 26.0.0
+ jest-serializer: 26.6.2
+ jest-util: 26.6.2
+ jest-worker: 26.6.2
+ micromatch: 4.0.7
+ sane: 4.1.0
+ walker: 1.0.8
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ optionalDependencies:
+ fsevents: 2.3.3
+ resolution:
+ integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==
+ /jest-jasmine2/26.6.3:
+ dependencies:
+ '@babel/traverse': 7.24.6
+ '@jest/environment': 26.6.2
+ '@jest/source-map': 26.6.2
+ '@jest/test-result': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/node': 20.12.12
+ chalk: 4.1.0
+ co: 4.6.0
+ expect: 26.6.2
+ is-generator-fn: 2.1.0
+ jest-each: 26.6.2
+ jest-matcher-utils: 26.6.2
+ jest-message-util: 26.6.2
+ jest-runtime: 26.6.3
+ jest-snapshot: 26.6.2
+ jest-util: 26.6.2
+ pretty-format: 26.6.2
+ throat: 5.0.0
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==
+ /jest-leak-detector/26.6.2:
+ dependencies:
+ jest-get-type: 26.3.0
+ pretty-format: 26.6.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==
+ /jest-matcher-utils/26.6.2:
+ dependencies:
+ chalk: 4.1.0
+ jest-diff: 26.6.2
+ jest-get-type: 26.3.0
+ pretty-format: 26.6.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==
+ /jest-matcher-utils/29.7.0:
+ dependencies:
+ chalk: 4.1.0
+ jest-diff: 29.7.0
+ jest-get-type: 29.6.3
+ pretty-format: 29.7.0
+ dev: false
+ engines:
+ node: ^14.15.0 || ^16.10.0 || >=18.0.0
+ resolution:
+ integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==
+ /jest-message-util/26.6.2:
+ dependencies:
+ '@babel/code-frame': 7.24.6
+ '@jest/types': 26.6.2
+ '@types/stack-utils': 2.0.3
+ chalk: 4.1.0
+ graceful-fs: 4.2.11
+ micromatch: 4.0.7
+ pretty-format: 26.6.2
+ slash: 3.0.0
+ stack-utils: 2.0.6
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==
+ /jest-message-util/29.7.0:
+ dependencies:
+ '@babel/code-frame': 7.24.6
+ '@jest/types': 29.6.3
+ '@types/stack-utils': 2.0.3
+ chalk: 4.1.0
+ graceful-fs: 4.2.11
+ micromatch: 4.0.7
+ pretty-format: 29.7.0
+ slash: 3.0.0
+ stack-utils: 2.0.6
+ dev: false
+ engines:
+ node: ^14.15.0 || ^16.10.0 || >=18.0.0
+ resolution:
+ integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==
+ /jest-mock/26.6.2:
+ dependencies:
+ '@jest/types': 26.6.2
+ '@types/node': 20.12.12
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==
+ /jest-pnp-resolver/1.2.3_jest-resolve@26.6.0:
+ dependencies:
+ jest-resolve: 26.6.0
+ dev: true
+ engines:
+ node: '>=6'
+ peerDependencies:
+ jest-resolve: '*'
+ peerDependenciesMeta:
+ jest-resolve:
+ optional: true
+ resolution:
+ integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==
+ /jest-pnp-resolver/1.2.3_jest-resolve@26.6.2:
+ dependencies:
+ jest-resolve: 26.6.2
+ dev: true
+ engines:
+ node: '>=6'
+ peerDependencies:
+ jest-resolve: '*'
+ peerDependenciesMeta:
+ jest-resolve:
+ optional: true
+ resolution:
+ integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==
+ /jest-regex-util/26.0.0:
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==
+ /jest-resolve-dependencies/26.6.3:
+ dependencies:
+ '@jest/types': 26.6.2
+ jest-regex-util: 26.0.0
+ jest-snapshot: 26.6.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==
+ /jest-resolve/26.6.0:
+ dependencies:
+ '@jest/types': 26.6.2
+ chalk: 4.1.0
+ graceful-fs: 4.2.11
+ jest-pnp-resolver: 1.2.3_jest-resolve@26.6.0
+ jest-util: 26.6.2
+ read-pkg-up: 7.0.1
+ resolve: 1.18.1
+ slash: 3.0.0
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-tRAz2bwraHufNp+CCmAD8ciyCpXCs1NQxB5EJAmtCFy6BN81loFEGWKzYu26Y62lAJJe4X4jg36Kf+NsQyiStQ==
+ /jest-resolve/26.6.2:
+ dependencies:
+ '@jest/types': 26.6.2
+ chalk: 4.1.0
+ graceful-fs: 4.2.11
+ jest-pnp-resolver: 1.2.3_jest-resolve@26.6.2
+ jest-util: 26.6.2
+ read-pkg-up: 7.0.1
+ resolve: 1.22.8
+ slash: 3.0.0
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==
+ /jest-runner/26.6.3:
+ dependencies:
+ '@jest/console': 26.6.2
+ '@jest/environment': 26.6.2
+ '@jest/test-result': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/node': 20.12.12
+ chalk: 4.1.0
+ emittery: 0.7.2
+ exit: 0.1.2
+ graceful-fs: 4.2.11
+ jest-config: 26.6.3
+ jest-docblock: 26.0.0
+ jest-haste-map: 26.6.2
+ jest-leak-detector: 26.6.2
+ jest-message-util: 26.6.2
+ jest-resolve: 26.6.2
+ jest-runtime: 26.6.3
+ jest-util: 26.6.2
+ jest-worker: 26.6.2
+ source-map-support: 0.5.21
+ throat: 5.0.0
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==
+ /jest-runtime/26.6.3:
+ dependencies:
+ '@jest/console': 26.6.2
+ '@jest/environment': 26.6.2
+ '@jest/fake-timers': 26.6.2
+ '@jest/globals': 26.6.2
+ '@jest/source-map': 26.6.2
+ '@jest/test-result': 26.6.2
+ '@jest/transform': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/yargs': 15.0.19
+ chalk: 4.1.0
+ cjs-module-lexer: 0.6.0
+ collect-v8-coverage: 1.0.2
+ exit: 0.1.2
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ jest-config: 26.6.3
+ jest-haste-map: 26.6.2
+ jest-message-util: 26.6.2
+ jest-mock: 26.6.2
+ jest-regex-util: 26.0.0
+ jest-resolve: 26.6.2
+ jest-snapshot: 26.6.2
+ jest-util: 26.6.2
+ jest-validate: 26.6.2
+ slash: 3.0.0
+ strip-bom: 4.0.0
+ yargs: 15.4.1
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ hasBin: true
+ resolution:
+ integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==
+ /jest-serializer/26.6.2:
+ dependencies:
+ '@types/node': 20.12.12
+ graceful-fs: 4.2.11
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==
+ /jest-snapshot/26.6.2:
+ dependencies:
+ '@babel/types': 7.24.6
+ '@jest/types': 26.6.2
+ '@types/babel__traverse': 7.20.6
+ '@types/prettier': 2.7.3
+ chalk: 4.1.0
+ expect: 26.6.2
+ graceful-fs: 4.2.11
+ jest-diff: 26.6.2
+ jest-get-type: 26.3.0
+ jest-haste-map: 26.6.2
+ jest-matcher-utils: 26.6.2
+ jest-message-util: 26.6.2
+ jest-resolve: 26.6.2
+ natural-compare: 1.4.0
+ pretty-format: 26.6.2
+ semver: 7.6.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==
+ /jest-util/26.6.2:
+ dependencies:
+ '@jest/types': 26.6.2
+ '@types/node': 20.12.12
+ chalk: 4.1.0
+ graceful-fs: 4.2.11
+ is-ci: 2.0.0
+ micromatch: 4.0.7
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==
+ /jest-util/29.7.0:
+ dependencies:
+ '@jest/types': 29.6.3
+ '@types/node': 20.12.12
+ chalk: 4.1.0
+ ci-info: 3.9.0
+ graceful-fs: 4.2.11
+ picomatch: 2.3.1
+ dev: false
+ engines:
+ node: ^14.15.0 || ^16.10.0 || >=18.0.0
+ resolution:
+ integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==
+ /jest-validate/26.6.2:
+ dependencies:
+ '@jest/types': 26.6.2
+ camelcase: 6.3.0
+ chalk: 4.1.0
+ jest-get-type: 26.3.0
+ leven: 3.1.0
+ pretty-format: 26.6.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==
+ /jest-watch-typeahead/0.6.1_jest@26.6.0:
+ dependencies:
+ ansi-escapes: 4.3.2
+ chalk: 4.1.0
+ jest: 26.6.0
+ jest-regex-util: 26.0.0
+ jest-watcher: 26.6.2
+ slash: 3.0.0
+ string-length: 4.0.2
+ strip-ansi: 6.0.1
+ dev: true
+ engines:
+ node: '>=10'
+ peerDependencies:
+ jest: ^26.0.0
+ resolution:
+ integrity: sha512-ITVnHhj3Jd/QkqQcTqZfRgjfyRhDFM/auzgVo2RKvSwi18YMvh0WvXDJFoFED6c7jd/5jxtu4kSOb9PTu2cPVg==
+ /jest-watcher/26.6.2:
+ dependencies:
+ '@jest/test-result': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/node': 20.12.12
+ ansi-escapes: 4.3.2
+ chalk: 4.1.0
+ jest-util: 26.6.2
+ string-length: 4.0.2
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ resolution:
+ integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==
+ /jest-worker/24.9.0:
+ dependencies:
+ merge-stream: 2.0.0
+ supports-color: 6.1.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==
+ /jest-worker/26.6.2:
+ dependencies:
+ '@types/node': 20.12.12
+ merge-stream: 2.0.0
+ supports-color: 7.2.0
+ dev: true
+ engines:
+ node: '>= 10.13.0'
+ resolution:
+ integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==
+ /jest-worker/27.5.1:
+ dependencies:
+ '@types/node': 20.12.12
+ merge-stream: 2.0.0
+ supports-color: 8.1.1
+ dev: true
+ engines:
+ node: '>= 10.13.0'
+ resolution:
+ integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==
+ /jest/26.6.0:
+ dependencies:
+ '@jest/core': 26.6.3
+ import-local: 3.1.0
+ jest-cli: 26.6.3
+ dev: true
+ engines:
+ node: '>= 10.14.2'
+ hasBin: true
+ resolution:
+ integrity: sha512-jxTmrvuecVISvKFFhOkjsWRZV7sFqdSUAd1ajOKY+/QE/aLBVstsJ/dX8GczLzwiT6ZEwwmZqtCUHLHHQVzcfA==
+ /js-tokens/4.0.0:
+ resolution:
+ integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
+ /js-yaml/3.14.1:
+ dependencies:
+ argparse: 1.0.10
+ esprima: 4.0.1
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
+ /jsdom/16.7.0:
+ dependencies:
+ abab: 2.0.6
+ acorn: 8.11.3
+ acorn-globals: 6.0.0
+ cssom: 0.4.4
+ cssstyle: 2.3.0
+ data-urls: 2.0.0
+ decimal.js: 10.4.3
+ domexception: 2.0.1
+ escodegen: 2.1.0
+ form-data: 3.0.1
+ html-encoding-sniffer: 2.0.1
+ http-proxy-agent: 4.0.1
+ https-proxy-agent: 5.0.1
+ is-potential-custom-element-name: 1.0.1
+ nwsapi: 2.2.10
+ parse5: 6.0.1
+ saxes: 5.0.1
+ symbol-tree: 3.2.4
+ tough-cookie: 4.1.4
+ w3c-hr-time: 1.0.2
+ w3c-xmlserializer: 2.0.0
+ webidl-conversions: 6.1.0
+ whatwg-encoding: 1.0.5
+ whatwg-mimetype: 2.3.0
+ whatwg-url: 8.7.0
+ ws: 7.5.9
+ xml-name-validator: 3.0.0
+ dev: true
+ engines:
+ node: '>=10'
+ peerDependencies:
+ canvas: ^2.5.0
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+ resolution:
+ integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==
+ /jsesc/0.5.0:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==
+ /jsesc/2.5.2:
+ dev: true
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
+ /json-buffer/3.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==
+ /json-parse-better-errors/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
+ /json-parse-even-better-errors/2.3.1:
+ dev: true
+ resolution:
+ integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
+ /json-schema-traverse/0.4.1:
+ dev: true
+ resolution:
+ integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
+ /json-schema-traverse/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
+ /json-stable-stringify-without-jsonify/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
+ /json5/1.0.2:
+ dependencies:
+ minimist: 1.2.8
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==
+ /json5/2.2.3:
+ dev: true
+ engines:
+ node: '>=6'
+ hasBin: true
+ resolution:
+ integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
+ /jsonfile/4.0.0:
+ dev: true
+ optionalDependencies:
+ graceful-fs: 4.2.11
+ resolution:
+ integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==
+ /jsonfile/6.1.0:
+ dependencies:
+ universalify: 2.0.1
+ dev: true
+ optionalDependencies:
+ graceful-fs: 4.2.11
+ resolution:
+ integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==
+ /jsonpath/1.1.1:
+ dependencies:
+ esprima: 1.2.2
+ static-eval: 2.0.2
+ underscore: 1.12.1
+ dev: true
+ resolution:
+ integrity: sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==
+ /jsx-ast-utils/3.3.5:
+ dependencies:
+ array-includes: 3.1.8
+ array.prototype.flat: 1.3.2
+ object.assign: 4.1.5
+ object.values: 1.2.0
+ dev: true
+ engines:
+ node: '>=4.0'
+ resolution:
+ integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==
+ /keyv/4.5.4:
+ dependencies:
+ json-buffer: 3.0.1
+ dev: true
+ resolution:
+ integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==
+ /killable/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==
+ /kind-of/3.2.2:
+ dependencies:
+ is-buffer: 1.1.6
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==
+ /kind-of/4.0.0:
+ dependencies:
+ is-buffer: 1.1.6
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==
+ /kind-of/6.0.3:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
+ /kleur/3.0.3:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
+ /klona/2.0.6:
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==
+ /language-subtag-registry/0.3.23:
+ dev: true
+ resolution:
+ integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==
+ /language-tags/1.0.9:
+ dependencies:
+ language-subtag-registry: 0.3.23
+ dev: true
+ engines:
+ node: '>=0.10'
+ resolution:
+ integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==
+ /last-call-webpack-plugin/3.0.0:
+ dependencies:
+ lodash: 4.17.21
+ webpack-sources: 1.4.3
+ dev: true
+ resolution:
+ integrity: sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==
+ /leven/3.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
+ /levn/0.3.0:
+ dependencies:
+ prelude-ls: 1.1.2
+ type-check: 0.3.2
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==
+ /levn/0.4.1:
+ dependencies:
+ prelude-ls: 1.2.1
+ type-check: 0.4.0
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
+ /lines-and-columns/1.2.4:
+ dev: true
+ resolution:
+ integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
+ /lint-staged/10.5.4:
+ dependencies:
+ chalk: 4.1.0
+ cli-truncate: 2.1.0
+ commander: 6.2.1
+ cosmiconfig: 7.1.0
+ debug: 4.3.4
+ dedent: 0.7.0
+ enquirer: 2.4.1
+ execa: 4.1.0
+ listr2: 3.14.0_enquirer@2.4.1
+ log-symbols: 4.1.0
+ micromatch: 4.0.7
+ normalize-path: 3.0.0
+ please-upgrade-node: 3.2.0
+ string-argv: 0.3.1
+ stringify-object: 3.3.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-EechC3DdFic/TdOPgj/RB3FicqE6932LTHCUm0Y2fsD9KGlLB+RwJl2q1IYBIvEsKzDOgn0D4gll+YxG5RsrKg==
+ /listr2/3.14.0_enquirer@2.4.1:
+ dependencies:
+ cli-truncate: 2.1.0
+ colorette: 2.0.20
+ enquirer: 2.4.1
+ log-update: 4.0.0
+ p-map: 4.0.0
+ rfdc: 1.3.1
+ rxjs: 7.8.1
+ through: 2.3.8
+ wrap-ansi: 7.0.0
+ dev: true
+ engines:
+ node: '>=10.0.0'
+ peerDependencies:
+ enquirer: '>= 2.3.0 < 3'
+ peerDependenciesMeta:
+ enquirer:
+ optional: true
+ resolution:
+ integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==
+ /load-json-file/4.0.0:
+ dependencies:
+ graceful-fs: 4.2.11
+ parse-json: 4.0.0
+ pify: 3.0.0
+ strip-bom: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==
+ /loader-runner/2.4.0:
+ dev: true
+ engines:
+ node: '>=4.3.0 <5.0.0 || >=5.10'
+ resolution:
+ integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
+ /loader-utils/1.4.2:
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 3.0.0
+ json5: 1.0.2
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==
+ /loader-utils/2.0.0:
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 3.0.0
+ json5: 2.2.3
+ dev: true
+ engines:
+ node: '>=8.9.0'
+ resolution:
+ integrity: sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==
+ /loader-utils/2.0.4:
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 3.0.0
+ json5: 2.2.3
+ dev: true
+ engines:
+ node: '>=8.9.0'
+ resolution:
+ integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==
+ /locate-path/3.0.0:
+ dependencies:
+ p-locate: 3.0.0
+ path-exists: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
+ /locate-path/5.0.0:
+ dependencies:
+ p-locate: 4.1.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
+ /locate-path/6.0.0:
+ dependencies:
+ p-locate: 5.0.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
+ /lodash._reinterpolate/3.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==
+ /lodash.debounce/4.0.8:
+ dev: true
+ resolution:
+ integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==
+ /lodash.memoize/4.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==
+ /lodash.merge/4.6.2:
+ dev: true
+ resolution:
+ integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
+ /lodash.template/4.5.0:
+ dependencies:
+ lodash._reinterpolate: 3.0.0
+ lodash.templatesettings: 4.2.0
+ dev: true
+ resolution:
+ integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==
+ /lodash.templatesettings/4.2.0:
+ dependencies:
+ lodash._reinterpolate: 3.0.0
+ dev: true
+ resolution:
+ integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==
+ /lodash.truncate/4.4.2:
+ dev: true
+ resolution:
+ integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==
+ /lodash.uniq/4.5.0:
+ dev: true
+ resolution:
+ integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==
+ /lodash/4.17.21:
+ resolution:
+ integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
+ /log-symbols/4.1.0:
+ dependencies:
+ chalk: 4.1.0
+ is-unicode-supported: 0.1.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==
+ /log-update/4.0.0:
+ dependencies:
+ ansi-escapes: 4.3.2
+ cli-cursor: 3.1.0
+ slice-ansi: 4.0.0
+ wrap-ansi: 6.2.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==
+ /loglevel/1.9.1:
+ dev: true
+ engines:
+ node: '>= 0.6.0'
+ resolution:
+ integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==
+ /loose-envify/1.4.0:
+ dependencies:
+ js-tokens: 4.0.0
+ hasBin: true
+ resolution:
+ integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
+ /lower-case/2.0.2:
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+ resolution:
+ integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==
+ /lru-cache/5.1.1:
+ dependencies:
+ yallist: 3.1.1
+ dev: true
+ resolution:
+ integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
+ /lru-cache/6.0.0:
+ dependencies:
+ yallist: 4.0.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
+ /lz-string/1.5.0:
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==
+ /magic-string/0.25.9:
+ dependencies:
+ sourcemap-codec: 1.4.8
+ dev: true
+ resolution:
+ integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==
+ /make-dir/2.1.0:
+ dependencies:
+ pify: 4.0.1
+ semver: 5.7.2
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
+ /make-dir/3.1.0:
+ dependencies:
+ semver: 6.3.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
+ /make-dir/4.0.0:
+ dependencies:
+ semver: 7.6.2
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==
+ /makeerror/1.0.12:
+ dependencies:
+ tmpl: 1.0.5
+ dev: true
+ resolution:
+ integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==
+ /map-cache/0.2.2:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==
+ /map-visit/1.0.0:
+ dependencies:
+ object-visit: 1.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==
+ /md5.js/1.3.5:
+ dependencies:
+ hash-base: 3.1.0
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: true
+ resolution:
+ integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
+ /mdn-data/2.0.14:
+ dev: true
+ resolution:
+ integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==
+ /mdn-data/2.0.4:
+ dev: true
+ resolution:
+ integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
+ /media-typer/0.3.0:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==
+ /memory-fs/0.4.1:
+ dependencies:
+ errno: 0.1.8
+ readable-stream: 2.3.8
+ dev: true
+ resolution:
+ integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==
+ /memory-fs/0.5.0:
+ dependencies:
+ errno: 0.1.8
+ readable-stream: 2.3.8
+ dev: true
+ engines:
+ node: '>=4.3.0 <5.0.0 || >=5.10'
+ resolution:
+ integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
+ /memorystream/0.3.1:
+ dev: true
+ engines:
+ node: '>= 0.10.0'
+ resolution:
+ integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==
+ /merge-descriptors/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==
+ /merge-stream/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
+ /merge2/1.4.1:
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
+ /methods/1.1.2:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==
+ /microevent.ts/0.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==
+ /micromatch/3.1.10:
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ braces: 2.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ extglob: 2.0.4
+ fragment-cache: 0.2.1
+ kind-of: 6.0.3
+ nanomatch: 1.2.13
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
+ /micromatch/4.0.7:
+ dependencies:
+ braces: 3.0.3
+ picomatch: 2.3.1
+ engines:
+ node: '>=8.6'
+ resolution:
+ integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==
+ /miller-rabin/4.0.1:
+ dependencies:
+ bn.js: 4.12.0
+ brorand: 1.1.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
+ /mime-db/1.52.0:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
+ /mime-types/2.1.35:
+ dependencies:
+ mime-db: 1.52.0
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
+ /mime/1.6.0:
+ dev: true
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
+ /mime/2.6.0:
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==
+ /mimic-fn/2.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
+ /min-indent/1.0.1:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
+ /mini-css-extract-plugin/0.11.3_webpack@4.44.2:
+ dependencies:
+ loader-utils: 1.4.2
+ normalize-url: 1.9.1
+ schema-utils: 1.0.0
+ webpack: 4.44.2
+ webpack-sources: 1.4.3
+ dev: true
+ engines:
+ node: '>= 6.9.0'
+ peerDependencies:
+ webpack: ^4.4.0 || ^5.0.0
+ resolution:
+ integrity: sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA==
+ /minimalistic-assert/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
+ /minimalistic-crypto-utils/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==
+ /minimatch/3.0.4:
+ dependencies:
+ brace-expansion: 1.1.11
+ dev: true
+ resolution:
+ integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
+ /minimatch/3.1.2:
+ dependencies:
+ brace-expansion: 1.1.11
+ dev: true
+ resolution:
+ integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
+ /minimist/1.2.8:
+ dev: true
+ resolution:
+ integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
+ /minipass-collect/1.0.2:
+ dependencies:
+ minipass: 3.3.6
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==
+ /minipass-flush/1.0.5:
+ dependencies:
+ minipass: 3.3.6
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==
+ /minipass-pipeline/1.2.4:
+ dependencies:
+ minipass: 3.3.6
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
+ /minipass/3.3.6:
+ dependencies:
+ yallist: 4.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==
+ /minipass/5.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==
+ /minizlib/2.1.2:
+ dependencies:
+ minipass: 3.3.6
+ yallist: 4.0.0
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
+ /mississippi/3.0.0:
+ dependencies:
+ concat-stream: 1.6.2
+ duplexify: 3.7.1
+ end-of-stream: 1.4.4
+ flush-write-stream: 1.1.1
+ from2: 2.3.0
+ parallel-transform: 1.2.0
+ pump: 3.0.0
+ pumpify: 1.5.1
+ stream-each: 1.2.3
+ through2: 2.0.5
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==
+ /mixin-deep/1.3.2:
+ dependencies:
+ for-in: 1.0.2
+ is-extendable: 1.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
+ /mkdirp/0.5.6:
+ dependencies:
+ minimist: 1.2.8
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
+ /mkdirp/1.0.4:
+ dev: true
+ engines:
+ node: '>=10'
+ hasBin: true
+ resolution:
+ integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
+ /move-concurrently/1.0.1:
+ dependencies:
+ aproba: 1.2.0
+ copy-concurrently: 1.0.5
+ fs-write-stream-atomic: 1.0.10
+ mkdirp: 0.5.6
+ rimraf: 2.7.1
+ run-queue: 1.0.3
+ deprecated: This package is no longer supported.
+ dev: true
+ resolution:
+ integrity: sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==
+ /ms/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
+ /ms/2.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+ /ms/2.1.3:
+ dev: true
+ resolution:
+ integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
+ /multicast-dns-service-types/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==
+ /multicast-dns/6.2.3:
+ dependencies:
+ dns-packet: 1.3.4
+ thunky: 1.1.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==
+ /nan/2.19.0:
+ dev: true
+ optional: true
+ resolution:
+ integrity: sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==
+ /nanoid/3.3.7:
+ dev: true
+ engines:
+ node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1
+ hasBin: true
+ resolution:
+ integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
+ /nanomatch/1.2.13:
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ fragment-cache: 0.2.1
+ is-windows: 1.0.2
+ kind-of: 6.0.3
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
+ /native-url/0.2.6:
+ dependencies:
+ querystring: 0.2.1
+ dev: true
+ resolution:
+ integrity: sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==
+ /natural-compare/1.4.0:
+ dev: true
+ resolution:
+ integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
+ /negotiator/0.6.3:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
+ /neo-async/2.6.2:
+ dev: true
+ resolution:
+ integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
+ /next-tick/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==
+ /nice-try/1.0.5:
+ dev: true
+ resolution:
+ integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
+ /no-case/3.0.4:
+ dependencies:
+ lower-case: 2.0.2
+ tslib: 2.6.2
+ dev: true
+ resolution:
+ integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==
+ /node-forge/0.10.0:
+ dev: true
+ engines:
+ node: '>= 6.0.0'
+ resolution:
+ integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==
+ /node-int64/0.4.0:
+ dev: true
+ resolution:
+ integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==
+ /node-libs-browser/2.2.1:
+ dependencies:
+ assert: 1.5.1
+ browserify-zlib: 0.2.0
+ buffer: 4.9.2
+ console-browserify: 1.2.0
+ constants-browserify: 1.0.0
+ crypto-browserify: 3.12.0
+ domain-browser: 1.2.0
+ events: 3.3.0
+ https-browserify: 1.0.0
+ os-browserify: 0.3.0
+ path-browserify: 0.0.1
+ process: 0.11.10
+ punycode: 1.4.1
+ querystring-es3: 0.2.1
+ readable-stream: 2.3.8
+ stream-browserify: 2.0.2
+ stream-http: 2.8.3
+ string_decoder: 1.3.0
+ timers-browserify: 2.0.12
+ tty-browserify: 0.0.0
+ url: 0.11.3
+ util: 0.11.1
+ vm-browserify: 1.1.2
+ dev: true
+ resolution:
+ integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
+ /node-notifier/8.0.2:
+ dependencies:
+ growly: 1.3.0
+ is-wsl: 2.2.0
+ semver: 7.6.2
+ shellwords: 0.1.1
+ uuid: 8.3.2
+ which: 2.0.2
+ dev: true
+ optional: true
+ resolution:
+ integrity: sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==
+ /node-releases/1.1.77:
+ dev: true
+ resolution:
+ integrity: sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==
+ /node-releases/2.0.14:
+ dev: true
+ resolution:
+ integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==
+ /normalize-package-data/2.5.0:
+ dependencies:
+ hosted-git-info: 2.8.9
+ resolve: 1.22.8
+ semver: 5.7.2
+ validate-npm-package-license: 3.0.4
+ dev: true
+ resolution:
+ integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
+ /normalize-path/2.1.1:
+ dependencies:
+ remove-trailing-separator: 1.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==
+ /normalize-path/3.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
+ /normalize-range/0.1.2:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==
+ /normalize-url/1.9.1:
+ dependencies:
+ object-assign: 4.1.1
+ prepend-http: 1.0.4
+ query-string: 4.3.4
+ sort-keys: 1.1.2
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ==
+ /normalize-url/3.3.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==
+ /npm-run-all/4.1.5:
+ dependencies:
+ ansi-styles: 3.2.1
+ chalk: 2.4.2
+ cross-spawn: 6.0.5
+ memorystream: 0.3.1
+ minimatch: 3.1.2
+ pidtree: 0.3.1
+ read-pkg: 3.0.0
+ shell-quote: 1.8.1
+ string.prototype.padend: 3.1.6
+ dev: true
+ engines:
+ node: '>= 4'
+ hasBin: true
+ resolution:
+ integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==
+ /npm-run-path/2.0.2:
+ dependencies:
+ path-key: 2.0.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==
+ /npm-run-path/4.0.1:
+ dependencies:
+ path-key: 3.1.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
+ /nth-check/1.0.2:
+ dependencies:
+ boolbase: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==
+ /nth-check/2.1.1:
+ dependencies:
+ boolbase: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==
+ /num2fraction/1.2.2:
+ dev: true
+ resolution:
+ integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==
+ /nwsapi/2.2.10:
+ dev: true
+ resolution:
+ integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==
+ /object-assign/4.1.1:
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
+ /object-copy/0.1.0:
+ dependencies:
+ copy-descriptor: 0.1.1
+ define-property: 0.2.5
+ kind-of: 3.2.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==
+ /object-inspect/1.13.1:
+ dev: true
+ resolution:
+ integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==
+ /object-is/1.1.6:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==
+ /object-keys/1.1.1:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
+ /object-visit/1.0.1:
+ dependencies:
+ isobject: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==
+ /object.assign/4.1.5:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ has-symbols: 1.0.3
+ object-keys: 1.1.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==
+ /object.entries/1.1.8:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==
+ /object.fromentries/2.0.8:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==
+ /object.getownpropertydescriptors/2.1.8:
+ dependencies:
+ array.prototype.reduce: 1.0.7
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
+ gopd: 1.0.1
+ safe-array-concat: 1.1.2
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==
+ /object.groupby/1.0.3:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==
+ /object.hasown/1.1.4:
+ dependencies:
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==
+ /object.pick/1.3.0:
+ dependencies:
+ isobject: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==
+ /object.values/1.2.0:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==
+ /obuf/1.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
+ /on-finished/2.4.1:
+ dependencies:
+ ee-first: 1.1.1
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==
+ /on-headers/1.0.2:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
+ /once/1.4.0:
+ dependencies:
+ wrappy: 1.0.2
+ dev: true
+ resolution:
+ integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
+ /onetime/5.1.2:
+ dependencies:
+ mimic-fn: 2.1.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
+ /open/7.4.2:
+ dependencies:
+ is-docker: 2.2.1
+ is-wsl: 2.2.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==
+ /opencollective-postinstall/2.0.3:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==
+ /opn/5.5.0:
+ dependencies:
+ is-wsl: 1.1.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==
+ /optimize-css-assets-webpack-plugin/5.0.4_webpack@4.44.2:
+ dependencies:
+ cssnano: 4.1.11
+ last-call-webpack-plugin: 3.0.0
+ webpack: 4.44.2
+ dev: true
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==
+ /optionator/0.8.3:
+ dependencies:
+ deep-is: 0.1.4
+ fast-levenshtein: 2.0.6
+ levn: 0.3.0
+ prelude-ls: 1.1.2
+ type-check: 0.3.2
+ word-wrap: 1.2.5
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
+ /optionator/0.9.4:
+ dependencies:
+ deep-is: 0.1.4
+ fast-levenshtein: 2.0.6
+ levn: 0.4.1
+ prelude-ls: 1.2.1
+ type-check: 0.4.0
+ word-wrap: 1.2.5
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==
+ /os-browserify/0.3.0:
+ dev: true
+ resolution:
+ integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==
+ /p-each-series/2.2.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==
+ /p-finally/1.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==
+ /p-limit/2.3.0:
+ dependencies:
+ p-try: 2.2.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
+ /p-limit/3.1.0:
+ dependencies:
+ yocto-queue: 0.1.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
+ /p-locate/3.0.0:
+ dependencies:
+ p-limit: 2.3.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
+ /p-locate/4.1.0:
+ dependencies:
+ p-limit: 2.3.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
+ /p-locate/5.0.0:
+ dependencies:
+ p-limit: 3.1.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
+ /p-map/2.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
+ /p-map/4.0.0:
+ dependencies:
+ aggregate-error: 3.1.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
+ /p-retry/3.0.1:
+ dependencies:
+ retry: 0.12.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==
+ /p-try/2.2.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
+ /pako/1.0.11:
+ dev: true
+ resolution:
+ integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
+ /parallel-transform/1.2.0:
+ dependencies:
+ cyclist: 1.0.2
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ dev: true
+ resolution:
+ integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==
+ /param-case/3.0.4:
+ dependencies:
+ dot-case: 3.0.4
+ tslib: 2.6.2
+ dev: true
+ resolution:
+ integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==
+ /parent-module/1.0.1:
+ dependencies:
+ callsites: 3.1.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
+ /parse-asn1/5.1.7:
+ dependencies:
+ asn1.js: 4.10.1
+ browserify-aes: 1.2.0
+ evp_bytestokey: 1.0.3
+ hash-base: 3.0.4
+ pbkdf2: 3.1.2
+ safe-buffer: 5.2.1
+ dev: true
+ engines:
+ node: '>= 0.10'
+ resolution:
+ integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==
+ /parse-json/4.0.0:
+ dependencies:
+ error-ex: 1.3.2
+ json-parse-better-errors: 1.0.2
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==
+ /parse-json/5.2.0:
+ dependencies:
+ '@babel/code-frame': 7.24.6
+ error-ex: 1.3.2
+ json-parse-even-better-errors: 2.3.1
+ lines-and-columns: 1.2.4
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
+ /parse5/6.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
+ /parseurl/1.3.3:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
+ /pascal-case/3.1.2:
+ dependencies:
+ no-case: 3.0.4
+ tslib: 2.6.2
+ dev: true
+ resolution:
+ integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==
+ /pascalcase/0.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==
+ /path-browserify/0.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
+ /path-dirname/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==
+ /path-exists/3.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==
+ /path-exists/4.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
+ /path-is-absolute/1.0.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
+ /path-is-inside/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==
+ /path-key/2.0.1:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==
+ /path-key/3.1.1:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
+ /path-parse/1.0.7:
+ dev: true
+ resolution:
+ integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
+ /path-to-regexp/0.1.7:
+ dev: true
+ resolution:
+ integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==
+ /path-type/3.0.0:
+ dependencies:
+ pify: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
+ /path-type/4.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
+ /pbkdf2/3.1.2:
+ dependencies:
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ ripemd160: 2.0.2
+ safe-buffer: 5.2.1
+ sha.js: 2.4.11
+ dev: true
+ engines:
+ node: '>=0.12'
+ resolution:
+ integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==
+ /performance-now/2.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==
+ /picocolors/0.2.1:
+ dev: true
+ resolution:
+ integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==
+ /picocolors/1.0.1:
+ resolution:
+ integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==
+ /picomatch/2.3.1:
+ engines:
+ node: '>=8.6'
+ resolution:
+ integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
+ /pidtree/0.3.1:
+ dev: true
+ engines:
+ node: '>=0.10'
+ hasBin: true
+ resolution:
+ integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==
+ /pify/2.3.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==
+ /pify/3.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==
+ /pify/4.0.1:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
+ /pinkie-promise/2.0.1:
+ dependencies:
+ pinkie: 2.0.4
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==
+ /pinkie/2.0.4:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==
+ /pirates/4.0.6:
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==
+ /pkg-dir/3.0.0:
+ dependencies:
+ find-up: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
+ /pkg-dir/4.2.0:
+ dependencies:
+ find-up: 4.1.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
+ /pkg-dir/5.0.0:
+ dependencies:
+ find-up: 5.0.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==
+ /pkg-up/3.1.0:
+ dependencies:
+ find-up: 3.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==
+ /please-upgrade-node/3.2.0:
+ dependencies:
+ semver-compare: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==
+ /pnp-webpack-plugin/1.6.4:
+ dependencies:
+ ts-pnp: 1.2.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==
+ /portfinder/1.0.32:
+ dependencies:
+ async: 2.6.4
+ debug: 3.2.7
+ mkdirp: 0.5.6
+ dev: true
+ engines:
+ node: '>= 0.12.0'
+ resolution:
+ integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==
+ /posix-character-classes/0.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==
+ /possible-typed-array-names/1.0.0:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==
+ /postcss-attribute-case-insensitive/4.0.2:
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 6.1.0
+ dev: true
+ resolution:
+ integrity: sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==
+ /postcss-browser-comments/3.0.0_browserslist@4.23.0:
+ dependencies:
+ browserslist: 4.23.0
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ peerDependencies:
+ browserslist: ^4
+ resolution:
+ integrity: sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==
+ /postcss-calc/7.0.5:
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 6.1.0
+ postcss-value-parser: 4.2.0
+ dev: true
+ resolution:
+ integrity: sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==
+ /postcss-color-functional-notation/2.0.1:
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==
+ /postcss-color-gray/5.0.0:
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==
+ /postcss-color-hex-alpha/5.0.3:
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==
+ /postcss-color-mod-function/3.0.3:
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==
+ /postcss-color-rebeccapurple/4.0.1:
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==
+ /postcss-colormin/4.0.3:
+ dependencies:
+ browserslist: 4.23.0
+ color: 3.2.1
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==
+ /postcss-convert-values/4.0.1:
+ dependencies:
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==
+ /postcss-custom-media/7.0.8:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==
+ /postcss-custom-properties/8.0.11:
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==
+ /postcss-custom-selectors/5.1.2:
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 5.0.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==
+ /postcss-dir-pseudo-class/5.0.0:
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 5.0.0
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==
+ /postcss-discard-comments/4.0.2:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==
+ /postcss-discard-duplicates/4.0.2:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==
+ /postcss-discard-empty/4.0.1:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==
+ /postcss-discard-overridden/4.0.1:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==
+ /postcss-double-position-gradients/1.0.0:
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==
+ /postcss-env-function/2.0.2:
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==
+ /postcss-flexbugs-fixes/4.2.1:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ resolution:
+ integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==
+ /postcss-focus-visible/4.0.0:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==
+ /postcss-focus-within/3.0.0:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==
+ /postcss-font-variant/4.0.1:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ resolution:
+ integrity: sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==
+ /postcss-gap-properties/2.0.0:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==
+ /postcss-image-set-function/3.0.1:
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==
+ /postcss-initial/3.0.4:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ resolution:
+ integrity: sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==
+ /postcss-lab-function/2.0.1:
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==
+ /postcss-load-config/2.1.2:
+ dependencies:
+ cosmiconfig: 5.2.1
+ import-cwd: 2.1.0
+ dev: true
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==
+ /postcss-loader/3.0.0:
+ dependencies:
+ loader-utils: 1.4.2
+ postcss: 7.0.39
+ postcss-load-config: 2.1.2
+ schema-utils: 1.0.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==
+ /postcss-logical/3.0.0:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==
+ /postcss-media-minmax/4.0.0:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==
+ /postcss-merge-longhand/4.0.11:
+ dependencies:
+ css-color-names: 0.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ stylehacks: 4.0.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==
+ /postcss-merge-rules/4.0.3:
+ dependencies:
+ browserslist: 4.23.0
+ caniuse-api: 3.0.0
+ cssnano-util-same-parent: 4.0.1
+ postcss: 7.0.39
+ postcss-selector-parser: 3.1.2
+ vendors: 1.0.4
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==
+ /postcss-minify-font-values/4.0.2:
+ dependencies:
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==
+ /postcss-minify-gradients/4.0.2:
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ is-color-stop: 1.1.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==
+ /postcss-minify-params/4.0.2:
+ dependencies:
+ alphanum-sort: 1.0.2
+ browserslist: 4.23.0
+ cssnano-util-get-arguments: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ uniqs: 2.0.0
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==
+ /postcss-minify-selectors/4.0.2:
+ dependencies:
+ alphanum-sort: 1.0.2
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-selector-parser: 3.1.2
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==
+ /postcss-modules-extract-imports/2.0.0:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==
+ /postcss-modules-local-by-default/3.0.3:
+ dependencies:
+ icss-utils: 4.1.1
+ postcss: 7.0.39
+ postcss-selector-parser: 6.1.0
+ postcss-value-parser: 4.2.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==
+ /postcss-modules-scope/2.2.0:
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 6.1.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==
+ /postcss-modules-values/3.0.0:
+ dependencies:
+ icss-utils: 4.1.1
+ postcss: 7.0.39
+ dev: true
+ resolution:
+ integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==
+ /postcss-nesting/7.0.1:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==
+ /postcss-normalize-charset/4.0.1:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==
+ /postcss-normalize-display-values/4.0.2:
+ dependencies:
+ cssnano-util-get-match: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==
+ /postcss-normalize-positions/4.0.2:
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==
+ /postcss-normalize-repeat-style/4.0.2:
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ cssnano-util-get-match: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==
+ /postcss-normalize-string/4.0.2:
+ dependencies:
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==
+ /postcss-normalize-timing-functions/4.0.2:
+ dependencies:
+ cssnano-util-get-match: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==
+ /postcss-normalize-unicode/4.0.1:
+ dependencies:
+ browserslist: 4.23.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==
+ /postcss-normalize-url/4.0.1:
+ dependencies:
+ is-absolute-url: 2.1.0
+ normalize-url: 3.3.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==
+ /postcss-normalize-whitespace/4.0.2:
+ dependencies:
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==
+ /postcss-normalize/8.0.1:
+ dependencies:
+ '@csstools/normalize.css': 10.1.0
+ browserslist: 4.23.0
+ postcss: 7.0.39
+ postcss-browser-comments: 3.0.0_browserslist@4.23.0
+ sanitize.css: 10.0.0
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ resolution:
+ integrity: sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==
+ /postcss-ordered-values/4.1.2:
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==
+ /postcss-overflow-shorthand/2.0.0:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==
+ /postcss-page-break/2.0.0:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ resolution:
+ integrity: sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==
+ /postcss-place/4.0.1:
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==
+ /postcss-preset-env/6.7.0:
+ dependencies:
+ autoprefixer: 9.8.8
+ browserslist: 4.23.0
+ caniuse-lite: 1.0.30001621
+ css-blank-pseudo: 0.1.4
+ css-has-pseudo: 0.10.0
+ css-prefers-color-scheme: 3.1.1
+ cssdb: 4.4.0
+ postcss: 7.0.39
+ postcss-attribute-case-insensitive: 4.0.2
+ postcss-color-functional-notation: 2.0.1
+ postcss-color-gray: 5.0.0
+ postcss-color-hex-alpha: 5.0.3
+ postcss-color-mod-function: 3.0.3
+ postcss-color-rebeccapurple: 4.0.1
+ postcss-custom-media: 7.0.8
+ postcss-custom-properties: 8.0.11
+ postcss-custom-selectors: 5.1.2
+ postcss-dir-pseudo-class: 5.0.0
+ postcss-double-position-gradients: 1.0.0
+ postcss-env-function: 2.0.2
+ postcss-focus-visible: 4.0.0
+ postcss-focus-within: 3.0.0
+ postcss-font-variant: 4.0.1
+ postcss-gap-properties: 2.0.0
+ postcss-image-set-function: 3.0.1
+ postcss-initial: 3.0.4
+ postcss-lab-function: 2.0.1
+ postcss-logical: 3.0.0
+ postcss-media-minmax: 4.0.0
+ postcss-nesting: 7.0.1
+ postcss-overflow-shorthand: 2.0.0
+ postcss-page-break: 2.0.0
+ postcss-place: 4.0.1
+ postcss-pseudo-class-any-link: 6.0.0
+ postcss-replace-overflow-wrap: 3.0.0
+ postcss-selector-matches: 4.0.0
+ postcss-selector-not: 4.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==
+ /postcss-pseudo-class-any-link/6.0.0:
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 5.0.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==
+ /postcss-reduce-initial/4.0.3:
+ dependencies:
+ browserslist: 4.23.0
+ caniuse-api: 3.0.0
+ has: 1.0.4
+ postcss: 7.0.39
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==
+ /postcss-reduce-transforms/4.0.2:
+ dependencies:
+ cssnano-util-get-match: 4.0.0
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==
+ /postcss-replace-overflow-wrap/3.0.0:
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+ resolution:
+ integrity: sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==
+ /postcss-safe-parser/5.0.2:
+ dependencies:
+ postcss: 8.4.38
+ dev: true
+ engines:
+ node: '>=10.0'
+ resolution:
+ integrity: sha512-jDUfCPJbKOABhwpUKcqCVbbXiloe/QXMcbJ6Iipf3sDIihEzTqRCeMBfRaOHxhBuTYqtASrI1KJWxzztZU4qUQ==
+ /postcss-selector-matches/4.0.0:
+ dependencies:
+ balanced-match: 1.0.2
+ postcss: 7.0.39
+ dev: true
+ resolution:
+ integrity: sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==
+ /postcss-selector-not/4.0.1:
+ dependencies:
+ balanced-match: 1.0.2
+ postcss: 7.0.39
+ dev: true
+ resolution:
+ integrity: sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==
+ /postcss-selector-parser/3.1.2:
+ dependencies:
+ dot-prop: 5.3.0
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==
+ /postcss-selector-parser/5.0.0:
+ dependencies:
+ cssesc: 2.0.0
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==
+ /postcss-selector-parser/6.1.0:
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==
+ /postcss-svgo/4.0.3:
+ dependencies:
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ svgo: 1.3.2
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==
+ /postcss-unique-selectors/4.0.1:
+ dependencies:
+ alphanum-sort: 1.0.2
+ postcss: 7.0.39
+ uniqs: 2.0.0
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==
+ /postcss-value-parser/3.3.1:
+ dev: true
+ resolution:
+ integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
+ /postcss-value-parser/4.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
+ /postcss-values-parser/2.0.1:
+ dependencies:
+ flatten: 1.0.3
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: true
+ engines:
+ node: '>=6.14.4'
+ resolution:
+ integrity: sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==
+ /postcss/7.0.36:
+ dependencies:
+ chalk: 2.4.2
+ source-map: 0.6.1
+ supports-color: 6.1.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==
+ /postcss/7.0.39:
+ dependencies:
+ picocolors: 0.2.1
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==
+ /postcss/8.4.38:
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.0.1
+ source-map-js: 1.2.0
+ dev: true
+ engines:
+ node: ^10 || ^12 || >=14
+ resolution:
+ integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==
+ /prelude-ls/1.1.2:
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==
+ /prelude-ls/1.2.1:
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
+ /prepend-http/1.0.4:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==
+ /prettier-linter-helpers/1.0.0:
+ dependencies:
+ fast-diff: 1.3.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
+ /prettier/2.2.1:
+ dev: true
+ engines:
+ node: '>=10.13.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==
+ /pretty-bytes/5.6.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==
+ /pretty-error/2.1.2:
+ dependencies:
+ lodash: 4.17.21
+ renderkid: 2.0.7
+ dev: true
+ resolution:
+ integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==
+ /pretty-format/26.6.2:
+ dependencies:
+ '@jest/types': 26.6.2
+ ansi-regex: 5.0.1
+ ansi-styles: 4.3.0
+ react-is: 17.0.2
+ engines:
+ node: '>= 10'
+ resolution:
+ integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==
+ /pretty-format/29.7.0:
+ dependencies:
+ '@jest/schemas': 29.6.3
+ ansi-styles: 5.2.0
+ react-is: 18.3.1
+ dev: false
+ engines:
+ node: ^14.15.0 || ^16.10.0 || >=18.0.0
+ resolution:
+ integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==
+ /process-nextick-args/2.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
+ /process/0.11.10:
+ dev: true
+ engines:
+ node: '>= 0.6.0'
+ resolution:
+ integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==
+ /progress/2.0.3:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ resolution:
+ integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
+ /promise-inflight/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==
+ /promise/8.3.0:
+ dependencies:
+ asap: 2.0.6
+ dev: true
+ resolution:
+ integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==
+ /prompts/2.4.0:
+ dependencies:
+ kleur: 3.0.3
+ sisteransi: 1.0.5
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==
+ /prop-types/15.8.1:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ react-is: 16.13.1
+ dev: true
+ resolution:
+ integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
+ /proxy-addr/2.0.7:
+ dependencies:
+ forwarded: 0.2.0
+ ipaddr.js: 1.9.1
+ dev: true
+ engines:
+ node: '>= 0.10'
+ resolution:
+ integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==
+ /prr/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==
+ /psl/1.9.0:
+ dev: true
+ resolution:
+ integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==
+ /public-encrypt/4.0.3:
+ dependencies:
+ bn.js: 4.12.0
+ browserify-rsa: 4.1.0
+ create-hash: 1.2.0
+ parse-asn1: 5.1.7
+ randombytes: 2.1.0
+ safe-buffer: 5.2.1
+ dev: true
+ resolution:
+ integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
+ /pump/2.0.1:
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+ dev: true
+ resolution:
+ integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==
+ /pump/3.0.0:
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+ dev: true
+ resolution:
+ integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
+ /pumpify/1.5.1:
+ dependencies:
+ duplexify: 3.7.1
+ inherits: 2.0.4
+ pump: 2.0.1
+ dev: true
+ resolution:
+ integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==
+ /punycode/1.4.1:
+ dev: true
+ resolution:
+ integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==
+ /punycode/2.3.1:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==
+ /q/1.5.1:
+ dev: true
+ engines:
+ node: '>=0.6.0'
+ teleport: '>=0.2.0'
+ resolution:
+ integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==
+ /qs/6.11.0:
+ dependencies:
+ side-channel: 1.0.6
+ dev: true
+ engines:
+ node: '>=0.6'
+ resolution:
+ integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==
+ /qs/6.12.1:
+ dependencies:
+ side-channel: 1.0.6
+ dev: true
+ engines:
+ node: '>=0.6'
+ resolution:
+ integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==
+ /query-string/4.3.4:
+ dependencies:
+ object-assign: 4.1.1
+ strict-uri-encode: 1.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==
+ /querystring-es3/0.2.1:
+ dev: true
+ engines:
+ node: '>=0.4.x'
+ resolution:
+ integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==
+ /querystring/0.2.1:
+ deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
+ dev: true
+ engines:
+ node: '>=0.4.x'
+ resolution:
+ integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==
+ /querystringify/2.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==
+ /queue-microtask/1.2.3:
+ dev: true
+ resolution:
+ integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
+ /raf/3.4.1:
+ dependencies:
+ performance-now: 2.1.0
+ dev: true
+ resolution:
+ integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==
+ /randombytes/2.1.0:
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: true
+ resolution:
+ integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
+ /randomfill/1.0.4:
+ dependencies:
+ randombytes: 2.1.0
+ safe-buffer: 5.2.1
+ dev: true
+ resolution:
+ integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
+ /range-parser/1.2.1:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
+ /raw-body/2.5.2:
+ dependencies:
+ bytes: 3.1.2
+ http-errors: 2.0.0
+ iconv-lite: 0.4.24
+ unpipe: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==
+ /react-app-polyfill/2.0.0:
+ dependencies:
+ core-js: 3.37.1
+ object-assign: 4.1.1
+ promise: 8.3.0
+ raf: 3.4.1
+ regenerator-runtime: 0.13.11
+ whatwg-fetch: 3.6.20
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==
+ /react-dev-utils/11.0.4:
+ dependencies:
+ '@babel/code-frame': 7.10.4
+ address: 1.1.2
+ browserslist: 4.14.2
+ chalk: 2.4.2
+ cross-spawn: 7.0.3
+ detect-port-alt: 1.1.6
+ escape-string-regexp: 2.0.0
+ filesize: 6.1.0
+ find-up: 4.1.0
+ fork-ts-checker-webpack-plugin: 4.1.6
+ global-modules: 2.0.0
+ globby: 11.0.1
+ gzip-size: 5.1.1
+ immer: 8.0.1
+ is-root: 2.1.0
+ loader-utils: 2.0.0
+ open: 7.4.2
+ pkg-up: 3.1.0
+ prompts: 2.4.0
+ react-error-overlay: 6.0.11
+ recursive-readdir: 2.2.2
+ shell-quote: 1.7.2
+ strip-ansi: 6.0.0
+ text-table: 0.2.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==
+ /react-dom/17.0.1_react@17.0.1:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ react: 17.0.1
+ scheduler: 0.20.2
+ dev: false
+ peerDependencies:
+ react: 17.0.1
+ resolution:
+ integrity: sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==
+ /react-error-overlay/6.0.11:
+ dev: true
+ resolution:
+ integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==
+ /react-is/16.13.1:
+ dev: true
+ resolution:
+ integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
+ /react-is/17.0.2:
+ resolution:
+ integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
+ /react-is/18.3.1:
+ dev: false
+ resolution:
+ integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==
+ /react-refresh/0.8.3:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==
+ /react-scripts/4.0.3_react@17.0.1:
+ dependencies:
+ '@babel/core': 7.12.3
+ '@pmmmwh/react-refresh-webpack-plugin': 0.4.3_9f0995138d24e525eb86c097d82409c0
+ '@svgr/webpack': 5.5.0
+ '@typescript-eslint/eslint-plugin': 4.33.0_2951ba233cd46bb4e0f2f0a3f7fe108e
+ '@typescript-eslint/parser': 4.33.0_eslint@7.32.0
+ babel-eslint: 10.1.0_eslint@7.32.0
+ babel-jest: 26.6.3_@babel+core@7.12.3
+ babel-loader: 8.1.0_427212bc1158d185e577033f19ca0757
+ babel-plugin-named-asset-import: 0.3.8_@babel+core@7.12.3
+ babel-preset-react-app: 10.0.1
+ bfj: 7.1.0
+ camelcase: 6.3.0
+ case-sensitive-paths-webpack-plugin: 2.3.0
+ css-loader: 4.3.0_webpack@4.44.2
+ dotenv: 8.2.0
+ dotenv-expand: 5.1.0
+ eslint: 7.32.0
+ eslint-config-react-app: 6.0.0_4798a6c50332b96981ea5a73bef4b3a3
+ eslint-plugin-flowtype: 5.10.0_eslint@7.32.0
+ eslint-plugin-import: 2.29.1_eslint@7.32.0
+ eslint-plugin-jest: 24.7.0_d3b4c2d4ac51f4275548d5d796aee5d5
+ eslint-plugin-jsx-a11y: 6.8.0_eslint@7.32.0
+ eslint-plugin-react: 7.34.1_eslint@7.32.0
+ eslint-plugin-react-hooks: 4.6.2_eslint@7.32.0
+ eslint-plugin-testing-library: 3.10.2_eslint@7.32.0
+ eslint-webpack-plugin: 2.7.0_eslint@7.32.0+webpack@4.44.2
+ file-loader: 6.1.1_webpack@4.44.2
+ fs-extra: 9.1.0
+ html-webpack-plugin: 4.5.0_webpack@4.44.2
+ identity-obj-proxy: 3.0.0
+ jest: 26.6.0
+ jest-circus: 26.6.0
+ jest-resolve: 26.6.0
+ jest-watch-typeahead: 0.6.1_jest@26.6.0
+ mini-css-extract-plugin: 0.11.3_webpack@4.44.2
+ optimize-css-assets-webpack-plugin: 5.0.4_webpack@4.44.2
+ pnp-webpack-plugin: 1.6.4
+ postcss-flexbugs-fixes: 4.2.1
+ postcss-loader: 3.0.0
+ postcss-normalize: 8.0.1
+ postcss-preset-env: 6.7.0
+ postcss-safe-parser: 5.0.2
+ prompts: 2.4.0
+ react: 17.0.1
+ react-app-polyfill: 2.0.0
+ react-dev-utils: 11.0.4
+ react-refresh: 0.8.3
+ resolve: 1.18.1
+ resolve-url-loader: 3.1.5
+ sass-loader: 10.5.2_webpack@4.44.2
+ semver: 7.3.2
+ style-loader: 1.3.0_webpack@4.44.2
+ terser-webpack-plugin: 4.2.3_webpack@4.44.2
+ ts-pnp: 1.2.0
+ url-loader: 4.1.1_file-loader@6.1.1+webpack@4.44.2
+ webpack: 4.44.2
+ webpack-dev-server: 3.11.1_webpack@4.44.2
+ webpack-manifest-plugin: 2.2.0_webpack@4.44.2
+ workbox-webpack-plugin: 5.1.4_webpack@4.44.2
+ dev: true
+ engines:
+ node: ^10.12.0 || >=12.0.0
+ hasBin: true
+ optionalDependencies:
+ fsevents: 2.3.3
+ peerDependencies:
+ react: '>= 16'
+ typescript: ^3.2.1 || ^4
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ resolution:
+ integrity: sha512-S5eO4vjUzUisvkIPB7jVsKtuH2HhWcASREYWHAQ1FP5HyCv3xgn+wpILAEWkmy+A+tTNbSZClhxjT3qz6g4L1A==
+ /react/17.0.1:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==
+ /read-pkg-up/7.0.1:
+ dependencies:
+ find-up: 4.1.0
+ read-pkg: 5.2.0
+ type-fest: 0.8.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==
+ /read-pkg/3.0.0:
+ dependencies:
+ load-json-file: 4.0.0
+ normalize-package-data: 2.5.0
+ path-type: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==
+ /read-pkg/5.2.0:
+ dependencies:
+ '@types/normalize-package-data': 2.4.4
+ normalize-package-data: 2.5.0
+ parse-json: 5.2.0
+ type-fest: 0.6.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==
+ /readable-stream/2.3.8:
+ dependencies:
+ core-util-is: 1.0.3
+ inherits: 2.0.4
+ isarray: 1.0.0
+ process-nextick-args: 2.0.1
+ safe-buffer: 5.1.2
+ string_decoder: 1.1.1
+ util-deprecate: 1.0.2
+ dev: true
+ resolution:
+ integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
+ /readable-stream/3.6.2:
+ dependencies:
+ inherits: 2.0.4
+ string_decoder: 1.3.0
+ util-deprecate: 1.0.2
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
+ /readdirp/2.2.1:
+ dependencies:
+ graceful-fs: 4.2.11
+ micromatch: 3.1.10
+ readable-stream: 2.3.8
+ dev: true
+ engines:
+ node: '>=0.10'
+ resolution:
+ integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
+ /readdirp/3.6.0:
+ dependencies:
+ picomatch: 2.3.1
+ dev: true
+ engines:
+ node: '>=8.10.0'
+ optional: true
+ resolution:
+ integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
+ /recursive-readdir/2.2.2:
+ dependencies:
+ minimatch: 3.0.4
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==
+ /redent/3.0.0:
+ dependencies:
+ indent-string: 4.0.0
+ strip-indent: 3.0.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==
+ /reflect.getprototypeof/1.0.6:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ globalthis: 1.0.4
+ which-builtin-type: 1.1.3
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==
+ /regenerate-unicode-properties/10.1.1:
+ dependencies:
+ regenerate: 1.4.2
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==
+ /regenerate/1.4.2:
+ dev: true
+ resolution:
+ integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
+ /regenerator-runtime/0.11.1:
+ dev: true
+ resolution:
+ integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
+ /regenerator-runtime/0.13.11:
+ dev: true
+ resolution:
+ integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
+ /regenerator-runtime/0.14.1:
+ resolution:
+ integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==
+ /regenerator-transform/0.15.2:
+ dependencies:
+ '@babel/runtime': 7.24.6
+ dev: true
+ resolution:
+ integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==
+ /regex-not/1.0.2:
+ dependencies:
+ extend-shallow: 3.0.2
+ safe-regex: 1.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
+ /regex-parser/2.3.0:
+ dev: true
+ resolution:
+ integrity: sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==
+ /regexp.prototype.flags/1.5.2:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-errors: 1.3.0
+ set-function-name: 2.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==
+ /regexpp/3.2.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
+ /regexpu-core/5.3.2:
+ dependencies:
+ '@babel/regjsgen': 0.8.0
+ regenerate: 1.4.2
+ regenerate-unicode-properties: 10.1.1
+ regjsparser: 0.9.1
+ unicode-match-property-ecmascript: 2.0.0
+ unicode-match-property-value-ecmascript: 2.1.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==
+ /regjsparser/0.9.1:
+ dependencies:
+ jsesc: 0.5.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==
+ /relateurl/0.2.7:
+ dev: true
+ engines:
+ node: '>= 0.10'
+ resolution:
+ integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==
+ /remove-trailing-separator/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==
+ /renderkid/2.0.7:
+ dependencies:
+ css-select: 4.3.0
+ dom-converter: 0.2.0
+ htmlparser2: 6.1.0
+ lodash: 4.17.21
+ strip-ansi: 3.0.1
+ dev: true
+ resolution:
+ integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==
+ /repeat-element/1.1.4:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==
+ /repeat-string/1.6.1:
+ dev: true
+ engines:
+ node: '>=0.10'
+ resolution:
+ integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==
+ /require-directory/2.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==
+ /require-from-string/2.0.2:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
+ /require-main-filename/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
+ /requires-port/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==
+ /resolve-cwd/2.0.0:
+ dependencies:
+ resolve-from: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==
+ /resolve-cwd/3.0.0:
+ dependencies:
+ resolve-from: 5.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
+ /resolve-from/3.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==
+ /resolve-from/4.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
+ /resolve-from/5.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
+ /resolve-url-loader/3.1.5:
+ dependencies:
+ adjust-sourcemap-loader: 3.0.0
+ camelcase: 5.3.1
+ compose-function: 3.0.3
+ convert-source-map: 1.7.0
+ es6-iterator: 2.0.3
+ loader-utils: 1.4.2
+ postcss: 7.0.36
+ rework: 1.0.1
+ rework-visit: 1.0.0
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-mgFMCmrV/tA4738EsFmPFE5/MaqSgUMe8LK971kVEKA/RrNVb7+VqFsg/qmKyythf34eyq476qIobP/gfFBGSQ==
+ /resolve-url/0.2.1:
+ deprecated: https://github.com/lydell/resolve-url#deprecated
+ dev: true
+ resolution:
+ integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==
+ /resolve/1.18.1:
+ dependencies:
+ is-core-module: 2.13.1
+ path-parse: 1.0.7
+ dev: true
+ resolution:
+ integrity: sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==
+ /resolve/1.22.8:
+ dependencies:
+ is-core-module: 2.13.1
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
+ /resolve/2.0.0-next.5:
+ dependencies:
+ is-core-module: 2.13.1
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==
+ /restore-cursor/3.1.0:
+ dependencies:
+ onetime: 5.1.2
+ signal-exit: 3.0.7
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
+ /ret/0.1.15:
+ dev: true
+ engines:
+ node: '>=0.12'
+ resolution:
+ integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
+ /retry/0.12.0:
+ dev: true
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==
+ /reusify/1.0.4:
+ dev: true
+ engines:
+ iojs: '>=1.0.0'
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
+ /rework-visit/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-W6V2fix7nCLUYX1v6eGPrBOZlc03/faqzP4sUxMAJMBMOPYhfV/RyLegTufn5gJKaOITyi+gvf0LXDZ9NzkHnQ==
+ /rework/1.0.1:
+ dependencies:
+ convert-source-map: 0.3.5
+ css: 2.2.4
+ dev: true
+ resolution:
+ integrity: sha512-eEjL8FdkdsxApd0yWVZgBGzfCQiT8yqSc2H1p4jpZpQdtz7ohETiDMoje5PlM8I9WgkqkreVxFUKYOiJdVWDXw==
+ /rfdc/1.3.1:
+ dev: true
+ resolution:
+ integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==
+ /rgb-regex/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==
+ /rgba-regex/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==
+ /rimraf/2.7.1:
+ dependencies:
+ glob: 7.2.3
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
+ /rimraf/3.0.2:
+ dependencies:
+ glob: 7.2.3
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
+ /ripemd160/2.0.2:
+ dependencies:
+ hash-base: 3.1.0
+ inherits: 2.0.4
+ dev: true
+ resolution:
+ integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
+ /rollup-plugin-babel/4.4.0_@babel+core@7.24.6+rollup@1.32.1:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-module-imports': 7.24.6
+ rollup: 1.32.1
+ rollup-pluginutils: 2.8.2
+ deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-babel.
+ dev: true
+ peerDependencies:
+ '@babel/core': 7 || ^7.0.0-rc.2
+ rollup: '>=0.60.0 <3'
+ resolution:
+ integrity: sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==
+ /rollup-plugin-terser/5.3.1_rollup@1.32.1:
+ dependencies:
+ '@babel/code-frame': 7.24.6
+ jest-worker: 24.9.0
+ rollup: 1.32.1
+ rollup-pluginutils: 2.8.2
+ serialize-javascript: 4.0.0
+ terser: 4.8.1
+ deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser
+ dev: true
+ peerDependencies:
+ rollup: '>=0.66.0 <3'
+ resolution:
+ integrity: sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==
+ /rollup-pluginutils/2.8.2:
+ dependencies:
+ estree-walker: 0.6.1
+ dev: true
+ resolution:
+ integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==
+ /rollup/1.32.1:
+ dependencies:
+ '@types/estree': 1.0.5
+ '@types/node': 20.12.12
+ acorn: 7.4.1
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==
+ /rsvp/4.8.5:
+ dev: true
+ engines:
+ node: 6.* || >= 7.*
+ resolution:
+ integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
+ /run-parallel/1.2.0:
+ dependencies:
+ queue-microtask: 1.2.3
+ dev: true
+ resolution:
+ integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
+ /run-queue/1.0.3:
+ dependencies:
+ aproba: 1.2.0
+ dev: true
+ resolution:
+ integrity: sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==
+ /rxjs/7.8.1:
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+ resolution:
+ integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==
+ /safe-array-concat/1.1.2:
+ dependencies:
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
+ has-symbols: 1.0.3
+ isarray: 2.0.5
+ dev: true
+ engines:
+ node: '>=0.4'
+ resolution:
+ integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==
+ /safe-buffer/5.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
+ /safe-buffer/5.2.1:
+ dev: true
+ resolution:
+ integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
+ /safe-regex-test/1.0.3:
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-regex: 1.1.4
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==
+ /safe-regex/1.1.0:
+ dependencies:
+ ret: 0.1.15
+ dev: true
+ resolution:
+ integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==
+ /safer-buffer/2.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
+ /sane/4.1.0:
+ dependencies:
+ '@cnakazawa/watch': 1.0.4
+ anymatch: 2.0.0
+ capture-exit: 2.0.0
+ exec-sh: 0.3.6
+ execa: 1.0.0
+ fb-watchman: 2.0.2
+ micromatch: 3.1.10
+ minimist: 1.2.8
+ walker: 1.0.8
+ deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added
+ dev: true
+ engines:
+ node: 6.* || 8.* || >= 10.*
+ hasBin: true
+ resolution:
+ integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
+ /sanitize.css/10.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==
+ /sass-loader/10.5.2_webpack@4.44.2:
+ dependencies:
+ klona: 2.0.6
+ loader-utils: 2.0.4
+ neo-async: 2.6.2
+ schema-utils: 3.3.0
+ semver: 7.6.2
+ webpack: 4.44.2
+ dev: true
+ engines:
+ node: '>= 10.13.0'
+ peerDependencies:
+ fibers: '>= 3.1.0'
+ node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
+ sass: ^1.3.0
+ webpack: ^4.36.0 || ^5.0.0
+ peerDependenciesMeta:
+ fibers:
+ optional: true
+ node-sass:
+ optional: true
+ sass:
+ optional: true
+ resolution:
+ integrity: sha512-vMUoSNOUKJILHpcNCCyD23X34gve1TS7Rjd9uXHeKqhvBG39x6XbswFDtpbTElj6XdMFezoWhkh5vtKudf2cgQ==
+ /sax/1.2.4:
+ dev: true
+ resolution:
+ integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
+ /saxes/5.0.1:
+ dependencies:
+ xmlchars: 2.2.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==
+ /scheduler/0.20.2:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ dev: false
+ resolution:
+ integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==
+ /schema-utils/1.0.0:
+ dependencies:
+ ajv: 6.12.6
+ ajv-errors: 1.0.1_ajv@6.12.6
+ ajv-keywords: 3.5.2_ajv@6.12.6
+ dev: true
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==
+ /schema-utils/2.7.1:
+ dependencies:
+ '@types/json-schema': 7.0.15
+ ajv: 6.12.6
+ ajv-keywords: 3.5.2_ajv@6.12.6
+ dev: true
+ engines:
+ node: '>= 8.9.0'
+ resolution:
+ integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==
+ /schema-utils/3.3.0:
+ dependencies:
+ '@types/json-schema': 7.0.15
+ ajv: 6.12.6
+ ajv-keywords: 3.5.2_ajv@6.12.6
+ dev: true
+ engines:
+ node: '>= 10.13.0'
+ resolution:
+ integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==
+ /select-hose/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==
+ /selfsigned/1.10.14:
+ dependencies:
+ node-forge: 0.10.0
+ dev: true
+ resolution:
+ integrity: sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==
+ /semver-compare/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==
+ /semver-regex/3.1.4:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-6IiqeZNgq01qGf0TId0t3NvKzSvUsjcpdEO3AQNeIjR6A2+ckTnQlDpl4qu1bjRv0RzN3FP9hzFmws3lKqRWkA==
+ /semver/5.7.2:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
+ /semver/6.3.1:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
+ /semver/7.3.2:
+ dev: true
+ engines:
+ node: '>=10'
+ hasBin: true
+ resolution:
+ integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
+ /semver/7.6.2:
+ dev: true
+ engines:
+ node: '>=10'
+ hasBin: true
+ resolution:
+ integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==
+ /send/0.18.0:
+ dependencies:
+ debug: 2.6.9
+ depd: 2.0.0
+ destroy: 1.2.0
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 0.5.2
+ http-errors: 2.0.0
+ mime: 1.6.0
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ statuses: 2.0.1
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==
+ /serialize-javascript/4.0.0:
+ dependencies:
+ randombytes: 2.1.0
+ dev: true
+ resolution:
+ integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
+ /serialize-javascript/5.0.1:
+ dependencies:
+ randombytes: 2.1.0
+ dev: true
+ resolution:
+ integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==
+ /serve-index/1.9.1:
+ dependencies:
+ accepts: 1.3.8
+ batch: 0.6.1
+ debug: 2.6.9
+ escape-html: 1.0.3
+ http-errors: 1.6.3
+ mime-types: 2.1.35
+ parseurl: 1.3.3
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==
+ /serve-static/1.15.0:
+ dependencies:
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ parseurl: 1.3.3
+ send: 0.18.0
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==
+ /set-blocking/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==
+ /set-function-length/1.2.2:
+ dependencies:
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==
+ /set-function-name/2.0.2:
+ dependencies:
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ functions-have-names: 1.2.3
+ has-property-descriptors: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==
+ /set-value/2.0.1:
+ dependencies:
+ extend-shallow: 2.0.1
+ is-extendable: 0.1.1
+ is-plain-object: 2.0.4
+ split-string: 3.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
+ /setimmediate/1.0.5:
+ dev: true
+ resolution:
+ integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==
+ /setprototypeof/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==
+ /setprototypeof/1.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==
+ /sha.js/2.4.11:
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
+ /shebang-command/1.2.0:
+ dependencies:
+ shebang-regex: 1.0.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==
+ /shebang-command/2.0.0:
+ dependencies:
+ shebang-regex: 3.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
+ /shebang-regex/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==
+ /shebang-regex/3.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
+ /shell-quote/1.7.2:
+ dev: true
+ resolution:
+ integrity: sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
+ /shell-quote/1.8.1:
+ dev: true
+ resolution:
+ integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==
+ /shellwords/0.1.1:
+ dev: true
+ optional: true
+ resolution:
+ integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==
+ /side-channel/1.0.6:
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ object-inspect: 1.13.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==
+ /signal-exit/3.0.7:
+ dev: true
+ resolution:
+ integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
+ /simple-swizzle/0.2.2:
+ dependencies:
+ is-arrayish: 0.3.2
+ dev: true
+ resolution:
+ integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==
+ /sisteransi/1.0.5:
+ dev: true
+ resolution:
+ integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
+ /slash/3.0.0:
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
+ /slice-ansi/3.0.0:
+ dependencies:
+ ansi-styles: 4.3.0
+ astral-regex: 2.0.0
+ is-fullwidth-code-point: 3.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==
+ /slice-ansi/4.0.0:
+ dependencies:
+ ansi-styles: 4.3.0
+ astral-regex: 2.0.0
+ is-fullwidth-code-point: 3.0.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
+ /snapdragon-node/2.1.1:
+ dependencies:
+ define-property: 1.0.0
+ isobject: 3.0.1
+ snapdragon-util: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
+ /snapdragon-util/3.0.1:
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
+ /snapdragon/0.8.2:
+ dependencies:
+ base: 0.11.2
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ map-cache: 0.2.2
+ source-map: 0.5.7
+ source-map-resolve: 0.5.3
+ use: 3.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
+ /sockjs-client/1.6.1:
+ dependencies:
+ debug: 3.2.7
+ eventsource: 2.0.2
+ faye-websocket: 0.11.4
+ inherits: 2.0.4
+ url-parse: 1.5.10
+ dev: true
+ engines:
+ node: '>=12'
+ resolution:
+ integrity: sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==
+ /sockjs/0.3.24:
+ dependencies:
+ faye-websocket: 0.11.4
+ uuid: 8.3.2
+ websocket-driver: 0.7.4
+ dev: true
+ resolution:
+ integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==
+ /sort-keys/1.1.2:
+ dependencies:
+ is-plain-obj: 1.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==
+ /source-list-map/2.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
+ /source-map-js/1.2.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==
+ /source-map-resolve/0.5.3:
+ dependencies:
+ atob: 2.1.2
+ decode-uri-component: 0.2.2
+ resolve-url: 0.2.1
+ source-map-url: 0.4.1
+ urix: 0.1.0
+ deprecated: See https://github.com/lydell/source-map-resolve#deprecated
+ dev: true
+ resolution:
+ integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
+ /source-map-resolve/0.6.0:
+ dependencies:
+ atob: 2.1.2
+ decode-uri-component: 0.2.2
+ deprecated: See https://github.com/lydell/source-map-resolve#deprecated
+ dev: false
+ resolution:
+ integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==
+ /source-map-support/0.5.21:
+ dependencies:
+ buffer-from: 1.1.2
+ source-map: 0.6.1
+ dev: true
+ resolution:
+ integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
+ /source-map-url/0.4.1:
+ deprecated: See https://github.com/lydell/source-map-url#deprecated
+ dev: true
+ resolution:
+ integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==
+ /source-map/0.5.7:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
+ /source-map/0.6.1:
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
+ /source-map/0.7.4:
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==
+ /sourcemap-codec/1.4.8:
+ deprecated: Please use @jridgewell/sourcemap-codec instead
+ dev: true
+ resolution:
+ integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==
+ /spdx-correct/3.2.0:
+ dependencies:
+ spdx-expression-parse: 3.0.1
+ spdx-license-ids: 3.0.18
+ dev: true
+ resolution:
+ integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==
+ /spdx-exceptions/2.5.0:
+ dev: true
+ resolution:
+ integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==
+ /spdx-expression-parse/3.0.1:
+ dependencies:
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.18
+ dev: true
+ resolution:
+ integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
+ /spdx-license-ids/3.0.18:
+ dev: true
+ resolution:
+ integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==
+ /spdy-transport/3.0.0_supports-color@6.1.0:
+ dependencies:
+ debug: 4.3.4_supports-color@6.1.0
+ detect-node: 2.1.0
+ hpack.js: 2.1.6
+ obuf: 1.1.2
+ readable-stream: 3.6.2
+ wbuf: 1.7.3
+ dev: true
+ peerDependencies:
+ supports-color: '*'
+ resolution:
+ integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==
+ /spdy/4.0.2_supports-color@6.1.0:
+ dependencies:
+ debug: 4.3.4_supports-color@6.1.0
+ handle-thing: 2.0.1
+ http-deceiver: 1.2.7
+ select-hose: 2.0.0
+ spdy-transport: 3.0.0_supports-color@6.1.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ peerDependencies:
+ supports-color: '*'
+ resolution:
+ integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==
+ /split-string/3.1.0:
+ dependencies:
+ extend-shallow: 3.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
+ /sprintf-js/1.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
+ /ssri/6.0.2:
+ dependencies:
+ figgy-pudding: 3.5.2
+ dev: true
+ resolution:
+ integrity: sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==
+ /ssri/8.0.1:
+ dependencies:
+ minipass: 3.3.6
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==
+ /stable/0.1.8:
+ deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
+ dev: true
+ resolution:
+ integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
+ /stack-utils/2.0.6:
+ dependencies:
+ escape-string-regexp: 2.0.0
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==
+ /stackframe/1.3.4:
+ dev: true
+ resolution:
+ integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==
+ /static-eval/2.0.2:
+ dependencies:
+ escodegen: 1.14.3
+ dev: true
+ resolution:
+ integrity: sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==
+ /static-extend/0.1.2:
+ dependencies:
+ define-property: 0.2.5
+ object-copy: 0.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==
+ /statuses/1.5.0:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
+ /statuses/2.0.1:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==
+ /stream-browserify/2.0.2:
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ dev: true
+ resolution:
+ integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==
+ /stream-each/1.2.3:
+ dependencies:
+ end-of-stream: 1.4.4
+ stream-shift: 1.0.3
+ dev: true
+ resolution:
+ integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==
+ /stream-http/2.8.3:
+ dependencies:
+ builtin-status-codes: 3.0.0
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ to-arraybuffer: 1.0.1
+ xtend: 4.0.2
+ dev: true
+ resolution:
+ integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==
+ /stream-shift/1.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==
+ /strict-uri-encode/1.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==
+ /string-argv/0.3.1:
+ dev: true
+ engines:
+ node: '>=0.6.19'
+ resolution:
+ integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
+ /string-length/4.0.2:
+ dependencies:
+ char-regex: 1.0.2
+ strip-ansi: 6.0.1
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==
+ /string-natural-compare/3.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==
+ /string-width/3.1.0:
+ dependencies:
+ emoji-regex: 7.0.3
+ is-fullwidth-code-point: 2.0.0
+ strip-ansi: 5.2.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
+ /string-width/4.2.3:
+ dependencies:
+ emoji-regex: 8.0.0
+ is-fullwidth-code-point: 3.0.0
+ strip-ansi: 6.0.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
+ /string.prototype.matchall/4.0.11:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ get-intrinsic: 1.2.4
+ gopd: 1.0.1
+ has-symbols: 1.0.3
+ internal-slot: 1.0.7
+ regexp.prototype.flags: 1.5.2
+ set-function-name: 2.0.2
+ side-channel: 1.0.6
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==
+ /string.prototype.padend/3.1.6:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==
+ /string.prototype.trim/1.2.9:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==
+ /string.prototype.trimend/1.0.8:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==
+ /string.prototype.trimstart/1.0.8:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==
+ /string_decoder/1.1.1:
+ dependencies:
+ safe-buffer: 5.1.2
+ dev: true
+ resolution:
+ integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
+ /string_decoder/1.3.0:
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: true
+ resolution:
+ integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
+ /stringify-object/3.3.0:
+ dependencies:
+ get-own-enumerable-property-symbols: 3.0.2
+ is-obj: 1.0.1
+ is-regexp: 1.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==
+ /strip-ansi/3.0.1:
+ dependencies:
+ ansi-regex: 2.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==
+ /strip-ansi/5.2.0:
+ dependencies:
+ ansi-regex: 4.1.1
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
+ /strip-ansi/6.0.0:
+ dependencies:
+ ansi-regex: 5.0.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
+ /strip-ansi/6.0.1:
+ dependencies:
+ ansi-regex: 5.0.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
+ /strip-bom/3.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==
+ /strip-bom/4.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==
+ /strip-comments/1.0.2:
+ dependencies:
+ babel-extract-comments: 1.0.0
+ babel-plugin-transform-object-rest-spread: 6.26.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==
+ /strip-eof/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==
+ /strip-final-newline/2.0.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
+ /strip-indent/3.0.0:
+ dependencies:
+ min-indent: 1.0.1
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==
+ /strip-json-comments/3.1.1:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
+ /style-loader/1.3.0_webpack@4.44.2:
+ dependencies:
+ loader-utils: 2.0.4
+ schema-utils: 2.7.1
+ webpack: 4.44.2
+ dev: true
+ engines:
+ node: '>= 8.9.0'
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ resolution:
+ integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==
+ /stylehacks/4.0.3:
+ dependencies:
+ browserslist: 4.23.0
+ postcss: 7.0.39
+ postcss-selector-parser: 3.1.2
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==
+ /supports-color/5.5.0:
+ dependencies:
+ has-flag: 3.0.0
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
+ /supports-color/6.1.0:
+ dependencies:
+ has-flag: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
+ /supports-color/7.2.0:
+ dependencies:
+ has-flag: 4.0.0
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
+ /supports-color/8.1.1:
+ dependencies:
+ has-flag: 4.0.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
+ /supports-hyperlinks/2.3.0:
+ dependencies:
+ has-flag: 4.0.0
+ supports-color: 7.2.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==
+ /supports-preserve-symlinks-flag/1.0.0:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
+ /svg-parser/2.0.4:
+ dev: true
+ resolution:
+ integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==
+ /svgo/1.3.2:
+ dependencies:
+ chalk: 2.4.2
+ coa: 2.0.2
+ css-select: 2.1.0
+ css-select-base-adapter: 0.1.1
+ css-tree: 1.0.0-alpha.37
+ csso: 4.2.0
+ js-yaml: 3.14.1
+ mkdirp: 0.5.6
+ object.values: 1.2.0
+ sax: 1.2.4
+ stable: 0.1.8
+ unquote: 1.1.1
+ util.promisify: 1.0.1
+ deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x.
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==
+ /symbol-tree/3.2.4:
+ dev: true
+ resolution:
+ integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
+ /table/6.8.2:
+ dependencies:
+ ajv: 8.13.0
+ lodash.truncate: 4.4.2
+ slice-ansi: 4.0.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ dev: true
+ engines:
+ node: '>=10.0.0'
+ resolution:
+ integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==
+ /tapable/1.1.3:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
+ /tar/6.2.1:
+ dependencies:
+ chownr: 2.0.0
+ fs-minipass: 2.1.0
+ minipass: 5.0.0
+ minizlib: 2.1.2
+ mkdirp: 1.0.4
+ yallist: 4.0.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==
+ /temp-dir/1.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==
+ /tempy/0.3.0:
+ dependencies:
+ temp-dir: 1.0.0
+ type-fest: 0.3.1
+ unique-string: 1.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==
+ /terminal-link/2.1.1:
+ dependencies:
+ ansi-escapes: 4.3.2
+ supports-hyperlinks: 2.3.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==
+ /terser-webpack-plugin/1.4.5_webpack@4.44.2:
+ dependencies:
+ cacache: 12.0.4
+ find-cache-dir: 2.1.0
+ is-wsl: 1.1.0
+ schema-utils: 1.0.0
+ serialize-javascript: 4.0.0
+ source-map: 0.6.1
+ terser: 4.8.1
+ webpack: 4.44.2
+ webpack-sources: 1.4.3
+ worker-farm: 1.7.0
+ dev: true
+ engines:
+ node: '>= 6.9.0'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==
+ /terser-webpack-plugin/4.2.3_webpack@4.44.2:
+ dependencies:
+ cacache: 15.3.0
+ find-cache-dir: 3.3.2
+ jest-worker: 26.6.2
+ p-limit: 3.1.0
+ schema-utils: 3.3.0
+ serialize-javascript: 5.0.1
+ source-map: 0.6.1
+ terser: 5.31.0
+ webpack: 4.44.2
+ webpack-sources: 1.4.3
+ dev: true
+ engines:
+ node: '>= 10.13.0'
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ resolution:
+ integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==
+ /terser/4.8.1:
+ dependencies:
+ commander: 2.20.3
+ source-map: 0.6.1
+ source-map-support: 0.5.21
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==
+ /terser/5.31.0:
+ dependencies:
+ '@jridgewell/source-map': 0.3.6
+ acorn: 8.11.3
+ commander: 2.20.3
+ source-map-support: 0.5.21
+ dev: true
+ engines:
+ node: '>=10'
+ hasBin: true
+ resolution:
+ integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==
+ /test-exclude/6.0.0:
+ dependencies:
+ '@istanbuljs/schema': 0.1.3
+ glob: 7.2.3
+ minimatch: 3.1.2
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==
+ /text-table/0.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
+ /throat/5.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==
+ /through/2.3.8:
+ dev: true
+ resolution:
+ integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==
+ /through2/2.0.5:
+ dependencies:
+ readable-stream: 2.3.8
+ xtend: 4.0.2
+ dev: true
+ resolution:
+ integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
+ /thunky/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==
+ /timers-browserify/2.0.12:
+ dependencies:
+ setimmediate: 1.0.5
+ dev: true
+ engines:
+ node: '>=0.6.0'
+ resolution:
+ integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==
+ /timsort/0.3.0:
+ dev: true
+ resolution:
+ integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==
+ /tmpl/1.0.5:
+ dev: true
+ resolution:
+ integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==
+ /to-arraybuffer/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==
+ /to-fast-properties/2.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
+ /to-object-path/0.3.0:
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==
+ /to-regex-range/2.1.1:
+ dependencies:
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==
+ /to-regex-range/5.0.1:
+ dependencies:
+ is-number: 7.0.0
+ engines:
+ node: '>=8.0'
+ resolution:
+ integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
+ /to-regex/3.0.2:
+ dependencies:
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ regex-not: 1.0.2
+ safe-regex: 1.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
+ /toidentifier/1.0.1:
+ dev: true
+ engines:
+ node: '>=0.6'
+ resolution:
+ integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==
+ /tough-cookie/4.1.4:
+ dependencies:
+ psl: 1.9.0
+ punycode: 2.3.1
+ universalify: 0.2.0
+ url-parse: 1.5.10
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==
+ /tr46/2.1.0:
+ dependencies:
+ punycode: 2.3.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==
+ /tryer/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==
+ /ts-pnp/1.2.0:
+ dev: true
+ engines:
+ node: '>=6'
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ resolution:
+ integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==
+ /tsconfig-paths/3.15.0:
+ dependencies:
+ '@types/json5': 0.0.29
+ json5: 1.0.2
+ minimist: 1.2.8
+ strip-bom: 3.0.0
+ dev: true
+ resolution:
+ integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==
+ /tslib/1.14.1:
+ dev: true
+ resolution:
+ integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
+ /tslib/2.6.2:
+ dev: true
+ resolution:
+ integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
+ /tsutils/3.21.0:
+ dependencies:
+ tslib: 1.14.1
+ dev: true
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
+ resolution:
+ integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
+ /tty-browserify/0.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==
+ /type-check/0.3.2:
+ dependencies:
+ prelude-ls: 1.1.2
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==
+ /type-check/0.4.0:
+ dependencies:
+ prelude-ls: 1.2.1
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
+ /type-detect/4.0.8:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
+ /type-fest/0.20.2:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
+ /type-fest/0.21.3:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
+ /type-fest/0.3.1:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==
+ /type-fest/0.6.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==
+ /type-fest/0.8.1:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
+ /type-is/1.6.18:
+ dependencies:
+ media-typer: 0.3.0
+ mime-types: 2.1.35
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
+ /type/2.7.2:
+ dev: true
+ resolution:
+ integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==
+ /typed-array-buffer/1.0.2:
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-typed-array: 1.1.13
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==
+ /typed-array-byte-length/1.0.1:
+ dependencies:
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==
+ /typed-array-byte-offset/1.0.2:
+ dependencies:
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==
+ /typed-array-length/1.0.6:
+ dependencies:
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
+ possible-typed-array-names: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==
+ /typedarray-to-buffer/3.1.5:
+ dependencies:
+ is-typedarray: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
+ /typedarray/0.0.6:
+ dev: true
+ resolution:
+ integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
+ /unbox-primitive/1.0.2:
+ dependencies:
+ call-bind: 1.0.7
+ has-bigints: 1.0.2
+ has-symbols: 1.0.3
+ which-boxed-primitive: 1.0.2
+ dev: true
+ resolution:
+ integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
+ /underscore/1.12.1:
+ dev: true
+ resolution:
+ integrity: sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==
+ /undici-types/5.26.5:
+ resolution:
+ integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
+ /unicode-canonical-property-names-ecmascript/2.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==
+ /unicode-match-property-ecmascript/2.0.0:
+ dependencies:
+ unicode-canonical-property-names-ecmascript: 2.0.0
+ unicode-property-aliases-ecmascript: 2.1.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==
+ /unicode-match-property-value-ecmascript/2.1.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==
+ /unicode-property-aliases-ecmascript/2.1.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==
+ /union-value/1.0.1:
+ dependencies:
+ arr-union: 3.1.0
+ get-value: 2.0.6
+ is-extendable: 0.1.1
+ set-value: 2.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
+ /uniq/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==
+ /uniqs/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==
+ /unique-filename/1.1.1:
+ dependencies:
+ unique-slug: 2.0.2
+ dev: true
+ resolution:
+ integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
+ /unique-slug/2.0.2:
+ dependencies:
+ imurmurhash: 0.1.4
+ dev: true
+ resolution:
+ integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
+ /unique-string/1.0.0:
+ dependencies:
+ crypto-random-string: 1.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==
+ /universalify/0.1.2:
+ dev: true
+ engines:
+ node: '>= 4.0.0'
+ resolution:
+ integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
+ /universalify/0.2.0:
+ dev: true
+ engines:
+ node: '>= 4.0.0'
+ resolution:
+ integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==
+ /universalify/2.0.1:
+ dev: true
+ engines:
+ node: '>= 10.0.0'
+ resolution:
+ integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==
+ /unpipe/1.0.0:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==
+ /unquote/1.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==
+ /unset-value/1.0.0:
+ dependencies:
+ has-value: 0.3.1
+ isobject: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==
+ /upath/1.2.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
+ /update-browserslist-db/1.0.16_browserslist@4.23.0:
+ dependencies:
+ browserslist: 4.23.0
+ escalade: 3.1.2
+ picocolors: 1.0.1
+ dev: true
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+ resolution:
+ integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==
+ /uri-js/4.4.1:
+ dependencies:
+ punycode: 2.3.1
+ dev: true
+ resolution:
+ integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
+ /urix/0.1.0:
+ deprecated: Please see https://github.com/lydell/urix#deprecated
+ dev: true
+ resolution:
+ integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==
+ /url-loader/4.1.1_file-loader@6.1.1+webpack@4.44.2:
+ dependencies:
+ file-loader: 6.1.1_webpack@4.44.2
+ loader-utils: 2.0.4
+ mime-types: 2.1.35
+ schema-utils: 3.3.0
+ webpack: 4.44.2
+ dev: true
+ engines:
+ node: '>= 10.13.0'
+ peerDependencies:
+ file-loader: '*'
+ webpack: ^4.0.0 || ^5.0.0
+ peerDependenciesMeta:
+ file-loader:
+ optional: true
+ resolution:
+ integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==
+ /url-parse/1.5.10:
+ dependencies:
+ querystringify: 2.2.0
+ requires-port: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==
+ /url/0.11.3:
+ dependencies:
+ punycode: 1.4.1
+ qs: 6.12.1
+ dev: true
+ resolution:
+ integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==
+ /use/3.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
+ /util-deprecate/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
+ /util.promisify/1.0.0:
+ dependencies:
+ define-properties: 1.2.1
+ object.getownpropertydescriptors: 2.1.8
+ dev: true
+ resolution:
+ integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==
+ /util.promisify/1.0.1:
+ dependencies:
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ has-symbols: 1.0.3
+ object.getownpropertydescriptors: 2.1.8
+ dev: true
+ resolution:
+ integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==
+ /util/0.10.4:
+ dependencies:
+ inherits: 2.0.3
+ dev: true
+ resolution:
+ integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==
+ /util/0.11.1:
+ dependencies:
+ inherits: 2.0.3
+ dev: true
+ resolution:
+ integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==
+ /utila/0.4.0:
+ dev: true
+ resolution:
+ integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==
+ /utils-merge/1.0.1:
+ dev: true
+ engines:
+ node: '>= 0.4.0'
+ resolution:
+ integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
+ /uuid/3.4.0:
+ deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
+ /uuid/8.3.2:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
+ /v8-compile-cache/2.4.0:
+ dev: true
+ resolution:
+ integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==
+ /v8-to-istanbul/7.1.2:
+ dependencies:
+ '@types/istanbul-lib-coverage': 2.0.6
+ convert-source-map: 1.9.0
+ source-map: 0.7.4
+ dev: true
+ engines:
+ node: '>=10.10.0'
+ resolution:
+ integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==
+ /validate-npm-package-license/3.0.4:
+ dependencies:
+ spdx-correct: 3.2.0
+ spdx-expression-parse: 3.0.1
+ dev: true
+ resolution:
+ integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
+ /vary/1.1.2:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==
+ /vendors/1.0.4:
+ dev: true
+ resolution:
+ integrity: sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==
+ /vm-browserify/1.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
+ /w3c-hr-time/1.0.2:
+ dependencies:
+ browser-process-hrtime: 1.0.0
+ deprecated: Use your platform's native performance.now() and performance.timeOrigin.
+ dev: true
+ resolution:
+ integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==
+ /w3c-xmlserializer/2.0.0:
+ dependencies:
+ xml-name-validator: 3.0.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==
+ /walker/1.0.8:
+ dependencies:
+ makeerror: 1.0.12
+ dev: true
+ resolution:
+ integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==
+ /watchpack-chokidar2/2.0.1:
+ dependencies:
+ chokidar: 2.1.8
+ dev: true
+ optional: true
+ resolution:
+ integrity: sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==
+ /watchpack/1.7.5:
+ dependencies:
+ graceful-fs: 4.2.11
+ neo-async: 2.6.2
+ dev: true
+ optionalDependencies:
+ chokidar: 3.6.0
+ watchpack-chokidar2: 2.0.1
+ resolution:
+ integrity: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==
+ /wbuf/1.7.3:
+ dependencies:
+ minimalistic-assert: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==
+ /webidl-conversions/5.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==
+ /webidl-conversions/6.1.0:
+ dev: true
+ engines:
+ node: '>=10.4'
+ resolution:
+ integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==
+ /webpack-dev-middleware/3.7.3_webpack@4.44.2:
+ dependencies:
+ memory-fs: 0.4.1
+ mime: 2.6.0
+ mkdirp: 0.5.6
+ range-parser: 1.2.1
+ webpack: 4.44.2
+ webpack-log: 2.0.0
+ dev: true
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ resolution:
+ integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==
+ /webpack-dev-server/3.11.1_webpack@4.44.2:
+ dependencies:
+ ansi-html: 0.0.7
+ bonjour: 3.5.0
+ chokidar: 2.1.8
+ compression: 1.7.4
+ connect-history-api-fallback: 1.6.0
+ debug: 4.3.4_supports-color@6.1.0
+ del: 4.1.1
+ express: 4.19.2
+ html-entities: 1.4.0
+ http-proxy-middleware: 0.19.1_debug@4.3.4
+ import-local: 2.0.0
+ internal-ip: 4.3.0
+ ip: 1.1.9
+ is-absolute-url: 3.0.3
+ killable: 1.0.1
+ loglevel: 1.9.1
+ opn: 5.5.0
+ p-retry: 3.0.1
+ portfinder: 1.0.32
+ schema-utils: 1.0.0
+ selfsigned: 1.10.14
+ semver: 6.3.1
+ serve-index: 1.9.1
+ sockjs: 0.3.24
+ sockjs-client: 1.6.1
+ spdy: 4.0.2_supports-color@6.1.0
+ strip-ansi: 3.0.1
+ supports-color: 6.1.0
+ url: 0.11.3
+ webpack: 4.44.2
+ webpack-dev-middleware: 3.7.3_webpack@4.44.2
+ webpack-log: 2.0.0
+ ws: 6.2.2
+ yargs: 13.3.2
+ dev: true
+ engines:
+ node: '>= 6.11.5'
+ hasBin: true
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ webpack-cli: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
+ resolution:
+ integrity: sha512-u4R3mRzZkbxQVa+MBWi2uVpB5W59H3ekZAJsQlKUTdl7Elcah2EhygTPLmeFXybQkf9i2+L0kn7ik9SnXa6ihQ==
+ /webpack-log/2.0.0:
+ dependencies:
+ ansi-colors: 3.2.4
+ uuid: 3.4.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==
+ /webpack-manifest-plugin/2.2.0_webpack@4.44.2:
+ dependencies:
+ fs-extra: 7.0.1
+ lodash: 4.17.21
+ object.entries: 1.1.8
+ tapable: 1.1.3
+ webpack: 4.44.2
+ dev: true
+ engines:
+ node: '>=6.11.5'
+ peerDependencies:
+ webpack: 2 || 3 || 4
+ resolution:
+ integrity: sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==
+ /webpack-sources/1.4.3:
+ dependencies:
+ source-list-map: 2.0.1
+ source-map: 0.6.1
+ dev: true
+ resolution:
+ integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
+ /webpack/4.44.2:
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-module-context': 1.9.0
+ '@webassemblyjs/wasm-edit': 1.9.0
+ '@webassemblyjs/wasm-parser': 1.9.0
+ acorn: 6.4.2
+ ajv: 6.12.6
+ ajv-keywords: 3.5.2_ajv@6.12.6
+ chrome-trace-event: 1.0.3
+ enhanced-resolve: 4.5.0
+ eslint-scope: 4.0.3
+ json-parse-better-errors: 1.0.2
+ loader-runner: 2.4.0
+ loader-utils: 1.4.2
+ memory-fs: 0.4.1
+ micromatch: 3.1.10
+ mkdirp: 0.5.6
+ neo-async: 2.6.2
+ node-libs-browser: 2.2.1
+ schema-utils: 1.0.0
+ tapable: 1.1.3
+ terser-webpack-plugin: 1.4.5_webpack@4.44.2
+ watchpack: 1.7.5
+ webpack-sources: 1.4.3
+ dev: true
+ engines:
+ node: '>=6.11.5'
+ hasBin: true
+ peerDependencies:
+ webpack-cli: '*'
+ webpack-command: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
+ webpack-command:
+ optional: true
+ resolution:
+ integrity: sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==
+ /websocket-driver/0.7.4:
+ dependencies:
+ http-parser-js: 0.5.8
+ safe-buffer: 5.2.1
+ websocket-extensions: 0.1.4
+ dev: true
+ engines:
+ node: '>=0.8.0'
+ resolution:
+ integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==
+ /websocket-extensions/0.1.4:
+ dev: true
+ engines:
+ node: '>=0.8.0'
+ resolution:
+ integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==
+ /whatwg-encoding/1.0.5:
+ dependencies:
+ iconv-lite: 0.4.24
+ dev: true
+ resolution:
+ integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
+ /whatwg-fetch/3.6.20:
+ dev: true
+ resolution:
+ integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==
+ /whatwg-mimetype/2.3.0:
+ dev: true
+ resolution:
+ integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
+ /whatwg-url/8.7.0:
+ dependencies:
+ lodash: 4.17.21
+ tr46: 2.1.0
+ webidl-conversions: 6.1.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==
+ /which-boxed-primitive/1.0.2:
+ dependencies:
+ is-bigint: 1.0.4
+ is-boolean-object: 1.1.2
+ is-number-object: 1.0.7
+ is-string: 1.0.7
+ is-symbol: 1.0.4
+ dev: true
+ resolution:
+ integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
+ /which-builtin-type/1.1.3:
+ dependencies:
+ function.prototype.name: 1.1.6
+ has-tostringtag: 1.0.2
+ is-async-function: 2.0.0
+ is-date-object: 1.0.5
+ is-finalizationregistry: 1.0.2
+ is-generator-function: 1.0.10
+ is-regex: 1.1.4
+ is-weakref: 1.0.2
+ isarray: 2.0.5
+ which-boxed-primitive: 1.0.2
+ which-collection: 1.0.2
+ which-typed-array: 1.1.15
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==
+ /which-collection/1.0.2:
+ dependencies:
+ is-map: 2.0.3
+ is-set: 2.0.3
+ is-weakmap: 2.0.2
+ is-weakset: 2.0.3
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==
+ /which-module/2.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==
+ /which-pm-runs/1.1.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==
+ /which-typed-array/1.1.15:
+ dependencies:
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-tostringtag: 1.0.2
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==
+ /which/1.3.1:
+ dependencies:
+ isexe: 2.0.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
+ /which/2.0.2:
+ dependencies:
+ isexe: 2.0.0
+ dev: true
+ engines:
+ node: '>= 8'
+ hasBin: true
+ resolution:
+ integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
+ /word-wrap/1.2.5:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==
+ /workbox-background-sync/5.1.4:
+ dependencies:
+ workbox-core: 5.1.4
+ dev: true
+ resolution:
+ integrity: sha512-AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA==
+ /workbox-broadcast-update/5.1.4:
+ dependencies:
+ workbox-core: 5.1.4
+ dev: true
+ resolution:
+ integrity: sha512-HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA==
+ /workbox-build/5.1.4:
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/preset-env': 7.24.6_@babel+core@7.24.6
+ '@babel/runtime': 7.24.6
+ '@hapi/joi': 15.1.1
+ '@rollup/plugin-node-resolve': 7.1.3_rollup@1.32.1
+ '@rollup/plugin-replace': 2.4.2_rollup@1.32.1
+ '@surma/rollup-plugin-off-main-thread': 1.4.2
+ common-tags: 1.8.2
+ fast-json-stable-stringify: 2.1.0
+ fs-extra: 8.1.0
+ glob: 7.2.3
+ lodash.template: 4.5.0
+ pretty-bytes: 5.6.0
+ rollup: 1.32.1
+ rollup-plugin-babel: 4.4.0_@babel+core@7.24.6+rollup@1.32.1
+ rollup-plugin-terser: 5.3.1_rollup@1.32.1
+ source-map: 0.7.4
+ source-map-url: 0.4.1
+ stringify-object: 3.3.0
+ strip-comments: 1.0.2
+ tempy: 0.3.0
+ upath: 1.2.0
+ workbox-background-sync: 5.1.4
+ workbox-broadcast-update: 5.1.4
+ workbox-cacheable-response: 5.1.4
+ workbox-core: 5.1.4
+ workbox-expiration: 5.1.4
+ workbox-google-analytics: 5.1.4
+ workbox-navigation-preload: 5.1.4
+ workbox-precaching: 5.1.4
+ workbox-range-requests: 5.1.4
+ workbox-routing: 5.1.4
+ workbox-strategies: 5.1.4
+ workbox-streams: 5.1.4
+ workbox-sw: 5.1.4
+ workbox-window: 5.1.4
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ resolution:
+ integrity: sha512-xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow==
+ /workbox-cacheable-response/5.1.4:
+ dependencies:
+ workbox-core: 5.1.4
+ dev: true
+ resolution:
+ integrity: sha512-0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA==
+ /workbox-core/5.1.4:
+ dev: true
+ resolution:
+ integrity: sha512-+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg==
+ /workbox-expiration/5.1.4:
+ dependencies:
+ workbox-core: 5.1.4
+ dev: true
+ resolution:
+ integrity: sha512-oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ==
+ /workbox-google-analytics/5.1.4:
+ dependencies:
+ workbox-background-sync: 5.1.4
+ workbox-core: 5.1.4
+ workbox-routing: 5.1.4
+ workbox-strategies: 5.1.4
+ deprecated: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained
+ dev: true
+ resolution:
+ integrity: sha512-0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA==
+ /workbox-navigation-preload/5.1.4:
+ dependencies:
+ workbox-core: 5.1.4
+ dev: true
+ resolution:
+ integrity: sha512-Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ==
+ /workbox-precaching/5.1.4:
+ dependencies:
+ workbox-core: 5.1.4
+ dev: true
+ resolution:
+ integrity: sha512-gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA==
+ /workbox-range-requests/5.1.4:
+ dependencies:
+ workbox-core: 5.1.4
+ dev: true
+ resolution:
+ integrity: sha512-1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw==
+ /workbox-routing/5.1.4:
+ dependencies:
+ workbox-core: 5.1.4
+ dev: true
+ resolution:
+ integrity: sha512-8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw==
+ /workbox-strategies/5.1.4:
+ dependencies:
+ workbox-core: 5.1.4
+ workbox-routing: 5.1.4
+ dev: true
+ resolution:
+ integrity: sha512-VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA==
+ /workbox-streams/5.1.4:
+ dependencies:
+ workbox-core: 5.1.4
+ workbox-routing: 5.1.4
+ dev: true
+ resolution:
+ integrity: sha512-xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw==
+ /workbox-sw/5.1.4:
+ dev: true
+ resolution:
+ integrity: sha512-9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA==
+ /workbox-webpack-plugin/5.1.4_webpack@4.44.2:
+ dependencies:
+ '@babel/runtime': 7.24.6
+ fast-json-stable-stringify: 2.1.0
+ source-map-url: 0.4.1
+ upath: 1.2.0
+ webpack: 4.44.2
+ webpack-sources: 1.4.3
+ workbox-build: 5.1.4
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ==
+ /workbox-window/5.1.4:
+ dependencies:
+ workbox-core: 5.1.4
+ dev: true
+ resolution:
+ integrity: sha512-vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw==
+ /worker-farm/1.7.0:
+ dependencies:
+ errno: 0.1.8
+ dev: true
+ resolution:
+ integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
+ /worker-rpc/0.1.1:
+ dependencies:
+ microevent.ts: 0.1.1
+ dev: true
+ resolution:
+ integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==
+ /wrap-ansi/5.1.0:
+ dependencies:
+ ansi-styles: 3.2.1
+ string-width: 3.1.0
+ strip-ansi: 5.2.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
+ /wrap-ansi/6.2.0:
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
+ /wrap-ansi/7.0.0:
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
+ /wrappy/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
+ /write-file-atomic/3.0.3:
+ dependencies:
+ imurmurhash: 0.1.4
+ is-typedarray: 1.0.0
+ signal-exit: 3.0.7
+ typedarray-to-buffer: 3.1.5
+ dev: true
+ resolution:
+ integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
+ /ws/6.2.2:
+ dependencies:
+ async-limiter: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==
+ /ws/7.5.9:
+ dev: true
+ engines:
+ node: '>=8.3.0'
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ resolution:
+ integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==
+ /xml-name-validator/3.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
+ /xmlchars/2.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
+ /xtend/4.0.2:
+ dev: true
+ engines:
+ node: '>=0.4'
+ resolution:
+ integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
+ /y18n/4.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==
+ /yallist/3.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
+ /yallist/4.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
+ /yaml/1.10.2:
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
+ /yargs-parser/13.1.2:
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+ dev: true
+ resolution:
+ integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==
+ /yargs-parser/18.1.3:
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
+ /yargs/13.3.2:
+ dependencies:
+ cliui: 5.0.0
+ find-up: 3.0.0
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ require-main-filename: 2.0.0
+ set-blocking: 2.0.0
+ string-width: 3.1.0
+ which-module: 2.0.1
+ y18n: 4.0.3
+ yargs-parser: 13.1.2
+ dev: true
+ resolution:
+ integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==
+ /yargs/15.4.1:
+ dependencies:
+ cliui: 6.0.0
+ decamelize: 1.2.0
+ find-up: 4.1.0
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ require-main-filename: 2.0.0
+ set-blocking: 2.0.0
+ string-width: 4.2.3
+ which-module: 2.0.1
+ y18n: 4.0.3
+ yargs-parser: 18.1.3
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
+ /yocto-queue/0.1.0:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
+specifiers:
+ '@testing-library/jest-dom': 5.11.9
+ '@testing-library/react': 11.2.5
+ '@testing-library/user-event': 12.6.2
+ chalk: 4.1.0
+ eslint-config-airbnb: 18.2.1
+ eslint-config-prettier: 8.1.0
+ eslint-plugin-prettier: 3.3.1
+ husky: 4.3.8
+ lint-staged: 10.5.4
+ npm-run-all: 4.1.5
+ prettier: 2.2.1
+ react: 17.0.1
+ react-dom: 17.0.1
+ react-scripts: 4.0.3
diff --git a/public/img/favicon.ico b/public/img/favicon.ico
new file mode 100755
index 0000000..a11777c
Binary files /dev/null and b/public/img/favicon.ico differ
diff --git a/public/img/logo192.png b/public/img/logo192.png
new file mode 100755
index 0000000..fc44b0a
Binary files /dev/null and b/public/img/logo192.png differ
diff --git a/public/img/logo512.png b/public/img/logo512.png
new file mode 100755
index 0000000..a4e47a6
Binary files /dev/null and b/public/img/logo512.png differ
diff --git a/public/index.html b/public/index.html
new file mode 100755
index 0000000..c64c88f
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Card Match Game
+
+
+
+
+
+
+
diff --git a/public/manifest.json b/public/manifest.json
new file mode 100755
index 0000000..87eb9f9
--- /dev/null
+++ b/public/manifest.json
@@ -0,0 +1,25 @@
+{
+ "short_name": "app_short_name",
+ "name": "App_name",
+ "icons": [
+ {
+ "src": "img/favicon.ico",
+ "sizes": "64x64 32x32 24x24 16x16",
+ "type": "image/x-icon"
+ },
+ {
+ "src": "img/logo192.png",
+ "type": "image/png",
+ "sizes": "192x192"
+ },
+ {
+ "src": "img/logo512.png",
+ "type": "image/png",
+ "sizes": "512x512"
+ }
+ ],
+ "start_url": ".",
+ "display": "standalone",
+ "theme_color": "#000000",
+ "background_color": "#ffffff"
+}
diff --git a/public/robots.txt b/public/robots.txt
new file mode 100755
index 0000000..e9e57dc
--- /dev/null
+++ b/public/robots.txt
@@ -0,0 +1,3 @@
+# https://www.robotstxt.org/robotstxt.html
+User-agent: *
+Disallow:
diff --git a/src/App.css b/src/App.css
new file mode 100755
index 0000000..f780568
--- /dev/null
+++ b/src/App.css
@@ -0,0 +1,15 @@
+* {
+ padding: 0;
+ margin: 0;
+ font-family: Roboto;
+ box-sizing: border-box;
+}
+
+body {
+ margin: 0;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
+ 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
+ sans-serif;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
diff --git a/src/App.js b/src/App.js
new file mode 100755
index 0000000..3a54b71
--- /dev/null
+++ b/src/App.js
@@ -0,0 +1,252 @@
+import MatchGame from './components/MatchGame'
+import './App.css'
+
+// These are the lists used in the application. You can move them to any component needed.
+const tabsList = [
+ {tabId: 'FRUIT', displayText: 'Fruits'},
+ {tabId: 'ANIMAL', displayText: 'Animals'},
+ {tabId: 'PLACE', displayText: 'Places'},
+]
+const imagesList = [
+ {
+ id: 'b11ec8ce-35c9-4d67-a7f7-07516d0d8186',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/orange-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/orange-thumbnail-img.png',
+ category: 'FRUIT',
+ },
+ {
+ id: '04ac6b9f-b7e7-45f7-a8fc-fd48f3f72526',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/panda-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/panda-thumbnail-img.png',
+ category: 'ANIMAL',
+ },
+ {
+ id: 'a132f546-5b2b-4c0d-b9e4-e524bdf904cc',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/zebra-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/zebra-thumbnail-img.png',
+ category: 'ANIMAL',
+ },
+ {
+ id: 'd89386da-94db-4275-9cb5-249c6e071a19',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/paris-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/paris-thumbnail-img.png',
+ category: 'PLACE',
+ },
+ {
+ id: 'd810bbb0-1683-407a-8db6-898fe7b75782',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/giraffe-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/giraffe-thumbnail-img.png',
+ category: 'ANIMAL',
+ },
+ {
+ id: '176aab62-e86a-4ccd-8b89-5b83c3f02506',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/taj-mahal-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/taj-mahal-thumbnail-img.png',
+ category: 'PLACE',
+ },
+ {
+ id: '0e8daf1b-45b0-4eb0-9dde-383fede78a9b',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/monkey-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/monkey-thumbnail-img.png',
+ category: 'ANIMAL',
+ },
+ {
+ id: '1a38bf4a-659d-4470-956c-56c1bedd26ac',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/cheetah-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/cheetah-thumbnail-img.png',
+ category: 'ANIMAL',
+ },
+ {
+ id: '8f2ebd70-4fdd-47a0-b4f9-a6c654b519ab',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/ooti-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/ooti-thumbnail-img.png',
+ category: 'PLACE',
+ },
+ {
+ id: '7a72c38e-a83d-48eb-b9ce-ae3c0361cc49',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/pineapple-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/pineapple-thumbnail-img.png',
+ category: 'FRUIT',
+ },
+ {
+ id: '97a33ed5-98ed-4c95-a8f0-1595880b3b69',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/strawberry-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/strawberry-thumbnail-img.png',
+ category: 'FRUIT',
+ },
+ {
+ id: '07e20159-a950-4c22-9ca8-5ed71563ae24',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/maldives-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/maldives-thumbnail-img.png',
+ category: 'PLACE',
+ },
+ {
+ id: '43883239-8a28-47dc-9e93-43ef31654c17',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/emerald-lake-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/emerald-thumbnail-lake-img.png',
+ category: 'PLACE',
+ },
+ {
+ id: '49865ac4-b5e8-4d04-893b-d69ad6004da8',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/watermelon-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/watermelon-thumbnail-img.png',
+ category: 'FRUIT',
+ },
+ {
+ id: '649ab251-7fd6-4d65-aa0f-39020ce25932',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/elephant-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/elephant-thumbnail-img.png',
+ category: 'ANIMAL',
+ },
+ {
+ id: '1d0d1c41-e05e-4820-8614-34ee5ada20e0',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/jammu-hills-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/jammu-thumbnail-hills-img.png',
+ category: 'PLACE',
+ },
+ {
+ id: '88b4ab36-a0c1-4c56-9ce5-3b80dd8c7669',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/fierce-coyote-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/fierce-thumbnail-coyote-img.png',
+ category: 'ANIMAL',
+ },
+ {
+ id: '8a841bf8-3222-44da-b0fb-4c60190402d7',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/lidder-valley-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/lidder-thumbnail-valley-img.png',
+ category: 'PLACE',
+ },
+ {
+ id: 'd406e63c-eaaf-49ea-88a6-ed6a1572eb97',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/kivi-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/kivi-thumbnail-img.png',
+ category: 'FRUIT',
+ },
+ {
+ id: 'e997ebf9-9a47-4b7e-9035-01ae372d73dc',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/dragon-fruit-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/dragon-thumbnail-fruit-img.png',
+ category: 'FRUIT',
+ },
+ {
+ id: 'c7fbe10e-3282-4fca-815b-91b75d5228cb',
+ imageUrl: 'https://assets.ccbp.in/frontend/react-js/match-game/goa-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/goa-thumbnail-img.png',
+ category: 'PLACE',
+ },
+ {
+ id: '4210274c-7304-44d6-8690-c5251252cd10',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/papaya-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/papaya-thumbnail-img.png',
+ category: 'FRUIT',
+ },
+ {
+ id: '057b6193-a80d-4036-9e6e-fe847c99fbb6',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/mixed-fruits-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/mixed-thumbnail-fruits-img.png',
+ category: 'FRUIT',
+ },
+ {
+ id: '4e56c59b-835b-4802-87fe-77aaaa5b9526',
+ imageUrl: 'https://assets.ccbp.in/frontend/react-js/match-game/fox-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/fox-thumbnail-img.png',
+ category: 'ANIMAL',
+ },
+ {
+ id: 'ad75a7b1-0875-4700-977b-2c45924509aa',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/lotus-temple-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/lotus-thumbnail-temple-img.png',
+ category: 'PLACE',
+ },
+ {
+ id: '525aba17-ed5c-4f09-ad1c-b6bff222c97a',
+ imageUrl: 'https://assets.ccbp.in/frontend/react-js/match-game/dog-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/dog-thumbnail-img.png',
+ category: 'ANIMAL',
+ },
+ {
+ id: 'c6c66b00-c130-47d2-9d3a-1c3378d08aba',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/apple-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/apple-thumbnail-img.png',
+ category: 'FRUIT',
+ },
+ {
+ id: '6078b408-4f10-46d3-8815-db14403dbd73',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/bhadrinath-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/bhadrinath-thumbnail-img.png',
+ category: 'PLACE',
+ },
+ {
+ id: 'a2baca84-3beb-49d1-bced-f9a88c161bec',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/camel-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/camel-thumbnail-img.png',
+ category: 'ANIMAL',
+ },
+ {
+ id: '1edac278-8390-4da9-b914-5f41fb49283c',
+ imageUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/cherry-img.png',
+ thumbnailUrl:
+ 'https://assets.ccbp.in/frontend/react-js/match-game/cherry-thumbnail-img.png',
+ category: 'FRUIT',
+ },
+]
+
+const App = () =>
+
+export default App
diff --git a/src/components/Gameover/index.css b/src/components/Gameover/index.css
new file mode 100644
index 0000000..f8e049a
--- /dev/null
+++ b/src/components/Gameover/index.css
@@ -0,0 +1,58 @@
+.bg-container {
+ background-image: url('https://assets.ccbp.in/frontend/react-js/match-game-score-card-lg-bg.png');
+ background-size: cover;
+ background-position: bottom;
+ background-repeat: no-repeat;
+ height: 650px;
+ width: 500px;
+ display: flex;
+ flex-direction: column;
+ justify-content: flex-end;
+ align-items: center;
+ gap: 1rem 0;
+ border-radius: 0.5rem;
+}
+
+.game-over-container {
+ height: 75%;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ gap: 1rem 0;
+}
+
+.trophy-img {
+ width: 275px;
+ object-fit: contain;
+}
+
+.score-title {
+ color: #fff;
+ font-size: 1.5rem;
+}
+
+.game-over-score {
+ color: #fff;
+ font-size: 2.5rem;
+}
+
+.btn-container {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ background-color: #cf60c8;
+ border-radius: 0.5rem;
+ cursor: pointer;
+ padding: 0.5rem 1rem;
+ gap: 0 0.5rem;
+}
+
+.play-again-btn {
+ background: transparent;
+ outline: none;
+ border: none;
+ cursor: pointer;
+ color: #fff;
+ font-size: 1rem;
+}
diff --git a/src/components/Gameover/index.js b/src/components/Gameover/index.js
new file mode 100644
index 0000000..6914536
--- /dev/null
+++ b/src/components/Gameover/index.js
@@ -0,0 +1,31 @@
+import './index.css'
+
+const Gameover = props => {
+ const {score, playAgain} = props
+
+ return (
+
+
+
+
YOUR SCORE
+
{score}
+
+
+
+ PLAY AGAIN
+
+
+
+
+ )
+}
+
+export default Gameover
diff --git a/src/components/MatchGame/index.css b/src/components/MatchGame/index.css
new file mode 100644
index 0000000..fd052b6
--- /dev/null
+++ b/src/components/MatchGame/index.css
@@ -0,0 +1,119 @@
+.main-container {
+ height: 100vh;
+ background-image: url('https://assets.ccbp.in/frontend/react-js/match-game-bg.png');
+ background-size: cover;
+ background-repeat: no-repeat;
+}
+
+.wrapper {
+ height: 90%;
+ width: 100%;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.match-container {
+ display: inline-flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ align-self: center;
+ gap: 2rem 0;
+}
+
+@media screen and (max-width: 424px) {
+ .navbar {
+ gap: 0.5rem;
+ padding: 0.5rem;
+ }
+
+ .score-and-timer-container {
+ gap: 0.5rem;
+ }
+
+ .score,
+ .seconds {
+ font-size: 1rem;
+ }
+
+ .website-logo {
+ width: 150px;
+ }
+
+ .tab-item {
+ font-size: 0.75rem;
+ font-weight: 500;
+ }
+
+ .tab-item::after {
+ bottom: -2px;
+ height: 2px;
+ }
+
+ .wrapper {
+ height: 80%;
+ }
+
+ .random-match-image-container,
+ .thumbnails-container {
+ width: 300px;
+ }
+
+ .thumbnail-img {
+ width: 40px;
+ }
+}
+
+@media screen and (min-width: 425px) and (max-width: 1023px) {
+ .website-logo {
+ width: 150px;
+ }
+
+ .score,
+ .seconds {
+ font-size: 1rem;
+ }
+
+ .match-container {
+ gap: 1rem 0;
+ }
+
+ .random-match-image-container,
+ .thumbnails-container {
+ width: 400px;
+ }
+
+ .tab-item {
+ font-size: 1rem;
+ position: relative;
+ }
+
+ .tab-item::after {
+ bottom: -2px;
+ height: 2px;
+ }
+
+ .bg-container {
+ background-image: url('https://assets.ccbp.in/frontend/react-js/match-game-score-card-sm-bg.png');
+ height: 500px;
+ width: 300px;
+ gap: 0.75rem 0;
+ }
+
+ .trophy-img {
+ width: 200px;
+ }
+
+ .score-title {
+ font-size: 1rem;
+ }
+
+ .game-over-score {
+ font-size: 2rem;
+ }
+
+ .play-again-btn {
+ padding: 0.25rem 0.5rem;
+ }
+}
diff --git a/src/components/MatchGame/index.js b/src/components/MatchGame/index.js
new file mode 100644
index 0000000..754bb99
--- /dev/null
+++ b/src/components/MatchGame/index.js
@@ -0,0 +1,115 @@
+import {Component} from 'react'
+import Navbar from '../Navbar'
+import Navtabs from '../Navtabs'
+import Thumbnail from '../Thumbnail'
+import Gameover from '../Gameover'
+import RandomMatchImage from '../RandomMatchImage'
+import './index.css'
+
+export default class MatchGame extends Component {
+ constructor(props) {
+ super(props)
+ this.state = {
+ activeTabId: props.tabsList[0].tabId,
+ randomMatchImageIndex: 0,
+ score: 0,
+ seconds: 60,
+ gameOver: false,
+ }
+ this.timerId = null
+ }
+
+ componentDidMount() {
+ this.timerId = setInterval(() => {
+ this.setState(prevState => {
+ const {seconds} = prevState
+ if (seconds === 0) {
+ clearInterval(this.timerId)
+ return {gameOver: true}
+ }
+ return {seconds: seconds - 1}
+ })
+ }, 1000)
+ }
+
+ componentWillUnmount() {
+ clearInterval(this.timerId)
+ }
+
+ matchImage = id => {
+ const {randomMatchImageIndex} = this.state
+ const {imagesList} = this.props
+ if (id === imagesList[randomMatchImageIndex].id) {
+ this.setState(prevState => ({
+ score: prevState.score + 1,
+ randomMatchImageIndex: Math.floor(Math.random() * imagesList.length),
+ }))
+ } else {
+ clearInterval(this.timerId)
+ this.setState({gameOver: true})
+ }
+ }
+
+ playAgain = () => {
+ const {imagesList} = this.props
+ this.setState({
+ score: 0,
+ seconds: 60,
+ gameOver: false,
+ randomMatchImageIndex: Math.floor(Math.random() * imagesList.length),
+ })
+ this.timerId = setInterval(() => {
+ this.setState(prevState => {
+ const {seconds} = prevState
+ if (seconds === 0) {
+ clearInterval(this.timerId)
+ return {gameOver: true}
+ }
+ return {seconds: seconds - 1}
+ })
+ }, 1000)
+ }
+
+ setActiveTab = id => this.setState({activeTabId: id})
+
+ render() {
+ const {tabsList, imagesList} = this.props
+ const {
+ score,
+ seconds,
+ activeTabId,
+ randomMatchImageIndex,
+ gameOver,
+ } = this.state
+ const filteredImagesList = imagesList.filter(
+ image => image.category === activeTabId,
+ )
+
+ return (
+
+
+
+ {!gameOver ? (
+
+
+
+
+
+ ) : (
+
+ )}
+
+
+ )
+ }
+}
diff --git a/src/components/Navbar/index.css b/src/components/Navbar/index.css
new file mode 100644
index 0000000..6cf58c4
--- /dev/null
+++ b/src/components/Navbar/index.css
@@ -0,0 +1,57 @@
+.navbar {
+ background-color: #2c0e3a;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ height: 10%;
+ list-style-type: none;
+}
+
+.logo-container {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+
+.website-logo {
+ width: 200px;
+ object-fit: contain;
+}
+
+.score-and-timer-container {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ gap: 0 2rem;
+}
+
+.score-text {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ gap: 0 0.5rem;
+}
+
+.score-text {
+ color: white;
+}
+
+.score,
+.seconds {
+ color: #fec653;
+ display: inline;
+ font-size: 1.25rem;
+}
+
+.timer-container {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+
+.timer-logo {
+ width: 1.25rem;
+ margin-right: 0.5rem;
+ object-fit: contain;
+}
diff --git a/src/components/Navbar/index.js b/src/components/Navbar/index.js
new file mode 100644
index 0000000..ca94ad3
--- /dev/null
+++ b/src/components/Navbar/index.js
@@ -0,0 +1,31 @@
+import './index.css'
+
+const Navbar = props => {
+ const {score, seconds} = props
+ return (
+
+
+
+
+
+
+ Score: {score}
+
+
+
+
{seconds} sec
+
+
+
+ )
+}
+
+export default Navbar
diff --git a/src/components/Navtabs/index.css b/src/components/Navtabs/index.css
new file mode 100644
index 0000000..574109c
--- /dev/null
+++ b/src/components/Navtabs/index.css
@@ -0,0 +1,40 @@
+.tabs-container {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ gap: 0 1rem;
+}
+
+.tab-item {
+ list-style-type: none;
+ position: relative;
+ cursor: pointer;
+}
+
+.tab-btn {
+ background: transparent;
+ border: none;
+ outline: none;
+ cursor: pointer;
+ font-size: 1.5rem;
+ font-weight: 500;
+ color: #fff;
+}
+
+.tab-item::after {
+ position: absolute;
+ content: '';
+ bottom: -5px;
+ left: 0;
+ height: 4px;
+ background-color: #fec653;
+ width: 0%;
+}
+
+.active {
+ color: #fec653;
+}
+
+.active::after {
+ width: 100%;
+}
diff --git a/src/components/Navtabs/index.js b/src/components/Navtabs/index.js
new file mode 100644
index 0000000..38769a3
--- /dev/null
+++ b/src/components/Navtabs/index.js
@@ -0,0 +1,26 @@
+import './index.css'
+
+const NavTabs = props => {
+ const {tabsList, activeTabId, setActiveTab} = props
+
+ return (
+
+ {tabsList.map(tab => (
+
+ setActiveTab(tab.tabId)}
+ >
+ {tab.displayText}
+
+
+ ))}
+
+ )
+}
+
+export default NavTabs
diff --git a/src/components/RandomMatchImage/index.css b/src/components/RandomMatchImage/index.css
new file mode 100644
index 0000000..466f9a6
--- /dev/null
+++ b/src/components/RandomMatchImage/index.css
@@ -0,0 +1,9 @@
+.random-match-image-container {
+ width: 500px;
+}
+
+.random-image {
+ height: 100%;
+ width: 100%;
+ object-fit: contain;
+}
\ No newline at end of file
diff --git a/src/components/RandomMatchImage/index.js b/src/components/RandomMatchImage/index.js
new file mode 100644
index 0000000..303396a
--- /dev/null
+++ b/src/components/RandomMatchImage/index.js
@@ -0,0 +1,17 @@
+import './index.css'
+
+const RandomMatchImage = props => {
+ const {imagesList, randomMatchImageIndex} = props
+
+ return (
+
+
+
+ )
+}
+
+export default RandomMatchImage
diff --git a/src/components/Thumbnail/index.css b/src/components/Thumbnail/index.css
new file mode 100644
index 0000000..89b02b8
--- /dev/null
+++ b/src/components/Thumbnail/index.css
@@ -0,0 +1,23 @@
+.thumbnails-container {
+ display: grid;
+ grid-template-columns: repeat(5, minmax(0, 1fr));
+ justify-items: center;
+ width: 500px;
+ gap: 1rem;
+}
+
+.thumbnail-item {
+ list-style-type: none;
+}
+
+.thumbnail-btn {
+ border: none;
+ outline: none;
+ background: transparent;
+ cursor: pointer;
+}
+
+.thumbnail-img {
+ width: 75px;
+ object-fit: contain;
+}
diff --git a/src/components/Thumbnail/index.js b/src/components/Thumbnail/index.js
new file mode 100644
index 0000000..7dcbd0d
--- /dev/null
+++ b/src/components/Thumbnail/index.js
@@ -0,0 +1,27 @@
+import './index.css'
+
+const Thumbnail = props => {
+ const {filteredImagesList, matchImage} = props
+
+ return (
+
+ {filteredImagesList.map(image => (
+
+ matchImage(image.id)}
+ >
+
+
+
+ ))}
+
+ )
+}
+
+export default Thumbnail
diff --git a/src/index.js b/src/index.js
new file mode 100755
index 0000000..dd795ea
--- /dev/null
+++ b/src/index.js
@@ -0,0 +1,10 @@
+import React from 'react'
+import ReactDOM from 'react-dom'
+import App from './App'
+
+ReactDOM.render(
+
+
+ ,
+ document.getElementById('root'),
+)
diff --git a/src/setupTests.js b/src/setupTests.js
new file mode 100755
index 0000000..e268fd8
--- /dev/null
+++ b/src/setupTests.js
@@ -0,0 +1,6 @@
+/* eslint-disable */
+
+import '@testing-library/jest-dom'
+import {configure} from '@testing-library/react'
+
+configure({testIdAttribute: 'testid'})