diff --git a/.github/workflows/e2e-ci.yml b/.github/workflows/e2e-ci.yml index 75ef6fdb5..1df459b64 100644 --- a/.github/workflows/e2e-ci.yml +++ b/.github/workflows/e2e-ci.yml @@ -32,7 +32,7 @@ jobs: uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 # tag=v3 with: path: ~/.pnpm-store - key: pnpm-${{ hashFiles('pnpm-lock.yaml') }} + key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.run_id }} restore-keys: | pnpm- build: @@ -49,7 +49,7 @@ jobs: - uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 # tag=v3 with: path: ~/.pnpm-store - key: pnpm-${{ hashFiles('pnpm-lock.yaml') }} + key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.run_id }} - name: Install run: pnpm recursive install --frozen-lockfile --reporter=silence --registry http://localhost:4873 - name: build @@ -59,7 +59,7 @@ jobs: id: cache-packages with: path: ./packages/ - key: pkg-${{ hashFiles('pnpm-lock.yaml') }} + key: pkg-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.run_id }} restore-keys: | packages- - name: Cache test @@ -67,14 +67,14 @@ jobs: id: cache-test with: path: ./e2e/ - key: test-${{ hashFiles('pnpm-lock.yaml') }} + key: test-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.run_id }} restore-keys: | test- e2e-cli: needs: [prepare, build] strategy: - fail-fast: true + fail-fast: false matrix: pkg: [npm6, npm7, npm8, npm9, pnpm6, pnpm7, yarn1, yarn2, yarn3, yarn4] name: ${{ matrix.pkg }} / ${{ matrix.os }} @@ -89,16 +89,16 @@ jobs: - uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 # tag=v3 with: path: ~/.pnpm-store - key: pnpm-${{ hashFiles('pnpm-lock.yaml') }} + key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.run_id }} - name: Install run: pnpm recursive install --offline --frozen-lockfile --reporter=silence --ignore-scripts --registry http://localhost:4873 - uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 # tag=v3 with: path: ./packages/ - key: pkg-${{ hashFiles('pnpm-lock.yaml') }} + key: pkg-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.run_id }} - uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 # tag=v3 with: path: ./e2e/ - key: test-${{ hashFiles('pnpm-lock.yaml') }} + key: test-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.run_id }} - name: Test CLI run: NODE_ENV=production pnpm test --filter ...@verdaccio/e2e-cli-${{matrix.pkg}} diff --git a/e2e/cli/e2e-npm9/package.json b/e2e/cli/e2e-npm9/package.json index abd2e7ed7..719f9faf5 100644 --- a/e2e/cli/e2e-npm9/package.json +++ b/e2e/cli/e2e-npm9/package.json @@ -4,7 +4,7 @@ "version": "1.0.1-6-next.5", "dependencies": { "@verdaccio/test-cli-commons": "workspace:1.0.1-6-next.5", - "npm": "9.0.0-pre.1" + "npm": "9.0.0-pre.2" }, "scripts": { "test": "jest" diff --git a/e2e/cli/e2e-yarn2/audit.spec.ts b/e2e/cli/e2e-yarn2/audit.spec.ts index 4b32c2c48..c52e680b4 100644 --- a/e2e/cli/e2e-yarn2/audit.spec.ts +++ b/e2e/cli/e2e-yarn2/audit.spec.ts @@ -22,9 +22,10 @@ describe('audit a package yarn 2', () => { projectFolder = tempFolder; }); - test('should run yarn npm audit info json body', async () => { + test.skip('should run yarn npm audit info json body', async () => { await yarn(projectFolder, 'install'); const resp = await yarn(projectFolder, 'npm', 'audit', '--json'); + console.log('--resp********:', resp); const parsedBody = JSON.parse(resp.stdout as string); expect(parsedBody.advisories).toBeDefined(); expect(parsedBody.advisories['1069969']).toBeDefined(); diff --git a/package.json b/package.json index c10b64377..05327375f 100644 --- a/package.json +++ b/package.json @@ -16,10 +16,10 @@ }, "devDependencies": { "@babel/cli": "7.18.10", - "@babel/core": "7.19.0", - "@babel/node": "7.18.10", + "@babel/core": "7.19.1", + "@babel/node": "7.19.1", "@babel/plugin-proposal-class-properties": "7.18.6", - "@babel/plugin-proposal-decorators": "7.19.0", + "@babel/plugin-proposal-decorators": "7.19.1", "@babel/plugin-proposal-export-namespace-from": "7.18.9", "@babel/plugin-proposal-function-sent": "7.18.6", "@babel/plugin-proposal-json-strings": "7.18.6", @@ -32,8 +32,8 @@ "@babel/plugin-syntax-import-meta": "7.10.4", "@babel/plugin-transform-async-to-generator": "7.18.6", "@babel/plugin-transform-classes": "7.19.0", - "@babel/plugin-transform-runtime": "7.18.10", - "@babel/preset-env": "7.19.0", + "@babel/plugin-transform-runtime": "7.19.1", + "@babel/preset-env": "7.19.1", "@babel/preset-react": "7.18.6", "@babel/preset-typescript": "7.18.6", "@babel/register": "7.18.9", @@ -42,7 +42,7 @@ "@changesets/changelog-github": "0.4.6", "@changesets/cli": "2.24.4", "@changesets/get-dependents-graph": "1.3.3", - "@crowdin/cli": "3.7.10", + "@crowdin/cli": "3.8.1", "@trivago/prettier-plugin-sort-imports": "3.3.0", "@types/async": "3.2.15", "@types/autocannon": "4.1.1", @@ -52,7 +52,7 @@ "@types/lodash": "4.14.185", "@types/mime": "2.0.3", "@types/minimatch": "3.0.5", - "@types/node": "16.11.59", + "@types/node": "16.11.60", "@types/jsonwebtoken": "8.5.9", "@types/request": "2.48.8", "@types/semver": "7.3.12", @@ -68,14 +68,14 @@ "@verdaccio/eslint-config": "workspace:*", "@verdaccio/types": "workspace:*", "@verdaccio/ui-theme": "workspace:*", - "autocannon": "7.9.0", + "autocannon": "7.10.0", "babel-core": "7.0.0-bridge.0", "babel-eslint": "10.1.0", "babel-jest": "29.0.3", "babel-plugin-dynamic-import-node": "2.3.3", "babel-plugin-emotion": "10.2.2", "concurrently": "6.5.1", - "core-js": "3.25.1", + "core-js": "3.25.2", "cross-env": "7.0.3", "debug": "4.3.4", "detect-secrets": "1.0.6", @@ -93,7 +93,7 @@ "lint-staged": "11.2.6", "nock": "13.2.9", "node-fetch": "cjs", - "nodemon": "2.0.19", + "nodemon": "2.0.20", "npm-run-all": "4.1.5", "prettier": "2.7.1", "rimraf": "3.0.2", diff --git a/packages/api/package.json b/packages/api/package.json index 82c29b610..e1a4642b4 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -56,7 +56,7 @@ "semver": "7.3.7" }, "devDependencies": { - "@types/node": "16.11.59", + "@types/node": "16.11.60", "@verdaccio/server": "workspace:6.0.0-6-next.36", "@verdaccio/types": "workspace:11.0.0-6-next.16", "@verdaccio/test-helper": "workspace:1.1.0-6-next.4", diff --git a/packages/core/core/package.json b/packages/core/core/package.json index d68b6c76e..e9293577b 100644 --- a/packages/core/core/package.json +++ b/packages/core/core/package.json @@ -39,7 +39,7 @@ "semver": "7.3.7", "ajv": "8.11.0", "process-warning": "1.0.0", - "core-js": "3.25.1" + "core-js": "3.25.2" }, "devDependencies": { "lodash": "4.17.21", diff --git a/packages/core/types/package.json b/packages/core/types/package.json index bd7e0baa0..962184d65 100644 --- a/packages/core/types/package.json +++ b/packages/core/types/package.json @@ -41,7 +41,7 @@ "build": "tsc --emitDeclarationOnly -p tsconfig.build.json" }, "devDependencies": { - "@types/node": "16.11.59", + "@types/node": "16.11.60", "typedoc": "beta", "typedoc-plugin-missing-exports": "1.0.0" }, diff --git a/packages/hooks/package.json b/packages/hooks/package.json index 243fd22a6..26893a4f7 100644 --- a/packages/hooks/package.json +++ b/packages/hooks/package.json @@ -32,13 +32,13 @@ "dependencies": { "@verdaccio/core": "workspace:6.0.0-6-next.47", "@verdaccio/logger": "workspace:6.0.0-6-next.15", - "core-js": "3.25.1", + "core-js": "3.25.2", "debug": "4.3.4", "handlebars": "4.7.7", "undici": "4.16.0" }, "devDependencies": { - "@types/node": "16.11.59", + "@types/node": "16.11.60", "@verdaccio/auth": "workspace:6.0.0-6-next.26", "@verdaccio/config": "workspace:6.0.0-6-next.47", "@verdaccio/types": "workspace:11.0.0-6-next.16" diff --git a/packages/logger-prettify/package.json b/packages/logger-prettify/package.json index e1ed7051d..520311593 100644 --- a/packages/logger-prettify/package.json +++ b/packages/logger-prettify/package.json @@ -46,7 +46,7 @@ "sonic-boom": "3.2.0" }, "devDependencies": { - "pino": "8.5.0" + "pino": "8.6.0" }, "funding": { "type": "opencollective", diff --git a/packages/logger/package.json b/packages/logger/package.json index c42d2cbb7..5d47f20db 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -43,7 +43,7 @@ "@verdaccio/logger-prettify": "workspace:6.0.0-6-next.7", "debug": "4.3.4", "colorette": "2.0.19", - "pino": "8.5.0" + "pino": "8.6.0" }, "devDependencies": { "@verdaccio/types": "workspace:11.0.0-6-next.16" diff --git a/packages/node-api/package.json b/packages/node-api/package.json index 547b0544a..025a053fa 100644 --- a/packages/node-api/package.json +++ b/packages/node-api/package.json @@ -44,12 +44,12 @@ "@verdaccio/logger": "workspace:6.0.0-6-next.15", "@verdaccio/server": "workspace:6.0.0-6-next.36", "@verdaccio/server-fastify": "workspace:6.0.0-6-next.28", - "core-js": "3.25.1", + "core-js": "3.25.2", "debug": "4.3.4", "lodash": "4.17.21" }, "devDependencies": { - "@types/node": "16.11.59", + "@types/node": "16.11.60", "@verdaccio/types": "workspace:11.0.0-6-next.16", "jest-mock-process": "1.5.1", "selfsigned": "1.10.14", diff --git a/packages/plugins/htpasswd/package.json b/packages/plugins/htpasswd/package.json index 0ebfd0e88..526c9a29f 100644 --- a/packages/plugins/htpasswd/package.json +++ b/packages/plugins/htpasswd/package.json @@ -36,9 +36,9 @@ "dependencies": { "@verdaccio/core": "workspace:6.0.0-6-next.47", "@verdaccio/file-locking": "workspace:11.0.0-6-next.6", - "apache-md5": "1.1.7", + "apache-md5": "1.1.8", "bcryptjs": "2.4.3", - "core-js": "3.25.1", + "core-js": "3.25.2", "http-errors": "1.8.1", "debug": "4.3.4", "unix-crypt-td-js": "1.1.4" diff --git a/packages/plugins/local-storage/package.json b/packages/plugins/local-storage/package.json index c2ba23b1e..7b9063872 100644 --- a/packages/plugins/local-storage/package.json +++ b/packages/plugins/local-storage/package.json @@ -40,7 +40,7 @@ "@verdaccio/core": "workspace:6.0.0-6-next.47", "@verdaccio/file-locking": "workspace:11.0.0-6-next.6", "@verdaccio/utils": "workspace:6.0.0-6-next.15", - "core-js": "3.25.1", + "core-js": "3.25.2", "debug": "4.3.4", "globby": "11.1.0", "lockfile": "1.0.4", diff --git a/packages/plugins/ui-theme/package.json b/packages/plugins/ui-theme/package.json index 470e8d2ca..a19d14b40 100644 --- a/packages/plugins/ui-theme/package.json +++ b/packages/plugins/ui-theme/package.json @@ -25,12 +25,12 @@ "@emotion/styled": "11.10.4", "@emotion/css": "11.10.0", "@emotion/babel-plugin": "11.10.2", - "@mui/icons-material": "5.10.3", - "@mui/material": "5.10.5", - "@mui/styles": "5.10.3", + "@mui/icons-material": "5.10.6", + "@mui/material": "5.10.6", + "@mui/styles": "5.10.6", "@rematch/core": "2.2.0", "@rematch/loading": "2.1.2", - "@testing-library/dom": "8.17.1", + "@testing-library/dom": "8.18.1", "@testing-library/jest-dom": "5.16.5", "@testing-library/react": "12.1.5", "@verdaccio/node-api": "workspace:6.0.0-6-next.47", @@ -62,17 +62,17 @@ "ora": "5.4.1", "react": "17.0.2", "react-dom": "17.0.2", - "react-hook-form": "7.35.0", + "react-hook-form": "7.36.1", "react-hot-loader": "4.13.0", "react-i18next": "11.18.6", "react-router": "5.3.3", "react-router-dom": "5.3.3", "react-virtualized": "9.22.3", - "react-redux": "7.2.8", + "react-redux": "7.2.9", "redux": "4.2.0", "rimraf": "3.0.2", "raw-loader": "4.0.2", - "msw": "0.47.2", + "msw": "0.47.3", "style-loader": "3.3.1", "stylelint": "14.11.0", "stylelint-config-recommended": "7.0.0", diff --git a/packages/plugins/ui-theme/src/components/TextField/__snapshots__/TextField.test.tsx.snap b/packages/plugins/ui-theme/src/components/TextField/__snapshots__/TextField.test.tsx.snap index 140c76fd2..069f56abb 100644 --- a/packages/plugins/ui-theme/src/components/TextField/__snapshots__/TextField.test.tsx.snap +++ b/packages/plugins/ui-theme/src/components/TextField/__snapshots__/TextField.test.tsx.snap @@ -195,6 +195,7 @@ label[data-shrink=false]+.MuiInputBase-formControl .emotion-2:focus::-ms-input-p .emotion-4 { float: unset; + width: auto; overflow: hidden; padding: 0; line-height: 11px; diff --git a/packages/proxy/package.json b/packages/proxy/package.json index 994a6f7f4..af350af57 100644 --- a/packages/proxy/package.json +++ b/packages/proxy/package.json @@ -52,7 +52,7 @@ "undici": "4.16.0" }, "devDependencies": { - "@types/node": "16.11.59", + "@types/node": "16.11.60", "@verdaccio/types": "workspace:11.0.0-6-next.16", "get-stream": "^6.0.1", "nock": "13.2.9", diff --git a/packages/server/express/package.json b/packages/server/express/package.json index ab6d1f347..ade0a5c56 100644 --- a/packages/server/express/package.json +++ b/packages/server/express/package.json @@ -49,7 +49,7 @@ "lodash": "4.17.21" }, "devDependencies": { - "@types/node": "16.11.59", + "@types/node": "16.11.60", "@verdaccio/proxy": "workspace:6.0.0-6-next.25", "@verdaccio/test-helper": "workspace:1.1.0-6-next.4", "http-errors": "1.8.1" diff --git a/packages/server/fastify/package.json b/packages/server/fastify/package.json index bdfdb7f29..f610fc442 100644 --- a/packages/server/fastify/package.json +++ b/packages/server/fastify/package.json @@ -42,14 +42,14 @@ "@verdaccio/tarball": "workspace:11.0.0-6-next.16", "@verdaccio/utils": "workspace:6.0.0-6-next.15", "@verdaccio/readme": "workspace:11.0.0-6-next.6", - "core-js": "3.25.1", + "core-js": "3.25.2", "debug": "4.3.4", - "fastify": "4.5.3", + "fastify": "4.6.0", "fastify-plugin": "4.2.1", "lodash": "4.17.21" }, "devDependencies": { - "@types/node": "16.11.59", + "@types/node": "16.11.60", "@verdaccio/types": "workspace:11.0.0-6-next.16", "ts-node": "10.9.1" }, diff --git a/packages/store/package.json b/packages/store/package.json index 529035688..06ff9fd78 100644 --- a/packages/store/package.json +++ b/packages/store/package.json @@ -56,7 +56,7 @@ "semver": "7.3.7" }, "devDependencies": { - "@types/node": "16.11.59", + "@types/node": "16.11.60", "@verdaccio/types": "workspace:11.0.0-6-next.16", "@verdaccio/test-helper": "workspace:1.1.0-6-next.4", "undici": "4.16.0", diff --git a/packages/tools/benchmark/package.json b/packages/tools/benchmark/package.json index 84d082acb..1e035cb40 100644 --- a/packages/tools/benchmark/package.json +++ b/packages/tools/benchmark/package.json @@ -21,7 +21,7 @@ "semver": "7.3.7" }, "devDependencies": { - "autocannon": "7.9.0", + "autocannon": "7.10.0", "node-fetch": "cjs", "ts-node": "10.9.1" } diff --git a/packages/verdaccio/package.json b/packages/verdaccio/package.json index 07814e326..9b71dd883 100644 --- a/packages/verdaccio/package.json +++ b/packages/verdaccio/package.json @@ -52,7 +52,7 @@ "@verdaccio/config": "workspace:6.0.0-6-next.47", "@verdaccio/store": "workspace:6.0.0-6-next.27", "@verdaccio/test-helper": "workspace:1.1.0-6-next.4", - "fastify": "4.5.3", + "fastify": "4.6.0", "yaml": "2.1.1", "got": "11.8.5", "lodash": "4.17.21", diff --git a/packages/web/package.json b/packages/web/package.json index 66718639f..985545e26 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -43,7 +43,7 @@ "lru-cache": "6.0.0" }, "devDependencies": { - "@types/node": "16.11.59", + "@types/node": "16.11.60", "@verdaccio/types": "workspace:11.0.0-6-next.16", "@verdaccio/test-helper": "workspace:1.1.0-6-next.4", "@verdaccio/api": "workspace:6.0.0-6-next.30", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3efe0c5cc..5860d872c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,10 +5,10 @@ importers: .: specifiers: '@babel/cli': 7.18.10 - '@babel/core': 7.19.0 - '@babel/node': 7.18.10 + '@babel/core': 7.19.1 + '@babel/node': 7.19.1 '@babel/plugin-proposal-class-properties': 7.18.6 - '@babel/plugin-proposal-decorators': 7.19.0 + '@babel/plugin-proposal-decorators': 7.19.1 '@babel/plugin-proposal-export-namespace-from': 7.18.9 '@babel/plugin-proposal-function-sent': 7.18.6 '@babel/plugin-proposal-json-strings': 7.18.6 @@ -21,8 +21,8 @@ importers: '@babel/plugin-syntax-import-meta': 7.10.4 '@babel/plugin-transform-async-to-generator': 7.18.6 '@babel/plugin-transform-classes': 7.19.0 - '@babel/plugin-transform-runtime': 7.18.10 - '@babel/preset-env': 7.19.0 + '@babel/plugin-transform-runtime': 7.19.1 + '@babel/preset-env': 7.19.1 '@babel/preset-react': 7.18.6 '@babel/preset-typescript': 7.18.6 '@babel/register': 7.18.9 @@ -30,7 +30,7 @@ importers: '@changesets/changelog-github': 0.4.6 '@changesets/cli': 2.24.4 '@changesets/get-dependents-graph': 1.3.3 - '@crowdin/cli': 3.7.10 + '@crowdin/cli': 3.8.1 '@dianmora/contributors': 5.0.0 '@trivago/prettier-plugin-sort-imports': 3.3.0 '@types/async': 3.2.15 @@ -42,7 +42,7 @@ importers: '@types/lodash': 4.14.185 '@types/mime': 2.0.3 '@types/minimatch': 3.0.5 - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@types/node-fetch': 2.6.2 '@types/request': 2.48.8 '@types/semver': 7.3.12 @@ -57,14 +57,14 @@ importers: '@verdaccio/eslint-config': workspace:* '@verdaccio/types': workspace:* '@verdaccio/ui-theme': workspace:* - autocannon: 7.9.0 + autocannon: 7.10.0 babel-core: 7.0.0-bridge.0 babel-eslint: 10.1.0 babel-jest: 29.0.3 babel-plugin-dynamic-import-node: 2.3.3 babel-plugin-emotion: 10.2.2 concurrently: 6.5.1 - core-js: 3.25.1 + core-js: 3.25.2 cross-env: 7.0.3 debug: 4.3.4 detect-secrets: 1.0.6 @@ -82,7 +82,7 @@ importers: lint-staged: 11.2.6 nock: 13.2.9 node-fetch: cjs - nodemon: 2.0.19 + nodemon: 2.0.20 npm-run-all: 4.1.5 prettier: 2.7.1 rimraf: 3.0.2 @@ -96,33 +96,33 @@ importers: verdaccio-htpasswd: workspace:* verdaccio-memory: workspace:* devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.19.0 - '@babel/core': 7.19.0 - '@babel/node': 7.18.10_@babel+core@7.19.0 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-decorators': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-proposal-function-sent': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-proposal-throw-expressions': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.19.0 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.19.0 - '@babel/preset-env': 7.19.0_@babel+core@7.19.0 - '@babel/preset-react': 7.18.6_@babel+core@7.19.0 - '@babel/preset-typescript': 7.18.6_@babel+core@7.19.0 - '@babel/register': 7.18.9_@babel+core@7.19.0 + '@babel/cli': 7.18.10_@babel+core@7.19.1 + '@babel/core': 7.19.1 + '@babel/node': 7.19.1_@babel+core@7.19.1 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-proposal-decorators': 7.19.1_@babel+core@7.19.1 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-proposal-function-sent': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-proposal-throw-expressions': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.19.1 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.1 + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.1 + '@babel/preset-env': 7.19.1_@babel+core@7.19.1 + '@babel/preset-react': 7.18.6_@babel+core@7.19.1 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.1 + '@babel/register': 7.18.9_@babel+core@7.19.1 '@babel/runtime': 7.19.0 '@changesets/changelog-github': 0.4.6 '@changesets/cli': 2.24.4 '@changesets/get-dependents-graph': 1.3.3 - '@crowdin/cli': 3.7.10 + '@crowdin/cli': 3.8.1 '@dianmora/contributors': 5.0.0 '@trivago/prettier-plugin-sort-imports': 3.3.0_prettier@2.7.1 '@types/async': 3.2.15 @@ -134,7 +134,7 @@ importers: '@types/lodash': 4.14.185 '@types/mime': 2.0.3 '@types/minimatch': 3.0.5 - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@types/node-fetch': 2.6.2 '@types/request': 2.48.8 '@types/semver': 7.3.12 @@ -149,14 +149,14 @@ importers: '@verdaccio/eslint-config': link:packages/tools/eslint '@verdaccio/types': link:packages/core/types '@verdaccio/ui-theme': link:packages/plugins/ui-theme - autocannon: 7.9.0 - babel-core: 7.0.0-bridge.0_@babel+core@7.19.0 + autocannon: 7.10.0 + babel-core: 7.0.0-bridge.0_@babel+core@7.19.1 babel-eslint: 10.1.0_eslint@8.23.1 - babel-jest: 29.0.3_@babel+core@7.19.0 + babel-jest: 29.0.3_@babel+core@7.19.1 babel-plugin-dynamic-import-node: 2.3.3 babel-plugin-emotion: 10.2.2 concurrently: 6.5.1 - core-js: 3.25.1 + core-js: 3.25.2 cross-env: 7.0.3 debug: 4.3.4 detect-secrets: 1.0.6 @@ -164,7 +164,7 @@ importers: fs-extra: 10.1.0 husky: 7.0.4 in-publish: 2.0.1 - jest: 29.0.3_e10479ebf907e8af132991d81b88ac36 + jest: 29.0.3_7a4cd679c15c985098a72ad58dd67af7 jest-diff: 29.0.3 jest-environment-jsdom: 29.0.3 jest-environment-jsdom-global: 3.1.2_jest-environment-jsdom@29.0.3 @@ -174,13 +174,13 @@ importers: lint-staged: 11.2.6 nock: 13.2.9 node-fetch: 2.6.7 - nodemon: 2.0.19 + nodemon: 2.0.20 npm-run-all: 4.1.5 prettier: 2.7.1 rimraf: 3.0.2 selfsigned: 1.10.14 supertest: 6.2.4 - ts-node: 10.9.1_03bba433ca420ee50bf31a7f62506788 + ts-node: 10.9.1_c690f7d1423a0f305e81445df17703f5 typescript: 4.8.3 update-ts-references: 2.4.1_62cb1af95b137c1ca7979350163aa229 verdaccio-audit: link:packages/plugins/audit @@ -206,14 +206,6 @@ importers: lodash: 4.17.21 verdaccio: link:../../../packages/verdaccio - e2e/cli/e2e-npm5: - specifiers: - '@verdaccio/test-cli-commons': workspace:1.0.1-6-next.5 - npm: 5.10.0 - dependencies: - '@verdaccio/test-cli-commons': link:../cli-commons - npm: 5.10.0 - e2e/cli/e2e-npm6: specifiers: '@verdaccio/test-cli-commons': workspace:1.0.1-6-next.5 @@ -241,10 +233,10 @@ importers: e2e/cli/e2e-npm9: specifiers: '@verdaccio/test-cli-commons': workspace:1.0.1-6-next.5 - npm: 9.0.0-pre.1 + npm: 9.0.0-pre.2 dependencies: '@verdaccio/test-cli-commons': link:../cli-commons - npm: 9.0.0-pre.1 + npm: 9.0.0-pre.2 e2e/cli/e2e-pnpm6: specifiers: @@ -316,7 +308,7 @@ importers: packages/api: specifiers: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/auth': workspace:6.0.0-6-next.26 '@verdaccio/config': workspace:6.0.0-6-next.47 '@verdaccio/core': workspace:6.0.0-6-next.47 @@ -355,7 +347,7 @@ importers: mime: 2.6.0 semver: 7.3.7 devDependencies: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/server': link:../server/express '@verdaccio/test-helper': link:../tools/helpers '@verdaccio/types': link:../core/types @@ -411,7 +403,7 @@ importers: kleur: 3.0.3 semver: 7.3.7 devDependencies: - ts-node: 10.9.1_03bba433ca420ee50bf31a7f62506788 + ts-node: 10.9.1_c690f7d1423a0f305e81445df17703f5 packages/config: specifiers: @@ -440,7 +432,7 @@ importers: specifiers: '@verdaccio/types': workspace:11.0.0-6-next.16 ajv: 8.11.0 - core-js: 3.25.1 + core-js: 3.25.2 http-errors: 1.8.1 http-status-codes: 2.2.0 lodash: 4.17.21 @@ -448,7 +440,7 @@ importers: semver: 7.3.7 dependencies: ajv: 8.11.0 - core-js: 3.25.1 + core-js: 3.25.2 http-errors: 1.8.1 http-status-codes: 2.2.0 process-warning: 1.0.0 @@ -500,11 +492,11 @@ importers: packages/core/types: specifiers: - '@types/node': 16.11.59 + '@types/node': 16.11.60 typedoc: beta typedoc-plugin-missing-exports: 1.0.0 devDependencies: - '@types/node': 16.11.59 + '@types/node': 16.11.60 typedoc: 0.23.0-beta.7_typescript@4.8.3 typedoc-plugin-missing-exports: 1.0.0_typedoc@0.23.0-beta.7 @@ -527,25 +519,25 @@ importers: packages/hooks: specifiers: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/auth': workspace:6.0.0-6-next.26 '@verdaccio/config': workspace:6.0.0-6-next.47 '@verdaccio/core': workspace:6.0.0-6-next.47 '@verdaccio/logger': workspace:6.0.0-6-next.15 '@verdaccio/types': workspace:11.0.0-6-next.16 - core-js: 3.25.1 + core-js: 3.25.2 debug: 4.3.4 handlebars: 4.7.7 undici: 4.16.0 dependencies: '@verdaccio/core': link:../core/core '@verdaccio/logger': link:../logger - core-js: 3.25.1 + core-js: 3.25.2 debug: 4.3.4 handlebars: 4.7.7 undici: 4.16.0 devDependencies: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/auth': link:../auth '@verdaccio/config': link:../config '@verdaccio/types': link:../core/types @@ -580,13 +572,13 @@ importers: '@verdaccio/types': workspace:11.0.0-6-next.16 colorette: 2.0.19 debug: 4.3.4 - pino: 8.5.0 + pino: 8.6.0 dependencies: '@verdaccio/core': link:../core/core '@verdaccio/logger-prettify': link:../logger-prettify colorette: 2.0.19 debug: 4.3.4 - pino: 8.5.0 + pino: 8.6.0 devDependencies: '@verdaccio/types': link:../core/types @@ -595,7 +587,7 @@ importers: colorette: 2.0.19 dayjs: 1.11.5 lodash: 4.17.21 - pino: 8.5.0 + pino: 8.6.0 pino-abstract-transport: 1.0.0 sonic-boom: 3.2.0 dependencies: @@ -605,7 +597,7 @@ importers: pino-abstract-transport: 1.0.0 sonic-boom: 3.2.0 devDependencies: - pino: 8.5.0 + pino: 8.6.0 packages/middleware: specifiers: @@ -627,14 +619,14 @@ importers: packages/node-api: specifiers: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/config': workspace:6.0.0-6-next.47 '@verdaccio/core': workspace:6.0.0-6-next.47 '@verdaccio/logger': workspace:6.0.0-6-next.15 '@verdaccio/server': workspace:6.0.0-6-next.36 '@verdaccio/server-fastify': workspace:6.0.0-6-next.28 '@verdaccio/types': workspace:11.0.0-6-next.16 - core-js: 3.25.1 + core-js: 3.25.2 debug: 4.3.4 jest-mock-process: 1.5.1 lodash: 4.17.21 @@ -646,11 +638,11 @@ importers: '@verdaccio/logger': link:../logger '@verdaccio/server': link:../server/express '@verdaccio/server-fastify': link:../server/fastify - core-js: 3.25.1 + core-js: 3.25.2 debug: 4.3.4 lodash: 4.17.21 devDependencies: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/types': link:../core/types jest-mock-process: 1.5.1_jest@29.0.3 selfsigned: 1.10.14 @@ -698,9 +690,9 @@ importers: '@verdaccio/file-locking': workspace:11.0.0-6-next.6 '@verdaccio/logger': workspace:6.0.0-6-next.15 '@verdaccio/types': workspace:11.0.0-6-next.16 - apache-md5: 1.1.7 + apache-md5: 1.1.8 bcryptjs: 2.4.3 - core-js: 3.25.1 + core-js: 3.25.2 debug: 4.3.4 http-errors: 1.8.1 mockdate: 3.0.5 @@ -708,9 +700,9 @@ importers: dependencies: '@verdaccio/core': link:../../core/core '@verdaccio/file-locking': link:../../core/file-locking - apache-md5: 1.1.7 + apache-md5: 1.1.8 bcryptjs: 2.4.3 - core-js: 3.25.1 + core-js: 3.25.2 debug: 4.3.4 http-errors: 1.8.1 unix-crypt-td-js: 1.1.4 @@ -731,7 +723,7 @@ importers: '@verdaccio/test-helper': workspace:1.1.0-6-next.4 '@verdaccio/types': workspace:11.0.0-6-next.16 '@verdaccio/utils': workspace:6.0.0-6-next.15 - core-js: 3.25.1 + core-js: 3.25.2 debug: 4.3.4 globby: 11.1.0 lockfile: 1.0.4 @@ -744,7 +736,7 @@ importers: '@verdaccio/core': link:../../core/core '@verdaccio/file-locking': link:../../core/file-locking '@verdaccio/utils': link:../../utils - core-js: 3.25.1 + core-js: 3.25.2 debug: 4.3.4 globby: 11.1.0 lockfile: 1.0.4 @@ -786,12 +778,12 @@ importers: '@emotion/jest': 11.10.0 '@emotion/react': 11.10.4 '@emotion/styled': 11.10.4 - '@mui/icons-material': 5.10.3 - '@mui/material': 5.10.5 - '@mui/styles': 5.10.3 + '@mui/icons-material': 5.10.6 + '@mui/material': 5.10.6 + '@mui/styles': 5.10.6 '@rematch/core': 2.2.0 '@rematch/loading': 2.1.2 - '@testing-library/dom': 8.17.1 + '@testing-library/dom': 8.18.1 '@testing-library/jest-dom': 5.16.5 '@testing-library/react': 12.1.5 '@types/react': 17.0.50 @@ -820,7 +812,7 @@ importers: localstorage-memory: 1.0.3 lodash: 4.17.21 mini-css-extract-plugin: 2.6.1 - msw: 0.47.2 + msw: 0.47.3 mutationobserver-shim: 0.3.7 node-mocks-http: 1.11.0 normalize.css: 8.0.1 @@ -829,12 +821,12 @@ importers: raw-loader: 4.0.2 react: 17.0.2 react-dom: 17.0.2 - react-hook-form: 7.35.0 + react-hook-form: 7.36.1 react-hot-loader: 4.13.0 react-i18next: 11.18.6 react-json-view: 1.21.3 react-markdown: 8.0.3 - react-redux: 7.2.8 + react-redux: 7.2.9 react-router: 5.3.3 react-router-dom: 5.3.3 react-virtualized: 9.22.3 @@ -861,17 +853,17 @@ importers: whatwg-fetch: 3.6.2 xss: 1.0.14 devDependencies: - '@emotion/babel-plugin': 11.10.2_@babel+core@7.19.0 - '@emotion/css': 11.10.0_@babel+core@7.19.0 + '@emotion/babel-plugin': 11.10.2_@babel+core@7.19.1 + '@emotion/css': 11.10.0_@babel+core@7.19.1 '@emotion/jest': 11.10.0_@types+jest@27.5.2 - '@emotion/react': 11.10.4_42d55553fa3cd80c4adfe6948b4734dd - '@emotion/styled': 11.10.4_783c28bbb4e4e32c7062fca448a06801 - '@mui/icons-material': 5.10.3_315bd969affbec1a04345a8db2d34fe7 - '@mui/material': 5.10.5_17a1432779ecebed8795c1bcaeaaf2fe - '@mui/styles': 5.10.3_7df2e632d193aca1f14601bd0dc974c3 + '@emotion/react': 11.10.4_934231c287e6ee895010b95c7785347a + '@emotion/styled': 11.10.4_c46bd13c3bf7e95ece89f7fc0cfe5b15 + '@mui/icons-material': 5.10.6_5cec0afebc68831ec37efffa59b044fd + '@mui/material': 5.10.6_17a1432779ecebed8795c1bcaeaaf2fe + '@mui/styles': 5.10.6_7df2e632d193aca1f14601bd0dc974c3 '@rematch/core': 2.2.0_redux@4.2.0 '@rematch/loading': 2.1.2_@rematch+core@2.2.0 - '@testing-library/dom': 8.17.1 + '@testing-library/dom': 8.18.1 '@testing-library/jest-dom': 5.16.5 '@testing-library/react': 12.1.5_react-dom@17.0.2+react@17.0.2 '@types/react': 17.0.50 @@ -883,7 +875,7 @@ importers: '@types/redux': 3.6.0 '@verdaccio/node-api': link:../../node-api '@verdaccio/types': link:../../core/types - babel-loader: 8.2.5_ceb53638b4190fb9e0882bd35b257d22 + babel-loader: 8.2.5_89e430e495307b3464675ac1d4c826c5 babel-plugin-dynamic-import-node: 2.3.3 country-flag-icons: 1.5.5 css-loader: 6.7.1_webpack@5.74.0 @@ -900,7 +892,7 @@ importers: localstorage-memory: 1.0.3 lodash: 4.17.21 mini-css-extract-plugin: 2.6.1_webpack@5.74.0 - msw: 0.47.2_typescript@4.8.3 + msw: 0.47.3_typescript@4.8.3 mutationobserver-shim: 0.3.7 node-mocks-http: 1.11.0 normalize.css: 8.0.1 @@ -909,12 +901,12 @@ importers: raw-loader: 4.0.2_webpack@5.74.0 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - react-hook-form: 7.35.0_react@17.0.2 + react-hook-form: 7.36.1_react@17.0.2 react-hot-loader: 4.13.0_3a28dae5d20d968467088dcb8f1d3843 react-i18next: 11.18.6_ad209b3ec0793904285d43906e66750b react-json-view: 1.21.3_3a28dae5d20d968467088dcb8f1d3843 react-markdown: 8.0.3_7df2e632d193aca1f14601bd0dc974c3 - react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 + react-redux: 7.2.9_react@17.0.2 react-router: 5.3.3_react@17.0.2 react-router-dom: 5.3.3_react@17.0.2 react-virtualized: 9.22.3_react-dom@17.0.2+react@17.0.2 @@ -943,7 +935,7 @@ importers: packages/proxy: specifiers: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/config': workspace:6.0.0-6-next.47 '@verdaccio/core': workspace:6.0.0-6-next.47 '@verdaccio/local-storage': workspace:11.0.0-6-next.17 @@ -973,7 +965,7 @@ importers: lodash: 4.17.21 undici: 4.16.0 devDependencies: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/types': link:../core/types get-stream: 6.0.1 nock: 13.2.9 @@ -982,7 +974,7 @@ importers: packages/server/express: specifiers: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/api': workspace:6.0.0-6-next.30 '@verdaccio/auth': workspace:6.0.0-6-next.26 '@verdaccio/config': workspace:6.0.0-6-next.47 @@ -1022,14 +1014,14 @@ importers: lodash: 4.17.21 verdaccio-audit: link:../../plugins/audit devDependencies: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/proxy': link:../../proxy '@verdaccio/test-helper': link:../../tools/helpers http-errors: 1.8.1 packages/server/fastify: specifiers: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/auth': workspace:6.0.0-6-next.26 '@verdaccio/config': workspace:6.0.0-6-next.47 '@verdaccio/core': workspace:6.0.0-6-next.47 @@ -1039,9 +1031,9 @@ importers: '@verdaccio/tarball': workspace:11.0.0-6-next.16 '@verdaccio/types': workspace:11.0.0-6-next.16 '@verdaccio/utils': workspace:6.0.0-6-next.15 - core-js: 3.25.1 + core-js: 3.25.2 debug: 4.3.4 - fastify: 4.5.3 + fastify: 4.6.0 fastify-plugin: 4.2.1 lodash: 4.17.21 ts-node: 10.9.1 @@ -1054,15 +1046,15 @@ importers: '@verdaccio/store': link:../../store '@verdaccio/tarball': link:../../core/tarball '@verdaccio/utils': link:../../utils - core-js: 3.25.1 + core-js: 3.25.2 debug: 4.3.4 - fastify: 4.5.3 + fastify: 4.6.0 fastify-plugin: 4.2.1 lodash: 4.17.21 devDependencies: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/types': link:../../core/types - ts-node: 10.9.1_03bba433ca420ee50bf31a7f62506788 + ts-node: 10.9.1_c690f7d1423a0f305e81445df17703f5 packages/standalone: specifiers: @@ -1084,7 +1076,7 @@ importers: packages/store: specifiers: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/config': workspace:6.0.0-6-next.47 '@verdaccio/core': workspace:6.0.0-6-next.47 '@verdaccio/hooks': workspace:6.0.0-6-next.17 @@ -1123,7 +1115,7 @@ importers: merge2: 1.4.1 semver: 7.3.7 devDependencies: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/test-helper': link:../tools/helpers '@verdaccio/types': link:../core/types mockdate: 3.0.5 @@ -1133,7 +1125,7 @@ importers: packages/tools/benchmark: specifiers: - autocannon: 7.9.0 + autocannon: 7.10.0 clipanion: 3.1.0 get-port: 5.1.1 node-fetch: cjs @@ -1146,9 +1138,9 @@ importers: semver: 7.3.7 temp-dir: 2.0.0 devDependencies: - autocannon: 7.9.0 + autocannon: 7.10.0 node-fetch: 2.6.7 - ts-node: 10.9.1_03bba433ca420ee50bf31a7f62506788 + ts-node: 10.9.1_c690f7d1423a0f305e81445df17703f5 packages/tools/docusaurus-plugin-contributors: specifiers: @@ -1221,7 +1213,7 @@ importers: '@verdaccio/config': link:../../config '@verdaccio/core': link:../../core/core '@verdaccio/types': link:../../core/types - ts-node: 10.9.1_03bba433ca420ee50bf31a7f62506788 + ts-node: 10.9.1_c690f7d1423a0f305e81445df17703f5 verdaccio: link:../../verdaccio packages/tools/verdaccio-prefix-fake-plugin: @@ -1258,7 +1250,7 @@ importers: '@verdaccio/test-helper': workspace:1.1.0-6-next.4 '@verdaccio/ui-theme': workspace:6.0.0-6-next.28 '@verdaccio/utils': workspace:6.0.0-6-next.15 - fastify: 4.5.3 + fastify: 4.6.0 get-port: 5.1.1 got: 11.8.5 lodash: 4.17.21 @@ -1282,7 +1274,7 @@ importers: '@verdaccio/core': link:../core/core '@verdaccio/store': link:../store '@verdaccio/test-helper': link:../tools/helpers - fastify: 4.5.3 + fastify: 4.6.0 get-port: 5.1.1 got: 11.8.5 lodash: 4.17.21 @@ -1292,7 +1284,7 @@ importers: packages/web: specifiers: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/api': workspace:6.0.0-6-next.30 '@verdaccio/auth': workspace:6.0.0-6-next.26 '@verdaccio/config': workspace:6.0.0-6-next.47 @@ -1337,7 +1329,7 @@ importers: lodash: 4.17.21 lru-cache: 6.0.0 devDependencies: - '@types/node': 16.11.59 + '@types/node': 16.11.60 '@verdaccio/api': link:../api '@verdaccio/test-helper': link:../tools/helpers '@verdaccio/types': link:../core/types @@ -1360,9 +1352,9 @@ importers: '@docusaurus/theme-common': 2.1.0 '@docusaurus/theme-search-algolia': 2.1.0 '@mdx-js/react': ^1.6.22 - '@mui/icons-material': 5.10.3 - '@mui/material': 5.10.5 - '@mui/styles': 5.10.3 + '@mui/icons-material': 5.10.6 + '@mui/material': 5.10.6 + '@mui/styles': 5.10.6 '@tsconfig/docusaurus': ^1.0.2 classnames: 2.3.2 clsx: 1.2.1 @@ -1375,13 +1367,13 @@ importers: prism-react-renderer: ^1.2.1 react: 17.0.2 react-dom: 17.0.2 - react-player: 2.10.1 + react-player: 2.11.0 react-twitter-widgets: ^1.10.0 - sass: 1.54.9 + sass: 1.55.0 sass-loader: ^12.1.0 url-loader: 4.1.1 use-is-in-viewport: ^1.0.9 - usehooks-ts: 2.6.0 + usehooks-ts: 2.7.1 dependencies: '@docusaurus/core': 2.1.0_b474a4bd8e00209f81a53b0b9158918e '@docusaurus/plugin-content-docs': 2.1.0_b474a4bd8e00209f81a53b0b9158918e @@ -1391,9 +1383,9 @@ importers: '@docusaurus/theme-common': 2.1.0_b474a4bd8e00209f81a53b0b9158918e '@docusaurus/theme-search-algolia': 2.1.0_b474a4bd8e00209f81a53b0b9158918e '@mdx-js/react': 1.6.22_react@17.0.2 - '@mui/icons-material': 5.10.3_60538fd556a658cfa6183ec6efa371fa - '@mui/material': 5.10.5_react-dom@17.0.2+react@17.0.2 - '@mui/styles': 5.10.3_react@17.0.2 + '@mui/icons-material': 5.10.6_c1be362c653518e5758c89b0acf023f2 + '@mui/material': 5.10.6_react-dom@17.0.2+react@17.0.2 + '@mui/styles': 5.10.6_react@17.0.2 classnames: 2.3.2 clsx: 1.2.1 copy-text-to-clipboard: 3.0.1 @@ -1401,19 +1393,19 @@ importers: docusaurus-plugin-sentry: 1.0.0_b474a4bd8e00209f81a53b0b9158918e react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - react-player: 2.10.1_react@17.0.2 + react-player: 2.11.0_react@17.0.2 react-twitter-widgets: 1.10.0_react@17.0.2 use-is-in-viewport: 1.0.9_react@17.0.2 - usehooks-ts: 2.6.0_react@17.0.2 + usehooks-ts: 2.7.1_react-dom@17.0.2+react@17.0.2 devDependencies: '@docusaurus/module-type-aliases': 2.1.0_e04bad828ac717e6587f05c972df8358 '@tsconfig/docusaurus': 1.0.2 - docusaurus-plugin-sass: 0.2.1_b308783923dcac4bbf246bcdd75c512d + docusaurus-plugin-sass: 0.2.1_f2ce3bf55a04081984944a3e75e8d1ea esbuild: 0.14.10 esbuild-loader: 2.16.0 prism-react-renderer: 1.2.1_react@17.0.2 - sass: 1.54.9 - sass-loader: 12.1.0_sass@1.54.9 + sass: 1.55.0 + sass-loader: 12.1.0_sass@1.55.0 url-loader: 4.1.1 packages: @@ -1546,14 +1538,14 @@ packages: resolution: {integrity: sha512-ksrMVpPOatD7ZzXCw+c/g3zId5rm8MMnQe7P32dH/qtDrgT9SbQjJYEngRP0YhRF0qrBCga2PtpID7arqphGyg==} dev: true - /@babel/cli/7.18.10_@babel+core@7.19.0: + /@babel/cli/7.18.10_@babel+core@7.19.1: resolution: {integrity: sha512-dLvWH+ZDFAkd2jPBSghrsFBuXrREvFwjpDycXbmUoeochqKYe4zNSLEJYErpLg8dvxvZYe79/MkN461XCwpnGw==} engines: {node: '>=6.9.0'} hasBin: true peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@jridgewell/trace-mapping': 0.3.9 commander: 4.1.1 convert-source-map: 1.8.0 @@ -1584,6 +1576,11 @@ packages: /@babel/compat-data/7.19.0: resolution: {integrity: sha512-y5rqgTTPTmaF5e2nVhOxw+Ur9HDJLsWb6U/KpgUzRZEdPfE6VOubXBKLdbcUTijzRptednSBDQbYZBOSqJxpJw==} engines: {node: '>=6.9.0'} + dev: true + + /@babel/compat-data/7.19.1: + resolution: {integrity: sha512-72a9ghR0gnESIa7jBN53U32FOVCEoztyIlKaNoU05zRhEecduGK9L9c3ww7Mp06JiR+0ls0GBPFJQwwtjn9ksg==} + engines: {node: '>=6.9.0'} /@babel/core/7.12.9: resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} @@ -1615,12 +1612,12 @@ packages: '@ampproject/remapping': 2.1.2 '@babel/code-frame': 7.18.6 '@babel/generator': 7.19.0 - '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.17.8 + '@babel/helper-compilation-targets': 7.19.1_@babel+core@7.17.8 '@babel/helper-module-transforms': 7.19.0 '@babel/helpers': 7.19.0 - '@babel/parser': 7.19.0 + '@babel/parser': 7.19.1 '@babel/template': 7.18.10 - '@babel/traverse': 7.19.0 + '@babel/traverse': 7.19.1 '@babel/types': 7.19.0 convert-source-map: 1.8.0 debug: 4.3.4 @@ -1676,19 +1673,19 @@ packages: transitivePeerDependencies: - supports-color - /@babel/core/7.19.0: - resolution: {integrity: sha512-reM4+U7B9ss148rh2n1Qs9ASS+w94irYXga7c2jaQv9RVzpS7Mv1a9rnYYwuDa45G+DkORt9g6An2k/V4d9LbQ==} + /@babel/core/7.19.1: + resolution: {integrity: sha512-1H8VgqXme4UXCRv7/Wa1bq7RVymKOzC7znjyFM8KiEzwFqcKUKYNoQef4GhdklgNvoBXyW4gYhuBNCM5o1zImw==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.1.2 '@babel/code-frame': 7.18.6 '@babel/generator': 7.19.0 - '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.19.0 + '@babel/helper-compilation-targets': 7.19.1_@babel+core@7.19.1 '@babel/helper-module-transforms': 7.19.0 '@babel/helpers': 7.19.0 - '@babel/parser': 7.19.0 + '@babel/parser': 7.19.1 '@babel/template': 7.18.10 - '@babel/traverse': 7.19.0 + '@babel/traverse': 7.19.1 '@babel/types': 7.19.0 convert-source-map: 1.8.0 debug: 4.3.4 @@ -1778,67 +1775,80 @@ packages: browserslist: 4.20.3 semver: 6.3.0 - /@babel/helper-compilation-targets/7.18.9_@babel+core@7.19.0: + /@babel/helper-compilation-targets/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.18.8 - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-validator-option': 7.18.6 browserslist: 4.20.3 semver: 6.3.0 dev: true - /@babel/helper-compilation-targets/7.19.0_@babel+core@7.17.8: + /@babel/helper-compilation-targets/7.19.0_@babel+core@7.19.1: resolution: {integrity: sha512-Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.19.0 + '@babel/core': 7.19.1 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.20.3 + semver: 6.3.0 + dev: true + + /@babel/helper-compilation-targets/7.19.1_@babel+core@7.17.8: + resolution: {integrity: sha512-LlLkkqhCMyz2lkQPvJNdIYU7O5YjWRgC2R4omjCTpZd8u8KMQzZvX4qce+/BluN1rcQiV7BoGUpmQ0LeHerbhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.19.1 '@babel/core': 7.17.8 '@babel/helper-validator-option': 7.18.6 - browserslist: 4.20.3 + browserslist: 4.21.4 semver: 6.3.0 dev: true - /@babel/helper-compilation-targets/7.19.0_@babel+core@7.18.10: - resolution: {integrity: sha512-Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA==} + /@babel/helper-compilation-targets/7.19.1_@babel+core@7.18.10: + resolution: {integrity: sha512-LlLkkqhCMyz2lkQPvJNdIYU7O5YjWRgC2R4omjCTpZd8u8KMQzZvX4qce+/BluN1rcQiV7BoGUpmQ0LeHerbhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.19.0 + '@babel/compat-data': 7.19.1 '@babel/core': 7.18.10 '@babel/helper-validator-option': 7.18.6 - browserslist: 4.20.3 + browserslist: 4.21.4 semver: 6.3.0 dev: false - /@babel/helper-compilation-targets/7.19.0_@babel+core@7.18.13: - resolution: {integrity: sha512-Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA==} + /@babel/helper-compilation-targets/7.19.1_@babel+core@7.18.13: + resolution: {integrity: sha512-LlLkkqhCMyz2lkQPvJNdIYU7O5YjWRgC2R4omjCTpZd8u8KMQzZvX4qce+/BluN1rcQiV7BoGUpmQ0LeHerbhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.19.0 + '@babel/compat-data': 7.19.1 '@babel/core': 7.18.13 '@babel/helper-validator-option': 7.18.6 - browserslist: 4.20.3 + browserslist: 4.21.4 semver: 6.3.0 - /@babel/helper-compilation-targets/7.19.0_@babel+core@7.19.0: - resolution: {integrity: sha512-Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA==} + /@babel/helper-compilation-targets/7.19.1_@babel+core@7.19.1: + resolution: {integrity: sha512-LlLkkqhCMyz2lkQPvJNdIYU7O5YjWRgC2R4omjCTpZd8u8KMQzZvX4qce+/BluN1rcQiV7BoGUpmQ0LeHerbhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.19.0 - '@babel/core': 7.19.0 + '@babel/compat-data': 7.19.1 + '@babel/core': 7.19.1 '@babel/helper-validator-option': 7.18.6 - browserslist: 4.20.3 + browserslist: 4.21.4 semver: 6.3.0 /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.18.10: @@ -1876,13 +1886,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.19.0: + /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.18.9 @@ -1906,7 +1916,7 @@ packages: '@babel/helper-function-name': 7.19.0 '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.18.9 + '@babel/helper-replace-supers': 7.19.1 '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color @@ -1924,24 +1934,24 @@ packages: '@babel/helper-function-name': 7.19.0 '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.18.9 + '@babel/helper-replace-supers': 7.19.1 '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color - /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.0: + /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.1: resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.18.9 + '@babel/helper-replace-supers': 7.19.1 '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color @@ -1968,24 +1978,34 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.1.0 - /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.19.0: - resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.19.0 - '@babel/helper-annotate-as-pure': 7.18.6 - regexpu-core: 5.1.0 - dev: true - - /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.19.0: + /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.18.10: resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + regexpu-core: 5.1.0 + dev: false + + /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.18.13: + resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.13 + '@babel/helper-annotate-as-pure': 7.18.6 + regexpu-core: 5.1.0 + + /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.19.1: + resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.19.1 '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.1.0 dev: true @@ -2021,14 +2041,14 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.19.0: - resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==} + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.19.1: + resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.19.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.1 + '@babel/helper-compilation-targets': 7.19.1_@babel+core@7.19.1 + '@babel/helper-plugin-utils': 7.19.0 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.0 @@ -2090,7 +2110,7 @@ packages: /@babel/helper-module-imports/7.13.12: resolution: {integrity: sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==} dependencies: - '@babel/types': 7.18.13 + '@babel/types': 7.19.0 dev: true /@babel/helper-module-imports/7.18.6: @@ -2124,7 +2144,7 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.18.6 '@babel/template': 7.18.10 - '@babel/traverse': 7.19.0 + '@babel/traverse': 7.19.1 '@babel/types': 7.19.0 transitivePeerDependencies: - supports-color @@ -2183,13 +2203,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.19.0: + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-wrap-function': 7.18.11 @@ -2210,6 +2230,18 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-replace-supers/7.19.1: + resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/traverse': 7.19.1 + '@babel/types': 7.19.0 + transitivePeerDependencies: + - supports-color + /@babel/helper-simple-access/7.18.6: resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} engines: {node: '>=6.9.0'} @@ -2220,7 +2252,7 @@ packages: resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.13 + '@babel/types': 7.19.0 /@babel/helper-split-export-declaration/7.11.0: resolution: {integrity: sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==} @@ -2277,7 +2309,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/traverse': 7.19.0 + '@babel/traverse': 7.19.1 '@babel/types': 7.19.0 transitivePeerDependencies: - supports-color @@ -2298,17 +2330,17 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/node/7.18.10_@babel+core@7.19.0: - resolution: {integrity: sha512-VbqzK6QXfQVi4Bpk6J7XqHXKFNbG2j3rdIdx68+/14GDU7jXDOSyUU/cwqCM1fDwCdxp37pNV/ToSCXsNChcyA==} + /@babel/node/7.19.1_@babel+core@7.19.1: + resolution: {integrity: sha512-gfxJNrawPso6kx7SwKfAdX1rEzVc09speJLFKrdxuZXGlve92pjbB3nJVmuwrxNN4+jvytj2zvliNXuW6uaSOw==} engines: {node: '>=6.9.0'} hasBin: true peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/register': 7.18.9_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/register': 7.18.9_@babel+core@7.19.1 commander: 4.1.1 - core-js: 3.25.1 + core-js: 3.25.2 node-environment-flags: 1.0.6 regenerator-runtime: 0.13.9 v8flags: 3.2.0 @@ -2352,6 +2384,13 @@ packages: dependencies: '@babel/types': 7.19.0 + /@babel/parser/7.19.1: + resolution: {integrity: sha512-h7RCSorm1DdTVGJf3P2Mhj3kdnkmF/EiysUkzS2TdgAYqyjFdMQJbVuXOBej2SBJaXan/lIVtT6KkGbyyq753A==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.19.0 + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} @@ -2371,13 +2410,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.19.0: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -2404,16 +2443,16 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.13 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.19.0: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.0 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.1 dev: true /@babel/plugin-proposal-async-generator-functions/7.18.10_@babel+core@7.18.10: @@ -2445,17 +2484,17 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-async-generator-functions/7.19.0_@babel+core@7.19.0: - resolution: {integrity: sha512-nhEByMUTx3uZueJ/QkJuSlCfN4FGg+xy+vRsfGQGzSauq5ks2Deid2+05Q3KhfaUjvec1IGhw/Zm3cFm8JigTQ==} + /@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.19.1: + resolution: {integrity: sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.0 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.1 transitivePeerDependencies: - supports-color dev: true @@ -2485,14 +2524,14 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.19.1 '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color @@ -2525,32 +2564,32 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.1 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.0 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.1 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-decorators/7.19.0_@babel+core@7.19.0: - resolution: {integrity: sha512-Bo5nOSjiJccjv00+BrDkmfeBLBi2B0qe8ygj24KdL8VdwtZz+710NCwehF+x/Ng+0mkHx5za2eAofmvVFLF4Fg==} + /@babel/plugin-proposal-decorators/7.19.1_@babel+core@7.19.1: + resolution: {integrity: sha512-LfIKNBBY7Q1OX5C4xAgRQffOg2OnhAo9fnbcOHgOC9Yytm2Sw+4XqHufRYU86tHomzepxtvuVaNO+3EVKR4ivw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.1 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-replace-supers': 7.18.9 + '@babel/helper-replace-supers': 7.19.1 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.19.0 + '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.19.1 transitivePeerDependencies: - supports-color dev: true @@ -2576,15 +2615,15 @@ packages: '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.13 - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.1 dev: true /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.10: @@ -2608,27 +2647,27 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.13 - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.19.0: + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.0 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.1 dev: true - /@babel/plugin-proposal-function-sent/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-function-sent/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-UdaOKPOLPt0O+Xu26tnw6oAZMLXhk+yMrXOzn6kAzTHBnWHJsoN1hlrgxFAQ+FRLS0ql1oYIQ2phvoFzmN3GMw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-wrap-function': 7.18.11 - '@babel/plugin-syntax-function-sent': 7.18.6_@babel+core@7.19.0 + '@babel/plugin-syntax-function-sent': 7.18.6_@babel+core@7.19.1 transitivePeerDependencies: - supports-color dev: true @@ -2654,15 +2693,15 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.13 - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.0 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.1 dev: true /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.18.10: @@ -2686,15 +2725,15 @@ packages: '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.13 - /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.19.0: + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.1 dev: true /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.10: @@ -2718,15 +2757,15 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.13 - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.1 dev: true /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.10: @@ -2750,15 +2789,15 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.13 - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.1 dev: true /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9: @@ -2798,18 +2837,18 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.13 '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.13 - /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.19.0: + /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.18.8 - '@babel/core': 7.19.0 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.19.1 '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.1 dev: true /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.10: @@ -2833,15 +2872,15 @@ packages: '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.13 - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.1 dev: true /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.18.10: @@ -2867,16 +2906,16 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.13 - /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.19.0: + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.1 dev: true /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.10: @@ -2904,14 +2943,14 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.1 '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: - supports-color @@ -2946,30 +2985,30 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.1 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.0 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.1 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-throw-expressions/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-throw-expressions/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-WHOrJyhGoGrdtW480L79cF7Iq/gZDZ/z6OqK7mVyFR5I37dTpog/wNgb6hmaM3HYZtULEJl++7VaMWkNZsOcHg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-throw-expressions': 7.18.6_@babel+core@7.19.0 + '@babel/plugin-syntax-throw-expressions': 7.18.6_@babel+core@7.19.1 dev: true /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.10: @@ -2979,7 +3018,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.10 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.19.0 dev: false @@ -2990,17 +3029,17 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.13 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.13 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -3021,20 +3060,20 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.0: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.1: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.19.1: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.10: @@ -3054,12 +3093,12 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.0: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.1: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.10: @@ -3081,23 +3120,23 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.19.0: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.19.1: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.19.0: + /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.19.1: resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -3118,12 +3157,12 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.16.5 - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.19.1: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.16.5 dev: true @@ -3144,22 +3183,22 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.19.1: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-function-sent/7.18.6_@babel+core@7.19.0: + /@babel/plugin-syntax-function-sent/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-f3OJHIlFIkg+cP1Hfo2SInLhsg0pz2Ikmgo7jMdIIKC+3jVXQlHB0bgSapOWxeWI0SU28qIWmfn5ZKu1yPJHkg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 dev: true @@ -3182,22 +3221,22 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.19.0: + /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.19.0: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.19.1: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.10.4 /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.10: @@ -3217,12 +3256,12 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.19.1: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9: @@ -3252,13 +3291,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.0: + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.10: @@ -3278,12 +3317,12 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.0: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.1: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.10: @@ -3303,12 +3342,12 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.1: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.16.7 /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.10: @@ -3328,12 +3367,12 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.0: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.1: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.16.7 /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9: @@ -3361,12 +3400,12 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.1: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.10: @@ -3386,12 +3425,12 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.1: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.10: @@ -3400,7 +3439,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.19.0 dev: false /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.13: @@ -3409,15 +3448,15 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.1: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.19.1 + '@babel/helper-plugin-utils': 7.19.0 /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.10: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} @@ -3438,23 +3477,23 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.19.0: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.19.1: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-throw-expressions/7.18.6_@babel+core@7.19.0: + /@babel/plugin-syntax-throw-expressions/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-rp1CqEZXGv1z1YZ3qYffBH3rhnOxrTwQG8fh2yqulTurwv9zu3Gthfd+niZBLSOi1rY6146TgF+JmVeDXaX4TQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 dev: true @@ -3477,13 +3516,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.0: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.1: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.10: @@ -3505,13 +3544,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.19.0: + /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.10: @@ -3533,13 +3572,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -3570,16 +3609,16 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.18.9 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.0 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.1 transitivePeerDependencies: - supports-color dev: true @@ -3603,13 +3642,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -3632,13 +3671,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.19.0: + /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -3679,15 +3718,15 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.1: resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.19.0 + '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.19.1 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-optimise-call-expression': 7.18.6 @@ -3718,23 +3757,23 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.0: + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.19.0: + /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.19.1: resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -3764,7 +3803,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.10 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.19.0 dev: false @@ -3775,17 +3814,17 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.13 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.13 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -3808,13 +3847,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.19.0: + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -3839,13 +3878,13 @@ packages: '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -3869,13 +3908,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.0: + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.1: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -3886,7 +3925,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.10 - '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.18.10 + '@babel/helper-compilation-targets': 7.19.1_@babel+core@7.18.10 '@babel/helper-function-name': 7.19.0 '@babel/helper-plugin-utils': 7.19.0 dev: false @@ -3898,18 +3937,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.13 - '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.18.13 + '@babel/helper-compilation-targets': 7.19.1_@babel+core@7.18.13 '@babel/helper-function-name': 7.19.0 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.0: + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/helper-compilation-targets': 7.19.1_@babel+core@7.19.1 '@babel/helper-function-name': 7.19.0 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -3933,13 +3972,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.19.0: + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -3962,13 +4001,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -3999,13 +4038,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-module-transforms': 7.19.0 '@babel/helper-plugin-utils': 7.19.0 babel-plugin-dynamic-import-node: 2.3.3 @@ -4042,13 +4081,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-module-transforms': 7.19.0 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-simple-access': 7.18.6 @@ -4088,13 +4127,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.19.1: resolution: {integrity: sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-module-transforms': 7.19.0 '@babel/helper-plugin-utils': 7.19.0 @@ -4129,13 +4168,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-module-transforms': 7.19.0 '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: @@ -4163,14 +4202,14 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.13 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-transform-named-capturing-groups-regex/7.19.0_@babel+core@7.19.0: - resolution: {integrity: sha512-HDSuqOQzkU//kfGdiHBt71/hkDTApw4U/cMVgKgX7PqfB3LOaK+2GtCEsBu1dL9CkswDm0Gwehht1dCr421ULQ==} + /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.19.1: + resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -4193,13 +4232,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -4211,7 +4250,7 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-replace-supers': 7.18.9 + '@babel/helper-replace-supers': 7.19.1 transitivePeerDependencies: - supports-color dev: false @@ -4224,19 +4263,19 @@ packages: dependencies: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-replace-supers': 7.18.9 + '@babel/helper-replace-supers': 7.19.1 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-replace-supers': 7.18.9 + '@babel/helper-replace-supers': 7.19.1 transitivePeerDependencies: - supports-color dev: true @@ -4269,13 +4308,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.19.0: + /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.19.1: resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 dev: true @@ -4298,13 +4337,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -4324,7 +4363,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 dev: false /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.18.13: @@ -4334,16 +4373,16 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.1 + '@babel/helper-plugin-utils': 7.19.0 dev: true /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.10: @@ -4365,14 +4404,14 @@ packages: '@babel/core': 7.18.13 '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.13 - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.19.1 dev: true /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.18.10: @@ -4384,9 +4423,9 @@ packages: '@babel/core': 7.18.10 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.10 - '@babel/types': 7.18.10 + '@babel/types': 7.19.0 dev: false /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.18.13: @@ -4398,22 +4437,22 @@ packages: '@babel/core': 7.18.13 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.13 - '@babel/types': 7.18.10 + '@babel/types': 7.19.0 - /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.19.0: + /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.19.1: resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.0 - '@babel/types': 7.18.10 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.1 + '@babel/types': 7.19.0 dev: true /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.18.10: @@ -4424,7 +4463,7 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 dev: false /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.18.13: @@ -4435,17 +4474,17 @@ packages: dependencies: '@babel/core': 7.18.13 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 dev: true /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.10: @@ -4469,13 +4508,13 @@ packages: '@babel/helper-plugin-utils': 7.19.0 regenerator-transform: 0.15.0 - /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 regenerator-transform: 0.15.0 dev: true @@ -4499,13 +4538,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -4542,18 +4581,18 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-runtime/7.18.10_@babel+core@7.19.0: - resolution: {integrity: sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==} + /@babel/plugin-transform-runtime/7.19.1_@babel+core@7.19.1: + resolution: {integrity: sha512-2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 - babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.19.0 - babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.19.0 - babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.19.0 + '@babel/helper-plugin-utils': 7.19.0 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.19.1 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.19.1 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.19.1 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -4578,13 +4617,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -4609,13 +4648,13 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 - /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.1: resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 dev: true @@ -4639,13 +4678,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -4668,13 +4707,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.0: + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -4697,13 +4736,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.19.0: + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -4734,16 +4773,16 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-typescript/7.18.12_@babel+core@7.19.0: + /@babel/plugin-transform-typescript/7.18.12_@babel+core@7.19.1: resolution: {integrity: sha512-2vjjam0cum0miPkenUbQswKowuxs/NjMwIKEq0zwegRxXk12C9YOF9STXnaUptITOtOJHKHpzvvWYOjbm6tc0w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.19.1 '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.0 + '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.1 transitivePeerDependencies: - supports-color dev: true @@ -4767,13 +4806,13 @@ packages: '@babel/core': 7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.19.0: + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.19.1: resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -4784,7 +4823,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.10 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.19.0 dev: false @@ -4795,17 +4834,17 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.13 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.13 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.13 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.1 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -4980,87 +5019,87 @@ packages: transitivePeerDependencies: - supports-color - /@babel/preset-env/7.19.0_@babel+core@7.19.0: - resolution: {integrity: sha512-1YUju1TAFuzjIQqNM9WsF4U6VbD/8t3wEAlw3LFYuuEr+ywqLRcSXxFKz4DCEj+sN94l/XTDiUXYRrsvMpz9WQ==} + /@babel/preset-env/7.19.1_@babel+core@7.19.1: + resolution: {integrity: sha512-c8B2c6D16Lp+Nt6HcD+nHl0VbPKVnNPTpszahuxJJnurfMtKeZ80A+qUv48Y7wqvS+dTFuLuaM9oYxyNHbCLWA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.19.0 - '@babel/core': 7.19.0 - '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.19.0 + '@babel/compat-data': 7.19.1 + '@babel/core': 7.19.1 + '@babel/helper-compilation-targets': 7.19.1_@babel+core@7.19.1 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-proposal-async-generator-functions': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.0 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.0 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.0 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.19.0 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.0 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-modules-systemjs': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-named-capturing-groups-regex': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.0 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.19.0 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.19.0 - '@babel/preset-modules': 0.1.5_@babel+core@7.19.0 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-proposal-async-generator-functions': 7.19.1_@babel+core@7.19.1 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.1 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.1 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.1 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.1 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.1 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.1 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.1 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.1 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.19.1 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.1 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-modules-systemjs': 7.19.0_@babel+core@7.19.1 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.19.1 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.1 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.1 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.19.1 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.19.1 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.19.1 + '@babel/preset-modules': 0.1.5_@babel+core@7.19.1 '@babel/types': 7.19.0 - babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.19.0 - babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.19.0 - babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.19.0 - core-js-compat: 3.22.4 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.19.1 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.19.1 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.19.1 + core-js-compat: 3.25.2 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -5091,15 +5130,15 @@ packages: '@babel/types': 7.19.0 esutils: 2.0.3 - /@babel/preset-modules/0.1.5_@babel+core@7.19.0: + /@babel/preset-modules/0.1.5_@babel+core@7.19.1: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.0 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.1 '@babel/types': 7.19.0 esutils: 2.0.3 dev: true @@ -5133,19 +5172,19 @@ packages: '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.13 '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.18.13 - /@babel/preset-react/7.18.6_@babel+core@7.19.0: + /@babel/preset-react/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.19.0 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.19.0 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.19.1 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.19.1 dev: true /@babel/preset-typescript/7.18.6_@babel+core@7.18.10: @@ -5175,27 +5214,27 @@ packages: transitivePeerDependencies: - supports-color - /@babel/preset-typescript/7.18.6_@babel+core@7.19.0: + /@babel/preset-typescript/7.18.6_@babel+core@7.19.1: resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-typescript': 7.18.12_@babel+core@7.19.0 + '@babel/plugin-transform-typescript': 7.18.12_@babel+core@7.19.1 transitivePeerDependencies: - supports-color dev: true - /@babel/register/7.18.9_@babel+core@7.19.0: + /@babel/register/7.18.9_@babel+core@7.19.1: resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -5285,6 +5324,8 @@ packages: debug: 4.3.4 globals: 11.12.0 lodash: 4.17.21 + transitivePeerDependencies: + - supports-color dev: true /@babel/traverse/7.17.3: @@ -5297,7 +5338,7 @@ packages: '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.19.0 + '@babel/parser': 7.19.1 '@babel/types': 7.19.0 debug: 4.3.4 globals: 11.12.0 @@ -5356,6 +5397,23 @@ packages: transitivePeerDependencies: - supports-color + /@babel/traverse/7.19.1: + resolution: {integrity: sha512-0j/ZfZMxKukDaag2PtOPDbwuELqIar6lLskVPPJDjXMXjfLb1Obo/1yjxIGqqAJrmfaTIY3z2wFLAQ7qSkLsuA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.19.0 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/parser': 7.19.1 + '@babel/types': 7.19.0 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + /@babel/types/7.11.0: resolution: {integrity: sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==} dependencies: @@ -5623,8 +5681,8 @@ packages: requiresBuild: true optional: true - /@crowdin/cli/3.7.10: - resolution: {integrity: sha512-L0sjeEv4bn7LHNYsKxl2aTrah16u1ThufN0xvMMH7o53lD29llvVfAD9jVOttSl/kyQ+mMDY8GLzjPRNFdLJqQ==} + /@crowdin/cli/3.8.1: + resolution: {integrity: sha512-kSohd26AKqXVNo+G48C1cv+/TPBks44YbD2+nQLm8d/mUGGazhYHY6k6wU7yP+vkaT/F5WeL3br5Sffn0QoxRg==} hasBin: true dependencies: njre: 0.2.0 @@ -6894,14 +6952,14 @@ packages: - uglify-js - webpack-cli - /@emotion/babel-plugin/11.10.2_@babel+core@7.19.0: + /@emotion/babel-plugin/11.10.2_@babel+core@7.19.1: resolution: {integrity: sha512-xNQ57njWTFVfPAc3cjfuaPdsgLp5QOSuRsj9MA6ndEhH/AzuZM86qIQzt6rq+aGBwj3n5/TkLmU5lhAfdRmogA==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/helper-module-imports': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.0 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.1 '@babel/runtime': 7.18.9 '@emotion/hash': 0.9.0 '@emotion/memoize': 0.8.0 @@ -6940,7 +6998,7 @@ packages: stylis: 4.0.13 dev: true - /@emotion/css/11.10.0_@babel+core@7.19.0: + /@emotion/css/11.10.0_@babel+core@7.19.1: resolution: {integrity: sha512-dH9f+kSCucc8ilMg0MUA1AemabcyzYpe5EKX24F528PJjD7HyIY/VBNJHxfUdc8l400h2ncAjR6yEDu+DBj2cg==} peerDependencies: '@babel/core': ^7.0.0 @@ -6948,8 +7006,8 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.19.0 - '@emotion/babel-plugin': 11.10.2_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@emotion/babel-plugin': 11.10.2_@babel+core@7.19.1 '@emotion/cache': 11.10.1 '@emotion/serialize': 1.1.0 '@emotion/sheet': 1.2.0 @@ -6994,7 +7052,7 @@ packages: /@emotion/memoize/0.8.0: resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==} - /@emotion/react/11.10.4_42d55553fa3cd80c4adfe6948b4734dd: + /@emotion/react/11.10.4_934231c287e6ee895010b95c7785347a: resolution: {integrity: sha512-j0AkMpr6BL8gldJZ6XQsQ8DnS9TxEQu1R+OGmDZiWjBAJtCcbt0tS3I/YffoqHXxH6MjgI7KdMbYKw3MEiU9eA==} peerDependencies: '@babel/core': ^7.0.0 @@ -7006,9 +7064,9 @@ packages: '@types/react': optional: true dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/runtime': 7.18.9 - '@emotion/babel-plugin': 11.10.2_@babel+core@7.19.0 + '@emotion/babel-plugin': 11.10.2_@babel+core@7.19.1 '@emotion/cache': 11.10.3 '@emotion/serialize': 1.1.0 '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@17.0.2 @@ -7042,7 +7100,7 @@ packages: /@emotion/sheet/1.2.0: resolution: {integrity: sha512-OiTkRgpxescko+M51tZsMq7Puu/KP55wMT8BgpcXVG2hqXc0Vo0mfymJ/Uj24Hp0i083ji/o0aLddh08UEjq8w==} - /@emotion/styled/11.10.4_783c28bbb4e4e32c7062fca448a06801: + /@emotion/styled/11.10.4_c46bd13c3bf7e95ece89f7fc0cfe5b15: resolution: {integrity: sha512-pRl4R8Ez3UXvOPfc2bzIoV8u9P97UedgHS4FPX594ntwEuAMA114wlaHvOK24HB48uqfXiGlYIZYCxVJ1R1ttQ==} peerDependencies: '@babel/core': ^7.0.0 @@ -7055,11 +7113,11 @@ packages: '@types/react': optional: true dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/runtime': 7.18.9 - '@emotion/babel-plugin': 11.10.2_@babel+core@7.19.0 + '@emotion/babel-plugin': 11.10.2_@babel+core@7.19.1 '@emotion/is-prop-valid': 1.2.0 - '@emotion/react': 11.10.4_42d55553fa3cd80c4adfe6948b4734dd + '@emotion/react': 11.10.4_934231c287e6ee895010b95c7785347a '@emotion/serialize': 1.1.0 '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@17.0.2 '@emotion/utils': 1.2.0 @@ -7434,7 +7492,7 @@ packages: resolution: {integrity: sha512-C5ihFTRYaGDbi/xbRQRdbo5ddGtI4VSpmL6AIcZxdhwLbXMa7PcXxxqyI91vGOFHnn5aVM3WYnYKCHEqmLVGzg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@jest/types': 29.0.3 '@jridgewell/trace-mapping': 0.3.15 babel-plugin-istanbul: 6.1.1 @@ -7567,15 +7625,15 @@ packages: set-cookie-parser: 2.4.8 dev: true - /@mswjs/interceptors/0.17.3: - resolution: {integrity: sha512-jBRFPeHBPqKv3od8KPjmrvt4b/+e1DorizFDYJ8NQCrjFT9YGnxA8ojGi0MIo64x/JgdjYkhP8bG9EY4BGPoqg==} + /@mswjs/interceptors/0.17.5: + resolution: {integrity: sha512-/uZkyPUZMRExZs+DZQVnc+uoDwLfs1gFNvcRY5S3Gu78U+uhovaSEUW3tuyld1e7Oke5Qphfseb8v66V+H1zWQ==} engines: {node: '>=14'} dependencies: '@open-draft/until': 1.0.3 '@types/debug': 4.1.7 '@xmldom/xmldom': 0.7.5 debug: 4.3.4 - headers-polyfill: 3.0.10 + headers-polyfill: 3.1.0 outvariant: 1.3.0 strict-event-emitter: 0.2.4 web-encoding: 1.1.5 @@ -7583,21 +7641,18 @@ packages: - supports-color dev: true - /@mui/base/5.0.0-alpha.97_3a28dae5d20d968467088dcb8f1d3843: - resolution: {integrity: sha512-gvo0hOg/tBzfJ3eDQOGAPBJJU+qTWd0e5zBEMFIkT1ekJqXx14JtIHvheOFU17y9iDciYE256Q8g+tj6a1dcBA==} + /@mui/base/5.0.0-alpha.98_3a28dae5d20d968467088dcb8f1d3843: + resolution: {integrity: sha512-c0U51+K2m57MASpRrmNs6qTXSvktDbVcSjD8zCRPbfuwYWERGGwNxwM3/jsBa4dSojTSmLPnOBFDypl74Ds6yQ==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true dependencies: '@babel/runtime': 7.19.0 '@emotion/is-prop-valid': 1.2.0 '@mui/types': 7.2.0_@types+react@17.0.50 - '@mui/utils': 5.10.3_react@17.0.2 + '@mui/utils': 5.10.6_react@17.0.2 '@popperjs/core': 2.11.6 '@types/react': 17.0.50 clsx: 1.2.1 @@ -7607,21 +7662,18 @@ packages: react-is: 18.2.0 dev: true - /@mui/base/5.0.0-alpha.97_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-gvo0hOg/tBzfJ3eDQOGAPBJJU+qTWd0e5zBEMFIkT1ekJqXx14JtIHvheOFU17y9iDciYE256Q8g+tj6a1dcBA==} + /@mui/base/5.0.0-alpha.98_react-dom@17.0.2+react@17.0.2: + resolution: {integrity: sha512-c0U51+K2m57MASpRrmNs6qTXSvktDbVcSjD8zCRPbfuwYWERGGwNxwM3/jsBa4dSojTSmLPnOBFDypl74Ds6yQ==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true dependencies: '@babel/runtime': 7.19.0 '@emotion/is-prop-valid': 1.2.0 '@mui/types': 7.2.0 - '@mui/utils': 5.10.3_react@17.0.2 + '@mui/utils': 5.10.6_react@17.0.2 '@popperjs/core': 2.11.6 clsx: 1.2.1 prop-types: 15.8.1 @@ -7630,44 +7682,38 @@ packages: react-is: 18.2.0 dev: false - /@mui/core-downloads-tracker/5.10.5: - resolution: {integrity: sha512-sZYg85rQdlgDYU3V4WcT2Dl+k+y2wYqN04aUvVkFksRR0j81sj6KmfXx4842HJQcq5rjzcTvh4N+yv66XR/9fA==} + /@mui/core-downloads-tracker/5.10.6: + resolution: {integrity: sha512-dmyQBqrKmVU6yCSM4GGal5qNXpViXX+/V1t0GA1A5i9QF5Gx6noV/cw0hrSS2ffLT8L2oScq1oTdA6NVIiQ8lg==} - /@mui/icons-material/5.10.3_315bd969affbec1a04345a8db2d34fe7: - resolution: {integrity: sha512-o0kbUlsWCBtCE0wP33cGKbyryCh7kpm2EECYMPDmWrLhbA+HUODXIdhiTFS26szp2xXo9HY1lEx0ufeJ+tddYw==} + /@mui/icons-material/5.10.6_5cec0afebc68831ec37efffa59b044fd: + resolution: {integrity: sha512-QwxdRmLA46S94B0hExPDx0td+A2unF+33bQ6Cs+lNpJKVsm1YeHwNdYXYcnpWeHeQQ07055OXl7IB2GKDd0MfA==} engines: {node: '>=12.0.0'} peerDependencies: '@mui/material': ^5.0.0 '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true dependencies: - '@babel/runtime': 7.18.9 - '@mui/material': 5.10.5_17a1432779ecebed8795c1bcaeaaf2fe + '@babel/runtime': 7.19.0 + '@mui/material': 5.10.6_17a1432779ecebed8795c1bcaeaaf2fe '@types/react': 17.0.50 react: 17.0.2 dev: true - /@mui/icons-material/5.10.3_60538fd556a658cfa6183ec6efa371fa: - resolution: {integrity: sha512-o0kbUlsWCBtCE0wP33cGKbyryCh7kpm2EECYMPDmWrLhbA+HUODXIdhiTFS26szp2xXo9HY1lEx0ufeJ+tddYw==} + /@mui/icons-material/5.10.6_c1be362c653518e5758c89b0acf023f2: + resolution: {integrity: sha512-QwxdRmLA46S94B0hExPDx0td+A2unF+33bQ6Cs+lNpJKVsm1YeHwNdYXYcnpWeHeQQ07055OXl7IB2GKDd0MfA==} engines: {node: '>=12.0.0'} peerDependencies: '@mui/material': ^5.0.0 '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true dependencies: - '@babel/runtime': 7.18.9 - '@mui/material': 5.10.5_react-dom@17.0.2+react@17.0.2 + '@babel/runtime': 7.19.0 + '@mui/material': 5.10.6_react-dom@17.0.2+react@17.0.2 react: 17.0.2 dev: false - /@mui/material/5.10.5_17a1432779ecebed8795c1bcaeaaf2fe: - resolution: {integrity: sha512-VFMadvfA6jqx5DCk2xoBl4bAGyzgmmubJIuB7fUWUZBwYIYL5Ea9SsoFpt5kawA6O2feuj69alDN2fhxPw1MeQ==} + /@mui/material/5.10.6_17a1432779ecebed8795c1bcaeaaf2fe: + resolution: {integrity: sha512-QilW5PAAGSQdN7Cpp4rwSQ1doJAt3ca1a2PHZtr8RLVlpHnXb+qQ8CeDo9+9V2fK5CDNdtTN1F+iJKO43aFBpQ==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -7675,22 +7721,15 @@ packages: '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true dependencies: '@babel/runtime': 7.19.0 - '@emotion/react': 11.10.4_42d55553fa3cd80c4adfe6948b4734dd - '@emotion/styled': 11.10.4_783c28bbb4e4e32c7062fca448a06801 - '@mui/base': 5.0.0-alpha.97_3a28dae5d20d968467088dcb8f1d3843 - '@mui/core-downloads-tracker': 5.10.5 - '@mui/system': 5.10.5_4a093b8fdc8562d2391582f1d43bc7f0 + '@emotion/react': 11.10.4_934231c287e6ee895010b95c7785347a + '@emotion/styled': 11.10.4_c46bd13c3bf7e95ece89f7fc0cfe5b15 + '@mui/base': 5.0.0-alpha.98_3a28dae5d20d968467088dcb8f1d3843 + '@mui/core-downloads-tracker': 5.10.6 + '@mui/system': 5.10.6_4a093b8fdc8562d2391582f1d43bc7f0 '@mui/types': 7.2.0_@types+react@17.0.50 - '@mui/utils': 5.10.3_react@17.0.2 + '@mui/utils': 5.10.6_react@17.0.2 '@types/react': 17.0.50 '@types/react-transition-group': 4.4.5 clsx: 1.2.1 @@ -7702,8 +7741,8 @@ packages: react-transition-group: 4.4.5_react-dom@17.0.2+react@17.0.2 dev: true - /@mui/material/5.10.5_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-VFMadvfA6jqx5DCk2xoBl4bAGyzgmmubJIuB7fUWUZBwYIYL5Ea9SsoFpt5kawA6O2feuj69alDN2fhxPw1MeQ==} + /@mui/material/5.10.6_react-dom@17.0.2+react@17.0.2: + resolution: {integrity: sha512-QilW5PAAGSQdN7Cpp4rwSQ1doJAt3ca1a2PHZtr8RLVlpHnXb+qQ8CeDo9+9V2fK5CDNdtTN1F+iJKO43aFBpQ==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -7711,20 +7750,13 @@ packages: '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true dependencies: '@babel/runtime': 7.19.0 - '@mui/base': 5.0.0-alpha.97_react-dom@17.0.2+react@17.0.2 - '@mui/core-downloads-tracker': 5.10.5 - '@mui/system': 5.10.5_react@17.0.2 + '@mui/base': 5.0.0-alpha.98_react-dom@17.0.2+react@17.0.2 + '@mui/core-downloads-tracker': 5.10.6 + '@mui/system': 5.10.6_react@17.0.2 '@mui/types': 7.2.0 - '@mui/utils': 5.10.3_react@17.0.2 + '@mui/utils': 5.10.6_react@17.0.2 '@types/react-transition-group': 4.4.5 clsx: 1.2.1 csstype: 3.1.0 @@ -7735,73 +7767,57 @@ packages: react-transition-group: 4.4.5_react-dom@17.0.2+react@17.0.2 dev: false - /@mui/private-theming/5.10.3_7df2e632d193aca1f14601bd0dc974c3: - resolution: {integrity: sha512-LCYIKlkGz2BTSng2BFzzwSJBRZbChIUri2x2Nh8ryk2B1Ho7zpvE7ex6y39LlStG2Frf92NFC/V4YQbmMAjD5A==} + /@mui/private-theming/5.10.6_7df2e632d193aca1f14601bd0dc974c3: + resolution: {integrity: sha512-I/W0QyTLRdEx6py3lKAquKO/rNF/7j+nIOM/xCyI9kU0fcotVTcTY08mKMsS6vrzdWpi6pAkD0wP0KwWy5R5VA==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true dependencies: '@babel/runtime': 7.19.0 - '@mui/utils': 5.10.3_react@17.0.2 + '@mui/utils': 5.10.6_react@17.0.2 '@types/react': 17.0.50 prop-types: 15.8.1 react: 17.0.2 dev: true - /@mui/private-theming/5.10.3_react@17.0.2: - resolution: {integrity: sha512-LCYIKlkGz2BTSng2BFzzwSJBRZbChIUri2x2Nh8ryk2B1Ho7zpvE7ex6y39LlStG2Frf92NFC/V4YQbmMAjD5A==} + /@mui/private-theming/5.10.6_react@17.0.2: + resolution: {integrity: sha512-I/W0QyTLRdEx6py3lKAquKO/rNF/7j+nIOM/xCyI9kU0fcotVTcTY08mKMsS6vrzdWpi6pAkD0wP0KwWy5R5VA==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true dependencies: '@babel/runtime': 7.19.0 - '@mui/utils': 5.10.3_react@17.0.2 + '@mui/utils': 5.10.6_react@17.0.2 prop-types: 15.8.1 react: 17.0.2 dev: false - /@mui/styled-engine/5.10.5_22074cf8cdeedd2a3bdd0d091a169122: - resolution: {integrity: sha512-6U6tTdf+H1OsjgcFoY12gYPR+qqZ1WHGGIahK5V7JhMkMUgH7ozyiNi8s1LzmwrUlAz1hAAhuO5nBYXku3wWvw==} + /@mui/styled-engine/5.10.6_22074cf8cdeedd2a3bdd0d091a169122: + resolution: {integrity: sha512-OnVw5xnO4l0XzlJFhKif/RlLenBNhyEQQlSTwB9ApSWB05UAU5ZSbjNsRfyEKvgmQ/fPa+MqPD/dzxbIRCwyeg==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.4.1 '@emotion/styled': ^11.3.0 react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true dependencies: '@babel/runtime': 7.19.0 '@emotion/cache': 11.10.3 - '@emotion/react': 11.10.4_42d55553fa3cd80c4adfe6948b4734dd - '@emotion/styled': 11.10.4_783c28bbb4e4e32c7062fca448a06801 + '@emotion/react': 11.10.4_934231c287e6ee895010b95c7785347a + '@emotion/styled': 11.10.4_c46bd13c3bf7e95ece89f7fc0cfe5b15 csstype: 3.1.0 prop-types: 15.8.1 react: 17.0.2 dev: true - /@mui/styled-engine/5.10.5_react@17.0.2: - resolution: {integrity: sha512-6U6tTdf+H1OsjgcFoY12gYPR+qqZ1WHGGIahK5V7JhMkMUgH7ozyiNi8s1LzmwrUlAz1hAAhuO5nBYXku3wWvw==} + /@mui/styled-engine/5.10.6_react@17.0.2: + resolution: {integrity: sha512-OnVw5xnO4l0XzlJFhKif/RlLenBNhyEQQlSTwB9ApSWB05UAU5ZSbjNsRfyEKvgmQ/fPa+MqPD/dzxbIRCwyeg==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.4.1 '@emotion/styled': ^11.3.0 react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true dependencies: '@babel/runtime': 7.19.0 '@emotion/cache': 11.10.3 @@ -7810,21 +7826,18 @@ packages: react: 17.0.2 dev: false - /@mui/styles/5.10.3_7df2e632d193aca1f14601bd0dc974c3: - resolution: {integrity: sha512-I9BYAKENJ6Ot+UEqsU+D2o5jVSeHAme+ZcPzBataTNmpjd7yrmdPeJgAyzju21KtSucBb283gvggcFqxLH1lOQ==} + /@mui/styles/5.10.6_7df2e632d193aca1f14601bd0dc974c3: + resolution: {integrity: sha512-QmT/PXDKOSttkSWV97SVw1isfmc+iNMQBUtVwafRju1T6+O26tf9Hz0QjILuXIk74lg/nrbQn5S5c9h6FZWPXQ==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 react: ^17.0.0 - peerDependenciesMeta: - '@types/react': - optional: true dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.0 '@emotion/hash': 0.9.0 - '@mui/private-theming': 5.10.3_7df2e632d193aca1f14601bd0dc974c3 + '@mui/private-theming': 5.10.6_7df2e632d193aca1f14601bd0dc974c3 '@mui/types': 7.2.0_@types+react@17.0.50 - '@mui/utils': 5.10.3_react@17.0.2 + '@mui/utils': 5.10.6_react@17.0.2 '@types/react': 17.0.50 clsx: 1.2.1 csstype: 3.1.0 @@ -7841,21 +7854,18 @@ packages: react: 17.0.2 dev: true - /@mui/styles/5.10.3_react@17.0.2: - resolution: {integrity: sha512-I9BYAKENJ6Ot+UEqsU+D2o5jVSeHAme+ZcPzBataTNmpjd7yrmdPeJgAyzju21KtSucBb283gvggcFqxLH1lOQ==} + /@mui/styles/5.10.6_react@17.0.2: + resolution: {integrity: sha512-QmT/PXDKOSttkSWV97SVw1isfmc+iNMQBUtVwafRju1T6+O26tf9Hz0QjILuXIk74lg/nrbQn5S5c9h6FZWPXQ==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 react: ^17.0.0 - peerDependenciesMeta: - '@types/react': - optional: true dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.0 '@emotion/hash': 0.9.0 - '@mui/private-theming': 5.10.3_react@17.0.2 + '@mui/private-theming': 5.10.6_react@17.0.2 '@mui/types': 7.2.0 - '@mui/utils': 5.10.3_react@17.0.2 + '@mui/utils': 5.10.6_react@17.0.2 clsx: 1.2.1 csstype: 3.1.0 hoist-non-react-statics: 3.3.2 @@ -7871,29 +7881,22 @@ packages: react: 17.0.2 dev: false - /@mui/system/5.10.5_4a093b8fdc8562d2391582f1d43bc7f0: - resolution: {integrity: sha512-GUPiDVZTKp9yH3FVeLSIw3Bqsyl7qLxtAK1ZiZmC8e+zdH7bcnZZXvWK3vPIbx35ZyhQpvAOWQFpiF9TjdA77w==} + /@mui/system/5.10.6_4a093b8fdc8562d2391582f1d43bc7f0: + resolution: {integrity: sha512-HfQVX7e2xpQ3jtdB/WwtkFVtozMOozyN575/63u8ILHkE8wGDhblmCieAsnyJPFbm7WBW5PCMyzmfr4QyKLaYg==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 '@emotion/styled': ^11.3.0 '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true dependencies: '@babel/runtime': 7.19.0 - '@emotion/react': 11.10.4_42d55553fa3cd80c4adfe6948b4734dd - '@emotion/styled': 11.10.4_783c28bbb4e4e32c7062fca448a06801 - '@mui/private-theming': 5.10.3_7df2e632d193aca1f14601bd0dc974c3 - '@mui/styled-engine': 5.10.5_22074cf8cdeedd2a3bdd0d091a169122 + '@emotion/react': 11.10.4_934231c287e6ee895010b95c7785347a + '@emotion/styled': 11.10.4_c46bd13c3bf7e95ece89f7fc0cfe5b15 + '@mui/private-theming': 5.10.6_7df2e632d193aca1f14601bd0dc974c3 + '@mui/styled-engine': 5.10.6_22074cf8cdeedd2a3bdd0d091a169122 '@mui/types': 7.2.0_@types+react@17.0.50 - '@mui/utils': 5.10.3_react@17.0.2 + '@mui/utils': 5.10.6_react@17.0.2 '@types/react': 17.0.50 clsx: 1.2.1 csstype: 3.1.0 @@ -7901,27 +7904,20 @@ packages: react: 17.0.2 dev: true - /@mui/system/5.10.5_react@17.0.2: - resolution: {integrity: sha512-GUPiDVZTKp9yH3FVeLSIw3Bqsyl7qLxtAK1ZiZmC8e+zdH7bcnZZXvWK3vPIbx35ZyhQpvAOWQFpiF9TjdA77w==} + /@mui/system/5.10.6_react@17.0.2: + resolution: {integrity: sha512-HfQVX7e2xpQ3jtdB/WwtkFVtozMOozyN575/63u8ILHkE8wGDhblmCieAsnyJPFbm7WBW5PCMyzmfr4QyKLaYg==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 '@emotion/styled': ^11.3.0 '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true dependencies: '@babel/runtime': 7.19.0 - '@mui/private-theming': 5.10.3_react@17.0.2 - '@mui/styled-engine': 5.10.5_react@17.0.2 + '@mui/private-theming': 5.10.6_react@17.0.2 + '@mui/styled-engine': 5.10.6_react@17.0.2 '@mui/types': 7.2.0 - '@mui/utils': 5.10.3_react@17.0.2 + '@mui/utils': 5.10.6_react@17.0.2 clsx: 1.2.1 csstype: 3.1.0 prop-types: 15.8.1 @@ -7932,24 +7928,18 @@ packages: resolution: {integrity: sha512-lGXtFKe5lp3UxTBGqKI1l7G8sE2xBik8qCfrLHD5olwP/YU0/ReWoWT7Lp1//ri32dK39oPMrJN8TgbkCSbsNA==} peerDependencies: '@types/react': '*' - peerDependenciesMeta: - '@types/react': - optional: true dev: false /@mui/types/7.2.0_@types+react@17.0.50: resolution: {integrity: sha512-lGXtFKe5lp3UxTBGqKI1l7G8sE2xBik8qCfrLHD5olwP/YU0/ReWoWT7Lp1//ri32dK39oPMrJN8TgbkCSbsNA==} peerDependencies: '@types/react': '*' - peerDependenciesMeta: - '@types/react': - optional: true dependencies: '@types/react': 17.0.50 dev: true - /@mui/utils/5.10.3_react@17.0.2: - resolution: {integrity: sha512-4jXMDPfx6bpMVuheLaOpKTjpzw39ogAZLeaLj5+RJec3E37/hAZMYjURfblLfTWMMoGoqkY03mNsZaEwNobBow==} + /@mui/utils/5.10.6_react@17.0.2: + resolution: {integrity: sha512-g0Qs8xN/MW2M3fLL8197h5J2VB9U+49fLlnKKqC6zy/yus5cZwdT+Gwec+wUMxgwQoxMDn+J8oDWAn28kEOR/Q==} engines: {node: '>=12.0.0'} peerDependencies: react: ^17.0.0 || ^18.0.0 @@ -8550,12 +8540,12 @@ packages: dependencies: defer-to-connect: 2.0.1 - /@testing-library/dom/8.17.1: - resolution: {integrity: sha512-KnH2MnJUzmFNPW6RIKfd+zf2Wue8mEKX0M3cpX6aKl5ZXrJM1/c/Pc8c2xDNYQCnJO48Sm5ITbMXgqTr3h4jxQ==} + /@testing-library/dom/8.18.1: + resolution: {integrity: sha512-oEvsm2B/WtcHKE+IcEeeCqNU/ltFGaVyGbpcm4g/2ytuT49jrlH9x5qRKL/H3A6yfM4YAbSbC0ceT5+9CEXnLg==} engines: {node: '>=12'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.0 '@types/aria-query': 4.2.0 aria-query: 5.0.0 chalk: 4.1.2 @@ -8587,7 +8577,7 @@ packages: react-dom: <18.0.0 dependencies: '@babel/runtime': 7.18.9 - '@testing-library/dom': 8.17.1 + '@testing-library/dom': 8.18.1 '@types/react-dom': 17.0.17 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 @@ -8657,7 +8647,7 @@ packages: /@types/babel__core/7.1.14: resolution: {integrity: sha512-zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g==} dependencies: - '@babel/parser': 7.19.0 + '@babel/parser': 7.19.1 '@babel/types': 7.19.0 '@types/babel__generator': 7.6.2 '@types/babel__template': 7.4.0 @@ -8671,7 +8661,7 @@ packages: /@types/babel__template/7.4.0: resolution: {integrity: sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==} dependencies: - '@babel/parser': 7.19.0 + '@babel/parser': 7.19.1 '@babel/types': 7.19.0 /@types/babel__traverse/7.11.1: @@ -8964,8 +8954,8 @@ packages: resolution: {integrity: sha512-e6ZowgGJmTuXa3GyaPbTGxX17tnThl2aSSizrFthQ7m9uLGZBXiGhgE55cjRZTF5kjZvYn9EOPOMljdjwbflxw==} dev: true - /@types/node/16.11.59: - resolution: {integrity: sha512-6u+36Dj3aDzhfBVUf/mfmc92OEdzQ2kx2jcXGdigfl70E/neV21ZHE6UCz4MDzTRcVqGAM27fk+DLXvyDsn3Jw==} + /@types/node/16.11.60: + resolution: {integrity: sha512-kYIYa1D1L+HDv5M5RXQeEu1o0FKA6yedZIoyugm/MBPROkLpX4L7HRxMrPVyo8bnvjpW/wDlqFNGzXNMb7AdRw==} /@types/node/17.0.21: resolution: {integrity: sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==} @@ -9413,7 +9403,7 @@ packages: /@vue/compiler-core/3.0.11: resolution: {integrity: sha512-6sFj6TBac1y2cWCvYCA8YzHJEbsVkX7zdRs/3yK/n1ilvRqcn983XvpBbnN3v4mZ1UiQycTvOiajJmOgN9EVgw==} dependencies: - '@babel/parser': 7.19.0 + '@babel/parser': 7.19.1 '@babel/types': 7.19.0 '@vue/shared': 3.0.11 estree-walker: 2.0.2 @@ -9432,7 +9422,7 @@ packages: peerDependencies: vue: 3.0.11 dependencies: - '@babel/parser': 7.19.0 + '@babel/parser': 7.19.1 '@babel/types': 7.19.0 '@vue/compiler-core': 3.0.11 '@vue/compiler-dom': 3.0.11 @@ -9820,9 +9810,6 @@ packages: /ajv-formats/2.1.1: resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} - peerDependenciesMeta: - ajv: - optional: true dependencies: ajv: 8.11.0 @@ -9976,8 +9963,8 @@ packages: normalize-path: 3.0.0 picomatch: 2.3.1 - /apache-md5/1.1.7: - resolution: {integrity: sha512-JtHjzZmJxtzfTSjsCyHgPR155HBe5WGyUyHTaEkfy46qhwCFKx1Epm6nAxgUG3WfUZP1dWhGqj9Z2NOBeZ+uBw==} + /apache-md5/1.1.8: + resolution: {integrity: sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==} engines: {node: '>=8'} dev: false @@ -10141,8 +10128,8 @@ packages: resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} engines: {node: '>=8.0.0'} - /autocannon/7.9.0: - resolution: {integrity: sha512-lPD88B8i5FMwK2NLFphj6F2Q40YQUHN2sJ+w6a4nzEfn+JMDKI/o3ViBrgamvFLE2EeQ1ZtcnYrBJj6mc9Uy6Q==} + /autocannon/7.10.0: + resolution: {integrity: sha512-PY1UrXL4NHE7J0hA6GGN2r8xjiAePS/bii3Hz7NOvp4JO3xDNBgRftDjfAxj1t6FDWXiXEOuKF/pdDiisIS8ZA==} hasBin: true dependencies: chalk: 4.1.2 @@ -10197,6 +10184,8 @@ packages: debug: 4.3.4 fastq: 1.13.0 queue-microtask: 1.2.3 + transitivePeerDependencies: + - supports-color /axe-core/4.4.3: resolution: {integrity: sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==} @@ -10222,12 +10211,12 @@ packages: resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} dev: false - /babel-core/7.0.0-bridge.0_@babel+core@7.19.0: + /babel-core/7.0.0-bridge.0_@babel+core@7.19.1: resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 dev: true /babel-eslint/10.1.0_eslint@8.23.1: @@ -10247,23 +10236,38 @@ packages: - supports-color dev: true - /babel-jest/29.0.3_@babel+core@7.19.0: + /babel-jest/29.0.3_@babel+core@7.19.1: resolution: {integrity: sha512-ApPyHSOhS/sVzwUOQIWJmdvDhBsMG01HX9z7ogtkp1TToHGGUWFlnXJUIzCgKPSfiYLn3ibipCYzsKSURHEwLg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@jest/transform': 29.0.3 '@types/babel__core': 7.1.14 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.0.2_@babel+core@7.19.0 + babel-preset-jest: 29.0.2_@babel+core@7.19.1 chalk: 4.1.2 graceful-fs: 4.2.9 slash: 3.0.0 transitivePeerDependencies: - supports-color + /babel-loader/8.2.5_89e430e495307b3464675ac1d4c826c5: + resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: '>=2' + dependencies: + '@babel/core': 7.19.1 + find-cache-dir: 3.3.1 + loader-utils: 2.0.2 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 5.74.0_webpack-cli@4.7.2 + dev: true + /babel-loader/8.2.5_987cc70bded3fa81b046dafa8784ef98: resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} @@ -10293,21 +10297,6 @@ packages: webpack: 5.74.0_esbuild@0.14.10 dev: false - /babel-loader/8.2.5_ceb53638b4190fb9e0882bd35b257d22: - resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} - engines: {node: '>= 8.9'} - peerDependencies: - '@babel/core': ^7.0.0 - webpack: '>=2' - dependencies: - '@babel/core': 7.19.0 - find-cache-dir: 3.3.1 - loader-utils: 2.0.2 - make-dir: 3.1.0 - schema-utils: 2.7.1 - webpack: 5.74.0_webpack-cli@4.7.2 - dev: true - /babel-plugin-apply-mdx-type-prop/1.6.22_@babel+core@7.12.9: resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==} peerDependencies: @@ -10411,14 +10400,14 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.19.0: - resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==} + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.19.1: + resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.18.8 - '@babel/core': 7.19.0 - '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.19.0 + '@babel/compat-data': 7.19.1 + '@babel/core': 7.19.1 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.1 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -10447,14 +10436,14 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.19.0: - resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==} + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.19.1: + resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.19.0 - core-js-compat: 3.22.4 + '@babel/core': 7.19.1 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.1 + core-js-compat: 3.25.2 transitivePeerDependencies: - supports-color dev: true @@ -10480,13 +10469,13 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator/0.4.0_@babel+core@7.19.0: - resolution: {integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==} + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.19.1: + resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.1 transitivePeerDependencies: - supports-color dev: true @@ -10495,34 +10484,34 @@ packages: resolution: {integrity: sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=} dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.19.0: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.19.1: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.0 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.0 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.19.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.0 + '@babel/core': 7.19.1 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.1 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.1 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.19.1 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.1 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.1 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.1 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.1 - /babel-preset-jest/29.0.2_@babel+core@7.19.0: + /babel-preset-jest/29.0.2_@babel+core@7.19.1: resolution: {integrity: sha512-BeVXp7rH5TK96ofyEnHjznjLMQ2nAeDJ+QzxKnHAAMs0RgrQsCywjAN8m4mOm5Di0pxU//3AoEeJJrerMH5UeA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 babel-plugin-jest-hoist: 29.0.2 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.0 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.1 /bail/1.0.5: resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} @@ -10766,10 +10755,10 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001280 - electron-to-chromium: 1.3.895 + caniuse-lite: 1.0.30001410 + electron-to-chromium: 1.4.260 escalade: 3.1.1 - node-releases: 2.0.1 + node-releases: 2.0.6 picocolors: 1.0.0 dev: true @@ -10778,12 +10767,22 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001338 - electron-to-chromium: 1.4.137 + caniuse-lite: 1.0.30001410 + electron-to-chromium: 1.4.260 escalade: 3.1.1 - node-releases: 2.0.4 + node-releases: 2.0.6 picocolors: 1.0.0 + /browserslist/4.21.4: + resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001410 + electron-to-chromium: 1.4.260 + node-releases: 2.0.6 + update-browserslist-db: 1.0.9_browserslist@4.21.4 + /bser/2.1.1: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} dependencies: @@ -10915,13 +10914,12 @@ packages: lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 - /caniuse-lite/1.0.30001280: - resolution: {integrity: sha512-kFXwYvHe5rix25uwueBxC569o53J6TpnGu0BEEn+6Lhl2vsnAumRFWEBhDft1fwyo6m1r4i+RqA4+163FpeFcA==} - dev: true - /caniuse-lite/1.0.30001338: resolution: {integrity: sha512-1gLHWyfVoRDsHieO+CaeYe7jSo/MT7D7lhaXUiwwbuR5BwQxORs0f1tAwUSQr3YbxRXJvxHM/PA5FfPQRnsPeQ==} + /caniuse-lite/1.0.30001410: + resolution: {integrity: sha512-QoblBnuE+rG0lc3Ur9ltP5q47lbguipa/ncNMyyGuqPk44FxbScWAeEO+k5fSQ8WekdAK4mWqNs1rADDAiN5xQ==} + /ccount/1.1.0: resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} @@ -11574,7 +11572,7 @@ packages: whiskers: optional: true dependencies: - babel-core: 7.0.0-bridge.0_@babel+core@7.19.0 + babel-core: 7.0.0-bridge.0_@babel+core@7.19.1 bluebird: 3.7.2 lodash: 4.17.21 dev: true @@ -11683,6 +11681,12 @@ packages: browserslist: 4.20.3 semver: 7.0.0 + /core-js-compat/3.25.2: + resolution: {integrity: sha512-TxfyECD4smdn3/CjWxczVtJqVLEEC2up7/82t7vC0AzNogr+4nQ8vyF7abxAuTXWvjTClSbvGhU0RgqA4ToQaQ==} + dependencies: + browserslist: 4.21.4 + dev: true + /core-js-pure/3.21.1: resolution: {integrity: sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==} requiresBuild: true @@ -11696,8 +11700,8 @@ packages: resolution: {integrity: sha512-CVU1xvJEfJGhyCpBrzzzU1kjCfgsGUxhEvwUV2e/cOedYWHdmluamx+knDnmhqALddMG16fZvIqvs9aijsHHaA==} requiresBuild: true - /core-js/3.25.1: - resolution: {integrity: sha512-sr0FY4lnO1hkQ4gLDr24K0DGnweGO1QwSj5BpfQjpSJPdqWalja4cTps29Y/PJVG/P7FYlPDkH3hO+Tr0CvDgQ==} + /core-js/3.25.2: + resolution: {integrity: sha512-YB4IAT1bjEfxTJ1XYy11hJAKskO+qmhuDBM8/guIfMz4JvdsAQAqvyb97zXX7JgSrfPLG5mRGFWJwJD39ruq2A==} requiresBuild: true /core-util-is/1.0.2: @@ -12613,15 +12617,15 @@ packages: dependencies: esutils: 2.0.3 - /docusaurus-plugin-sass/0.2.1_b308783923dcac4bbf246bcdd75c512d: + /docusaurus-plugin-sass/0.2.1_f2ce3bf55a04081984944a3e75e8d1ea: resolution: {integrity: sha512-cRugbRWnKLjFPQTo1k2cyn/AANYkXAPHv+DaLs7bkOfOofEgTSrMdpNidt3oZ0ltQcjUUbvmSRRjH9R1ifdRMA==} peerDependencies: '@docusaurus/core': ^2.0.0 sass: ^1.30.0 dependencies: '@docusaurus/core': 2.1.0_b474a4bd8e00209f81a53b0b9158918e - sass: 1.54.9 - sass-loader: 10.2.0_sass@1.54.9 + sass: 1.55.0 + sass-loader: 10.2.0_sass@1.55.0 transitivePeerDependencies: - fibers - node-sass @@ -12788,12 +12792,12 @@ packages: /ee-first/1.1.1: resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} - /electron-to-chromium/1.3.895: - resolution: {integrity: sha512-9Ww3fB8CWctjqHwkOt7DQbMZMpal2x2reod+/lU4b9axO1XJEDUpPMBxs7YnjLhhqpKXIIB5SRYN/B4K0QpvyQ==} - dev: true - /electron-to-chromium/1.4.137: resolution: {integrity: sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA==} + dev: false + + /electron-to-chromium/1.4.260: + resolution: {integrity: sha512-1GxPM2Bdz1AjuNjho9/TqJfxM7KZ7R8s4vA5cbbIoVacQXfvZlV+d7Y1lu4BhGzEBfjjhakr3NXKqN0PxPXIsg==} /emittery/0.10.2: resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} @@ -13406,7 +13410,7 @@ packages: '@typescript-eslint/eslint-plugin': 5.37.0_d685d2b5ce593055662a5186c22faa62 '@typescript-eslint/utils': 5.33.1_eslint@8.23.1+typescript@4.8.3 eslint: 8.23.1 - jest: 29.0.3_e10479ebf907e8af132991d81b88ac36 + jest: 29.0.3_7a4cd679c15c985098a72ad58dd67af7 transitivePeerDependencies: - supports-color - typescript @@ -13971,8 +13975,8 @@ packages: resolution: {integrity: sha512-dlGKiwLzRBKkEf5J5ho0uAD/Jdv8GQVUbriB3tAX3ehRUXE4gTV3lRd5inEg9li1aLzb0EGj8y2K4/8g1TN06g==} dev: false - /fastify/4.5.3: - resolution: {integrity: sha512-Q8Zvkmg7GnioMCDX1jT2Q7iRqjywlnDZ1735D2Ipf7ashCM/3/bqPKv2Jo1ZF2iDExct2eP1C/tdhcj0GG/OuQ==} + /fastify/4.6.0: + resolution: {integrity: sha512-EgWUvcJNvsql1R4g5/ce866BYk8SgJKjGh6AI0e9BR+NidP7hqX1ObiwHEVbkR15A9XwMtkKd3TE/tFZCjsqnA==} dependencies: '@fastify/ajv-compiler': 3.1.2 '@fastify/error': 3.0.0 @@ -13981,13 +13985,15 @@ packages: avvio: 8.1.3 find-my-way: 7.0.0 light-my-request: 5.5.1 - pino: 8.4.2 + pino: 8.6.0 process-warning: 2.0.0 proxy-addr: 2.0.7 rfdc: 1.3.0 secure-json-parse: 2.4.0 semver: 7.3.7 tiny-lru: 8.0.2 + transitivePeerDependencies: + - supports-color /fastq/1.11.0: resolution: {integrity: sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==} @@ -14913,8 +14919,8 @@ packages: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true - /headers-polyfill/3.0.10: - resolution: {integrity: sha512-lOhQU7iG3AMcjmb8NIWCa+KwfJw5bY44BoWPtrj5A4iDbSD3ylGf5QcYr0ZyQnhkKQ2GgWNLdF2rfrXtXlF3nQ==} + /headers-polyfill/3.1.0: + resolution: {integrity: sha512-AVwgTAzeGpF7kwUCMc9HbAoCKFcHGEfmWkaI8g0jprrkh9VPRaofIsfV7Lw8UuR9pi4Rk7IIjJce8l0C+jSJNA==} dev: true /hexoid/1.0.0: @@ -15884,8 +15890,8 @@ packages: resolution: {integrity: sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.19.0 - '@babel/parser': 7.19.0 + '@babel/core': 7.19.1 + '@babel/parser': 7.19.1 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -15954,7 +15960,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-cli/29.0.3_e10479ebf907e8af132991d81b88ac36: + /jest-cli/29.0.3_7a4cd679c15c985098a72ad58dd67af7: resolution: {integrity: sha512-aUy9Gd/Kut1z80eBzG10jAn6BgS3BoBbXyv+uXEqBJ8wnnuZ5RpNfARoskSrTIy1GY4a8f32YGuCMwibtkl9CQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -15971,7 +15977,7 @@ packages: exit: 0.1.2 graceful-fs: 4.2.9 import-local: 3.0.2 - jest-config: 29.0.3_e10479ebf907e8af132991d81b88ac36 + jest-config: 29.0.3_7a4cd679c15c985098a72ad58dd67af7 jest-util: 29.0.3 jest-validate: 29.0.3 prompts: 2.4.2 @@ -15993,11 +15999,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@jest/test-sequencer': 29.0.3 '@jest/types': 29.0.3 '@types/node': 17.0.21 - babel-jest: 29.0.3_@babel+core@7.19.0 + babel-jest: 29.0.3_@babel+core@7.19.1 chalk: 4.1.2 ci-info: 3.2.0 deepmerge: 4.2.2 @@ -16016,11 +16022,11 @@ packages: pretty-format: 29.0.3 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_03bba433ca420ee50bf31a7f62506788 + ts-node: 10.9.1_c690f7d1423a0f305e81445df17703f5 transitivePeerDependencies: - supports-color - /jest-config/29.0.3_e10479ebf907e8af132991d81b88ac36: + /jest-config/29.0.3_7a4cd679c15c985098a72ad58dd67af7: resolution: {integrity: sha512-U5qkc82HHVYe3fNu2CRXLN4g761Na26rWKf7CjM8LlZB3In1jadEkZdMwsE37rd9RSPV0NfYaCjHdk/gu3v+Ew==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -16032,11 +16038,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@jest/test-sequencer': 29.0.3 '@jest/types': 29.0.3 - '@types/node': 16.11.59 - babel-jest: 29.0.3_@babel+core@7.19.0 + '@types/node': 16.11.60 + babel-jest: 29.0.3_@babel+core@7.19.1 chalk: 4.1.2 ci-info: 3.2.0 deepmerge: 4.2.2 @@ -16055,7 +16061,7 @@ packages: pretty-format: 29.0.3 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_03bba433ca420ee50bf31a7f62506788 + ts-node: 10.9.1_c690f7d1423a0f305e81445df17703f5 transitivePeerDependencies: - supports-color @@ -16215,7 +16221,7 @@ packages: peerDependencies: jest: '>=23.4 <29' dependencies: - jest: 29.0.3_e10479ebf907e8af132991d81b88ac36 + jest: 29.0.3_7a4cd679c15c985098a72ad58dd67af7 dev: true /jest-mock/29.0.3: @@ -16324,18 +16330,18 @@ packages: resolution: {integrity: sha512-52q6JChm04U3deq+mkQ7R/7uy7YyfVIrebMi6ZkBoDJ85yEjm/sJwdr1P0LOIEHmpyLlXrxy3QP0Zf5J2kj0ew==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.19.1 '@babel/generator': 7.19.0 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.0 - '@babel/traverse': 7.19.0 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.1 + '@babel/traverse': 7.19.1 '@babel/types': 7.19.0 '@jest/expect-utils': 29.0.3 '@jest/transform': 29.0.3 '@jest/types': 29.0.3 '@types/babel__traverse': 7.11.1 '@types/prettier': 2.3.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.0 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.1 chalk: 4.1.2 expect: 29.0.3 graceful-fs: 4.2.9 @@ -16411,7 +16417,7 @@ packages: merge-stream: 2.0.0 supports-color: 8.1.1 - /jest/29.0.3_e10479ebf907e8af132991d81b88ac36: + /jest/29.0.3_7a4cd679c15c985098a72ad58dd67af7: resolution: {integrity: sha512-ElgUtJBLgXM1E8L6K1RW1T96R897YY/3lRYqq9uVcPWtP2AAl/nQ16IYDh/FzQOOQ12VEuLdcPU83mbhG2C3PQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -16424,7 +16430,7 @@ packages: '@jest/core': 29.0.3_ts-node@10.9.1 '@jest/types': 29.0.3 import-local: 3.0.2 - jest-cli: 29.0.3_e10479ebf907e8af132991d81b88ac36 + jest-cli: 29.0.3_7a4cd679c15c985098a72ad58dd67af7 transitivePeerDependencies: - '@types/node' - supports-color @@ -17281,6 +17287,8 @@ packages: micromark-util-types: 1.0.2 unist-util-stringify-position: 3.0.0 uvu: 0.5.3 + transitivePeerDependencies: + - supports-color dev: true /mdast-util-gfm-autolink-literal/1.0.2: @@ -17724,6 +17732,8 @@ packages: micromark-util-symbol: 1.0.1 micromark-util-types: 1.0.2 uvu: 0.5.3 + transitivePeerDependencies: + - supports-color dev: true /micromatch/3.1.10: @@ -17990,19 +18000,16 @@ packages: /ms/2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - /msw/0.47.2_typescript@4.8.3: - resolution: {integrity: sha512-6bj8Vkghu+SpF8XOskezE92Mbg92Dc+OIArzW087bzvs5zMWKXyYfU5Ni2YS3Psdx6IVSaV3kzsEvFrbAoHz3g==} + /msw/0.47.3_typescript@4.8.3: + resolution: {integrity: sha512-X3w/1fi29mEqoCajgFV59hrmns+mdD/FPegYMRwW7CK0vi//yX9NVy07/XspdBm6W1TNtb8Giv79SmS2BAb0Wg==} engines: {node: '>=14'} hasBin: true requiresBuild: true peerDependencies: typescript: '>= 4.2.x <= 4.8.x' - peerDependenciesMeta: - typescript: - optional: true dependencies: '@mswjs/cookies': 0.2.2 - '@mswjs/interceptors': 0.17.3 + '@mswjs/interceptors': 0.17.5 '@open-draft/until': 1.0.3 '@types/cookie': 0.4.1 '@types/js-levenshtein': 1.1.1 @@ -18010,7 +18017,7 @@ packages: chokidar: 3.5.3 cookie: 0.4.2 graphql: 16.6.0 - headers-polyfill: 3.0.10 + headers-polyfill: 3.1.0 inquirer: 8.2.0 is-node-process: 1.0.1 js-levenshtein: 1.1.6 @@ -18204,18 +18211,13 @@ packages: resolution: {integrity: sha512-Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw==} dev: false - /node-releases/2.0.1: - resolution: {integrity: sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==} - dev: true + /node-releases/2.0.6: + resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} - /node-releases/2.0.4: - resolution: {integrity: sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ==} - - /nodemon/2.0.19: - resolution: {integrity: sha512-4pv1f2bMDj0Eeg/MhGqxrtveeQ5/G/UVe9iO6uTZzjnRluSA4PVWf8CW99LUPwGB3eNIA7zUFoP77YuI7hOc0A==} + /nodemon/2.0.20: + resolution: {integrity: sha512-Km2mWHKKY5GzRg6i1j5OxOHQtuvVsgskLfigG25yTtbyfRGn/GNvIbRyOf1PSCKJ2aT/58TiuUsuOU5UToVViw==} engines: {node: '>=8.10.0'} hasBin: true - requiresBuild: true dependencies: chokidar: 3.5.3 debug: 3.2.7_supports-color@5.5.0 @@ -18314,128 +18316,6 @@ packages: engines: {node: '>=6.0.0'} dev: false - /npm/5.10.0: - resolution: {integrity: sha512-lvjvjgR5wG2RJ2uqak1xtZcVAWMwVOzN5HkUlUj/n8rU1f3A0fNn+7HwOzH9Lyf0Ppyu9ApgsEpHczOSnx1cwA==} - hasBin: true - dev: false - bundledDependencies: - - abbrev - - ansi-regex - - ansicolors - - ansistyles - - aproba - - archy - - byte-size - - cacache - - call-limit - - bluebird - - bin-links - - chownr - - cli-table2 - - cmd-shim - - columnify - - config-chain - - debuglog - - detect-indent - - detect-newline - - dezalgo - - editor - - find-npm-prefix - - fs-vacuum - - fs-write-stream-atomic - - gentle-fs - - glob - - graceful-fs - - has-unicode - - hosted-git-info - - iferr - - imurmurhash - - inflight - - inherits - - ini - - init-package-json - - is-cidr - - json-parse-better-errors - - JSONStream - - lazy-property - - libcipm - - libnpx - - lockfile - - lodash._baseindexof - - lodash._baseuniq - - lodash._bindcallback - - lodash._cacheindexof - - lodash._createcache - - lodash._getnative - - lodash.clonedeep - - lodash.restparam - - lodash.union - - lodash.uniq - - lodash.without - - lru-cache - - meant - - mkdirp - - mississippi - - move-concurrently - - nopt - - normalize-package-data - - npm-cache-filename - - npm-lifecycle - - npm-install-checks - - npm-package-arg - - npm-packlist - - npm-profile - - npm-registry-client - - npm-user-validate - - npmlog - - once - - opener - - osenv - - pacote - - path-is-inside - - promise-inflight - - query-string - - qrcode-terminal - - qw - - read - - read-cmd-shim - - read-installed - - read-package-json - - read-package-tree - - readable-stream - - readdir-scoped-modules - - request - - retry - - rimraf - - semver - - sha - - slide - - sorted-object - - sorted-union-stream - - ssri - - strip-ansi - - tar - - text-table - - uid-number - - umask - - unique-filename - - unpipe - - update-notifier - - uuid - - validate-npm-package-license - - validate-npm-package-name - - which - - wrappy - - write-file-atomic - - safe-buffer - - worker-farm - - tiny-relative-date - - cli-columns - - node-gyp - - npm-audit-report - - npm-registry-fetch - - lock-verify - /npm/6.14.17: resolution: {integrity: sha512-CxEDn1ydVRPDl4tHrlnq+WevYAhv4GF2AEHzJKQ4prZDZ96IS3Uo6t0Sy6O9kB6XzqkI+J00WfYCqqk0p6IJ1Q==} engines: {node: 6 >=6.2.0 || 8 || >=9.3.0} @@ -18724,8 +18604,8 @@ packages: - which - write-file-atomic - /npm/9.0.0-pre.1: - resolution: {integrity: sha512-vsSgXGc4/sogKvPE3BQuRzrci0Gx1ddlfV8DJCDifaiMXYw42edXpNpDr/4tmy7Yv/KRQqMDBSAMp4FrMleHug==} + /npm/9.0.0-pre.2: + resolution: {integrity: sha512-EZjQhBKnt0scKYz3Zck5Cc+NgTwGBB6SWuX3XVYFvCkKri4OdTcTEk830gLAgufqt9fuMUR76o/I4lkim4l5QA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true dev: false @@ -19343,24 +19223,8 @@ packages: /pino-std-serializers/6.0.0: resolution: {integrity: sha512-mMMOwSKrmyl+Y12Ri2xhH1lbzQxwwpuru9VjyJpgFIH4asSj88F2csdMwN6+M5g1Ll4rmsYghHLQJw81tgZ7LQ==} - /pino/8.4.2: - resolution: {integrity: sha512-PlXDeGhJZfAuVay+wtlS02s5j8uisQveZExYdAm9MwwxUQSz9R7Q78XtjM2tTa4sa5KJmygimZjZxXXuHgV6ew==} - hasBin: true - dependencies: - atomic-sleep: 1.0.0 - fast-redact: 3.1.1 - on-exit-leak-free: 2.1.0 - pino-abstract-transport: 1.0.0 - pino-std-serializers: 6.0.0 - process-warning: 2.0.0 - quick-format-unescaped: 4.0.3 - real-require: 0.2.0 - safe-stable-stringify: 2.3.1 - sonic-boom: 3.2.0 - thread-stream: 2.0.1 - - /pino/8.5.0: - resolution: {integrity: sha512-PuD6sOti8Y+p9zRoNB5dibmfjfM/OU2tEtJFICxw5ulXi1d0qnq/Rt3CsR6aBEAOeyCXP+ZUfiNWW+tt55pNzg==} + /pino/8.6.0: + resolution: {integrity: sha512-gCEOs6XpgiM8mSFjiLXQejDJ1PZww8AUmHowQ16QpqpXQDIm3mFwn/29+Y6CJxd6i+x3uXduuerjq+IqWoABbA==} hasBin: true dependencies: atomic-sleep: 1.0.0 @@ -20669,8 +20533,8 @@ packages: react-side-effect: 2.1.1_react@17.0.2 dev: false - /react-hook-form/7.35.0_react@17.0.2: - resolution: {integrity: sha512-9CYdOed+Itbiu5VMVxW0PK9mBR3f0gDGJcZEyUSm0eJbDymQ913TRs2gHcQZZmfTC+rtxyDFRuelMxx/+xwMcw==} + /react-hook-form/7.36.1_react@17.0.2: + resolution: {integrity: sha512-EbYYkCG2p8ywe7ikOH2l02lAFMrrrslZi1I8fqd8ifDGNAkhomHZQzQsP6ksvzrWBKntRe8b5L5L7Zsd+Gm02Q==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17 || ^18 @@ -20824,10 +20688,12 @@ packages: unified: 10.1.1 unist-util-visit: 4.1.0 vfile: 5.3.0 + transitivePeerDependencies: + - supports-color dev: true - /react-player/2.10.1_react@17.0.2: - resolution: {integrity: sha512-ova0jY1Y1lqLYxOehkzbNEju4rFXYVkr5rdGD71nsiG4UKPzRXQPTd3xjoDssheoMNjZ51mjT5ysTrdQ2tEvsg==} + /react-player/2.11.0_react@17.0.2: + resolution: {integrity: sha512-fIrwpuXOBXdEg1FiyV9isKevZOaaIsAAtZy5fcjkQK9Nhmk1I2NXzY/hkPos8V0zb/ZX416LFy8gv7l/1k3a5w==} peerDependencies: react: '>=16.6.0' dependencies: @@ -20839,25 +20705,17 @@ packages: react-fast-compare: 3.2.0 dev: false - /react-redux/7.2.8_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-6+uDjhs3PSIclqoCk0kd6iX74gzrGc3W5zcAjbrFgEdIjRSQObdIwfx80unTkVUYvbQ95Y8Av3OvFHq1w5EOUw==} + /react-redux/7.2.9_react@17.0.2: + resolution: {integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==} peerDependencies: react: ^16.8.3 || ^17 || ^18 - react-dom: '*' - react-native: '*' - peerDependenciesMeta: - react-dom: - optional: true - react-native: - optional: true dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.0 '@types/react-redux': 7.1.20 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 react-is: 17.0.2 dev: true @@ -21232,6 +21090,8 @@ packages: '@types/mdast': 3.0.10 mdast-util-from-markdown: 1.2.0 unified: 10.1.1 + transitivePeerDependencies: + - supports-color dev: true /remark-parse/8.0.3: @@ -21496,7 +21356,7 @@ packages: truncate-utf8-bytes: 1.0.2 dev: false - /sass-loader/10.2.0_sass@1.54.9: + /sass-loader/10.2.0_sass@1.55.0: resolution: {integrity: sha512-kUceLzC1gIHz0zNJPpqRsJyisWatGYNFRmv2CKZK2/ngMJgLqxTbXwe/hJ85luyvZkgqU3VlJ33UVF2T/0g6mw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -21515,12 +21375,12 @@ packages: klona: 2.0.5 loader-utils: 2.0.2 neo-async: 2.6.2 - sass: 1.54.9 + sass: 1.55.0 schema-utils: 3.1.1 semver: 7.3.7 dev: true - /sass-loader/12.1.0_sass@1.54.9: + /sass-loader/12.1.0_sass@1.55.0: resolution: {integrity: sha512-FVJZ9kxVRYNZTIe2xhw93n3xJNYZADr+q69/s98l9nTCrWASo+DR2Ot0s5xTKQDDEosUkatsGeHxcH4QBp5bSg==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -21538,11 +21398,11 @@ packages: dependencies: klona: 2.0.4 neo-async: 2.6.2 - sass: 1.54.9 + sass: 1.55.0 dev: true - /sass/1.54.9: - resolution: {integrity: sha512-xb1hjASzEH+0L0WI9oFjqhRi51t/gagWnxLiwUNMltA0Ab6jIDkAacgKiGYKM9Jhy109osM7woEEai6SXeJo5Q==} + /sass/1.55.0: + resolution: {integrity: sha512-Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A==} engines: {node: '>=12.0.0'} hasBin: true dependencies: @@ -22486,6 +22346,8 @@ packages: '@babel/traverse': 7.12.5 micromatch: 4.0.2 postcss: 7.0.32 + transitivePeerDependencies: + - supports-color dev: true /stylelint-webpack-plugin/3.3.0_stylelint@14.11.0+webpack@5.74.0: @@ -23061,7 +22923,7 @@ packages: utf8-byte-length: 1.0.4 dev: false - /ts-node/10.9.1_03bba433ca420ee50bf31a7f62506788: + /ts-node/10.9.1_c690f7d1423a0f305e81445df17703f5: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -23080,7 +22942,7 @@ packages: '@tsconfig/node12': 1.0.7 '@tsconfig/node14': 1.0.0 '@tsconfig/node16': 1.0.2 - '@types/node': 16.11.59 + '@types/node': 16.11.60 acorn: 8.8.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -23485,6 +23347,16 @@ packages: resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} engines: {node: '>=4'} + /update-browserslist-db/1.0.9_browserslist@4.21.4: + resolution: {integrity: sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.21.4 + escalade: 3.1.1 + picocolors: 1.0.0 + /update-notifier/5.1.0: resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} engines: {node: '>=10'} @@ -23722,12 +23594,15 @@ packages: resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} engines: {node: '>=0.10.0'} - /usehooks-ts/2.6.0_react@17.0.2: - resolution: {integrity: sha512-Kj/4oc2nOxRDGTDb2v1ZulF7+tpeXFuqI6cUesM0Vic7TPPDlFORxKh4ivsYg+NTvX/YbM+lhqqkfFTiIt23eg==} + /usehooks-ts/2.7.1_react-dom@17.0.2+react@17.0.2: + resolution: {integrity: sha512-7WgP5ELpmJ/5rZ4P+YnfhLXdiGf1Xpy4iLnjcifBGmwBWXBBa9FZRRHNOiJJw1NKIAU9LOaKaps4G3KXLPhZ6w==} + engines: {node: '>=16.15.0', npm: '>=8'} peerDependencies: - react: '>=16.9.0' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 dev: false /utf8-byte-length/1.0.4: diff --git a/website/package.json b/website/package.json index 5747346cb..5cbfe4694 100644 --- a/website/package.json +++ b/website/package.json @@ -28,9 +28,9 @@ "@docusaurus/theme-search-algolia": "2.1.0", "@docusaurus/plugin-content-docs": "2.1.0", "@docusaurus/theme-common": "2.1.0", - "@mui/material": "5.10.5", - "@mui/icons-material": "5.10.3", - "@mui/styles": "5.10.3", + "@mui/material": "5.10.6", + "@mui/icons-material": "5.10.6", + "@mui/styles": "5.10.6", "@mdx-js/react": "^1.6.22", "clsx": "1.2.1", "classnames": "2.3.2", @@ -38,9 +38,9 @@ "docusaurus-plugin-contributors": "workspace:1.0.1-6-next.0", "docusaurus-plugin-sentry": "1.0.0", "react": "17.0.2", - "react-player": "2.10.1", + "react-player": "2.11.0", "react-dom": "17.0.2", - "usehooks-ts": "2.6.0", + "usehooks-ts": "2.7.1", "react-twitter-widgets": "^1.10.0", "use-is-in-viewport": "^1.0.9" }, @@ -63,7 +63,7 @@ "esbuild": "0.14.10", "esbuild-loader": "2.16.0", "prism-react-renderer": "^1.2.1", - "sass": "1.54.9", + "sass": "1.55.0", "sass-loader": "^12.1.0", "url-loader": "4.1.1" }