From 04b74c105361e5eca850d4f0ce02dc9f14556c3a Mon Sep 17 00:00:00 2001 From: Sam Seay Date: Fri, 16 Sep 2022 09:21:42 +1200 Subject: [PATCH] Upgrade to pnpm 7 (#34661) * Remove -- -- from scripts that fixed issue in pnpm 6, fix a couple TS issues in sep packages * Minor fixes to analyzer scripts and doco based on pnpm 7 * Add dompurify types to data package to avoid TS errors * Remove pnpx in favor of pnpm exec * Modify the code analyzer to respect pnpm version if present. * Update instructions for running recursive lint, add comments to explain --- .../setup-woocommerce-monorepo/action.yml | 6 +- .github/workflows/ci.yml | 6 +- .github/workflows/pr-build-and-e2e-tests.yml | 6 +- .github/workflows/pr-code-coverage.yml | 5 +- .github/workflows/pr-highlight-changes.yml | 7 +- .github/workflows/pr-lint-monorepo.yml | 2 +- .github/workflows/pr-lint-test-js.yml | 8 +- .github/workflows/pr-unit-tests.yml | 1 + .github/workflows/smoke-test-daily.yml | 2 +- .npmrc | 3 +- DEVELOPMENT.md | 10 +- package.json | 4 +- .../admin-e2e-tests/changelog/upgrade-pnpm-7 | 4 + packages/js/admin-e2e-tests/package.json | 2 +- packages/js/api/changelog/upgrade-pnpm-7 | 4 + packages/js/api/package.json | 4 +- .../js/components/changelog/upgrade-pnpm-7 | 4 + packages/js/components/package.json | 4 +- .../js/csv-export/changelog/upgrade-pnpm-7 | 4 + packages/js/csv-export/package.json | 4 +- packages/js/currency/changelog/upgrade-pnpm-7 | 4 + packages/js/currency/package.json | 4 +- .../changelog/upgrade-pnpm-7 | 4 + .../js/customer-effort-score/package.json | 4 +- packages/js/data/changelog/upgrade-pnpm-7 | 4 + packages/js/data/package.json | 5 +- packages/js/date/changelog/upgrade-pnpm-7 | 4 + packages/js/date/package.json | 4 +- .../changelog/fix-linting-pnpm7 | 4 + packages/js/e2e-core-tests/package.json | 2 +- packages/js/e2e-environment/package.json | 3 +- packages/js/e2e-utils/package.json | 3 +- .../js/experimental/changelog/upgrade-pnpm-7 | 4 + packages/js/experimental/package.json | 4 +- packages/js/explat/changelog/upgrade-pnpm-7 | 4 + packages/js/explat/package.json | 4 +- packages/js/internal-js-tests/package.json | 2 +- .../js/navigation/changelog/upgrade-pnpm-7 | 4 + packages/js/navigation/package.json | 4 +- packages/js/notices/package.json | 2 +- packages/js/number/changelog/upgrade-pnpm-7 | 4 + packages/js/number/package.json | 4 +- .../js/onboarding/changelog/upgrade-pnpm-7 | 4 + packages/js/onboarding/package.json | 2 +- packages/js/tracks/changelog/upgrade-pnpm-7 | 4 + packages/js/tracks/package.json | 2 +- .../components/plugins.tsx | 1 - .../fills/tax/woocommerce-tax/plugins.tsx | 1 - plugins/woocommerce-admin/package.json | 9 +- .../changelog/upgrade-pnpm-7 | 4 + plugins/woocommerce-beta-tester/package.json | 5 +- .../woocommerce/changelog/upgrade-to-pnpm-7 | 4 + .../woocommerce/client/legacy/package.json | 2 +- plugins/woocommerce/package.json | 7 +- pnpm-lock.yaml | 11687 ++++++++-------- tools/cherry-pick/package.json | 3 +- tools/code-analyzer/README.md | 4 +- tools/code-analyzer/src/lib/scan-changes.ts | 14 + tools/monorepo-merge/package.json | 2 +- tools/package-release/package.json | 2 +- 60 files changed, 5839 insertions(+), 6089 deletions(-) create mode 100644 packages/js/admin-e2e-tests/changelog/upgrade-pnpm-7 create mode 100644 packages/js/api/changelog/upgrade-pnpm-7 create mode 100644 packages/js/components/changelog/upgrade-pnpm-7 create mode 100644 packages/js/csv-export/changelog/upgrade-pnpm-7 create mode 100644 packages/js/currency/changelog/upgrade-pnpm-7 create mode 100644 packages/js/customer-effort-score/changelog/upgrade-pnpm-7 create mode 100644 packages/js/data/changelog/upgrade-pnpm-7 create mode 100644 packages/js/date/changelog/upgrade-pnpm-7 create mode 100644 packages/js/dependency-extraction-webpack-plugin/changelog/fix-linting-pnpm7 create mode 100644 packages/js/experimental/changelog/upgrade-pnpm-7 create mode 100644 packages/js/explat/changelog/upgrade-pnpm-7 create mode 100644 packages/js/navigation/changelog/upgrade-pnpm-7 create mode 100644 packages/js/number/changelog/upgrade-pnpm-7 create mode 100644 packages/js/onboarding/changelog/upgrade-pnpm-7 create mode 100644 packages/js/tracks/changelog/upgrade-pnpm-7 create mode 100644 plugins/woocommerce-beta-tester/changelog/upgrade-pnpm-7 create mode 100644 plugins/woocommerce/changelog/upgrade-to-pnpm-7 diff --git a/.github/actions/setup-woocommerce-monorepo/action.yml b/.github/actions/setup-woocommerce-monorepo/action.yml index 18891eec8f5..5c928a402ea 100644 --- a/.github/actions/setup-woocommerce-monorepo/action.yml +++ b/.github/actions/setup-woocommerce-monorepo/action.yml @@ -28,7 +28,7 @@ runs: - name: Setup PNPM uses: pnpm/action-setup@10693b3829bf86eb2572aef5f3571dcf5ca9287d with: - version: 6 + version: 7 - name: Setup Node uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 @@ -51,7 +51,9 @@ runs: - name: Install Node and PHP Dependencies shell: bash - run: pnpm install ${{ steps.parse-input.outputs.INSTALL_FILTERS }} + run: | + pnpm -w install turbo + pnpm install ${{ steps.parse-input.outputs.INSTALL_FILTERS }} - name: Cache Build Output uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7833fec2442..3bf34568253 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,8 @@ jobs: composer --version - name: Build Admin feature config - run: pnpm build:feature-config --filter=woocommerce + working-directory: plugins/woocommerce + run: pnpm run build:feature-config - name: Add PHP8 Compatibility. run: | @@ -72,4 +73,5 @@ jobs: run: ./tests/bin/install.sh woo_test root root 127.0.0.1 ${{ matrix.wp }} - name: Run tests - run: pnpm run test --filter="woocommerce" --color + working-directory: plugins/woocommerce + run: pnpm run test --color diff --git a/.github/workflows/pr-build-and-e2e-tests.yml b/.github/workflows/pr-build-and-e2e-tests.yml index 257b67471dc..5013d489f30 100644 --- a/.github/workflows/pr-build-and-e2e-tests.yml +++ b/.github/workflows/pr-build-and-e2e-tests.yml @@ -23,7 +23,7 @@ jobs: - name: Download and install Chromium browser. working-directory: plugins/woocommerce - run: pnpx playwright install chromium + run: pnpm exec playwright install chromium - name: Run Playwright E2E tests. timeout-minutes: 60 @@ -31,7 +31,7 @@ jobs: env: USE_WP_ENV: 1 working-directory: plugins/woocommerce - run: pnpx playwright test --config=tests/e2e-pw/playwright.config.js + run: pnpm exec playwright test --config=tests/e2e-pw/playwright.config.js - name: Generate Playwright E2E Test report. id: generate_e2e_report @@ -42,7 +42,7 @@ jobs: steps.run_playwright_e2e_tests.conclusion != 'skipped' ) working-directory: plugins/woocommerce - run: pnpx allure generate --clean e2e/allure-results --output e2e/allure-report + run: pnpm exec allure generate --clean e2e/allure-results --output e2e/allure-report - name: Archive Playwright E2E test report if: | diff --git a/.github/workflows/pr-code-coverage.yml b/.github/workflows/pr-code-coverage.yml index 61a5b8fe70a..7c0c6c8d1bc 100644 --- a/.github/workflows/pr-code-coverage.yml +++ b/.github/workflows/pr-code-coverage.yml @@ -37,8 +37,9 @@ jobs: composer --version - name: Build Admin feature config - run: | - pnpm build:feature-config --filter=woocommerce + working-directory: plugins/woocommerce + run: + pnpm run build:feature-config - name: Init DB and WP working-directory: plugins/woocommerce diff --git a/.github/workflows/pr-highlight-changes.yml b/.github/workflows/pr-highlight-changes.yml index 9589ab918b4..df85cdcec51 100644 --- a/.github/workflows/pr-highlight-changes.yml +++ b/.github/workflows/pr-highlight-changes.yml @@ -11,14 +11,15 @@ jobs: uses: actions/checkout@v3 - name: Install prerequisites run: | - npm install -g pnpm@^6.24.2 + npm install -g pnpm npm -g i @wordpress/env@5.1.0 pnpm install --filter code-analyzer --filter cli-core - name: Run analyzer id: run + working-directory: tools/code-analyzer run: | - version=$(pnpm run analyzer --filter code-analyzer -- major-minor "${{ github.head_ref || github.ref_name }}" "plugins/woocommerce/woocommerce.php" | tail -n 1) - pnpm run analyzer --filter code-analyzer -- "$GITHUB_HEAD_REF" $version -o "github" + version=$(pnpm run analyzer major-minor "${{ github.head_ref || github.ref_name }}" "plugins/woocommerce/woocommerce.php" | tail -n 1) + pnpm run analyzer "$GITHUB_HEAD_REF" $version -o "github" - name: Print results id: results run: echo "::set-output name=results::${{ steps.run.outputs.templates }}${{ steps.run.outputs.wphooks }}${{ steps.run.outputs.schema }}${{ steps.run.outputs.database }}" diff --git a/.github/workflows/pr-lint-monorepo.yml b/.github/workflows/pr-lint-monorepo.yml index cef42386dcb..9615dabfe65 100644 --- a/.github/workflows/pr-lint-monorepo.yml +++ b/.github/workflows/pr-lint-monorepo.yml @@ -29,4 +29,4 @@ jobs: run: php tools/monorepo/check-changelogger-use.php --debug "$BASE" "$HEAD" - name: Run changelog validation - run: pnpm changelog --filter=* -- validate + run: pnpm run -r changelog validate diff --git a/.github/workflows/pr-lint-test-js.yml b/.github/workflows/pr-lint-test-js.yml index 4430cc0d023..49dc37471bd 100644 --- a/.github/workflows/pr-lint-test-js.yml +++ b/.github/workflows/pr-lint-test-js.yml @@ -13,12 +13,10 @@ jobs: - uses: actions/checkout@v3 - name: Setup WooCommerce Monorepo - uses: ./.github/actions/setup-woocommerce-monorepo - with: - install-filters: 'woocommerce/client/admin...' + uses: ./.github/actions/setup-woocommerce-monorepo - name: Lint - run: pnpm run lint --filter='woocommerce/client/admin...' --filter='!@woocommerce/e2e*' --filter='!@woocommerce/api' --color + run: pnpm run -r --filter='woocommerce/client/admin...' --filter='!@woocommerce/e2e*' --filter='!@woocommerce/api' --color lint - name: Test - run: pnpm run test --filter='woocommerce/client/admin...' --filter='!@woocommerce/e2e*' --filter='!@woocommerce/api' --color + run: pnpm run test --filter='woocommerce/client/admin...' --filter='!@woocommerce/e2e*' --filter='!@woocommerce/api' --color diff --git a/.github/workflows/pr-unit-tests.yml b/.github/workflows/pr-unit-tests.yml index 6a3c7fe718b..aa16bb13c14 100644 --- a/.github/workflows/pr-unit-tests.yml +++ b/.github/workflows/pr-unit-tests.yml @@ -65,4 +65,5 @@ jobs: run: ./tests/bin/install.sh woo_test root root 127.0.0.1 ${{ matrix.wp }} - name: Run tests + working-directory: plugins/woocommerce run: pnpm run test --filter=woocommerce --color diff --git a/.github/workflows/smoke-test-daily.yml b/.github/workflows/smoke-test-daily.yml index 41f1c07e371..7c12d9f1f6c 100644 --- a/.github/workflows/smoke-test-daily.yml +++ b/.github/workflows/smoke-test-daily.yml @@ -93,7 +93,7 @@ jobs: UPDATE_WC: 1 DEFAULT_TIMEOUT_OVERRIDE: 120000 run: | - pnpx wc-e2e test:e2e tests/e2e/specs/smoke-tests/update-woocommerce.js + pnpm exec wc-e2e test:e2e tests/e2e/specs/smoke-tests/update-woocommerce.js continue-on-error: true - name: Install k6 diff --git a/.npmrc b/.npmrc index 94601633430..9d43c15d3cc 100644 --- a/.npmrc +++ b/.npmrc @@ -1,2 +1,3 @@ ; adding this as npm 7 automatically installs peer dependencies but pnpm does not -auto-install-peers=true \ No newline at end of file +auto-install-peers=true +strict-peer-dependencies=false diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 6ecaf905aa4..6517338e081 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -21,14 +21,16 @@ If you would like to read more about the syntax, please check out [the Turborepo Here are some examples of the ways you can use Turborepo / pnpm commands: ```bash -# Lint and build all plugins, packages, and tools -pnpm run lint && pnpm run build +# Lint and build all plugins, packages, and tools. Note the use of `-r` for lint, +# turbo does not run the lint at this time. +pnpm run -r lint && pnpm run build # Build WooCommerce Core and all of its dependencies pnpm run build --filter='woocommerce' -# Lint the @woocommerce/components package -pnpm run lint --filter='@woocommerce/components' +# Lint the @woocommerce/components package - note the different argument order, turbo scripts +# are not running lints at this point in time. +pnpm run -r --filter='@woocommerce/components' lint # Test all of the @woocommerce scoped packages pnpm run test --filter='@woocommerce/*' diff --git a/package.json b/package.json index a5892c2b57c..2944cc52a79 100644 --- a/package.json +++ b/package.json @@ -14,8 +14,8 @@ "url": "https://github.com/woocommerce/woocommerce/issues" }, "scripts": { - "build": "pnpm exec turbo run turbo:build -- -- ", - "test": "pnpm exec turbo run turbo:test -- --", + "build": "pnpm exec turbo run turbo:build", + "test": "pnpm exec turbo run turbo:test", "build-storybook": "build-storybook -c ./tools/storybook/.storybook", "preinstall": "npx only-allow pnpm", "postinstall": "pnpm git:update-hooks", diff --git a/packages/js/admin-e2e-tests/changelog/upgrade-pnpm-7 b/packages/js/admin-e2e-tests/changelog/upgrade-pnpm-7 new file mode 100644 index 00000000000..10ee28d636f --- /dev/null +++ b/packages/js/admin-e2e-tests/changelog/upgrade-pnpm-7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Adjust build/test scripts to remove -- -- that was required for pnpm 6. diff --git a/packages/js/admin-e2e-tests/package.json b/packages/js/admin-e2e-tests/package.json index 80aea928a10..0d1f34da8cb 100644 --- a/packages/js/admin-e2e-tests/package.json +++ b/packages/js/admin-e2e-tests/package.json @@ -55,7 +55,7 @@ "turbo:build": "tsc --build", "prepare": "composer install", "changelog": "composer exec -- changelogger", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", "lint": "eslint src", "start": "tsc --build --watch", "clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*", diff --git a/packages/js/api/changelog/upgrade-pnpm-7 b/packages/js/api/changelog/upgrade-pnpm-7 new file mode 100644 index 00000000000..10ee28d636f --- /dev/null +++ b/packages/js/api/changelog/upgrade-pnpm-7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Adjust build/test scripts to remove -- -- that was required for pnpm 6. diff --git a/packages/js/api/package.json b/packages/js/api/package.json index e1e5fd4870d..4e0e0c62ed5 100644 --- a/packages/js/api/package.json +++ b/packages/js/api/package.json @@ -28,13 +28,13 @@ "scripts": { "turbo:build": "pnpm run clean && npm run compile", "turbo:test": "jest", - "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name -- --", + "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name", "prepare": "composer install", "changelog": "composer exec -- changelogger", "clean": "rm -rf ./dist ./tsconfig.tsbuildinfo", "compile": "tsc -b", "prepack": "pnpm run build", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", "lint": "eslint src", "lint:fix": "eslint src --fix" }, diff --git a/packages/js/components/changelog/upgrade-pnpm-7 b/packages/js/components/changelog/upgrade-pnpm-7 new file mode 100644 index 00000000000..10ee28d636f --- /dev/null +++ b/packages/js/components/changelog/upgrade-pnpm-7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Adjust build/test scripts to remove -- -- that was required for pnpm 6. diff --git a/packages/js/components/package.json b/packages/js/components/package.json index f0a55ffa139..7c4bacb8fff 100644 --- a/packages/js/components/package.json +++ b/packages/js/components/package.json @@ -127,8 +127,8 @@ "turbo:test": "jest --config ./jest.config.json", "prepare": "composer install", "changelog": "composer exec -- changelogger", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", - "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", + "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name", "lint": "eslint src --ext=js,ts,tsx", "build:js": "tsc --build ./tsconfig.json ./tsconfig-cjs.json", "build:css": "webpack", diff --git a/packages/js/csv-export/changelog/upgrade-pnpm-7 b/packages/js/csv-export/changelog/upgrade-pnpm-7 new file mode 100644 index 00000000000..10ee28d636f --- /dev/null +++ b/packages/js/csv-export/changelog/upgrade-pnpm-7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Adjust build/test scripts to remove -- -- that was required for pnpm 6. diff --git a/packages/js/csv-export/package.json b/packages/js/csv-export/package.json index 92d1e862707..9eede566360 100644 --- a/packages/js/csv-export/package.json +++ b/packages/js/csv-export/package.json @@ -34,8 +34,8 @@ "prepare": "composer install", "changelog": "composer exec -- changelogger", "clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", - "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", + "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name", "lint": "eslint src", "start": "tsc --build --watch", "prepack": "pnpm run clean && pnpm run build", diff --git a/packages/js/currency/changelog/upgrade-pnpm-7 b/packages/js/currency/changelog/upgrade-pnpm-7 new file mode 100644 index 00000000000..10ee28d636f --- /dev/null +++ b/packages/js/currency/changelog/upgrade-pnpm-7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Adjust build/test scripts to remove -- -- that was required for pnpm 6. diff --git a/packages/js/currency/package.json b/packages/js/currency/package.json index 1a56ee79cae..2e53ebc0dab 100644 --- a/packages/js/currency/package.json +++ b/packages/js/currency/package.json @@ -37,8 +37,8 @@ "prepare": "composer install", "changelog": "composer exec -- changelogger", "clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", - "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", + "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name", "lint": "eslint src", "start": "tsc --build --watch", "prepack": "pnpm run clean && pnpm run build", diff --git a/packages/js/customer-effort-score/changelog/upgrade-pnpm-7 b/packages/js/customer-effort-score/changelog/upgrade-pnpm-7 new file mode 100644 index 00000000000..10ee28d636f --- /dev/null +++ b/packages/js/customer-effort-score/changelog/upgrade-pnpm-7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Adjust build/test scripts to remove -- -- that was required for pnpm 6. diff --git a/packages/js/customer-effort-score/package.json b/packages/js/customer-effort-score/package.json index f494bde8f5e..2c5e0726b22 100644 --- a/packages/js/customer-effort-score/package.json +++ b/packages/js/customer-effort-score/package.json @@ -69,8 +69,8 @@ "prepare": "composer install", "changelog": "composer exec -- changelogger", "clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", - "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", + "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name", "lint": "eslint src", "build:js": "tsc --build ./tsconfig.json ./tsconfig-cjs.json", "build:css": "webpack", diff --git a/packages/js/data/changelog/upgrade-pnpm-7 b/packages/js/data/changelog/upgrade-pnpm-7 new file mode 100644 index 00000000000..10ee28d636f --- /dev/null +++ b/packages/js/data/changelog/upgrade-pnpm-7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Adjust build/test scripts to remove -- -- that was required for pnpm 6. diff --git a/packages/js/data/package.json b/packages/js/data/package.json index fbf67bf8722..86ead2f31e4 100644 --- a/packages/js/data/package.json +++ b/packages/js/data/package.json @@ -48,6 +48,7 @@ "@babel/runtime": "^7.17.2", "@testing-library/react": "^12.1.3", "@testing-library/react-hooks": "^7.0.2", + "@types/dompurify": "^2.3.3", "@types/jest": "^27.4.1", "@types/lodash": "^4.14.182", "@types/md5": "^2.3.2", @@ -78,8 +79,8 @@ "prepare": "composer install", "changelog": "composer exec -- changelogger", "clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", - "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", + "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name", "lint": "eslint src", "start": "tsc --build --watch", "prepack": "pnpm run clean && pnpm run build", diff --git a/packages/js/date/changelog/upgrade-pnpm-7 b/packages/js/date/changelog/upgrade-pnpm-7 new file mode 100644 index 00000000000..10ee28d636f --- /dev/null +++ b/packages/js/date/changelog/upgrade-pnpm-7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Adjust build/test scripts to remove -- -- that was required for pnpm 6. diff --git a/packages/js/date/package.json b/packages/js/date/package.json index 0f85d4c30a5..9e2d54d1d89 100644 --- a/packages/js/date/package.json +++ b/packages/js/date/package.json @@ -55,8 +55,8 @@ "prepare": "composer install", "changelog": "composer exec -- changelogger", "clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", - "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", + "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name", "lint": "eslint src", "start": "tsc --build --watch", "prepack": "pnpm run clean && pnpm run build", diff --git a/packages/js/dependency-extraction-webpack-plugin/changelog/fix-linting-pnpm7 b/packages/js/dependency-extraction-webpack-plugin/changelog/fix-linting-pnpm7 new file mode 100644 index 00000000000..ea1aa6e0bab --- /dev/null +++ b/packages/js/dependency-extraction-webpack-plugin/changelog/fix-linting-pnpm7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Remove direct dependency on eslint so that linting works properly with pnpm7 diff --git a/packages/js/e2e-core-tests/package.json b/packages/js/e2e-core-tests/package.json index 0772f764519..eaca2b42ff3 100644 --- a/packages/js/e2e-core-tests/package.json +++ b/packages/js/e2e-core-tests/package.json @@ -49,7 +49,7 @@ "scripts": { "turbo:build": "./bin/build.sh && pnpm run clean && pnpm run compile", "prepare": "pnpm run build", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", "clean": "rm -rf ./build ./build-module", "compile": "e2e-builds", "lint": "eslint src --ext=js,ts,tsx", diff --git a/packages/js/e2e-environment/package.json b/packages/js/e2e-environment/package.json index 22ad712ce53..1748e8aeb76 100644 --- a/packages/js/e2e-environment/package.json +++ b/packages/js/e2e-environment/package.json @@ -54,7 +54,6 @@ "@wordpress/babel-plugin-import-jsx-pragma": "1.1.3", "@wordpress/babel-preset-default": "3.0.2", "@wordpress/browserslist-config": "^4.1.0", - "eslint": "^8.1.0", "ndb": "^1.1.5", "semver": "^7.3.2" }, @@ -63,7 +62,7 @@ }, "scripts": { "turbo:build": "pnpm run clean && pnpm run compile", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", "clean": "rm -rf ./build ./build-module", "compile": "e2e-builds", "prepare": "pnpm run build", diff --git a/packages/js/e2e-utils/package.json b/packages/js/e2e-utils/package.json index 543ee91baa3..d4e76e2c5ec 100644 --- a/packages/js/e2e-utils/package.json +++ b/packages/js/e2e-utils/package.json @@ -27,6 +27,7 @@ "@babel/polyfill": "7.12.1", "@babel/preset-env": "7.12.7", "@typescript-eslint/eslint-plugin": "^5.3.0", + "@woocommerce/eslint-plugin": "workspace:*", "@typescript-eslint/parser": "^5.3.0", "@woocommerce/internal-e2e-builds": "workspace:*", "@wordpress/babel-plugin-import-jsx-pragma": "1.1.3", @@ -42,7 +43,7 @@ }, "scripts": { "turbo:build": "pnpm run clean && pnpm run compile", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", "clean": "rm -rf ./build ./build-module", "compile": "e2e-builds", "prepare": "pnpm run build", diff --git a/packages/js/experimental/changelog/upgrade-pnpm-7 b/packages/js/experimental/changelog/upgrade-pnpm-7 new file mode 100644 index 00000000000..10ee28d636f --- /dev/null +++ b/packages/js/experimental/changelog/upgrade-pnpm-7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Adjust build/test scripts to remove -- -- that was required for pnpm 6. diff --git a/packages/js/experimental/package.json b/packages/js/experimental/package.json index ef87c3f2837..40ca9a7d728 100644 --- a/packages/js/experimental/package.json +++ b/packages/js/experimental/package.json @@ -82,8 +82,8 @@ "prepare": "composer install", "changelog": "composer exec -- changelogger", "clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", - "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", + "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name", "lint": "eslint src", "build:js": "tsc --build ./tsconfig.json ./tsconfig-cjs.json", "build:css": "webpack", diff --git a/packages/js/explat/changelog/upgrade-pnpm-7 b/packages/js/explat/changelog/upgrade-pnpm-7 new file mode 100644 index 00000000000..10ee28d636f --- /dev/null +++ b/packages/js/explat/changelog/upgrade-pnpm-7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Adjust build/test scripts to remove -- -- that was required for pnpm 6. diff --git a/packages/js/explat/package.json b/packages/js/explat/package.json index af12f849483..49a6c68706f 100644 --- a/packages/js/explat/package.json +++ b/packages/js/explat/package.json @@ -54,8 +54,8 @@ "prepare": "composer install", "changelog": "composer exec -- changelogger", "clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", - "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", + "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name", "lint": "eslint src", "start": "tsc --build --watch", "prepack": "pnpm run clean && pnpm run build", diff --git a/packages/js/internal-js-tests/package.json b/packages/js/internal-js-tests/package.json index e5ab3ae94c3..63e46217a00 100644 --- a/packages/js/internal-js-tests/package.json +++ b/packages/js/internal-js-tests/package.json @@ -18,7 +18,7 @@ "module": "build-module/util/index.js", "scripts": { "turbo:build": "tsc --build ./tsconfig.json ./tsconfig-cjs.json", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", "lint": "eslint src", "ts:check": "tsc --noEmit --project ./tsconfig.json", "clean": "pnpm exec rimraf *.tsbuildinfo build build-*", diff --git a/packages/js/navigation/changelog/upgrade-pnpm-7 b/packages/js/navigation/changelog/upgrade-pnpm-7 new file mode 100644 index 00000000000..10ee28d636f --- /dev/null +++ b/packages/js/navigation/changelog/upgrade-pnpm-7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Adjust build/test scripts to remove -- -- that was required for pnpm 6. diff --git a/packages/js/navigation/package.json b/packages/js/navigation/package.json index fabec5d6abe..a41a3cd5a00 100644 --- a/packages/js/navigation/package.json +++ b/packages/js/navigation/package.json @@ -45,8 +45,8 @@ "prepare": "composer install", "changelog": "composer exec -- changelogger", "clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", - "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", + "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name", "lint": "eslint src", "start": "tsc --build --watch", "prepack": "pnpm run clean && pnpm run build", diff --git a/packages/js/notices/package.json b/packages/js/notices/package.json index b4d36e48fea..5662cd9517b 100644 --- a/packages/js/notices/package.json +++ b/packages/js/notices/package.json @@ -39,7 +39,7 @@ "scripts": { "turbo:build": "tsc --build ./tsconfig.json ./tsconfig-cjs.json", "clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", "lint": "eslint src", "start": "tsc --build --watch", "prepack": "pnpm run clean && pnpm run build", diff --git a/packages/js/number/changelog/upgrade-pnpm-7 b/packages/js/number/changelog/upgrade-pnpm-7 new file mode 100644 index 00000000000..10ee28d636f --- /dev/null +++ b/packages/js/number/changelog/upgrade-pnpm-7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Adjust build/test scripts to remove -- -- that was required for pnpm 6. diff --git a/packages/js/number/package.json b/packages/js/number/package.json index e642f6f82a1..95479cc000e 100644 --- a/packages/js/number/package.json +++ b/packages/js/number/package.json @@ -32,8 +32,8 @@ "prepare": "composer install", "changelog": "composer exec -- changelogger", "clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", - "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", + "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name", "lint": "eslint src", "start": "tsc --build --watch", "prepack": "pnpm run clean && pnpm run build", diff --git a/packages/js/onboarding/changelog/upgrade-pnpm-7 b/packages/js/onboarding/changelog/upgrade-pnpm-7 new file mode 100644 index 00000000000..10ee28d636f --- /dev/null +++ b/packages/js/onboarding/changelog/upgrade-pnpm-7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Adjust build/test scripts to remove -- -- that was required for pnpm 6. diff --git a/packages/js/onboarding/package.json b/packages/js/onboarding/package.json index f653cca7b4f..d1e017231e6 100644 --- a/packages/js/onboarding/package.json +++ b/packages/js/onboarding/package.json @@ -60,7 +60,7 @@ "prepare": "composer install", "changelog": "composer exec -- changelogger", "clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", "lint": "eslint src", "build:js": "tsc --build ./tsconfig.json ./tsconfig-cjs.json", "build:css": "webpack", diff --git a/packages/js/tracks/changelog/upgrade-pnpm-7 b/packages/js/tracks/changelog/upgrade-pnpm-7 new file mode 100644 index 00000000000..10ee28d636f --- /dev/null +++ b/packages/js/tracks/changelog/upgrade-pnpm-7 @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Adjust build/test scripts to remove -- -- that was required for pnpm 6. diff --git a/packages/js/tracks/package.json b/packages/js/tracks/package.json index df0ea215dc9..968e7035d6e 100644 --- a/packages/js/tracks/package.json +++ b/packages/js/tracks/package.json @@ -32,7 +32,7 @@ "prepare": "composer install", "changelog": "composer exec -- changelogger", "clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", "lint": "eslint src", "start": "tsc --build --watch", "prepack": "pnpm run clean && pnpm run build", diff --git a/plugins/woocommerce-admin/client/tasks/fills/experimental-shipping-recommendation/components/plugins.tsx b/plugins/woocommerce-admin/client/tasks/fills/experimental-shipping-recommendation/components/plugins.tsx index 5189ecd2312..b06e60da84f 100644 --- a/plugins/woocommerce-admin/client/tasks/fills/experimental-shipping-recommendation/components/plugins.tsx +++ b/plugins/woocommerce-admin/client/tasks/fills/experimental-shipping-recommendation/components/plugins.tsx @@ -75,7 +75,6 @@ export const Plugins: React.FC< Props > = ( { return ( <> = ( { return ( <> 0.1%", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 64065995105..a8521e13c98 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: 5.3 +lockfileVersion: 5.4 importers: @@ -65,29 +65,29 @@ importers: devDependencies: '@babel/preset-env': 7.16.11_@babel+core@7.12.9 '@babel/runtime': 7.17.7 - '@storybook/addon-a11y': 6.4.19 - '@storybook/addon-actions': 6.4.19 - '@storybook/addon-console': 1.2.3_@storybook+addon-actions@6.4.19 - '@storybook/addon-controls': 6.4.19_typescript@4.2.4 - '@storybook/addon-docs': 6.4.19_a84ef1f946d21a14f1015f55f0de5456 - '@storybook/addon-knobs': 6.4.0_bdb88cf577f190583d60d23c102288af - '@storybook/addon-links': 6.4.19 - '@storybook/addon-storysource': 6.4.19 - '@storybook/addon-viewport': 6.4.19 - '@storybook/addons': 6.4.19 - '@storybook/api': 6.4.19 - '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 - '@storybook/components': 6.4.19 + '@storybook/addon-a11y': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addon-actions': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addon-console': 1.2.3_kthckm6zfmobggl2ahqbjihlce + '@storybook/addon-controls': 6.4.19_kgza7ssibsmztbp7og4fdm6cqi + '@storybook/addon-docs': 6.4.19_asxjc6on6q4d4hx3mahr75p3aa + '@storybook/addon-knobs': 6.4.0_nu75ilgc3qugomjhuwv2hk42im + '@storybook/addon-links': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addon-storysource': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addon-viewport': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/builder-webpack5': 6.4.19_iopxtdjg5lx5qeu5nejjrbtkaa + '@storybook/components': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/core-events': 6.4.19 - '@storybook/manager-webpack5': 6.4.19_typescript@4.2.4 - '@storybook/react': 6.4.19_1a3cbc393c8e54a301ca95e65ea44c36 - '@storybook/theming': 6.4.19 + '@storybook/manager-webpack5': 6.4.19_iopxtdjg5lx5qeu5nejjrbtkaa + '@storybook/react': 6.4.19_ehcptaz4xabpozflxv7cqxvegy + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/node': 14.14.33 '@woocommerce/eslint-plugin': link:packages/js/eslint-plugin - '@wordpress/data': 6.15.0 - '@wordpress/eslint-plugin': 11.0.1_45b6e6918fb11850d1105a4fd2c5fed3 + '@wordpress/data': 6.15.0_react@17.0.2 + '@wordpress/eslint-plugin': 11.0.1_d5jpixt37lgia4d4o6cytys66y '@wordpress/prettier-config': 1.1.1 - babel-loader: 8.2.3_d3f6fe5812216e437b67a6bf164a056c + babel-loader: 8.2.3_2p3p4wasefxeg63hu27rmsqfnq chalk: 4.1.2 copy-webpack-plugin: 10.2.4_webpack@5.70.0 core-js: 3.21.1 @@ -121,6 +121,7 @@ importers: '@types/puppeteer': ^5.4.5 '@typescript-eslint/eslint-plugin': ^5.14.0 '@woocommerce/api': ^0.2.0 + '@woocommerce/e2e-environment': ^0.2.3 || ^0.3.0 '@woocommerce/e2e-utils': workspace:* '@woocommerce/eslint-plugin': workspace:* config: ^3.3.7 @@ -128,28 +129,31 @@ importers: jest: ^27.5.1 jest-cli: ^27.5.1 jest-mock-extended: ^1.0.18 + puppeteer: ^2.0.0 rimraf: ^3.0.2 ts-jest: ^27.1.3 typescript: ^4.6.2 dependencies: '@jest/globals': 27.5.1 '@types/jest': 27.4.1 + '@woocommerce/e2e-environment': link:../e2e-environment '@woocommerce/e2e-utils': link:../e2e-utils config: 3.3.7 + puppeteer: 2.1.1 devDependencies: '@babel/core': 7.17.8 '@types/config': 0.0.41 '@types/expect-puppeteer': 4.4.7 '@types/puppeteer': 5.4.5 - '@typescript-eslint/eslint-plugin': 5.15.0_eslint@8.12.0+typescript@4.6.2 + '@typescript-eslint/eslint-plugin': 5.15.0_zczsjq25e4fz43me4nms5bdgea '@woocommerce/api': link:../api '@woocommerce/eslint-plugin': link:../eslint-plugin eslint: 8.12.0 jest: 27.5.1 jest-cli: 27.5.1 - jest-mock-extended: 1.0.18_jest@27.5.1+typescript@4.6.2 + jest-mock-extended: 1.0.18_cq7676jphrjwjojsru3xahznwm rimraf: 3.0.2 - ts-jest: 27.1.3_23bc83dd0471d6d2a42908007c85fd69 + ts-jest: 27.1.3_eo6ihxieohlnfjbjbaahzbp5ne typescript: 4.6.2 packages/js/api: @@ -175,12 +179,12 @@ importers: '@types/create-hmac': 1.1.0 '@types/jest': 27.4.1 '@types/node': 13.13.5 - '@typescript-eslint/eslint-plugin': 5.4.0_b983626bd16070d34b18187cb6bde052 - '@typescript-eslint/parser': 5.4.0_eslint@8.2.0+typescript@4.4.4 + '@typescript-eslint/eslint-plugin': 5.4.0_xgbwe26rmbyngsyydb6lnppaki + '@typescript-eslint/parser': 5.4.0_dpa3fc6zkz7v3bcs7pcctk7gra axios-mock-adapter: 1.20.0_axios@0.24.0 eslint: 8.2.0 jest: 27.5.1 - ts-jest: 27.1.3_0eb10bc09e4650da5373ef2f7969f30b + ts-jest: 27.1.3_phamqywff5isveidhb4mf5xekm typescript: 4.4.4 packages/js/api-core-tests: @@ -195,13 +199,13 @@ importers: postman-collection: ^4.1.0 supertest: ^6.1.4 dependencies: - allure-commandline: 2.17.2 + allure-commandline: 2.18.1 dotenv: 10.0.0 jest: 27.5.1 jest-allure: 0.1.3 - jest-runner-groups: 2.1.0 - postman-collection: 4.1.0 - supertest: 6.1.6 + jest-runner-groups: 2.2.0_izd2bb4ook7j3zolwvt7oz6lf4 + postman-collection: 4.1.5 + supertest: 6.2.4 devDependencies: '@woocommerce/eslint-plugin': link:../eslint-plugin eslint: 8.12.0 @@ -247,6 +251,7 @@ importers: '@wordpress/browserslist-config': ^4.1.1 '@wordpress/components': ^19.5.0 '@wordpress/compose': ^5.1.2 + '@wordpress/data': ^6.2.1 '@wordpress/date': ^4.3.1 '@wordpress/deprecated': ^3.3.1 '@wordpress/dom': ^3.3.2 @@ -278,6 +283,7 @@ importers: gridicons: ^3.4.0 jest: ^27.5.1 jest-cli: ^27.5.1 + lodash: ^4.17.0 memoize-one: ^6.0.0 moment: ^2.29.1 moment-timezone: ^0.5.34 @@ -285,6 +291,7 @@ importers: prop-types: ^15.8.1 react: ^17.0.2 react-dates: ^21.8.0 + react-dom: ^17.0.2 react-transition-group: ^4.4.2 rimraf: ^3.0.2 sass-loader: ^10.2.1 @@ -294,16 +301,17 @@ importers: webpack-cli: ^3.3.12 dependencies: '@automattic/calypso-color-schemes': 2.1.1 - '@automattic/interpolate-components': 1.2.1_00d6772dea80510e818fd171caaa025a - '@automattic/tour-kit': 1.1.1_f43f0eda52cb243f817a58b8a550d26f + '@automattic/interpolate-components': 1.2.1_adlholpkqbiq5amp2fy4vkqcli + '@automattic/tour-kit': 1.1.1_ewcciyhsqon3yluv5ntlvxyvvm '@woocommerce/csv-export': link:../csv-export '@woocommerce/currency': link:../currency '@woocommerce/data': link:../data '@woocommerce/date': link:../date '@woocommerce/navigation': link:../navigation '@wordpress/api-fetch': 6.1.1 - '@wordpress/components': 19.6.1_707fe24a3ddaa8115c00d0a9966a19ae + '@wordpress/components': 19.6.1_lxraipvdfcmyzw3sdzk3k7kygu '@wordpress/compose': 5.2.1_react@17.0.2 + '@wordpress/data': 6.15.0_react@17.0.2 '@wordpress/date': 4.4.1 '@wordpress/deprecated': 3.4.1 '@wordpress/dom': 3.4.1 @@ -329,42 +337,44 @@ importers: downshift: 6.1.9_react@17.0.2 emoji-flags: 1.3.0 gridicons: 3.4.0_react@17.0.2 + lodash: 4.17.21 memoize-one: 6.0.0 moment: 2.29.1 moment-timezone: 0.5.34 prop-types: 15.8.1 - react-dates: 21.8.0_33310dc40fed09c713f34ce185e0313d - react-transition-group: 4.4.2_react@17.0.2 + react-dates: 21.8.0_3e2zt6dsmku6uyxszuwububhzi + react-dom: 17.0.2_react@17.0.2 + react-transition-group: 4.4.2_sfoxds7t5ydpegc3knd667wn6m devDependencies: '@babel/core': 7.17.8 '@babel/runtime': 7.17.7 - '@storybook/addon-actions': 6.4.19_00d6772dea80510e818fd171caaa025a - '@storybook/addon-console': 1.2.3_@storybook+addon-actions@6.4.19 - '@storybook/addon-controls': 6.4.19_8469d84421212093500428258085ef2e - '@storybook/addon-docs': 6.4.19_0e171cb44cbc3183f7a2f6791a9a5c37 - '@storybook/addon-knobs': 6.4.0_80fa647588bad5a9aae035b5831b7e40 - '@storybook/addon-links': 6.4.19_react@17.0.2 - '@storybook/addons': 6.4.19_react@17.0.2 - '@storybook/api': 6.4.19_react@17.0.2 - '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a + '@storybook/addon-actions': 6.4.19_6rln7q2jvtuewdvbdwpg4txtvm + '@storybook/addon-console': 1.2.3_kthckm6zfmobggl2ahqbjihlce + '@storybook/addon-controls': 6.4.19_gqjg2tmv5vcd24pd3idedy2yy4 + '@storybook/addon-docs': 6.4.19_iiadpej7rmoptout6757wmnnqi + '@storybook/addon-knobs': 6.4.0_nu75ilgc3qugomjhuwv2hk42im + '@storybook/addon-links': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/components': 6.4.19_6rln7q2jvtuewdvbdwpg4txtvm '@storybook/core-events': 6.4.19 - '@storybook/react': 6.4.19_ac71394bf7b79921297ea028da6e50ca - '@storybook/theming': 6.4.19_react@17.0.2 + '@storybook/react': 6.4.19_otv2hfrmxpoqzd2wgrsryt4y3u + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@testing-library/dom': 8.11.3 '@testing-library/jest-dom': 5.16.2 - '@testing-library/react': 12.1.4_react@17.0.2 - '@testing-library/user-event': 13.5.0_@testing-library+dom@8.11.3 + '@testing-library/react': 12.1.4_sfoxds7t5ydpegc3knd667wn6m + '@testing-library/user-event': 13.5.0_gzufz4q333be4gqfrvipwvqt6a '@types/jest': 27.4.1 '@types/lodash': 4.14.184 '@types/react': 17.0.40 '@types/testing-library__jest-dom': 5.14.3 - '@types/wordpress__components': 19.10.1_react@17.0.2 - '@types/wordpress__media-utils': 3.0.0_react@17.0.2 + '@types/wordpress__components': 19.10.1_sfoxds7t5ydpegc3knd667wn6m + '@types/wordpress__media-utils': 3.0.0_sfoxds7t5ydpegc3knd667wn6m '@types/wordpress__viewport': 2.5.4 '@woocommerce/eslint-plugin': link:../eslint-plugin '@woocommerce/internal-style-build': link:../internal-style-build '@wordpress/browserslist-config': 4.1.2 - '@wordpress/scripts': 12.6.1_3f1b4fa1d29169e6bd7bf0dc7584ef3d + '@wordpress/scripts': 12.6.1_susjpqamog7lsizpt2hlm2i7w4 concurrently: 7.0.0 css-loader: 3.6.0_webpack@5.70.0 eslint: 8.12.0 @@ -373,8 +383,8 @@ importers: postcss-loader: 3.0.0 react: 17.0.2 rimraf: 3.0.2 - sass-loader: 10.2.1_sass@1.49.9+webpack@5.70.0 - ts-jest: 27.1.3_23bc83dd0471d6d2a42908007c85fd69 + sass-loader: 10.2.1_webpack@5.70.0 + ts-jest: 27.1.3_eo6ihxieohlnfjbjbaahzbp5ne typescript: 4.6.2 webpack: 5.70.0_webpack-cli@3.3.12 webpack-cli: 3.3.12_webpack@5.70.0 @@ -403,7 +413,7 @@ importers: jest: 27.5.1 jest-cli: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.3_23bc83dd0471d6d2a42908007c85fd69 + ts-jest: 27.1.3_eo6ihxieohlnfjbjbaahzbp5ne typescript: 4.6.2 packages/js/currency: @@ -436,7 +446,7 @@ importers: jest: 27.5.1 jest-cli: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.3_23bc83dd0471d6d2a42908007c85fd69 + ts-jest: 27.1.3_eo6ihxieohlnfjbjbaahzbp5ne typescript: 4.6.2 packages/js/customer-effort-score: @@ -466,6 +476,8 @@ importers: jest-cli: ^27.5.1 postcss-loader: ^3.0.0 prop-types: ^15.8.1 + react: ^17.0.2 + react-dom: ^17.0.2 react-transition-group: ^4.4.2 rimraf: ^3.0.2 sass-loader: ^10.2.1 @@ -475,22 +487,24 @@ importers: webpack-cli: ^3.3.12 dependencies: '@woocommerce/experimental': link:../experimental - '@wordpress/components': 19.6.1_@babel+core@7.17.8 - '@wordpress/compose': 5.2.1 - '@wordpress/data': 6.15.0 + '@wordpress/components': 19.6.1_s6htitehnjl4cfb77y2wxeg7ge + '@wordpress/compose': 5.2.1_react@17.0.2 + '@wordpress/data': 6.15.0_react@17.0.2 '@wordpress/element': 4.8.0 '@wordpress/i18n': 4.4.1 - '@wordpress/notices': 3.4.1 + '@wordpress/notices': 3.4.1_react@17.0.2 classnames: 2.3.1 prop-types: 15.8.1 - react-transition-group: 4.4.2 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + react-transition-group: 4.4.2_sfoxds7t5ydpegc3knd667wn6m devDependencies: '@babel/core': 7.17.8 - '@testing-library/react': 12.1.4 + '@testing-library/react': 12.1.4_sfoxds7t5ydpegc3knd667wn6m '@types/jest': 27.4.1 '@types/prop-types': 15.7.4 '@types/testing-library__jest-dom': 5.14.3 - '@types/wordpress__components': 19.10.1 + '@types/wordpress__components': 19.10.1_sfoxds7t5ydpegc3knd667wn6m '@types/wordpress__data': 6.0.0 '@woocommerce/eslint-plugin': link:../eslint-plugin '@woocommerce/internal-style-build': link:../internal-style-build @@ -502,8 +516,8 @@ importers: jest-cli: 27.5.1 postcss-loader: 3.0.0 rimraf: 3.0.2 - sass-loader: 10.2.1_sass@1.49.9+webpack@5.70.0 - ts-jest: 27.1.3_23bc83dd0471d6d2a42908007c85fd69 + sass-loader: 10.2.1_webpack@5.70.0 + ts-jest: 27.1.3_eo6ihxieohlnfjbjbaahzbp5ne typescript: 4.6.2 webpack: 5.70.0_webpack-cli@3.3.12 webpack-cli: 3.3.12_webpack@5.70.0 @@ -515,6 +529,7 @@ importers: '@babel/runtime': ^7.17.2 '@testing-library/react': ^12.1.3 '@testing-library/react-hooks': ^7.0.2 + '@types/dompurify': ^2.3.3 '@types/jest': ^27.4.1 '@types/lodash': ^4.14.182 '@types/md5': ^2.3.2 @@ -542,7 +557,10 @@ importers: jest: ^27.5.1 jest-cli: ^27.5.1 md5: ^2.3.0 + moment: ^2.18.1 qs: ^6.10.3 + react: ^17.0.2 + react-dom: ^17.0.2 redux: ^4.1.0 rememo: ^4.0.0 rimraf: ^3.0.2 @@ -552,10 +570,10 @@ importers: '@woocommerce/date': link:../date '@woocommerce/navigation': link:../navigation '@wordpress/api-fetch': 6.1.1 - '@wordpress/compose': 5.2.1 - '@wordpress/core-data': 4.2.1 - '@wordpress/data': 6.15.0 - '@wordpress/data-controls': 2.4.1 + '@wordpress/compose': 5.2.1_react@17.0.2 + '@wordpress/core-data': 4.2.1_react@17.0.2 + '@wordpress/data': 6.15.0_react@17.0.2 + '@wordpress/data-controls': 2.4.1_react@17.0.2 '@wordpress/deprecated': 3.4.1 '@wordpress/element': 4.8.0 '@wordpress/hooks': 3.5.0 @@ -563,14 +581,18 @@ importers: '@wordpress/url': 3.5.1 dompurify: 2.3.6 md5: 2.3.0 + moment: 2.29.1 qs: 6.10.3 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 rememo: 4.0.0 devDependencies: - '@automattic/data-stores': 2.0.1_@wordpress+data@6.15.0 + '@automattic/data-stores': 2.0.1_cyzxlbsx4glw2vpbppibjtng3m '@babel/core': 7.17.8 '@babel/runtime': 7.17.7 - '@testing-library/react': 12.1.4 - '@testing-library/react-hooks': 7.0.2 + '@testing-library/react': 12.1.4_sfoxds7t5ydpegc3knd667wn6m + '@testing-library/react-hooks': 7.0.2_sfoxds7t5ydpegc3knd667wn6m + '@types/dompurify': 2.3.3 '@types/jest': 27.4.1 '@types/lodash': 4.14.182 '@types/md5': 2.3.2 @@ -586,7 +608,7 @@ importers: jest-cli: 27.5.1 redux: 4.1.2 rimraf: 3.0.2 - ts-jest: 27.1.3_23bc83dd0471d6d2a42908007c85fd69 + ts-jest: 27.1.3_eo6ihxieohlnfjbjbaahzbp5ne typescript: 4.6.2 packages/js/date: @@ -603,6 +625,7 @@ importers: eslint: ^8.12.0 jest: ^27.5.1 jest-cli: ^27.5.1 + lodash: ^4.17.0 moment: ^2.29.1 moment-timezone: ^0.5.34 qs: ^6.10.3 @@ -613,6 +636,7 @@ importers: '@types/d3-time-format': 2.3.1 '@wordpress/date': 4.4.1 '@wordpress/i18n': 4.4.1 + lodash: 4.17.21 moment: 2.29.1 moment-timezone: 0.5.34 qs: 6.10.3 @@ -627,7 +651,7 @@ importers: jest: 27.5.1 jest-cli: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.3_23bc83dd0471d6d2a42908007c85fd69 + ts-jest: 27.1.3_eo6ihxieohlnfjbjbaahzbp5ne typescript: 4.6.2 packages/js/dependency-extraction-webpack-plugin: @@ -652,7 +676,7 @@ importers: jest: 27.5.1 jest-cli: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.3_b64eba0a9f1c7068f7f3a75addda5ccd + ts-jest: 27.1.3_wzhlucu7drygr57tu5nn3ws4zu typescript: 4.6.2 webpack: 5.70.0_webpack-cli@3.3.12 webpack-cli: 3.3.12_webpack@5.70.0 @@ -668,6 +692,8 @@ importers: '@babel/polyfill': 7.12.1 '@babel/preset-env': 7.12.7 '@jest/globals': ^27.5.1 + '@woocommerce/api': ^0.2.0 + '@woocommerce/e2e-utils': ^0.1.6 '@woocommerce/eslint-plugin': workspace:* '@woocommerce/internal-e2e-builds': workspace:* '@wordpress/babel-plugin-import-jsx-pragma': 1.1.3 @@ -678,6 +704,8 @@ importers: eslint: ^8.12.0 dependencies: '@jest/globals': 27.5.1 + '@woocommerce/api': link:../api + '@woocommerce/e2e-utils': 0.1.6_3h22dpk5jbotugkadnxqe4t2uq '@wordpress/deprecated': 3.2.3 config: 3.3.3 devDependencies: @@ -692,7 +720,7 @@ importers: '@woocommerce/eslint-plugin': link:../eslint-plugin '@woocommerce/internal-e2e-builds': link:../internal-e2e-builds '@wordpress/babel-plugin-import-jsx-pragma': 1.1.3_@babel+core@7.12.9 - '@wordpress/babel-preset-default': 3.0.2 + '@wordpress/babel-preset-default': 3.0.2_@babel+core@7.12.9 '@wordpress/browserslist-config': 4.1.0 eslint: 8.12.0 @@ -720,7 +748,6 @@ importers: app-root-path: ^3.0.0 commander: 4.1.1 config: 3.3.3 - eslint: ^8.1.0 jest: ^27.5.1 jest-circus: 27.5.1 jest-each: 27.5.1 @@ -737,8 +764,8 @@ importers: '@jest/test-sequencer': 27.5.1 '@slack/web-api': 6.5.1 '@woocommerce/api': link:../api - '@wordpress/e2e-test-utils': 4.16.1_jest@27.5.1+puppeteer@2.1.1 - '@wordpress/jest-preset-default': 7.1.3_@babel+core@7.12.9+jest@27.5.1 + '@wordpress/e2e-test-utils': 4.16.1_ujr7gcpwq6xmoiv7mmimozpxs4 + '@wordpress/jest-preset-default': 7.1.3_lzj7uau34542hrpvigopp7itta app-root-path: 3.0.0 commander: 4.1.1 config: 3.3.3 @@ -763,9 +790,8 @@ importers: '@woocommerce/eslint-plugin': link:../eslint-plugin '@woocommerce/internal-e2e-builds': link:../internal-e2e-builds '@wordpress/babel-plugin-import-jsx-pragma': 1.1.3_@babel+core@7.12.9 - '@wordpress/babel-preset-default': 3.0.2 + '@wordpress/babel-preset-default': 3.0.2_@babel+core@7.12.9 '@wordpress/browserslist-config': 4.1.0 - eslint: 8.2.0 ndb: 1.1.5 semver: 7.3.5 @@ -782,6 +808,8 @@ importers: '@babel/preset-env': 7.12.7 '@typescript-eslint/eslint-plugin': ^5.3.0 '@typescript-eslint/parser': ^5.3.0 + '@woocommerce/api': ^0.2.0 + '@woocommerce/eslint-plugin': workspace:* '@woocommerce/internal-e2e-builds': workspace:* '@wordpress/babel-plugin-import-jsx-pragma': 1.1.3 '@wordpress/babel-preset-default': 3.0.2 @@ -793,8 +821,9 @@ importers: fishery: ^1.2.0 dependencies: '@automattic/puppeteer-utils': github.com/Automattic/puppeteer-utils/0f3ec50 + '@woocommerce/api': link:../api '@wordpress/deprecated': 3.2.3 - '@wordpress/e2e-test-utils': 5.3.2_jest@27.3.1 + '@wordpress/e2e-test-utils': 5.3.2_ujr7gcpwq6xmoiv7mmimozpxs4 config: 3.3.3 fishery: 1.4.0 devDependencies: @@ -806,13 +835,14 @@ importers: '@babel/plugin-transform-runtime': 7.16.4_@babel+core@7.12.9 '@babel/polyfill': 7.12.1 '@babel/preset-env': 7.12.7_@babel+core@7.12.9 - '@typescript-eslint/eslint-plugin': 5.3.0_ef742ec0d85d332d26b421951e243e75 - '@typescript-eslint/parser': 5.3.0_eslint@8.1.0+typescript@4.2.4 + '@typescript-eslint/eslint-plugin': 5.3.0_bxzhylcjqw6xv25czibwuei3cm + '@typescript-eslint/parser': 5.3.0_f662wmtjhhyn6wvwljgximehn4 + '@woocommerce/eslint-plugin': link:../eslint-plugin '@woocommerce/internal-e2e-builds': link:../internal-e2e-builds '@wordpress/babel-plugin-import-jsx-pragma': 1.1.3_@babel+core@7.12.9 - '@wordpress/babel-preset-default': 3.0.2 + '@wordpress/babel-preset-default': 3.0.2_@babel+core@7.12.9 '@wordpress/browserslist-config': 4.1.0 - eslint: 8.1.0 + eslint: 8.12.0 packages/js/eslint-plugin: specifiers: @@ -829,10 +859,10 @@ importers: ts-jest: ^27.1.3 typescript: ^4.6.2 dependencies: - '@typescript-eslint/parser': 5.15.0_eslint@8.12.0+typescript@4.6.2 - '@wordpress/eslint-plugin': 11.0.1_5db9b2fd1f8449bec1ecdb36b46d5f98 + '@typescript-eslint/parser': 5.15.0_qfndwjbknwkswbha2khu23tpva + '@wordpress/eslint-plugin': 11.0.1_nxdi2qub4ra46tpyph3fb3wi2e eslint-plugin-react-hooks: 4.3.0_eslint@8.12.0 - eslint-plugin-testing-library: 5.1.0_eslint@8.12.0+typescript@4.6.2 + eslint-plugin-testing-library: 5.1.0_qfndwjbknwkswbha2khu23tpva requireindex: 1.2.0 devDependencies: '@babel/core': 7.17.8 @@ -840,7 +870,7 @@ importers: jest: 27.5.1 jest-cli: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.3_b64eba0a9f1c7068f7f3a75addda5ccd + ts-jest: 27.1.3_wzhlucu7drygr57tu5nn3ws4zu typescript: 4.6.2 packages/js/experimental: @@ -877,6 +907,8 @@ importers: jest-cli: ^27.5.1 moment: ^2.29.1 postcss-loader: ^3.0.0 + react: ^17.0.2 + react-dom: ^17.0.2 react-transition-group: ^4.4.2 react-visibility-sensor: ^5.1.1 rimraf: ^3.0.2 @@ -887,31 +919,33 @@ importers: webpack-cli: ^3.3.12 dependencies: '@woocommerce/components': link:../components - '@wordpress/components': 19.6.1_@babel+core@7.17.8 + '@wordpress/components': 19.6.1_s6htitehnjl4cfb77y2wxeg7ge '@wordpress/element': 4.8.0 '@wordpress/i18n': 4.4.1 '@wordpress/icons': 8.1.0 '@wordpress/keycodes': 3.4.1 classnames: 2.3.1 dompurify: 2.3.6 - gridicons: 3.4.0 + gridicons: 3.4.0_react@17.0.2 moment: 2.29.1 - react-transition-group: 4.4.2 - react-visibility-sensor: 5.1.1 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + react-transition-group: 4.4.2_sfoxds7t5ydpegc3knd667wn6m + react-visibility-sensor: 5.1.1_sfoxds7t5ydpegc3knd667wn6m devDependencies: '@babel/core': 7.17.8 '@babel/runtime': 7.17.7 - '@storybook/addon-actions': 6.4.19 - '@storybook/addon-console': 1.2.3_@storybook+addon-actions@6.4.19 - '@storybook/react': 6.4.19_ce33fa78e84ed7674385e603320a18f7 + '@storybook/addon-actions': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addon-console': 1.2.3_kthckm6zfmobggl2ahqbjihlce + '@storybook/react': 6.4.19_2rf5qxxh7hbwyjnlewt2ae7ylm '@testing-library/dom': 8.11.3 - '@testing-library/react': 12.1.4 - '@testing-library/user-event': 13.5.0_@testing-library+dom@8.11.3 + '@testing-library/react': 12.1.4_sfoxds7t5ydpegc3knd667wn6m + '@testing-library/user-event': 13.5.0_gzufz4q333be4gqfrvipwvqt6a '@types/dompurify': 2.3.3 '@types/jest': 27.4.1 '@types/react-transition-group': 4.4.4 '@types/testing-library__jest-dom': 5.14.3 - '@types/wordpress__components': 19.10.1 + '@types/wordpress__components': 19.10.1_sfoxds7t5ydpegc3knd667wn6m '@woocommerce/eslint-plugin': link:../eslint-plugin '@woocommerce/internal-style-build': link:../internal-style-build '@wordpress/browserslist-config': 4.1.2 @@ -922,8 +956,8 @@ importers: jest-cli: 27.5.1 postcss-loader: 3.0.0 rimraf: 3.0.2 - sass-loader: 10.2.1_sass@1.49.9+webpack@5.70.0 - ts-jest: 27.1.3_23bc83dd0471d6d2a42908007c85fd69 + sass-loader: 10.2.1_webpack@5.70.0 + ts-jest: 27.1.3_eo6ihxieohlnfjbjbaahzbp5ne typescript: 4.6.2 webpack: 5.70.0_webpack-cli@3.3.12 webpack-cli: 3.3.12_webpack@5.70.0 @@ -968,7 +1002,7 @@ importers: jest: 27.5.1 jest-cli: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.3_23bc83dd0471d6d2a42908007c85fd69 + ts-jest: 27.1.3_eo6ihxieohlnfjbjbaahzbp5ne typescript: 4.6.2 packages/js/extend-cart-checkout-block: @@ -1010,8 +1044,8 @@ importers: typescript: ^4.6.2 dependencies: '@testing-library/jest-dom': 5.16.2 - '@testing-library/react': 12.1.4 - '@wordpress/data': 6.15.0 + '@testing-library/react': 12.1.4_sfoxds7t5ydpegc3knd667wn6m + '@wordpress/data': 6.15.0_react@17.0.2 '@wordpress/i18n': 4.5.0 '@wordpress/jest-console': 5.0.2_jest@27.5.1 regenerator-runtime: 0.13.9 @@ -1022,7 +1056,7 @@ importers: jest: 27.5.1 jest-cli: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.3_b64eba0a9f1c7068f7f3a75addda5ccd + ts-jest: 27.1.3_wzhlucu7drygr57tu5nn3ws4zu typescript: 4.6.2 packages/js/internal-style-build: @@ -1052,7 +1086,7 @@ importers: css-loader: 3.6.0_webpack@5.70.0 mini-css-extract-plugin: 2.6.0_webpack@5.70.0 postcss-loader: 3.0.0 - sass-loader: 10.2.1_sass@1.49.9+webpack@5.70.0 + sass-loader: 10.2.1_webpack@5.70.0 webpack-remove-empty-scripts: 0.7.3_webpack@5.70.0 webpack-rtl-plugin: 2.0.0 devDependencies: @@ -1062,7 +1096,7 @@ importers: jest: 27.5.1 jest-cli: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.3_b64eba0a9f1c7068f7f3a75addda5ccd + ts-jest: 27.1.3_wzhlucu7drygr57tu5nn3ws4zu typescript: 4.6.2 webpack: 5.70.0 @@ -1084,6 +1118,7 @@ importers: history: ^5.3.0 jest: ^27.5.1 jest-cli: ^27.5.1 + lodash: ^4.17.0 qs: ^6.10.3 react-router-dom: ^6.3.0 rimraf: ^3.0.2 @@ -1091,15 +1126,16 @@ importers: typescript: ^4.6.2 dependencies: '@wordpress/api-fetch': 6.1.1 - '@wordpress/components': 19.6.1_@babel+core@7.17.8 - '@wordpress/compose': 5.2.1 + '@wordpress/components': 19.6.1_mcptgafjogap2nfvnfqvfwh6uu + '@wordpress/compose': 5.2.1_react@17.0.2 '@wordpress/element': 4.8.0 '@wordpress/hooks': 3.5.0 - '@wordpress/notices': 3.4.1 + '@wordpress/notices': 3.4.1_react@17.0.2 '@wordpress/url': 3.5.1 history: 5.3.0 + lodash: 4.17.21 qs: 6.10.3 - react-router-dom: 6.3.0 + react-router-dom: 6.3.0_react@17.0.2 devDependencies: '@babel/core': 7.17.8 '@babel/runtime': 7.17.7 @@ -1110,7 +1146,7 @@ importers: jest: 27.5.1 jest-cli: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.3_23bc83dd0471d6d2a42908007c85fd69 + ts-jest: 27.1.3_eo6ihxieohlnfjbjbaahzbp5ne typescript: 4.6.2 packages/js/notices: @@ -1127,16 +1163,22 @@ importers: eslint: ^8.12.0 jest: ^27.5.1 jest-cli: ^27.5.1 + lodash: ^4.17.0 + react: ^17.0.2 + react-dom: ^17.0.2 redux: ^4.2.0 rimraf: ^3.0.2 ts-jest: ^27.1.3 typescript: ^4.6.2 dependencies: '@wordpress/a11y': 3.5.0 - '@wordpress/data': 6.15.0 - '@wordpress/notices': 3.4.1 + '@wordpress/data': 6.15.0_react@17.0.2 + '@wordpress/notices': 3.4.1_react@17.0.2 + lodash: 4.17.21 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 devDependencies: - '@automattic/data-stores': 2.0.1_@wordpress+data@6.15.0 + '@automattic/data-stores': 2.0.1_cyzxlbsx4glw2vpbppibjtng3m '@babel/core': 7.17.8 '@types/lodash': 4.14.182 '@types/wordpress__data': 6.0.0 @@ -1147,7 +1189,7 @@ importers: jest-cli: 27.5.1 redux: 4.2.0 rimraf: 3.0.2 - ts-jest: 27.1.3_b64eba0a9f1c7068f7f3a75addda5ccd + ts-jest: 27.1.3_wzhlucu7drygr57tu5nn3ws4zu typescript: 4.6.2 packages/js/number: @@ -1176,7 +1218,7 @@ importers: jest: 27.5.1 jest-cli: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.3_23bc83dd0471d6d2a42908007c85fd69 + ts-jest: 27.1.3_eo6ihxieohlnfjbjbaahzbp5ne typescript: 4.6.2 packages/js/onboarding: @@ -1209,19 +1251,19 @@ importers: webpack: ^5.70.0 webpack-cli: ^3.3.12 dependencies: - '@automattic/interpolate-components': 1.2.1 + '@automattic/interpolate-components': 1.2.1_react@17.0.2 '@woocommerce/components': link:../components '@woocommerce/experimental': link:../experimental '@woocommerce/explat': link:../explat '@woocommerce/tracks': link:../tracks - '@wordpress/components': 19.6.1_@babel+core@7.17.8 + '@wordpress/components': 19.6.1_s6htitehnjl4cfb77y2wxeg7ge '@wordpress/element': 4.8.0 '@wordpress/i18n': 4.4.1 concurrently: 7.0.0 - gridicons: 3.4.0 + gridicons: 3.4.0_react@17.0.2 devDependencies: '@babel/core': 7.17.8 - '@types/wordpress__components': 19.10.1 + '@types/wordpress__components': 19.10.1_sfoxds7t5ydpegc3knd667wn6m '@types/wordpress__data': 6.0.0 '@woocommerce/eslint-plugin': link:../eslint-plugin '@woocommerce/internal-style-build': link:../internal-style-build @@ -1232,8 +1274,8 @@ importers: jest-cli: 27.5.1 postcss-loader: 3.0.0 rimraf: 3.0.2 - sass-loader: 10.2.1_sass@1.49.9+webpack@5.70.0 - ts-jest: 27.1.3_b64eba0a9f1c7068f7f3a75addda5ccd + sass-loader: 10.2.1_webpack@5.70.0 + ts-jest: 27.1.3_wzhlucu7drygr57tu5nn3ws4zu typescript: 4.6.2 webpack: 5.70.0_webpack-cli@3.3.12 webpack-cli: 3.3.12_webpack@5.70.0 @@ -1255,12 +1297,12 @@ importers: devDependencies: '@babel/core': 7.17.8 '@types/debug': 4.1.7 - '@wordpress/eslint-plugin': 11.0.1_5db9b2fd1f8449bec1ecdb36b46d5f98 + '@wordpress/eslint-plugin': 11.0.1_dkjil42ze2w7xdnhihp2ya7hea eslint: 8.12.0 jest: 27.5.1 jest-cli: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.3_b64eba0a9f1c7068f7f3a75addda5ccd + ts-jest: 27.1.3_wzhlucu7drygr57tu5nn3ws4zu typescript: 4.6.2 plugins/woocommerce: @@ -1312,10 +1354,10 @@ importers: '@babel/core': 7.12.9 '@babel/preset-env': 7.12.7_@babel+core@7.12.9 '@babel/register': 7.12.1_@babel+core@7.12.9 - '@playwright/test': 1.22.1 - '@typescript-eslint/eslint-plugin': 3.10.1_aab05197bc2ab2306ca58e96baf5381b - '@typescript-eslint/experimental-utils': 3.10.1_eslint@6.8.0+typescript@3.9.7 - '@typescript-eslint/parser': 3.10.1_eslint@6.8.0+typescript@3.9.7 + '@playwright/test': 1.25.2 + '@typescript-eslint/eslint-plugin': 3.10.1_vkyfdf54fkzda3ffr2llv5jydm + '@typescript-eslint/experimental-utils': 3.10.1_x6qkcl3khy3aa3bbfxwmcukvzu + '@typescript-eslint/parser': 3.10.1_x6qkcl3khy3aa3bbfxwmcukvzu '@woocommerce/admin-e2e-tests': link:../../packages/js/admin-e2e-tests '@woocommerce/api': link:../../packages/js/api '@woocommerce/api-core-tests': link:../../packages/js/api-core-tests @@ -1325,11 +1367,11 @@ importers: '@woocommerce/eslint-plugin': link:../../packages/js/eslint-plugin '@woocommerce/woocommerce-rest-api': 1.0.1 '@wordpress/babel-plugin-import-jsx-pragma': 1.1.3_@babel+core@7.12.9 - '@wordpress/babel-preset-default': 3.0.2 - '@wordpress/env': 4.8.0 + '@wordpress/babel-preset-default': 3.0.2_@babel+core@7.12.9 + '@wordpress/env': 4.9.0 '@wordpress/stylelint-config': 19.1.0_stylelint@13.13.1 - allure-commandline: 2.17.2 - allure-playwright: 2.0.0-beta.16 + allure-commandline: 2.18.1 + allure-playwright: 2.0.0-beta.19 autoprefixer: 9.8.6 babel-eslint: 10.1.0_eslint@6.8.0 chai: 4.2.0 @@ -1338,8 +1380,8 @@ importers: cross-env: 6.0.3 deasync: 0.1.26 eslint: 6.8.0 - eslint-config-wpcalypso: 5.0.0_eslint@6.8.0 - eslint-plugin-jest: 23.20.0_eslint@6.8.0+typescript@3.9.7 + eslint-config-wpcalypso: 5.0.0_3y2sdwkhlqz3xfbanqi75dzl7y + eslint-plugin-jest: 23.20.0_x6qkcl3khy3aa3bbfxwmcukvzu istanbul: 1.0.0-alpha.2 jest: 27.5.1 mocha: 7.2.0 @@ -1423,6 +1465,7 @@ importers: '@wordpress/compose': ^5.1.2 '@wordpress/core-data': ^4.1.2 '@wordpress/custom-templated-path-webpack-plugin': ^2.1.2 + '@wordpress/data': ^6.15.0 '@wordpress/data-controls': ^2.3.2 '@wordpress/date': ^4.3.1 '@wordpress/dom': ^3.3.2 @@ -1520,17 +1563,18 @@ importers: dependencies: '@automattic/explat-client': 0.0.3 '@automattic/explat-client-react-helpers': 0.0.4 - '@automattic/interpolate-components': 1.2.1_00d6772dea80510e818fd171caaa025a - '@react-spring/web': 9.4.4_react-dom@17.0.2+react@17.0.2 + '@automattic/interpolate-components': 1.2.1_adlholpkqbiq5amp2fy4vkqcli + '@react-spring/web': 9.4.4_sfoxds7t5ydpegc3knd667wn6m '@woocommerce/api': link:../../packages/js/api '@woocommerce/e2e-environment': link:../../packages/js/e2e-environment '@woocommerce/e2e-utils': link:../../packages/js/e2e-utils '@wordpress/a11y': 3.5.0 '@wordpress/api-fetch': 6.1.1 '@wordpress/base-styles': 4.3.0 - '@wordpress/components': 19.6.1_f7ca8c5fead5a3a7ac9ac156301e86ed + '@wordpress/components': 19.6.1_67fiyx7k2wr2ple2yfldahug5u '@wordpress/compose': 5.2.1_react@17.0.2 '@wordpress/core-data': 4.2.1_react@17.0.2 + '@wordpress/data': 6.15.0_react@17.0.2 '@wordpress/data-controls': 2.4.1_react@17.0.2 '@wordpress/date': 4.4.1 '@wordpress/dom': 3.4.1 @@ -1560,9 +1604,9 @@ importers: qs: 6.10.3 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - react-router-dom: 6.3.0_react-dom@17.0.2+react@17.0.2 - react-transition-group: 4.4.2_react-dom@17.0.2+react@17.0.2 - react-visibility-sensor: 5.1.1_react-dom@17.0.2+react@17.0.2 + react-router-dom: 6.3.0_sfoxds7t5ydpegc3knd667wn6m + react-transition-group: 4.4.2_sfoxds7t5ydpegc3knd667wn6m + react-visibility-sensor: 5.1.1_sfoxds7t5ydpegc3knd667wn6m redux: 4.1.2 devDependencies: '@automattic/color-studio': 2.5.0 @@ -1579,9 +1623,9 @@ importers: '@octokit/core': 3.5.1 '@testing-library/dom': 8.11.3 '@testing-library/jest-dom': 5.16.2 - '@testing-library/react': 12.1.4_react-dom@17.0.2+react@17.0.2 - '@testing-library/react-hooks': 7.0.2_react-dom@17.0.2+react@17.0.2 - '@testing-library/user-event': 13.5.0_@testing-library+dom@8.11.3 + '@testing-library/react': 12.1.4_sfoxds7t5ydpegc3knd667wn6m + '@testing-library/react-hooks': 7.0.2_sfoxds7t5ydpegc3knd667wn6m + '@testing-library/user-event': 13.5.0_gzufz4q333be4gqfrvipwvqt6a '@types/cookie': 0.4.1 '@types/dompurify': 2.3.3 '@types/expect-puppeteer': 4.4.7 @@ -1593,14 +1637,14 @@ importers: '@types/react-router-dom': 5.3.3 '@types/react-transition-group': 4.4.4 '@types/testing-library__jest-dom': 5.14.3 - '@types/wordpress__components': 19.10.1_react-dom@17.0.2+react@17.0.2 + '@types/wordpress__components': 19.10.1_sfoxds7t5ydpegc3knd667wn6m '@types/wordpress__compose': 4.0.1 '@types/wordpress__data': 6.0.0 '@types/wordpress__data-controls': 2.2.0 '@types/wordpress__notices': 3.3.0 - '@types/wordpress__plugins': 3.0.0_react-dom@17.0.2+react@17.0.2 - '@typescript-eslint/eslint-plugin': 5.15.0_f2c49ce7d0e93ebcfdb4b7d25b131b28 - '@typescript-eslint/parser': 5.15.0_eslint@8.11.0+typescript@4.6.2 + '@types/wordpress__plugins': 3.0.0_sfoxds7t5ydpegc3knd667wn6m + '@typescript-eslint/eslint-plugin': 5.15.0_6lcjzz6q5e7lz7nuw7jfwey3fa + '@typescript-eslint/parser': 5.15.0_ynv3edxl3ah44xwgrna2g2yine '@woocommerce/admin-e2e-tests': link:../../packages/js/admin-e2e-tests '@woocommerce/components': link:../../packages/js/components '@woocommerce/csv-export': link:../../packages/js/csv-export @@ -1622,16 +1666,16 @@ importers: '@wordpress/babel-preset-default': 6.6.1 '@wordpress/browserslist-config': 4.1.2 '@wordpress/custom-templated-path-webpack-plugin': 2.1.2_webpack@5.70.0 - '@wordpress/jest-preset-default': 8.1.1_591b21f22e79f442e7df48b63364953c + '@wordpress/jest-preset-default': 8.1.1_lensd4roph2efz67jc3dgzevhq '@wordpress/postcss-plugins-preset': 1.6.0 '@wordpress/postcss-themes': 1.0.5 '@wordpress/prettier-config': 1.1.3 - '@wordpress/scripts': 12.6.1_952497c00c71beb9232f9e8eb6691fb7 - '@wordpress/stylelint-config': 20.0.2_postcss@8.4.12+stylelint@14.6.0 + '@wordpress/scripts': 12.6.1_susjpqamog7lsizpt2hlm2i7w4 + '@wordpress/stylelint-config': 20.0.2_gnuvbpze6hr4gjidcj2xbzgequ autoprefixer: 10.4.4_postcss@8.4.12 await-exec: 0.1.2 babel-jest: 27.5.1_@babel+core@7.17.8 - babel-loader: 8.2.3_fa907c5a4f16ccc493e21649ccc59574 + babel-loader: 8.2.3_7kihywspc3gmje7ccze4zrmvoq babel-plugin-transform-class-properties: 6.24.1 babel-plugin-transform-es2015-template-literals: 6.22.0 chalk: 4.1.2 @@ -1642,12 +1686,12 @@ importers: cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.70.0 eslint: 8.11.0 - eslint-import-resolver-typescript: 2.5.0_fe22d862ffeecaee86c93a006d59e41e - eslint-import-resolver-webpack: 0.13.2_bac363bc2c2f46a65300020741b6cf5e - eslint-plugin-import: 2.25.4_eslint@8.11.0 + eslint-import-resolver-typescript: 2.5.0_7yrnqyx753fo5bwjhiag2wpedy + eslint-import-resolver-webpack: 0.13.2_xlbwhpbmf5dkmuyaaidudnwply + eslint-plugin-import: 2.25.4_o53s3emd3qikejdbqbxdd6vyim eslint-plugin-react: 7.29.4_eslint@8.11.0 expose-loader: 3.1.0_webpack@5.70.0 - fork-ts-checker-webpack-plugin: 6.5.0_10568ae13669cc833891d65cd6879aa0 + fork-ts-checker-webpack-plugin: 6.5.0_cblivyjwnhgigoer2zonnb42ua jest: 27.5.1 jest-environment-jsdom: 27.5.1 jest-environment-node: 27.5.1 @@ -1656,7 +1700,7 @@ importers: mini-css-extract-plugin: 2.6.0_webpack@5.70.0 moment: 2.29.1 moment-timezone: 0.5.34 - moment-timezone-data-webpack-plugin: 1.5.0_839bc812c9610fc0f6876dcec0569bf9 + moment-timezone-data-webpack-plugin: 1.5.0_qon4qewjmeh4b5uhnxhmavu37e node-watch: 0.7.3 postcss: 8.4.12 postcss-color-function: 4.1.0 @@ -1674,12 +1718,12 @@ importers: sass-loader: 10.2.1_sass@1.49.9+webpack@5.70.0 style-loader: 0.23.1 stylelint: 14.6.0 - ts-jest: 27.1.3_11a8855f2c116be91eccf3d0af60dd3e + ts-jest: 27.1.3_cguikxzmcfv6shwm6pik6yg5hy typescript: 4.6.2 url-loader: 1.1.2_webpack@5.70.0 webpack: 5.70.0_webpack-cli@4.9.2 webpack-bundle-analyzer: 3.9.0 - webpack-cli: 4.9.2_b04de8011015a40c567469bf79798750 + webpack-cli: 4.9.2_wbg6qaiqcwsayvtung7xs6mhka webpack-fix-style-only-entries: 0.6.1 webpack-merge: 5.8.0 webpack-rtl-plugin: 2.0.0 @@ -1700,22 +1744,24 @@ importers: '@wordpress/hooks': ^2.11.1 '@wordpress/scripts': ^19.2.4 eslint: 5.16.0 + prop-types: ^15.8.1 uglify-js: ^3.5.3 dependencies: '@types/prop-types': 15.7.4 '@woocommerce/data': link:../../packages/js/data - '@wordpress/api-fetch': 3.23.1 - '@wordpress/components': 12.0.9_@wordpress+data@4.27.3 - '@wordpress/compose': 3.25.3 - '@wordpress/data': 4.27.3 - '@wordpress/data-controls': 1.21.3 + '@wordpress/api-fetch': 3.23.1_react-native@0.70.0 + '@wordpress/components': 12.0.9_hwlqtremp5axtc7oh3yr6fpizy + '@wordpress/compose': 3.25.3_react@16.14.0 + '@wordpress/data': 4.27.3_react@16.14.0 + '@wordpress/data-controls': 1.21.3_3lfrqxmbuwi67co5eklk724ov4 '@wordpress/element': 2.20.3 '@wordpress/hooks': 2.12.3 + prop-types: 15.8.1 devDependencies: '@woocommerce/dependency-extraction-webpack-plugin': link:../../packages/js/dependency-extraction-webpack-plugin '@woocommerce/eslint-plugin': link:../../packages/js/eslint-plugin - '@wordpress/env': 4.8.0 - '@wordpress/scripts': 19.2.4_ee910045e4cc2812de8b965e303c7169 + '@wordpress/env': 4.9.0 + '@wordpress/scripts': 19.2.4_ip2riybfi2a76rt3fygtwzhpj4 eslint: 5.16.0 uglify-js: 3.14.5 @@ -1770,7 +1816,7 @@ importers: node-fetch: ^3.2.6 ora: ^6.1.2 dependencies: - node-fetch: 3.2.8 + node-fetch: 3.2.10 ora: 6.1.2 tools/cli-core: @@ -1787,8 +1833,8 @@ importers: chalk: 4.1.2 dotenv: 10.0.0 ora: 5.4.1 - simple-git: 3.10.0 - ts-node: 10.9.1_4f8903243bef6ed5275cb8992723c1d6 + simple-git: 3.14.0 + ts-node: 10.9.1_435elrtdaw7tspfnscimedxmsi uuid: 8.3.2 devDependencies: '@tsconfig/node16': 1.0.3 @@ -1816,12 +1862,12 @@ importers: cli-core: link:../cli-core commander: 9.4.0 dotenv: 10.0.0 - simple-git: 3.10.0 + simple-git: 3.14.0 uuid: 8.3.2 devDependencies: '@types/node': 16.10.3 eslint: 7.32.0 - ts-node: 10.5.0_506ca6ef959d35afcce359030b1bc9ff + ts-node: 10.9.1_kbwkn34vtu227thdlebqwg6j74 tslib: 2.3.1 typescript: 4.6.2 @@ -1851,8 +1897,8 @@ importers: tslib: ^2.3.1 typescript: ^4.4.3 dependencies: - '@oclif/core': 1.3.4 - '@oclif/plugin-help': 5.1.11 + '@oclif/core': 1.16.1 + '@oclif/plugin-help': 5.1.12 '@oclif/plugin-plugins': 2.1.0 '@octokit/graphql': 4.8.0 devDependencies: @@ -1860,9 +1906,9 @@ importers: eslint: 7.32.0 globby: 11.0.4 jscodeshift: 0.13.1_@babel+preset-env@7.16.11 - oclif: 2.4.5 + oclif: 2.7.0_7yoz4vugw4qcykie6sit5r22dm shx: 0.3.4 - ts-node: 10.5.0_e0d88945dfc7787883e9c330c9196a96 + ts-node: 10.9.1_4dmisro7y54hra7jymymsglksy tslib: 2.3.1 typescript: 4.4.4 @@ -1882,18 +1928,18 @@ importers: tslib: ^2.3.1 typescript: ^4.4.3 dependencies: - '@oclif/core': 1.3.4 - '@oclif/plugin-help': 5.1.11 + '@oclif/core': 1.16.1 + '@oclif/plugin-help': 5.1.12 '@oclif/plugin-plugins': 2.1.0 - '@types/semver': 7.3.10 + '@types/semver': 7.3.12 semver: 7.3.5 devDependencies: '@types/node': 16.10.3 '@woocommerce/eslint-plugin': link:../../packages/js/eslint-plugin globby: 11.1.0 - oclif: 2.4.5 + oclif: 2.7.0 shx: 0.3.4 - ts-node: 10.5.0_506ca6ef959d35afcce359030b1bc9ff + ts-node: 10.9.1_kbwkn34vtu227thdlebqwg6j74 tslib: 2.3.1 typescript: 4.6.2 @@ -1930,10 +1976,10 @@ importers: node-fetch: 2.6.7 open: 8.4.0 semver: 7.3.7 - ts-node: 10.9.1_4f8903243bef6ed5275cb8992723c1d6 + ts-node: 10.9.1_435elrtdaw7tspfnscimedxmsi devDependencies: '@tsconfig/node16': 1.0.3 - '@types/express': 4.17.13 + '@types/express': 4.17.14 typescript: 4.7.4 tools/version-bump: @@ -1957,10 +2003,10 @@ importers: express: 4.18.1 ora: 5.4.1 semver: 7.3.7 - ts-node: 10.9.1_4f8903243bef6ed5275cb8992723c1d6 + ts-node: 10.9.1_435elrtdaw7tspfnscimedxmsi devDependencies: '@tsconfig/node16': 1.0.3 - '@types/express': 4.17.13 + '@types/express': 4.17.14 typescript: 4.7.4 packages: @@ -1990,7 +2036,7 @@ packages: /@automattic/color-studio/2.5.0: resolution: {integrity: sha512-gZWaJbx3p1oennAIoJtMGluTmoM95Efk4rc44TSBxWSZZ8gH3Am2eh1o3i1NhrZmg2Zt3AiVFeZZ4AJccIpBKQ==} - /@automattic/components/2.0.1_af4ff92d320e82e26b60430fe4abd92f: + /@automattic/components/2.0.1_tvee6z3edpcht3mbvrcpowxsq4: resolution: {integrity: sha512-xvIfbLcX869Cx4ccDUC5hb9MqTvZDNC5ho2yI0g1aveUfVGn7FqPxNiHwCEfW2fi5f85T63CZ727Q+ECawDoKQ==} peerDependencies: '@wordpress/data': ^6.1.5 @@ -1998,26 +2044,29 @@ packages: react-dom: ^17.0.2 dependencies: '@automattic/calypso-url': 1.0.0 - '@automattic/data-stores': 3.0.1_af4ff92d320e82e26b60430fe4abd92f + '@automattic/data-stores': 3.0.1_tvee6z3edpcht3mbvrcpowxsq4 '@automattic/typography': 1.0.0 '@wordpress/base-styles': 4.5.0 - '@wordpress/data': 6.15.0 + '@wordpress/data': 6.15.0_react@17.0.2 classnames: 2.3.1 gridicons: 3.4.0_react@17.0.2 - i18n-calypso: 6.0.1_00d6772dea80510e818fd171caaa025a + i18n-calypso: 6.0.1_adlholpkqbiq5amp2fy4vkqcli lodash: 4.17.21 prop-types: 15.8.1 react: 17.0.2 - react-modal: 3.15.1_react@17.0.2 + react-dom: 17.0.2_react@17.0.2 + react-modal: 3.15.1_sfoxds7t5ydpegc3knd667wn6m utility-types: 3.10.0 wpcom-proxy-request: 6.0.0 transitivePeerDependencies: - '@types/react' + - bufferutil - react-native - supports-color + - utf-8-validate dev: false - /@automattic/data-stores/2.0.1_@wordpress+data@6.15.0: + /@automattic/data-stores/2.0.1_cyzxlbsx4glw2vpbppibjtng3m: resolution: {integrity: sha512-tUuWSb5iIzZpHpqCSeXw89+lX6Gpkz/Puh+FWrMyWe4ohgK/WrrAnMqEsA5O/UpEzHNtkuqVmo8haCJKL27mwg==} peerDependencies: '@wordpress/data': ^4 @@ -2025,13 +2074,14 @@ packages: dependencies: '@automattic/format-currency': 1.0.0-alpha.0 '@wordpress/api-fetch': 3.23.1 - '@wordpress/data': 6.15.0 - '@wordpress/data-controls': 1.21.3 + '@wordpress/data': 6.15.0_react@17.0.2 + '@wordpress/data-controls': 1.21.3_react@17.0.2 '@wordpress/deprecated': 2.12.3 '@wordpress/url': 2.22.2 fast-json-stable-stringify: 2.1.0 - i18n-calypso: 5.0.0 + i18n-calypso: 5.0.0_react@17.0.2 qs: 6.10.3 + react: 17.0.2 redux: 4.2.0 tslib: 2.3.1 utility-types: 3.10.0 @@ -2041,7 +2091,7 @@ packages: - supports-color dev: true - /@automattic/data-stores/3.0.1_af4ff92d320e82e26b60430fe4abd92f: + /@automattic/data-stores/3.0.1_tvee6z3edpcht3mbvrcpowxsq4: resolution: {integrity: sha512-+ZcN8x+gNf4I7nGAjbZy6ubpMPiPleOQIVPbMwkHb32v/zoJ+fL4CGa9YcgiCCjJjaEEKcPZfl5Qbuo7ddGdpA==} peerDependencies: '@wordpress/data': ^6 @@ -2049,14 +2099,14 @@ packages: dependencies: '@automattic/domain-utils': 1.0.0-alpha.0 '@automattic/format-currency': 1.0.1 - '@automattic/happychat-connection': 1.0.0_@types+react@17.0.40 + '@automattic/happychat-connection': 1.0.0_6rln7q2jvtuewdvbdwpg4txtvm '@wordpress/api-fetch': 6.12.0 - '@wordpress/data': 6.15.0 + '@wordpress/data': 6.15.0_react@17.0.2 '@wordpress/data-controls': 2.10.0_react@17.0.2 - '@wordpress/deprecated': 3.10.0 + '@wordpress/deprecated': 3.16.0 '@wordpress/url': 3.16.0 fast-json-stable-stringify: 2.1.0 - i18n-calypso: 6.0.1_00d6772dea80510e818fd171caaa025a + i18n-calypso: 6.0.1_adlholpkqbiq5amp2fy4vkqcli qs: 6.10.3 react: 17.0.2 redux: 4.2.0 @@ -2066,9 +2116,11 @@ packages: validator: 13.7.0 transitivePeerDependencies: - '@types/react' + - bufferutil - react-dom - react-native - supports-color + - utf-8-validate dev: false /@automattic/domain-utils/1.0.0-alpha.0: @@ -2103,21 +2155,25 @@ packages: tslib: 2.3.1 dev: false - /@automattic/happychat-connection/1.0.0_@types+react@17.0.40: + /@automattic/happychat-connection/1.0.0_6rln7q2jvtuewdvbdwpg4txtvm: resolution: {integrity: sha512-l97adFiyKptK+ZmJNgg174njpxepbDTZBaSggZdMbJIVLQv04dt6cxNzcq4Or70NAUx7XfOYtbPS0GfskSMbMg==} + peerDependencies: + react: ^17.0.2 dependencies: '@automattic/calypso-config': 1.2.0 '@automattic/i18n-utils': 1.0.1 debug: 4.3.3 - i18n-calypso: 6.0.1_00d6772dea80510e818fd171caaa025a + i18n-calypso: 6.0.1_adlholpkqbiq5amp2fy4vkqcli react: 17.0.2 - react-query: 3.39.1_react@17.0.2 + react-query: 3.39.1_sfoxds7t5ydpegc3knd667wn6m socket.io-client: 2.3.0 transitivePeerDependencies: - '@types/react' + - bufferutil - react-dom - react-native - supports-color + - utf-8-validate dev: false /@automattic/i18n-utils/1.0.1: @@ -2125,25 +2181,15 @@ packages: dependencies: '@automattic/calypso-url': 1.0.0 '@automattic/languages': 1.0.0 - '@wordpress/compose': 5.8.0_react@17.0.2 - '@wordpress/i18n': 4.15.0 + '@wordpress/compose': 5.14.0_react@17.0.2 + '@wordpress/i18n': 4.16.0 react: 17.0.2 tslib: 2.3.1 transitivePeerDependencies: - supports-color dev: false - /@automattic/interpolate-components/1.2.1: - resolution: {integrity: sha512-YNQtJsrs9KQ3lkBdtLyDheVRijoBA3y/PuHdgJ0eB4AX9JyjkDX7jd79Inh79+01CGNLbMQGrEJby2zvbJr17A==} - peerDependencies: - '@types/react': '>=16.14.23' - react: '>=16.2.0' - peerDependenciesMeta: - '@types/react': - optional: true - dev: false - - /@automattic/interpolate-components/1.2.1_00d6772dea80510e818fd171caaa025a: + /@automattic/interpolate-components/1.2.1_adlholpkqbiq5amp2fy4vkqcli: resolution: {integrity: sha512-YNQtJsrs9KQ3lkBdtLyDheVRijoBA3y/PuHdgJ0eB4AX9JyjkDX7jd79Inh79+01CGNLbMQGrEJby2zvbJr17A==} peerDependencies: '@types/react': '>=16.14.23' @@ -2156,13 +2202,25 @@ packages: react: 17.0.2 dev: false + /@automattic/interpolate-components/1.2.1_react@17.0.2: + resolution: {integrity: sha512-YNQtJsrs9KQ3lkBdtLyDheVRijoBA3y/PuHdgJ0eB4AX9JyjkDX7jd79Inh79+01CGNLbMQGrEJby2zvbJr17A==} + peerDependencies: + '@types/react': '>=16.14.23' + react: '>=16.2.0' + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + react: 17.0.2 + dev: false + /@automattic/languages/1.0.0: resolution: {integrity: sha512-froTyDbTmLitHkvY9WLCpFdjUo6moOLkDKw63J2fLiB2gBApy2thkBV+LRx4Z0kIF5iXVkQF4yYOPYkT9Sr13Q==} dependencies: tslib: 2.3.1 dev: false - /@automattic/tour-kit/1.1.1_f43f0eda52cb243f817a58b8a550d26f: + /@automattic/tour-kit/1.1.1_ewcciyhsqon3yluv5ntlvxyvvm: resolution: {integrity: sha512-qC15YGZZW5VUhvl47y9C+aN0q0QIejP9g9pFZ9M3PRRgaZcXx00+ZrL1Ngg0+V9eS5io5OZcji3D8OU6i48t/w==} peerDependencies: '@wordpress/data': ^6.1.5 @@ -2171,13 +2229,13 @@ packages: reakit-utils: ^0.15.1 redux: ^4.1.2 dependencies: - '@automattic/components': 2.0.1_af4ff92d320e82e26b60430fe4abd92f + '@automattic/components': 2.0.1_tvee6z3edpcht3mbvrcpowxsq4 '@automattic/viewport': 1.1.0 '@automattic/viewport-react': 1.0.0_react@17.0.2 '@popperjs/core': 2.11.4 '@wordpress/base-styles': 4.5.0 - '@wordpress/components': 19.12.0_707fe24a3ddaa8115c00d0a9966a19ae - '@wordpress/data': 6.15.0 + '@wordpress/components': 19.12.0_lxraipvdfcmyzw3sdzk3k7kygu + '@wordpress/data': 6.15.0_react@17.0.2 '@wordpress/dom': 3.10.0 '@wordpress/element': 4.8.0 '@wordpress/i18n': 4.10.0 @@ -2187,12 +2245,18 @@ packages: classnames: 2.3.1 debug: 4.3.4 react: 17.0.2 - react-popper: 2.2.5_2e9dd80dbd4df675244d857293d4c5b0 + react-dom: 17.0.2_react@17.0.2 + react-popper: 2.2.5_f2o5qdn5jx3hkjcnqvzjhvgfwa + reakit-utils: 0.15.2_sfoxds7t5ydpegc3knd667wn6m + redux: 4.2.0 transitivePeerDependencies: - '@babel/core' - '@types/react' + - bufferutil - react-native + - react-with-direction - supports-color + - utf-8-validate dev: false /@automattic/typography/1.0.0: @@ -2231,6 +2295,8 @@ packages: optionalDependencies: '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents chokidar: 3.5.3 + transitivePeerDependencies: + - supports-color dev: true /@babel/cli/7.17.6_@babel+core@7.17.8: @@ -2259,12 +2325,6 @@ packages: '@babel/highlight': 7.16.10 dev: true - /@babel/code-frame/7.16.0: - resolution: {integrity: sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.16.0 - /@babel/code-frame/7.16.7: resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} engines: {node: '>=6.9.0'} @@ -2302,29 +2362,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/core/7.16.0: - resolution: {integrity: sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.16.0 - '@babel/generator': 7.16.0 - '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0 - '@babel/helper-module-transforms': 7.16.0 - '@babel/helpers': 7.16.3 - '@babel/parser': 7.16.4 - '@babel/template': 7.16.0 - '@babel/traverse': 7.16.3 - '@babel/types': 7.16.0 - convert-source-map: 1.8.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.0 - semver: 6.3.0 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/core/7.16.12: resolution: {integrity: sha512-dK5PtG1uiN2ikk++5OzSYsitZKny4wOCD0nrO4TqnW4BVBTQ2NGS3NgilvT/TEyxTST7LNyWV/T4tXDoD3fOgg==} engines: {node: '>=6.9.0'} @@ -2346,6 +2383,7 @@ packages: source-map: 0.5.7 transitivePeerDependencies: - supports-color + dev: false /@babel/core/7.17.8: resolution: {integrity: sha512-OdQDV/7cRBtJHLSOBqqbYNkOcydOgnX59TZx4puf41fzcVtN3e/4yqY8lMQsK+5X2lJtAdmA+6OHqsj1hBJ4IQ==} @@ -2369,34 +2407,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/eslint-parser/7.17.0_@babel+core@7.12.9: - resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==} - engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} - peerDependencies: - '@babel/core': '>=7.11.0' - eslint: ^7.5.0 || ^8.0.0 - dependencies: - '@babel/core': 7.12.9 - eslint-scope: 5.1.1 - eslint-visitor-keys: 2.1.0 - semver: 6.3.0 - dev: true - - /@babel/eslint-parser/7.17.0_@babel+core@7.12.9+eslint@7.32.0: - resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==} - engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} - peerDependencies: - '@babel/core': '>=7.11.0' - eslint: ^7.5.0 || ^8.0.0 - dependencies: - '@babel/core': 7.12.9 - eslint: 7.32.0 - eslint-scope: 5.1.1 - eslint-visitor-keys: 2.1.0 - semver: 6.3.0 - dev: true - - /@babel/eslint-parser/7.17.0_@babel+core@7.17.8+eslint@8.12.0: + /@babel/eslint-parser/7.17.0_6wgsqylbyqb6adwodmhnbhszeq: resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: @@ -2409,13 +2420,33 @@ packages: eslint-visitor-keys: 2.1.0 semver: 6.3.0 - /@babel/generator/7.16.0: - resolution: {integrity: sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==} - engines: {node: '>=6.9.0'} + /@babel/eslint-parser/7.17.0_u45bfrtwjt2x2yv3wnqpipckby: + resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==} + engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} + peerDependencies: + '@babel/core': '>=7.11.0' + eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/types': 7.16.0 - jsesc: 2.5.2 - source-map: 0.5.7 + '@babel/core': 7.12.9 + eslint: 8.12.0 + eslint-scope: 5.1.1 + eslint-visitor-keys: 2.1.0 + semver: 6.3.0 + dev: true + + /@babel/eslint-parser/7.17.0_xujkgafwcpm5gwokncqwvv5ure: + resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==} + engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} + peerDependencies: + '@babel/core': '>=7.11.0' + eslint: ^7.5.0 || ^8.0.0 + dependencies: + '@babel/core': 7.17.8 + eslint: 7.32.0 + eslint-scope: 5.1.1 + eslint-visitor-keys: 2.1.0 + semver: 6.3.0 + dev: true /@babel/generator/7.17.7: resolution: {integrity: sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==} @@ -2442,7 +2473,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.16.0 - '@babel/types': 7.16.0 + '@babel/types': 7.17.0 dev: true /@babel/helper-builder-binary-assignment-operator-visitor/7.16.7: @@ -2465,19 +2496,6 @@ packages: semver: 6.3.0 dev: true - /@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0: - resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.16.4 - '@babel/core': 7.16.0 - '@babel/helper-validator-option': 7.14.5 - browserslist: 4.18.1 - semver: 6.3.0 - dev: true - /@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.12: resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==} engines: {node: '>=6.9.0'} @@ -2516,19 +2534,6 @@ packages: semver: 6.3.0 dev: true - /@babel/helper-compilation-targets/7.17.7_@babel+core@7.16.0: - resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.17.7 - '@babel/core': 7.16.0 - '@babel/helper-validator-option': 7.16.7 - browserslist: 4.20.4 - semver: 6.3.0 - dev: true - /@babel/helper-compilation-targets/7.17.7_@babel+core@7.16.12: resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==} engines: {node: '>=6.9.0'} @@ -2540,6 +2545,7 @@ packages: '@babel/helper-validator-option': 7.16.7 browserslist: 4.20.4 semver: 6.3.0 + dev: false /@babel/helper-compilation-targets/7.17.7_@babel+core@7.17.8: resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==} @@ -2570,23 +2576,6 @@ packages: - supports-color dev: true - /@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-annotate-as-pure': 7.16.0 - '@babel/helper-function-name': 7.16.0 - '@babel/helper-member-expression-to-functions': 7.16.0 - '@babel/helper-optimise-call-expression': 7.16.0 - '@babel/helper-replace-supers': 7.16.0 - '@babel/helper-split-export-declaration': 7.16.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.17.8: resolution: {integrity: sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==} engines: {node: '>=6.9.0'} @@ -2622,24 +2611,6 @@ packages: - supports-color dev: true - /@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.16.0: - resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-environment-visitor': 7.16.7 - '@babel/helper-function-name': 7.16.7 - '@babel/helper-member-expression-to-functions': 7.17.7 - '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/helper-replace-supers': 7.16.7 - '@babel/helper-split-export-declaration': 7.16.7 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.16.12: resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==} engines: {node: '>=6.9.0'} @@ -2686,17 +2657,6 @@ packages: regexpu-core: 4.8.0 dev: true - /@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-annotate-as-pure': 7.16.0 - regexpu-core: 4.8.0 - dev: true - /@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.16.12: resolution: {integrity: sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==} engines: {node: '>=6.9.0'} @@ -2758,7 +2718,7 @@ packages: '@babel/core': 7.17.8 '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.8 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/traverse': 7.17.3 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -2776,27 +2736,9 @@ packages: '@babel/core': 7.12.9 '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.12.9 '@babel/helper-module-imports': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/traverse': 7.16.3 - debug: 4.3.2 - lodash.debounce: 4.0.8 - resolve: 1.20.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-define-polyfill-provider/0.3.0_@babel+core@7.16.0: - resolution: {integrity: sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==} - peerDependencies: - '@babel/core': ^7.4.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0 - '@babel/helper-module-imports': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/traverse': 7.16.3 - debug: 4.3.2 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/traverse': 7.17.3 + debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.20.0 semver: 6.3.0 @@ -2812,9 +2754,9 @@ packages: '@babel/core': 7.16.12 '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.12 '@babel/helper-module-imports': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/traverse': 7.16.3 - debug: 4.3.2 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/traverse': 7.17.3 + debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.20.0 semver: 6.3.0 @@ -2830,9 +2772,9 @@ packages: '@babel/core': 7.17.8 '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.17.8 '@babel/helper-module-imports': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/traverse': 7.16.3 - debug: 4.3.2 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/traverse': 7.17.3 + debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.20.0 semver: 6.3.0 @@ -2847,7 +2789,7 @@ packages: '@babel/core': 7.12.9 '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.12.9 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/traverse': 7.17.3 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -2865,7 +2807,7 @@ packages: '@babel/core': 7.16.12 '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.16.12 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/traverse': 7.17.3 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -2883,7 +2825,7 @@ packages: '@babel/core': 7.17.8 '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.8 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/traverse': 7.17.3 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -2902,7 +2844,7 @@ packages: resolution: {integrity: sha512-Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.16.0 + '@babel/types': 7.17.0 dev: true /@babel/helper-explode-assignable-expression/7.16.7: @@ -2917,7 +2859,8 @@ packages: dependencies: '@babel/helper-get-function-arity': 7.16.0 '@babel/template': 7.16.0 - '@babel/types': 7.16.0 + '@babel/types': 7.17.0 + dev: true /@babel/helper-function-name/7.16.7: resolution: {integrity: sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==} @@ -2931,7 +2874,8 @@ packages: resolution: {integrity: sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.16.0 + '@babel/types': 7.17.0 + dev: true /@babel/helper-get-function-arity/7.16.7: resolution: {integrity: sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==} @@ -2943,7 +2887,8 @@ packages: resolution: {integrity: sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.16.0 + '@babel/types': 7.17.0 + dev: true /@babel/helper-hoist-variables/7.16.7: resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} @@ -2955,7 +2900,7 @@ packages: resolution: {integrity: sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.16.0 + '@babel/types': 7.17.0 dev: true /@babel/helper-member-expression-to-functions/7.17.7: @@ -2986,8 +2931,8 @@ packages: '@babel/helper-split-export-declaration': 7.16.0 '@babel/helper-validator-identifier': 7.15.7 '@babel/template': 7.16.0 - '@babel/traverse': 7.16.3 - '@babel/types': 7.16.0 + '@babel/traverse': 7.17.3 + '@babel/types': 7.17.0 transitivePeerDependencies: - supports-color dev: true @@ -3011,7 +2956,7 @@ packages: resolution: {integrity: sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.16.0 + '@babel/types': 7.17.0 dev: true /@babel/helper-optimise-call-expression/7.16.7: @@ -3063,8 +3008,8 @@ packages: dependencies: '@babel/helper-member-expression-to-functions': 7.16.0 '@babel/helper-optimise-call-expression': 7.16.0 - '@babel/traverse': 7.16.3 - '@babel/types': 7.16.0 + '@babel/traverse': 7.17.3 + '@babel/types': 7.17.0 transitivePeerDependencies: - supports-color dev: true @@ -3085,7 +3030,7 @@ packages: resolution: {integrity: sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.16.0 + '@babel/types': 7.17.0 dev: true /@babel/helper-simple-access/7.17.7: @@ -3104,7 +3049,8 @@ packages: resolution: {integrity: sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.16.0 + '@babel/types': 7.17.0 + dev: true /@babel/helper-split-export-declaration/7.16.7: resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} @@ -3151,17 +3097,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helpers/7.16.3: - resolution: {integrity: sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.16.0 - '@babel/traverse': 7.16.3 - '@babel/types': 7.16.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helpers/7.17.7: resolution: {integrity: sha512-TKsj9NkjJfTBxM7Phfy7kv6yYc4ZcOo+AaWGqQOKTPDOmcGkIFb5xNA746eKisQkm4yavUYh4InYM9S+VnO01w==} engines: {node: '>=6.9.0'} @@ -3171,6 +3106,7 @@ packages: '@babel/types': 7.17.0 transitivePeerDependencies: - supports-color + dev: false /@babel/helpers/7.17.8: resolution: {integrity: sha512-QcL86FGxpfSJwGtAvv4iG93UL6bmqBdmoVY0CMCU2g+oD2ezQse3PT5Pa+jiD6LJndBQi0EDlpzOWNlLuhz5gw==} @@ -3182,14 +3118,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/highlight/7.16.0: - resolution: {integrity: sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.16.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - /@babel/highlight/7.16.10: resolution: {integrity: sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==} engines: {node: '>=6.9.0'} @@ -3198,19 +3126,13 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser/7.16.4: - resolution: {integrity: sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.17.0 - /@babel/parser/7.17.7: resolution: {integrity: sha512-bm3AQf45vR4gKggRfvJdYJ0gFLoCbsPxiFLSH6hTVYABptNHY6l9NrhnucVjQ/X+SPtLANT9lc0fFhikj+VBRA==} engines: {node: '>=6.0.0'} hasBin: true dependencies: '@babel/types': 7.17.0 + dev: false /@babel/parser/7.17.8: resolution: {integrity: sha512-BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ==} @@ -3219,13 +3141,13 @@ packages: dependencies: '@babel/types': 7.17.0 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.2_@babel+core@7.16.0: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.2_@babel+core@7.12.9: resolution: {integrity: sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.16.0 + '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -3258,16 +3180,16 @@ packages: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.0_@babel+core@7.16.0: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.0_@babel+core@7.12.9: resolution: {integrity: sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.16.0 + '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.12.9 dev: true /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.12.9: @@ -3319,20 +3241,6 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-async-generator-functions/7.16.4_@babel+core@7.16.0: - resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-remap-async-to-generator': 7.16.4 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.12.9: resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==} engines: {node: '>=6.9.0'} @@ -3395,20 +3303,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.12.9 - '@babel/helper-plugin-utils': 7.16.7 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.16.0: - resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color dev: true @@ -3421,7 +3316,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.16.12 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color dev: false @@ -3434,20 +3329,20 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.8 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-static-block/7.16.0_@babel+core@7.16.0: + /@babel/plugin-proposal-class-static-block/7.16.0_@babel+core@7.12.9: resolution: {integrity: sha512-mAy3sdcY9sKAkf3lQbDiv3olOfiLqI51c9DR9b19uMoR2Z6r5pmGl7dfNFqEvqOyqbf1ta4lknK4gc5PJn3mfA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.16.0 - '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.16.0 + '@babel/core': 7.12.9 + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.12.9 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.0 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.12.9 transitivePeerDependencies: - supports-color dev: true @@ -3518,17 +3413,6 @@ packages: '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-dynamic-import/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.0 - dev: true - /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==} engines: {node: '>=6.9.0'} @@ -3568,9 +3452,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.17.8 - dev: true /@babel/plugin-proposal-export-namespace-from/7.16.0_@babel+core@7.12.9: resolution: {integrity: sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==} @@ -3583,17 +3466,6 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-export-namespace-from/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.0 - dev: true - /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==} engines: {node: '>=6.9.0'} @@ -3637,17 +3509,6 @@ packages: '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-json-strings/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0 - dev: true - /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==} engines: {node: '>=6.9.0'} @@ -3691,17 +3552,6 @@ packages: '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0 - dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==} engines: {node: '>=6.9.0'} @@ -3745,17 +3595,6 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0 - dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==} engines: {node: '>=6.9.0'} @@ -3763,7 +3602,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.9 dev: true @@ -3774,7 +3613,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.12 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.12 dev: false @@ -3785,7 +3624,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.8 /@babel/plugin-proposal-numeric-separator/7.16.0_@babel+core@7.12.9: @@ -3799,17 +3638,6 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-numeric-separator/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0 - dev: true - /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==} engines: {node: '>=6.9.0'} @@ -3848,7 +3676,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.12.9 dev: true @@ -3867,20 +3695,6 @@ packages: '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-object-rest-spread/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-LU/+jp89efe5HuWJLmMmFG0+xbz+I2rSI7iLc1AlaeSMDMOGzWlc5yJrMN1d04osXN4sSfpo4O+azkBNBes0jg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.16.4 - '@babel/core': 7.16.0 - '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.16.0 - dev: true - /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.12.9: resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==} engines: {node: '>=6.9.0'} @@ -3933,17 +3747,6 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-optional-catch-binding/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0 - dev: true - /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==} engines: {node: '>=6.9.0'} @@ -3988,18 +3791,6 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-optional-chaining/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0 - dev: true - /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==} engines: {node: '>=6.9.0'} @@ -4007,7 +3798,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.9 dev: true @@ -4019,7 +3810,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.12 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.12 dev: false @@ -4031,7 +3822,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8 @@ -4048,19 +3839,6 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-private-methods/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.12.9: resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==} engines: {node: '>=6.9.0'} @@ -4069,7 +3847,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.12.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color dev: true @@ -4082,7 +3860,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.16.12 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color dev: false @@ -4095,21 +3873,21 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.8 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-property-in-object/7.16.0_@babel+core@7.16.0: + /@babel/plugin-proposal-private-property-in-object/7.16.0_@babel+core@7.12.9: resolution: {integrity: sha512-3jQUr/HBbMVZmi72LpjQwlZ55i1queL8KcDTQEkAHihttJnAPrcvG9ZNXIfsd2ugpizZo595egYV6xy+pv4Ofw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.16.0 + '@babel/core': 7.12.9 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.16.0 + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.12.9 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.0 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.12.9 transitivePeerDependencies: - supports-color dev: true @@ -4123,7 +3901,7 @@ packages: '@babel/core': 7.12.9 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.12.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.12.9 transitivePeerDependencies: - supports-color @@ -4138,7 +3916,7 @@ packages: '@babel/core': 7.16.12 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.16.12 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.12 transitivePeerDependencies: - supports-color @@ -4153,7 +3931,7 @@ packages: '@babel/core': 7.17.8 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.8 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.8 transitivePeerDependencies: - supports-color @@ -4169,17 +3947,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-proposal-unicode-property-regex/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==} - engines: {node: '>=4'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-proposal-unicode-property-regex/7.16.0_@babel+core@7.16.12: resolution: {integrity: sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==} engines: {node: '>=4'} @@ -4241,15 +4008,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.0: - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.12: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: @@ -4257,6 +4015,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-plugin-utils': 7.18.9 + dev: false /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.17.8: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} @@ -4273,24 +4032,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.18.9 - - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.16.0: - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.16.12: - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.12 - '@babel/helper-plugin-utils': 7.18.9 - dev: true + dev: false /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.17.8: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} @@ -4308,15 +4050,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.16.0: - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.16.12: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: @@ -4324,6 +4057,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-plugin-utils': 7.18.9 + dev: false /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.17.8: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} @@ -4343,16 +4077,6 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.16.0: - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.16.7 - dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.16.12: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} @@ -4379,7 +4103,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.18.9 dev: true /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.9: @@ -4391,15 +4115,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.0: - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.12: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: @@ -4424,8 +4139,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.16.7 - dev: true + '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.9: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} @@ -4436,15 +4150,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.16.0: - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.16.12: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: @@ -4469,7 +4174,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 dev: true /@babel/plugin-syntax-flow/7.16.7_@babel+core@7.17.8: @@ -4479,8 +4184,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.16.7 - dev: true + '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.9: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} @@ -4489,24 +4193,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.18.9 - - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.16.0: - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.16.12: - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.12 - '@babel/helper-plugin-utils': 7.18.9 - dev: true + dev: false /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.17.8: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} @@ -4524,15 +4211,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.16.0: - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.16.12: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: @@ -4540,6 +4218,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-plugin-utils': 7.18.9 + dev: false /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.8: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} @@ -4555,7 +4234,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 dev: true /@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.12.9: @@ -4568,16 +4247,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-8zv2+xiPHwly31RK4RmnEYY5zziuF3O7W2kIDW+07ewWDh6Oi0dRq8kwvulRkFgt6DB97RlKs5c1y068iPlCUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.12: resolution: {integrity: sha512-8zv2+xiPHwly31RK4RmnEYY5zziuF3O7W2kIDW+07ewWDh6Oi0dRq8kwvulRkFgt6DB97RlKs5c1y068iPlCUg==} engines: {node: '>=6.9.0'} @@ -4595,7 +4264,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 dev: true /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.17.8: @@ -4605,7 +4274,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.9: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} @@ -4615,15 +4284,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.0: - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.12: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -4631,6 +4291,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-plugin-utils': 7.18.9 + dev: false /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.8: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} @@ -4648,15 +4309,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.0: - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.12: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: @@ -4664,6 +4316,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-plugin-utils': 7.18.9 + dev: false /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.17.8: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} @@ -4681,15 +4334,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.0: - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.12: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: @@ -4697,6 +4341,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-plugin-utils': 7.18.9 + dev: false /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.17.8: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} @@ -4714,15 +4359,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.0: - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.12: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: @@ -4730,6 +4366,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-plugin-utils': 7.18.9 + dev: false /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.17.8: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} @@ -4747,15 +4384,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.0: - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.12: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: @@ -4763,6 +4391,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-plugin-utils': 7.18.9 + dev: false /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.17.8: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} @@ -4780,15 +4409,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.0: - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.12: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: @@ -4796,6 +4416,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-plugin-utils': 7.18.9 + dev: false /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.17.8: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} @@ -4815,16 +4436,6 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.16.0: - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.16.7 - dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.16.12: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} @@ -4853,16 +4464,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.16.0: - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.16.12: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} @@ -4871,6 +4472,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-plugin-utils': 7.18.9 + dev: false /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.8: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} @@ -4889,6 +4491,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-plugin-utils': 7.18.9 + dev: false /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.17.8: resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==} @@ -4909,16 +4512,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-arrow-functions/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-vIFb5250Rbh7roWARvCLvIJ/PtAU5Lhv7BtZ1u24COwpI9Ypjsh+bZcKk6rlIyalK+r0jOc1XQ8I4ovNxNrWrA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==} engines: {node: '>=6.9.0'} @@ -4962,20 +4555,6 @@ packages: - supports-color dev: true - /@babel/plugin-transform-async-to-generator/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-module-imports': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-remap-async-to-generator': 7.16.4 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.12.9: resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==} engines: {node: '>=6.9.0'} @@ -4984,7 +4563,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-remap-async-to-generator': 7.16.8 transitivePeerDependencies: - supports-color @@ -4998,7 +4577,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-remap-async-to-generator': 7.16.8 transitivePeerDependencies: - supports-color @@ -5012,7 +4591,7 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-remap-async-to-generator': 7.16.8 transitivePeerDependencies: - supports-color @@ -5027,16 +4606,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-block-scoped-functions/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} engines: {node: '>=6.9.0'} @@ -5076,16 +4645,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-block-scoping/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==} engines: {node: '>=6.9.0'} @@ -5133,24 +4692,6 @@ packages: - supports-color dev: true - /@babel/plugin-transform-classes/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-annotate-as-pure': 7.16.0 - '@babel/helper-function-name': 7.16.0 - '@babel/helper-optimise-call-expression': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-replace-supers': 7.16.0 - '@babel/helper-split-export-declaration': 7.16.0 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-classes/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==} engines: {node: '>=6.9.0'} @@ -5217,16 +4758,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-computed-properties/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-63l1dRXday6S8V3WFY5mXJwcRAnPYxvFfTlt67bwV1rTyVTM5zrp0DBBb13Kl7+ehkCVwIZPumPpFP/4u70+Tw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==} engines: {node: '>=6.9.0'} @@ -5266,16 +4797,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-destructuring/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.12.9: resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==} engines: {node: '>=6.9.0'} @@ -5316,17 +4837,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-dotall-regex/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-dotall-regex/7.16.0_@babel+core@7.16.12: resolution: {integrity: sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==} engines: {node: '>=6.9.0'} @@ -5390,16 +4900,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-duplicate-keys/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==} engines: {node: '>=6.9.0'} @@ -5440,17 +4940,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-exponentiation-operator/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==} engines: {node: '>=6.9.0'} @@ -5490,7 +4979,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.12.9 dev: true @@ -5501,9 +4990,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.8 - dev: true /@babel/plugin-transform-for-of/7.16.0_@babel+core@7.12.9: resolution: {integrity: sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==} @@ -5515,16 +5003,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-for-of/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==} engines: {node: '>=6.9.0'} @@ -5565,17 +5043,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-function-name/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-function-name': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==} engines: {node: '>=6.9.0'} @@ -5621,16 +5088,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-literals/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-literals/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==} engines: {node: '>=6.9.0'} @@ -5670,16 +5127,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-member-expression-literals/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==} engines: {node: '>=6.9.0'} @@ -5723,20 +5170,6 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-amd/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-module-transforms': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==} engines: {node: '>=6.9.0'} @@ -5793,21 +5226,6 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-module-transforms': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-simple-access': 7.16.0 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-modules-commonjs/7.17.7_@babel+core@7.12.9: resolution: {integrity: sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==} engines: {node: '>=6.9.0'} @@ -5816,7 +5234,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-module-transforms': 7.17.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-simple-access': 7.17.7 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: @@ -5831,7 +5249,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-module-transforms': 7.17.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-simple-access': 7.17.7 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: @@ -5846,7 +5264,7 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-module-transforms': 7.17.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-simple-access': 7.17.7 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: @@ -5868,22 +5286,6 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-yuGBaHS3lF1m/5R+6fjIke64ii5luRUg97N2wr+z1sF0V+sNSXPxXDdEEL/iYLszsN5VKxVB1IPfEqhzVpiqvg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-hoist-variables': 7.16.0 - '@babel/helper-module-transforms': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-validator-identifier': 7.15.7 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.12.9: resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==} engines: {node: '>=6.9.0'} @@ -5944,19 +5346,6 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-module-transforms': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==} engines: {node: '>=6.9.0'} @@ -6005,16 +5394,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.12.9 dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-LogN88uO+7EhxWc8WZuQ8vxdSyVGxhkh8WTC3tzlT8LccMuQdA81e9SGV6zY7kY2LjDhhDOFdQVxdGwPyBCnvg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 - dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.12.9: resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==} engines: {node: '>=6.9.0'} @@ -6054,16 +5433,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-new-target/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==} engines: {node: '>=6.9.0'} @@ -6106,19 +5475,6 @@ packages: - supports-color dev: true - /@babel/plugin-transform-object-super/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-replace-supers': 7.16.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==} engines: {node: '>=6.9.0'} @@ -6167,16 +5523,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-parameters/7.16.3_@babel+core@7.16.0: - resolution: {integrity: sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==} engines: {node: '>=6.9.0'} @@ -6216,16 +5562,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-property-literals/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==} engines: {node: '>=6.9.0'} @@ -6272,7 +5608,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 dev: true /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.17.8: @@ -6282,8 +5618,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.16.7 - dev: true + '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==} @@ -6305,6 +5640,26 @@ packages: '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.8 dev: true + /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.17.8: + resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.17.8 + '@babel/helper-plugin-utils': 7.18.9 + dev: false + + /@babel/plugin-transform-react-jsx-source/7.18.6_@babel+core@7.17.8: + resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.17.8 + '@babel/helper-plugin-utils': 7.18.9 + dev: false + /@babel/plugin-transform-react-jsx/7.16.0_@babel+core@7.12.9: resolution: {integrity: sha512-rqDgIbukZ44pqq7NIRPGPGNklshPkvlmvqjdx3OZcGPk4zGIenYkxDTvl3LsSL8gqcc3ZzGmXPE6hR/u/voNOw==} engines: {node: '>=6.9.0'} @@ -6319,20 +5674,6 @@ packages: '@babel/types': 7.16.0 dev: true - /@babel/plugin-transform-react-jsx/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-rqDgIbukZ44pqq7NIRPGPGNklshPkvlmvqjdx3OZcGPk4zGIenYkxDTvl3LsSL8gqcc3ZzGmXPE6hR/u/voNOw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-annotate-as-pure': 7.16.0 - '@babel/helper-module-imports': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-jsx': 7.16.0_@babel+core@7.16.0 - '@babel/types': 7.16.0 - dev: true - /@babel/plugin-transform-react-jsx/7.16.0_@babel+core@7.16.12: resolution: {integrity: sha512-rqDgIbukZ44pqq7NIRPGPGNklshPkvlmvqjdx3OZcGPk4zGIenYkxDTvl3LsSL8gqcc3ZzGmXPE6hR/u/voNOw==} engines: {node: '>=6.9.0'} @@ -6356,7 +5697,7 @@ packages: '@babel/core': 7.12.9 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.12.9 '@babel/types': 7.17.0 dev: true @@ -6370,7 +5711,7 @@ packages: '@babel/core': 7.17.8 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.8 '@babel/types': 7.17.0 @@ -6382,7 +5723,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 dev: true /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.17.8: @@ -6393,7 +5734,7 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 dev: true /@babel/plugin-transform-regenerator/7.16.0_@babel+core@7.12.9: @@ -6406,16 +5747,6 @@ packages: regenerator-transform: 0.14.5 dev: true - /@babel/plugin-transform-regenerator/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - regenerator-transform: 0.14.5 - dev: true - /@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==} engines: {node: '>=6.9.0'} @@ -6455,16 +5786,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-reserved-words/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==} engines: {node: '>=6.9.0'} @@ -6511,23 +5832,6 @@ packages: - supports-color dev: true - /@babel/plugin-transform-runtime/7.16.4_@babel+core@7.16.0: - resolution: {integrity: sha512-pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-module-imports': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.16.0 - babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.16.0 - babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.16.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-runtime/7.16.4_@babel+core@7.16.12: resolution: {integrity: sha512-pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A==} engines: {node: '>=6.9.0'} @@ -6571,16 +5875,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-shorthand-properties/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-iVb1mTcD8fuhSv3k99+5tlXu5N0v8/DPm2mO3WACLG6al1CGZH7v09HJyUb1TtYl/Z+KrM6pHSIJdZxP5A+xow==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==} engines: {node: '>=6.9.0'} @@ -6621,17 +5915,6 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 dev: true - /@babel/plugin-transform-spread/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - dev: true - /@babel/plugin-transform-spread/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==} engines: {node: '>=6.9.0'} @@ -6674,16 +5957,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-sticky-regex/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==} engines: {node: '>=6.9.0'} @@ -6723,16 +5996,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-template-literals/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==} engines: {node: '>=6.9.0'} @@ -6772,16 +6035,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-typeof-symbol/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==} engines: {node: '>=6.9.0'} @@ -6819,7 +6072,7 @@ packages: dependencies: '@babel/core': 7.16.12 '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.16.12 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.16.12 transitivePeerDependencies: - supports-color @@ -6833,7 +6086,7 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.8 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.17.8 transitivePeerDependencies: - supports-color @@ -6848,16 +6101,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-unicode-escapes/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-VFi4dhgJM7Bpk8lRc5CMaRGlKZ29W9C3geZjt9beuzSUrlJxsNwX7ReLwaL6WEvsOf2EQkyIJEPtF8EXjB/g2A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==} engines: {node: '>=6.9.0'} @@ -6898,17 +6141,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-unicode-regex/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==} engines: {node: '>=6.9.0'} @@ -7279,85 +6511,85 @@ packages: transitivePeerDependencies: - supports-color - /@babel/preset-env/7.16.4_@babel+core@7.16.0: + /@babel/preset-env/7.16.4_@babel+core@7.12.9: resolution: {integrity: sha512-v0QtNd81v/xKj4gNKeuAerQ/azeNn/G1B1qMLeXOcV8+4TWlD2j3NV1u8q29SDFBXx/NBq5kyEAO+0mpRgacjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.17.7 - '@babel/core': 7.16.0 - '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.16.0 + '@babel/core': 7.12.9 + '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.12.9 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.2_@babel+core@7.16.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-async-generator-functions': 7.16.4_@babel+core@7.16.0 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.16.0 - '@babel/plugin-proposal-class-static-block': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-dynamic-import': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-export-namespace-from': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-json-strings': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-logical-assignment-operators': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-numeric-separator': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-object-rest-spread': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-optional-catch-binding': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-private-methods': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-private-property-in-object': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.16.0 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.0 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.0 - '@babel/plugin-transform-arrow-functions': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-async-to-generator': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-block-scoped-functions': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-block-scoping': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-classes': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-computed-properties': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-destructuring': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-duplicate-keys': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-exponentiation-operator': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-for-of': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-function-name': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-literals': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-member-expression-literals': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-modules-amd': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-modules-commonjs': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-modules-systemjs': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-modules-umd': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-named-capturing-groups-regex': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-new-target': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-object-super': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.16.0 - '@babel/plugin-transform-property-literals': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-regenerator': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-reserved-words': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-shorthand-properties': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-spread': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-sticky-regex': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-template-literals': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-typeof-symbol': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-unicode-escapes': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-unicode-regex': 7.16.0_@babel+core@7.16.0 - '@babel/preset-modules': 0.1.5_@babel+core@7.16.0 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.2_@babel+core@7.12.9 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-proposal-async-generator-functions': 7.16.4_@babel+core@7.12.9 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.12.9 + '@babel/plugin-proposal-class-static-block': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-proposal-dynamic-import': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-proposal-export-namespace-from': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-proposal-json-strings': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-proposal-logical-assignment-operators': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-proposal-numeric-separator': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-proposal-object-rest-spread': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-proposal-optional-catch-binding': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-proposal-private-methods': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-proposal-private-property-in-object': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.9 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.12.9 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.12.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.9 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.9 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.12.9 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.12.9 + '@babel/plugin-transform-arrow-functions': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-async-to-generator': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-block-scoped-functions': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-block-scoping': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-classes': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-computed-properties': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-destructuring': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-duplicate-keys': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-exponentiation-operator': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-for-of': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-function-name': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-literals': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-member-expression-literals': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-modules-amd': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-modules-commonjs': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-modules-systemjs': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-modules-umd': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-named-capturing-groups-regex': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-new-target': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-object-super': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.12.9 + '@babel/plugin-transform-property-literals': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-regenerator': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-reserved-words': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-shorthand-properties': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-spread': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-sticky-regex': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-template-literals': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-typeof-symbol': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-unicode-escapes': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-unicode-regex': 7.16.0_@babel+core@7.12.9 + '@babel/preset-modules': 0.1.5_@babel+core@7.12.9 '@babel/types': 7.17.0 - babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.16.0 - babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.16.0 - babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.16.0 + babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.12.9 + babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.12.9 + babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.12.9 core-js-compat: 3.19.1 semver: 6.3.0 transitivePeerDependencies: @@ -7371,7 +6603,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-validator-option': 7.16.7 '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.12.9 dev: true @@ -7383,10 +6615,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-validator-option': 7.16.7 '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.8 - dev: true /@babel/preset-modules/0.1.5_@babel+core@7.12.9: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} @@ -7401,19 +6632,6 @@ packages: esutils: 2.0.3 dev: true - /@babel/preset-modules/0.1.5_@babel+core@7.16.0: - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.16.0 - '@babel/types': 7.16.0 - esutils: 2.0.3 - dev: true - /@babel/preset-modules/0.1.5_@babel+core@7.16.12: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: @@ -7476,7 +6694,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.12 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-validator-option': 7.16.7 '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.16.12 transitivePeerDependencies: @@ -7490,7 +6708,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-validator-option': 7.16.7 '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.8 transitivePeerDependencies: @@ -7505,25 +6723,12 @@ packages: find-cache-dir: 2.1.0 lodash: 4.17.21 make-dir: 2.1.0 - pirates: 4.0.1 + pirates: 4.0.5 source-map-support: 0.5.20 dev: true - /@babel/register/7.12.1_@babel+core@7.17.8: - resolution: {integrity: sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - find-cache-dir: 2.1.0 - lodash: 4.17.21 - make-dir: 2.1.0 - pirates: 4.0.1 - source-map-support: 0.5.20 - dev: true - - /@babel/register/7.17.7_@babel+core@7.17.8: - resolution: {integrity: sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA==} + /@babel/register/7.18.9_@babel+core@7.17.8: + resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -7534,7 +6739,6 @@ packages: make-dir: 2.1.0 pirates: 4.0.5 source-map-support: 0.5.20 - dev: true /@babel/runtime-corejs3/7.16.3: resolution: {integrity: sha512-IAdDC7T0+wEB4y2gbIL0uOXEYpiZEeuFUTVbdGq+UwCcF35T/tS8KrmMomEwEc5wBbyfH3PJVpTSUqrhPDXFcQ==} @@ -7566,9 +6770,10 @@ packages: resolution: {integrity: sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.16.0 - '@babel/parser': 7.16.4 - '@babel/types': 7.16.0 + '@babel/code-frame': 7.16.7 + '@babel/parser': 7.17.8 + '@babel/types': 7.17.0 + dev: true /@babel/template/7.16.7: resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==} @@ -7578,22 +6783,6 @@ packages: '@babel/parser': 7.17.8 '@babel/types': 7.17.0 - /@babel/traverse/7.16.3: - resolution: {integrity: sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.16.0 - '@babel/generator': 7.16.0 - '@babel/helper-function-name': 7.16.0 - '@babel/helper-hoist-variables': 7.16.0 - '@babel/helper-split-export-declaration': 7.16.0 - '@babel/parser': 7.16.4 - '@babel/types': 7.16.0 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - /@babel/traverse/7.17.3: resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==} engines: {node: '>=6.9.0'} @@ -7654,24 +6843,11 @@ packages: commander: 9.4.0 dev: false - /@cspotcode/source-map-consumer/0.8.0: - resolution: {integrity: sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg==} - engines: {node: '>= 12'} - dev: true - - /@cspotcode/source-map-support/0.7.0: - resolution: {integrity: sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA==} - engines: {node: '>=12'} - dependencies: - '@cspotcode/source-map-consumer': 0.8.0 - dev: true - /@cspotcode/source-map-support/0.8.1: resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} dependencies: '@jridgewell/trace-mapping': 0.3.9 - dev: false /@discoveryjs/json-ext/0.5.7: resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} @@ -7716,7 +6892,7 @@ packages: stylis: 4.0.13 dev: false - /@emotion/core/10.3.1: + /@emotion/core/10.3.1_react@16.14.0: resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==} peerDependencies: react: '>=16.3.0' @@ -7727,6 +6903,8 @@ packages: '@emotion/serialize': 0.11.16 '@emotion/sheet': 0.9.4 '@emotion/utils': 0.11.3 + react: 16.14.0 + dev: false /@emotion/core/10.3.1_react@17.0.2: resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==} @@ -7786,28 +6964,53 @@ packages: resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==} dev: false - /@emotion/native/10.0.27_@emotion+core@10.3.1: + /@emotion/native/10.0.27_peeplpcor766cv2dor4ihhuuki: resolution: {integrity: sha512-3qxR2XFizGfABKKbX9kAYc0PHhKuCEuyxshoq3TaMEbi9asWHdQVChg32ULpblm4XAf9oxaitAU7J9SfdwFxtw==} peerDependencies: react-native: '>=0.14.0 <1' dependencies: - '@emotion/primitives-core': 10.0.27_@emotion+core@10.3.1 + '@emotion/primitives-core': 10.0.27_qzeatvug73zaio2r3dlvejynye + react-native: 0.70.0_wahjskecmqaqgpksn6xwa65wrm transitivePeerDependencies: - '@emotion/core' - react dev: false - /@emotion/primitives-core/10.0.27_@emotion+core@10.3.1: + /@emotion/primitives-core/10.0.27_qzeatvug73zaio2r3dlvejynye: resolution: {integrity: sha512-fRBEDNPSFFOrBJ0OcheuElayrNTNdLF9DzMxtL0sFgsCFvvadlzwJHhJMSwEJuxwARm9GhVLr1p8G8JGkK98lQ==} peerDependencies: '@emotion/core': ^10.0.27 react: '>=16.3.0' dependencies: - '@emotion/core': 10.3.1 + '@emotion/core': 10.3.1_react@16.14.0 css-to-react-native: 2.3.2 + react: 16.14.0 dev: false - /@emotion/react/11.8.2_707fe24a3ddaa8115c00d0a9966a19ae: + /@emotion/react/11.8.2_mcptgafjogap2nfvnfqvfwh6uu: + resolution: {integrity: sha512-+1bcHBaNJv5nkIIgnGKVsie3otS0wF9f1T1hteF3WeVvMNQEtfZ4YyFpnphGoot3ilU/wWMgP2SgIDuHLE/wAA==} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@babel/core': + optional: true + '@types/react': + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/runtime': 7.17.7 + '@emotion/babel-plugin': 11.7.2_@babel+core@7.17.8 + '@emotion/cache': 11.7.1 + '@emotion/serialize': 1.0.2 + '@emotion/utils': 1.1.0 + '@emotion/weak-memoize': 0.2.5 + hoist-non-react-statics: 3.3.2 + react: 17.0.2 + dev: false + + /@emotion/react/11.8.2_ob76esr53kubcxaa2cuzm2qzvy: resolution: {integrity: sha512-+1bcHBaNJv5nkIIgnGKVsie3otS0wF9f1T1hteF3WeVvMNQEtfZ4YyFpnphGoot3ilU/wWMgP2SgIDuHLE/wAA==} peerDependencies: '@babel/core': ^7.0.0 @@ -7831,28 +7034,6 @@ packages: react: 17.0.2 dev: false - /@emotion/react/11.8.2_@babel+core@7.17.8: - resolution: {integrity: sha512-+1bcHBaNJv5nkIIgnGKVsie3otS0wF9f1T1hteF3WeVvMNQEtfZ4YyFpnphGoot3ilU/wWMgP2SgIDuHLE/wAA==} - peerDependencies: - '@babel/core': ^7.0.0 - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/react': - optional: true - dependencies: - '@babel/core': 7.17.8 - '@babel/runtime': 7.17.7 - '@emotion/babel-plugin': 11.7.2_@babel+core@7.17.8 - '@emotion/cache': 11.7.1 - '@emotion/serialize': 1.0.2 - '@emotion/utils': 1.1.0 - '@emotion/weak-memoize': 0.2.5 - hoist-non-react-statics: 3.3.2 - dev: false - /@emotion/serialize/0.11.16: resolution: {integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==} dependencies: @@ -7879,7 +7060,7 @@ packages: resolution: {integrity: sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==} dev: false - /@emotion/styled-base/10.3.0_316248eb6686a2fd4fbadcfd00de37f3: + /@emotion/styled-base/10.3.0_gfrer23gq2rp2t523t6qbxrx6m: resolution: {integrity: sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==} peerDependencies: '@emotion/core': ^10.0.28 @@ -7893,63 +7074,45 @@ packages: react: 17.0.2 dev: true - /@emotion/styled-base/10.3.0_@emotion+core@10.3.1: + /@emotion/styled-base/10.3.0_qzeatvug73zaio2r3dlvejynye: resolution: {integrity: sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==} peerDependencies: '@emotion/core': ^10.0.28 react: '>=16.3.0' dependencies: '@babel/runtime': 7.17.7 - '@emotion/core': 10.3.1 + '@emotion/core': 10.3.1_react@16.14.0 '@emotion/is-prop-valid': 0.8.8 '@emotion/serialize': 0.11.16 '@emotion/utils': 0.11.3 - - /@emotion/styled/10.3.0_316248eb6686a2fd4fbadcfd00de37f3: - resolution: {integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==} - peerDependencies: - '@emotion/core': ^10.0.27 - react: '>=16.3.0' - dependencies: - '@emotion/core': 10.3.1_react@17.0.2 - '@emotion/styled-base': 10.3.0_316248eb6686a2fd4fbadcfd00de37f3 - babel-plugin-emotion: 10.2.2 - react: 17.0.2 - dev: true - - /@emotion/styled/10.3.0_@emotion+core@10.3.1: - resolution: {integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==} - peerDependencies: - '@emotion/core': ^10.0.27 - react: '>=16.3.0' - dependencies: - '@emotion/core': 10.3.1 - '@emotion/styled-base': 10.3.0_@emotion+core@10.3.1 - babel-plugin-emotion: 10.2.2 - - /@emotion/styled/11.8.1_14926ce31c24bafac75661d38a5c90f5: - resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==} - peerDependencies: - '@babel/core': ^7.0.0 - '@emotion/react': ^11.0.0-rc.0 - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/react': - optional: true - dependencies: - '@babel/core': 7.17.8 - '@babel/runtime': 7.17.7 - '@emotion/babel-plugin': 11.7.2_@babel+core@7.17.8 - '@emotion/is-prop-valid': 1.1.2 - '@emotion/react': 11.8.2_@babel+core@7.17.8 - '@emotion/serialize': 1.0.2 - '@emotion/utils': 1.1.0 + react: 16.14.0 dev: false - /@emotion/styled/11.8.1_fd44c83c6284aa4d6bde750ada762da8: + /@emotion/styled/10.3.0_gfrer23gq2rp2t523t6qbxrx6m: + resolution: {integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==} + peerDependencies: + '@emotion/core': ^10.0.27 + react: '>=16.3.0' + dependencies: + '@emotion/core': 10.3.1_react@17.0.2 + '@emotion/styled-base': 10.3.0_gfrer23gq2rp2t523t6qbxrx6m + babel-plugin-emotion: 10.2.2 + react: 17.0.2 + dev: true + + /@emotion/styled/10.3.0_qzeatvug73zaio2r3dlvejynye: + resolution: {integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==} + peerDependencies: + '@emotion/core': ^10.0.27 + react: '>=16.3.0' + dependencies: + '@emotion/core': 10.3.1_react@16.14.0 + '@emotion/styled-base': 10.3.0_qzeatvug73zaio2r3dlvejynye + babel-plugin-emotion: 10.2.2 + react: 16.14.0 + dev: false + + /@emotion/styled/11.8.1_7vcmqpdcqsve2266oufnu5rnva: resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==} peerDependencies: '@babel/core': ^7.0.0 @@ -7966,13 +7129,36 @@ packages: '@babel/runtime': 7.17.7 '@emotion/babel-plugin': 11.7.2_@babel+core@7.17.8 '@emotion/is-prop-valid': 1.1.2 - '@emotion/react': 11.8.2_707fe24a3ddaa8115c00d0a9966a19ae + '@emotion/react': 11.8.2_ob76esr53kubcxaa2cuzm2qzvy '@emotion/serialize': 1.0.2 '@emotion/utils': 1.1.0 '@types/react': 17.0.40 react: 17.0.2 dev: false + /@emotion/styled/11.8.1_lddnk6nv2rrayprsm6yu5n7lz4: + resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==} + peerDependencies: + '@babel/core': ^7.0.0 + '@emotion/react': ^11.0.0-rc.0 + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@babel/core': + optional: true + '@types/react': + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/runtime': 7.17.7 + '@emotion/babel-plugin': 11.7.2_@babel+core@7.17.8 + '@emotion/is-prop-valid': 1.1.2 + '@emotion/react': 11.8.2_mcptgafjogap2nfvnfqvfwh6uu + '@emotion/serialize': 1.0.2 + '@emotion/utils': 1.1.0 + react: 17.0.2 + dev: false + /@emotion/stylis/0.8.5: resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==} @@ -8027,30 +7213,13 @@ packages: - supports-color dev: true - /@eslint/eslintrc/1.0.3: - resolution: {integrity: sha512-DHI1wDPoKCBPoLZA3qDR91+3te/wDSc1YhKg3jR8NxKKRJq2hwHwcWv31cSwSYvIBrmbENoYMWcenW8uproQqg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - ajv: 6.12.6 - debug: 4.3.4 - espree: 9.3.1 - globals: 13.12.0 - ignore: 4.0.6 - import-fresh: 3.3.0 - js-yaml: 3.14.1 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - dev: true - /@eslint/eslintrc/1.0.4: resolution: {integrity: sha512-h8Vx6MdxwWI2WM8/zREHMoqdgLNXEL4QX3MWSVMdyNJGvXVOs+6lp+m2hc3FnuMHDc4poxFNI20vCk0OmI4G0Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 - espree: 9.0.0 + espree: 9.3.1 globals: 13.12.0 ignore: 4.0.6 import-fresh: 3.3.0 @@ -8076,7 +7245,10 @@ packages: strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color - dev: true + + /@faker-js/faker/5.5.3: + resolution: {integrity: sha512-R11tGE6yIFwqpaIqcfkcg7AICXzFg14+5h5v0TfF/9+RMDL6jhzCy/pxHVOfbALGdtVYdt6JdR21tuxEgl34dw==} + dev: false /@financial-times/origami-service-makefile/7.0.3: resolution: {integrity: sha512-aKe65sZ3XgZ/0Sm0MDLbGrcO3G4DRv/bVW4Gpmw68cRZV9IBE7h/pwfR3Rs7njNSZMFkjS4rPG/YySv9brQByA==} @@ -8092,7 +7264,7 @@ packages: '@floating-ui/core': 0.6.2 dev: false - /@floating-ui/react-dom/0.6.3_00d6772dea80510e818fd171caaa025a: + /@floating-ui/react-dom/0.6.3_6rln7q2jvtuewdvbdwpg4txtvm: resolution: {integrity: sha512-hC+pS5D6AgS2wWjbmSQ6UR6Kpy+drvWGJIri6e1EDGADTPsCaa4KzCgmCczHrQeInx9tqs81EyDmbKJYY2swKg==} peerDependencies: react: '>=16.8.0' @@ -8100,7 +7272,8 @@ packages: dependencies: '@floating-ui/dom': 0.4.5 react: 17.0.2 - use-isomorphic-layout-effect: 1.1.1_00d6772dea80510e818fd171caaa025a + react-dom: 17.0.2_react@17.0.2 + use-isomorphic-layout-effect: 1.1.1_adlholpkqbiq5amp2fy4vkqcli transitivePeerDependencies: - '@types/react' dev: false @@ -8180,11 +7353,9 @@ packages: minimatch: 3.1.2 transitivePeerDependencies: - supports-color - dev: true /@humanwhocodes/object-schema/1.2.1: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - dev: true /@isaacs/string-locale-compare/1.1.0: resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} @@ -8244,11 +7415,11 @@ packages: resolution: {integrity: sha512-RkFNWmv0iui+qsOr/29q9dyfKTTT5DCuP31kUwg7rmOKPT/ozLeGLKJKVIiOfbiKyleUZKIrHwhmiZWVe8IMdw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@jest/types': 27.2.5 - '@types/node': 16.10.3 + '@jest/types': 27.5.1 + '@types/node': 17.0.21 chalk: 4.1.2 - jest-message-util: 27.3.1 - jest-util: 27.3.1 + jest-message-util: 27.5.1 + jest-util: 27.5.1 slash: 3.0.0 dev: true @@ -8296,7 +7467,9 @@ packages: slash: 2.0.0 strip-ansi: 5.2.0 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate dev: false /@jest/core/25.5.4: @@ -8311,7 +7484,7 @@ packages: ansi-escapes: 4.3.2 chalk: 3.0.0 exit: 0.1.2 - graceful-fs: 4.2.8 + graceful-fs: 4.2.9 jest-changed-files: 25.5.0 jest-config: 25.5.4 jest-haste-map: 25.5.1 @@ -8392,7 +7565,7 @@ packages: '@jest/test-result': 27.3.1 '@jest/transform': 27.3.1 '@jest/types': 27.2.5 - '@types/node': 16.10.3 + '@types/node': 17.0.21 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 @@ -8467,6 +7640,13 @@ packages: - ts-node - utf-8-validate + /@jest/create-cache-key-function/27.5.1: + resolution: {integrity: sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + '@jest/types': 27.5.1 + dev: false + /@jest/environment/24.9.0: resolution: {integrity: sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==} engines: {node: '>= 6'} @@ -8498,16 +7678,6 @@ packages: jest-mock: 26.6.2 dev: true - /@jest/environment/27.3.1: - resolution: {integrity: sha512-BCKCj4mOVLme6Tanoyc9k0ultp3pnmuyHw73UHRPeeZxirsU/7E3HC4le/VDb/SMzE1JcPnto+XBKFOcoiJzVw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/fake-timers': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 16.10.3 - jest-mock: 27.5.1 - dev: true - /@jest/environment/27.5.1: resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -8524,6 +7694,8 @@ packages: '@jest/types': 24.9.0 jest-message-util: 24.9.0 jest-mock: 24.9.0 + transitivePeerDependencies: + - supports-color dev: false /@jest/fake-timers/25.5.0: @@ -8549,18 +7721,6 @@ packages: jest-util: 26.6.2 dev: true - /@jest/fake-timers/27.3.1: - resolution: {integrity: sha512-M3ZFgwwlqJtWZ+QkBG5NmC23A9w+A6ZxNsO5nJxJsKYt4yguBd3i8TpjQz5NfCX91nEve1KqD9RA2Q+Q1uWqoA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': 27.2.5 - '@sinonjs/fake-timers': 8.1.0 - '@types/node': 16.10.3 - jest-message-util: 27.3.1 - jest-mock: 27.3.0 - jest-util: 27.3.1 - dev: true - /@jest/fake-timers/27.5.1: resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -8596,7 +7756,7 @@ packages: dependencies: '@jest/environment': 27.5.1 '@jest/types': 27.5.1 - expect: 27.3.1 + expect: 27.5.1 dev: true /@jest/globals/27.5.1: @@ -8633,7 +7793,9 @@ packages: source-map: 0.6.1 string-length: 2.0.0 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate dev: false /@jest/reporters/25.5.1: @@ -8654,7 +7816,7 @@ packages: istanbul-lib-instrument: 4.0.3 istanbul-lib-report: 3.0.0 istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.0.5 + istanbul-reports: 3.1.4 jest-haste-map: 25.5.1 jest-resolve: 25.5.1 jest-util: 25.5.0 @@ -8714,11 +7876,11 @@ packages: optional: true dependencies: '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 27.3.1 - '@jest/test-result': 27.3.1 - '@jest/transform': 27.3.1 - '@jest/types': 27.2.5 - '@types/node': 16.10.3 + '@jest/console': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 17.0.21 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -8728,11 +7890,11 @@ packages: istanbul-lib-instrument: 4.0.3 istanbul-lib-report: 3.0.0 istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.0.5 - jest-haste-map: 27.3.1 - jest-resolve: 27.3.1 - jest-util: 27.3.1 - jest-worker: 27.3.1 + istanbul-reports: 3.1.4 + jest-haste-map: 27.5.1 + jest-resolve: 27.5.1 + jest-util: 27.5.1 + jest-worker: 27.5.1 slash: 3.0.0 source-map: 0.6.1 string-length: 4.0.2 @@ -8806,15 +7968,6 @@ packages: source-map: 0.6.1 dev: true - /@jest/source-map/27.0.6: - resolution: {integrity: sha512-Fek4mi5KQrqmlY07T23JRi0e7Z9bXTOOD86V/uS0EIW4PClvPDqZOyFlLpNJheS6QI0FNX1CgmPjtJ4EA/2M+g==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - callsites: 3.1.0 - graceful-fs: 4.2.9 - source-map: 0.6.1 - dev: true - /@jest/source-map/27.5.1: resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -8856,7 +8009,7 @@ packages: resolution: {integrity: sha512-mLn6Thm+w2yl0opM8J/QnPTqrfS4FoXsXF2WIWJb2O/GBSyResL71BRuMYbYRsGt7ELwS5JGcEcGb52BNrumgg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@jest/console': 27.3.1 + '@jest/console': 27.5.1 '@jest/types': 27.5.1 '@types/istanbul-lib-coverage': 2.0.3 collect-v8-coverage: 1.0.1 @@ -8880,7 +8033,9 @@ packages: jest-runner: 24.9.0 jest-runtime: 24.9.0 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate dev: false /@jest/test-sequencer/25.5.4: @@ -8888,7 +8043,7 @@ packages: engines: {node: '>= 8.3'} dependencies: '@jest/test-result': 25.5.0 - graceful-fs: 4.2.8 + graceful-fs: 4.2.9 jest-haste-map: 25.5.1 jest-runner: 25.5.4 jest-runtime: 25.5.4 @@ -8916,18 +8071,6 @@ packages: - utf-8-validate dev: true - /@jest/test-sequencer/27.3.1: - resolution: {integrity: sha512-siySLo07IMEdSjA4fqEnxfIX8lB/lWYsBPwNFtkOvsFQvmBrL3yj3k3uFNZv/JDyApTakRpxbKLJ3CT8UGVCrA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/test-result': 27.3.1 - graceful-fs: 4.2.9 - jest-haste-map: 27.3.1 - jest-runtime: 27.3.1 - transitivePeerDependencies: - - supports-color - dev: true - /@jest/test-sequencer/27.5.1: resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -9002,7 +8145,7 @@ packages: jest-regex-util: 26.0.0 jest-util: 26.6.2 micromatch: 4.0.4 - pirates: 4.0.1 + pirates: 4.0.5 slash: 3.0.0 source-map: 0.6.1 write-file-atomic: 3.0.3 @@ -9013,18 +8156,18 @@ packages: resolution: {integrity: sha512-3fSvQ02kuvjOI1C1ssqMVBKJpZf6nwoCiSu00zAKh5nrp3SptNtZy/8s5deayHnqxhjD9CWDJ+yqQwuQ0ZafXQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.16.0 - '@jest/types': 27.2.5 + '@babel/core': 7.17.8 + '@jest/types': 27.5.1 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 1.8.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.9 - jest-haste-map: 27.3.1 - jest-regex-util: 27.0.6 - jest-util: 27.3.1 + jest-haste-map: 27.5.1 + jest-regex-util: 27.5.1 + jest-util: 27.5.1 micromatch: 4.0.4 - pirates: 4.0.1 + pirates: 4.0.5 slash: 3.0.0 source-map: 0.6.1 write-file-atomic: 3.0.3 @@ -9089,7 +8232,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.3 '@types/istanbul-reports': 3.0.1 - '@types/node': 16.10.3 + '@types/node': 17.0.21 '@types/yargs': 16.0.4 chalk: 4.1.2 dev: true @@ -9122,7 +8265,6 @@ packages: dependencies: '@jridgewell/resolve-uri': 3.0.5 '@jridgewell/sourcemap-codec': 1.4.11 - dev: false /@kwsites/file-exists/1.1.1: resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==} @@ -9134,17 +8276,6 @@ packages: /@kwsites/promise-deferred/1.1.1: resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==} - /@mdx-js/loader/1.6.22: - resolution: {integrity: sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==} - dependencies: - '@mdx-js/mdx': 1.6.22 - '@mdx-js/react': 1.6.22 - loader-utils: 2.0.0 - transitivePeerDependencies: - - react - - supports-color - dev: true - /@mdx-js/loader/1.6.22_react@17.0.2: resolution: {integrity: sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==} dependencies: @@ -9182,12 +8313,6 @@ packages: - supports-color dev: true - /@mdx-js/react/1.6.22: - resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} - peerDependencies: - react: ^16.13.1 || ^17.0.0 - dev: true - /@mdx-js/react/1.6.22_react@17.0.2: resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} peerDependencies: @@ -9223,6 +8348,8 @@ packages: path-is-absolute: 1.0.1 readdirp: 2.2.1 upath: 1.2.0 + transitivePeerDependencies: + - supports-color dev: true optional: true @@ -9261,14 +8388,14 @@ packages: dependencies: '@isaacs/string-locale-compare': 1.1.0 '@npmcli/installed-package-contents': 1.0.7 - '@npmcli/map-workspaces': 2.0.1 + '@npmcli/map-workspaces': 2.0.4 '@npmcli/metavuln-calculator': 2.0.0 '@npmcli/move-file': 1.1.2 '@npmcli/name-from-folder': 1.0.1 '@npmcli/node-gyp': 1.0.3 '@npmcli/package-json': 1.0.1 '@npmcli/run-script': 2.0.0 - bin-links: 3.0.0 + bin-links: 3.0.3 cacache: 15.3.0 common-ancestor-path: 1.0.1 json-parse-even-better-errors: 2.3.1 @@ -9280,18 +8407,19 @@ packages: npm-pick-manifest: 6.1.1 npm-registry-fetch: 12.0.2 pacote: 12.0.3 - parse-conflict-json: 2.0.1 + parse-conflict-json: 2.0.2 proc-log: 1.0.0 promise-all-reject-late: 1.0.1 promise-call-limit: 1.0.1 read-package-json-fast: 2.0.3 readdir-scoped-modules: 1.1.0 rimraf: 3.0.2 - semver: 7.3.5 + semver: 7.3.7 ssri: 8.0.1 treeverse: 1.0.4 walk-up-path: 1.0.0 transitivePeerDependencies: + - bluebird - supports-color dev: true @@ -9299,7 +8427,15 @@ packages: resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} dependencies: '@gar/promisify': 1.1.3 - semver: 7.3.5 + semver: 7.3.7 + dev: true + + /@npmcli/fs/2.1.2: + resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + '@gar/promisify': 1.1.3 + semver: 7.3.7 dev: true /@npmcli/git/2.1.0: @@ -9311,8 +8447,10 @@ packages: npm-pick-manifest: 6.1.1 promise-inflight: 1.0.1 promise-retry: 2.0.1 - semver: 7.3.5 + semver: 7.3.7 which: 2.0.2 + transitivePeerDependencies: + - bluebird dev: true /@npmcli/installed-package-contents/1.0.7: @@ -9324,13 +8462,13 @@ packages: npm-normalize-package-bin: 1.0.1 dev: true - /@npmcli/map-workspaces/2.0.1: - resolution: {integrity: sha512-awwkB/tSWWaCD8F0IbawBdmoPFlbXMaEPN9LyTuJcyJz404/QhB4B/vhQntpk6uxOAkM+bxR7qWMJghYg0tcYQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16} + /@npmcli/map-workspaces/2.0.4: + resolution: {integrity: sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@npmcli/name-from-folder': 1.0.1 - glob: 7.2.0 - minimatch: 5.0.0 + glob: 8.0.3 + minimatch: 5.1.0 read-package-json-fast: 2.0.3 dev: true @@ -9341,8 +8479,9 @@ packages: cacache: 15.3.0 json-parse-even-better-errors: 2.3.1 pacote: 12.0.3 - semver: 7.3.5 + semver: 7.3.7 transitivePeerDependencies: + - bluebird - supports-color dev: true @@ -9354,6 +8493,14 @@ packages: rimraf: 3.0.2 dev: true + /@npmcli/move-file/2.0.1: + resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + mkdirp: 1.0.4 + rimraf: 3.0.2 + dev: true + /@npmcli/name-from-folder/1.0.1: resolution: {integrity: sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==} dev: true @@ -9382,6 +8529,7 @@ packages: node-gyp: 8.4.1 read-package-json-fast: 2.0.3 transitivePeerDependencies: + - bluebird - supports-color dev: true @@ -9395,9 +8543,9 @@ packages: supports-color: 8.1.1 tslib: 2.3.1 - /@oclif/core/1.3.4: - resolution: {integrity: sha512-IqwfP1qHJ7V6LXxyCBBX12T0vNvrcK9Mlxv0xyt+snhslwThBXJY09umWcQJhWe+vxA8Y/mihB1bUkfURd2P2A==} - engines: {node: '>=12.0.0'} + /@oclif/core/1.16.1: + resolution: {integrity: sha512-MfzgqcWzWymndd934pd52JAwy0RIgWWYnC0Ed7bxUVYWF4HFb3KmsE7x9/QBP9392Q14vxXi2GNLHboM/5vaDA==} + engines: {node: '>=14.0.0'} dependencies: '@oclif/linewrap': 1.0.0 '@oclif/screen': 3.0.2 @@ -9406,9 +8554,9 @@ packages: cardinal: 2.1.1 chalk: 4.1.2 clean-stack: 3.0.1 - cli-progress: 3.10.0 + cli-progress: 3.11.2 debug: 4.3.4_supports-color@8.1.1 - ejs: 3.1.6 + ejs: 3.1.8 fs-extra: 9.1.0 get-package-type: 0.1.0 globby: 11.1.0 @@ -9416,11 +8564,10 @@ packages: indent-string: 4.0.0 is-wsl: 2.2.0 js-yaml: 3.14.1 - lodash: 4.17.21 natural-orderby: 2.0.3 object-treeify: 1.1.33 password-prompt: 1.1.2 - semver: 7.3.5 + semver: 7.3.7 string-width: 4.2.3 strip-ansi: 6.0.1 supports-color: 8.1.1 @@ -9432,18 +8579,18 @@ packages: /@oclif/linewrap/1.0.0: resolution: {integrity: sha512-Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw==} - /@oclif/plugin-help/5.1.11: - resolution: {integrity: sha512-rWw1tIldlv54zMG804kHmftkaS007IMUkSclLX5sWtAyTrKM0HE730HmIg6ucbeFBrj0pXeDO1mXG/RZAC98tw==} + /@oclif/plugin-help/5.1.12: + resolution: {integrity: sha512-HvH/RubJxqCinP0vUWQLTOboT+SfjfL8h40s+PymkWaldIcXlpoRaJX50vz+SjZIs7uewZwEk8fzLqpF/BWXlg==} engines: {node: '>=12.0.0'} dependencies: - '@oclif/core': 1.3.4 + '@oclif/core': 1.16.1 /@oclif/plugin-not-found/2.3.1: resolution: {integrity: sha512-AeNBw+zSkRpePmpXO8xlL072VF2/R2yK3qsVs/JF26Yw1w77TWuRTdFR+hFotJtFCJ4QYqhNtKSjdryCO9AXsA==} engines: {node: '>=12.0.0'} dependencies: '@oclif/color': 1.0.1 - '@oclif/core': 1.3.4 + '@oclif/core': 1.16.1 fast-levenshtein: 3.0.0 lodash: 4.17.21 dev: true @@ -9453,16 +8600,16 @@ packages: engines: {node: '>=12.0.0'} dependencies: '@oclif/color': 1.0.1 - '@oclif/core': 1.3.4 + '@oclif/core': 1.16.1 chalk: 4.1.2 debug: 4.3.4 fs-extra: 9.1.0 http-call: 5.3.0 load-json-file: 5.3.0 npm-run-path: 4.0.1 - semver: 7.3.5 + semver: 7.3.7 tslib: 2.3.1 - yarn: 1.22.17 + yarn: 1.22.19 transitivePeerDependencies: - supports-color dev: false @@ -9471,13 +8618,13 @@ packages: resolution: {integrity: sha512-9dprC1CWPjesg0Vf/rDSQH2tzJXhP1ow84cb2My1kj6e6ESulPKpctiCFSZ1WaCQFfq+crKhzlNoP/vRaXNUAg==} engines: {node: '>=12.0.0'} dependencies: - '@oclif/core': 1.3.4 + '@oclif/core': 1.16.1 chalk: 4.1.2 debug: 4.3.4 fs-extra: 9.1.0 http-call: 5.3.0 lodash: 4.17.21 - semver: 7.3.5 + semver: 7.3.7 transitivePeerDependencies: - supports-color dev: true @@ -9496,7 +8643,7 @@ packages: resolution: {integrity: sha512-/USkK4cioY209wXRpund6HZzHo9GmjakpV9ycOkpMcMxMk7QVcVFVyCMtzvXYiHsB2crgDgrtNYSELYFBXhhaA==} engines: {node: '>= 14'} dependencies: - '@octokit/types': 7.1.1 + '@octokit/types': 7.4.0 dev: false /@octokit/core/3.5.1: @@ -9521,7 +8668,7 @@ packages: '@octokit/graphql': 5.0.1 '@octokit/request': 6.2.1 '@octokit/request-error': 3.0.1 - '@octokit/types': 7.1.1 + '@octokit/types': 7.4.0 before-after-hook: 2.2.2 universal-user-agent: 6.0.0 transitivePeerDependencies: @@ -9535,11 +8682,11 @@ packages: is-plain-object: 5.0.0 universal-user-agent: 6.0.0 - /@octokit/endpoint/7.0.1: - resolution: {integrity: sha512-/wTXAJwt0HzJ2IeE4kQXO+mBScfzyCkI0hMtkIaqyXd9zg76OpOfNQfHL9FlaxAV2RsNiOXZibVWloy8EexENg==} + /@octokit/endpoint/7.0.2: + resolution: {integrity: sha512-8/AUACfE9vpRpehE6ZLfEtzkibe5nfsSwFZVMsG8qabqRt1M81qZYUFRZa1B8w8lP6cdfDJfRq9HWS+MbmR7tw==} engines: {node: '>= 14'} dependencies: - '@octokit/types': 7.1.1 + '@octokit/types': 7.4.0 is-plain-object: 5.0.0 universal-user-agent: 6.0.0 dev: false @@ -9558,7 +8705,7 @@ packages: engines: {node: '>= 14'} dependencies: '@octokit/request': 6.2.1 - '@octokit/types': 7.1.1 + '@octokit/types': 7.4.0 universal-user-agent: 6.0.0 transitivePeerDependencies: - encoding @@ -9567,27 +8714,31 @@ packages: /@octokit/openapi-types/11.2.0: resolution: {integrity: sha512-PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==} - /@octokit/openapi-types/13.4.0: - resolution: {integrity: sha512-2mVzW0X1+HDO3jF80/+QFZNzJiTefELKbhMu6yaBYbp/1gSMkVDm4rT472gJljTokWUlXaaE63m7WrWENhMDLw==} + /@octokit/openapi-types/12.11.0: + resolution: {integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==} + dev: true + + /@octokit/openapi-types/13.10.0: + resolution: {integrity: sha512-wPQDpTyy35D6VS/lekXDaKcxy6LI2hzcbmXBnP180Pdgz3dXRzoHdav0w09yZzzWX8HHLGuqwAeyMqEPtWY2XA==} dev: false - /@octokit/plugin-paginate-rest/2.17.0_@octokit+core@3.5.1: - resolution: {integrity: sha512-tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw==} + /@octokit/plugin-paginate-rest/2.21.3_@octokit+core@3.5.1: + resolution: {integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==} peerDependencies: '@octokit/core': '>=2' dependencies: '@octokit/core': 3.5.1 - '@octokit/types': 6.34.0 + '@octokit/types': 6.41.0 dev: true - /@octokit/plugin-paginate-rest/4.1.0_@octokit+core@4.0.5: - resolution: {integrity: sha512-2O5K5fpajYG5g62wjzHR7/cWYaCA88CextAW3vFP+yoIHD0KEdlVMHfM5/i5LyV+JMmqiYW7w5qfg46FR+McNw==} + /@octokit/plugin-paginate-rest/4.3.0_@octokit+core@4.0.5: + resolution: {integrity: sha512-4V8hWMoXuxb03xPs3s3RjUb5Bzx4HmVRhG+gvbO08PB48ag6G8mk6/HDFKlAXz9XEorDIkc0pXcXnaOz8spHgg==} engines: {node: '>= 14'} peerDependencies: '@octokit/core': '>=4' dependencies: '@octokit/core': 4.0.5 - '@octokit/types': 7.1.1 + '@octokit/types': 7.4.0 dev: false /@octokit/plugin-request-log/1.0.4_@octokit+core@3.5.1: @@ -9606,24 +8757,24 @@ packages: '@octokit/core': 4.0.5 dev: false - /@octokit/plugin-rest-endpoint-methods/5.13.0_@octokit+core@3.5.1: - resolution: {integrity: sha512-uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA==} + /@octokit/plugin-rest-endpoint-methods/5.16.2_@octokit+core@3.5.1: + resolution: {integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==} peerDependencies: '@octokit/core': '>=3' dependencies: '@octokit/core': 3.5.1 - '@octokit/types': 6.34.0 + '@octokit/types': 6.41.0 deprecation: 2.3.1 dev: true - /@octokit/plugin-rest-endpoint-methods/6.3.0_@octokit+core@4.0.5: - resolution: {integrity: sha512-qEu2wn6E7hqluZwIEUnDxWROvKjov3zMIAi4H4d7cmKWNMeBprEXZzJe8pE5eStUYC1ysGhD0B7L6IeG1Rfb+g==} + /@octokit/plugin-rest-endpoint-methods/6.6.0_@octokit+core@4.0.5: + resolution: {integrity: sha512-IAuT/e1gIUVszNmV+vfXNxa6xXI9dlghhBDqLGEmjz3so9sHqOlXN4R5gWcCRJkt4mum4NCaNjUk17yTrK76Rw==} engines: {node: '>= 14'} peerDependencies: '@octokit/core': '>=3' dependencies: '@octokit/core': 4.0.5 - '@octokit/types': 7.1.1 + '@octokit/types': 7.4.0 deprecation: 2.3.1 dev: false @@ -9638,7 +8789,7 @@ packages: resolution: {integrity: sha512-ym4Bp0HTP7F3VFssV88WD1ZyCIRoE8H35pXSKwLeMizcdZAYc/t6N9X9Yr9n6t3aG9IH75XDnZ6UeZph0vHMWQ==} engines: {node: '>= 14'} dependencies: - '@octokit/types': 7.1.1 + '@octokit/types': 7.4.0 deprecation: 2.3.1 once: 1.4.0 dev: false @@ -9659,9 +8810,9 @@ packages: resolution: {integrity: sha512-gYKRCia3cpajRzDSU+3pt1q2OcuC6PK8PmFIyxZDWCzRXRSIBH8jXjFJ8ZceoygBIm0KsEUg4x1+XcYBz7dHPQ==} engines: {node: '>= 14'} dependencies: - '@octokit/endpoint': 7.0.1 + '@octokit/endpoint': 7.0.2 '@octokit/request-error': 3.0.1 - '@octokit/types': 7.1.1 + '@octokit/types': 7.4.0 is-plain-object: 5.0.0 node-fetch: 2.6.7 universal-user-agent: 6.0.0 @@ -9673,9 +8824,9 @@ packages: resolution: {integrity: sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==} dependencies: '@octokit/core': 3.5.1 - '@octokit/plugin-paginate-rest': 2.17.0_@octokit+core@3.5.1 + '@octokit/plugin-paginate-rest': 2.21.3_@octokit+core@3.5.1 '@octokit/plugin-request-log': 1.0.4_@octokit+core@3.5.1 - '@octokit/plugin-rest-endpoint-methods': 5.13.0_@octokit+core@3.5.1 + '@octokit/plugin-rest-endpoint-methods': 5.16.2_@octokit+core@3.5.1 transitivePeerDependencies: - encoding dev: true @@ -9685,9 +8836,9 @@ packages: engines: {node: '>= 14'} dependencies: '@octokit/core': 4.0.5 - '@octokit/plugin-paginate-rest': 4.1.0_@octokit+core@4.0.5 + '@octokit/plugin-paginate-rest': 4.3.0_@octokit+core@4.0.5 '@octokit/plugin-request-log': 1.0.4_@octokit+core@4.0.5 - '@octokit/plugin-rest-endpoint-methods': 6.3.0_@octokit+core@4.0.5 + '@octokit/plugin-rest-endpoint-methods': 6.6.0_@octokit+core@4.0.5 transitivePeerDependencies: - encoding dev: false @@ -9697,21 +8848,28 @@ packages: dependencies: '@octokit/openapi-types': 11.2.0 - /@octokit/types/7.1.1: - resolution: {integrity: sha512-Dx6cNTORyVaKY0Yeb9MbHksk79L8GXsihbG6PtWqTpkyA2TY1qBWE26EQXVG3dHwY9Femdd/WEeRUEiD0+H3TQ==} + /@octokit/types/6.41.0: + resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==} dependencies: - '@octokit/openapi-types': 13.4.0 + '@octokit/openapi-types': 12.11.0 + dev: true + + /@octokit/types/7.4.0: + resolution: {integrity: sha512-ln1GW0p72+P8qeRjHGj0wyR5ePy6slqvczveOqonMk1w1UWua6UgrkwFzv6S0vKWjSqt/ijYXF1ehNVRRRSvLA==} + dependencies: + '@octokit/openapi-types': 13.10.0 dev: false - /@playwright/test/1.22.1: - resolution: {integrity: sha512-8ouMBUboYslHom41W8bnSEn0TwlAMHhCACwOZeuiAgzukj7KobpZ+UBwrGE0jJ0UblJbKAQNRHXL+z7sDSkb6g==} + /@playwright/test/1.25.2: + resolution: {integrity: sha512-6qPznIR4Fw02OMbqXUPMG6bFFg1hDVNEdihKy0t9K0dmRbus1DyP5Q5XFQhGwEHQkLG5hrSfBuu9CW/foqhQHQ==} engines: {node: '>=14'} hasBin: true dependencies: - playwright-core: 1.22.1 + '@types/node': 17.0.21 + playwright-core: 1.25.2 dev: true - /@pmmmwh/react-refresh-webpack-plugin/0.5.1_06cd85ae30adde416cafc06517ba554d: + /@pmmmwh/react-refresh-webpack-plugin/0.5.1_a3gyllrqvxpec3fpybsrposvju: resolution: {integrity: sha512-ccap6o7+y5L8cnvkZ9h8UXCGyy2DqtwCD+/N3Yru6lxMvcdkPKtdx13qd7sAC9s5qZktOmWf9lfUjsGOvSdYhg==} engines: {node: '>= 10.13'} peerDependencies: @@ -9757,6 +8915,202 @@ packages: /@popperjs/core/2.11.4: resolution: {integrity: sha512-q/ytXxO5NKvyT37pmisQAItCFqA7FD/vNb8dgaJy3/630Fsc+Mz9/9f2SziBoIZ30TJooXyTwZmhi1zjXmObYg==} + /@react-native-community/cli-clean/9.1.0: + resolution: {integrity: sha512-3HznNw8EBQtLsVyV8b8+h76M9EeJcJgYn5wZVGQ5mghAOhqnSWVbwRvpDdb8ITXaiTIXFGNOxXnGKMXsu0CYTw==} + dependencies: + '@react-native-community/cli-tools': 9.1.0 + chalk: 4.1.2 + execa: 1.0.0 + prompts: 2.4.2 + transitivePeerDependencies: + - encoding + dev: false + + /@react-native-community/cli-config/9.1.0: + resolution: {integrity: sha512-6G9d5weedQ6EMz37ZYXrFHCU2DG3yqvdLs4Jo2383cSxal+oO+kggaTgqLBKoMETz/S80KsMeC/l+MoRjc1pzw==} + dependencies: + '@react-native-community/cli-tools': 9.1.0 + cosmiconfig: 5.2.1 + deepmerge: 3.3.0 + glob: 7.2.0 + joi: 17.6.0 + transitivePeerDependencies: + - encoding + dev: false + + /@react-native-community/cli-debugger-ui/9.0.0: + resolution: {integrity: sha512-7hH05ZwU9Tp0yS6xJW0bqcZPVt0YCK7gwj7gnRu1jDNN2kughf6Lg0Ys29rAvtZ7VO1PK5c1O+zs7yFnylQDUA==} + dependencies: + serve-static: 1.15.0 + transitivePeerDependencies: + - supports-color + dev: false + + /@react-native-community/cli-doctor/9.1.1: + resolution: {integrity: sha512-Sve8b3qmpvHEd0WbABoDXCgdN2OIgaTyBbM5rV+7ynAhn5ieWvS7IMwbBJ9xCoRerf5g8hJSycTyX2bfwCZpWw==} + dependencies: + '@react-native-community/cli-config': 9.1.0 + '@react-native-community/cli-platform-ios': 9.1.0 + '@react-native-community/cli-tools': 9.1.0 + chalk: 4.1.2 + command-exists: 1.2.9 + envinfo: 7.8.1 + execa: 1.0.0 + hermes-profile-transformer: 0.0.6 + ip: 1.1.5 + node-stream-zip: 1.15.0 + ora: 5.4.1 + prompts: 2.4.2 + semver: 6.3.0 + strip-ansi: 5.2.0 + sudo-prompt: 9.2.1 + wcwidth: 1.0.1 + transitivePeerDependencies: + - encoding + dev: false + + /@react-native-community/cli-hermes/9.1.0: + resolution: {integrity: sha512-Ly4dnlRZZ7FckFfSWnaD5BxszuEe9/WcJ6A7srW5UobqnnmEznDv1IY0oBTq1ggnmzIquM9dJQZ0UbcZeQjkoA==} + dependencies: + '@react-native-community/cli-platform-android': 9.1.0 + '@react-native-community/cli-tools': 9.1.0 + chalk: 4.1.2 + hermes-profile-transformer: 0.0.6 + ip: 1.1.5 + transitivePeerDependencies: + - encoding + dev: false + + /@react-native-community/cli-platform-android/9.1.0: + resolution: {integrity: sha512-OZ/Krq0wH6T7LuAvwFdJYe47RrHG8IOcoab47H4QQdYGTmJgTS3SlVkr6gn79pZyBGyp7xVizD30QJrIIyDjnw==} + dependencies: + '@react-native-community/cli-tools': 9.1.0 + chalk: 4.1.2 + execa: 1.0.0 + fs-extra: 8.1.0 + glob: 7.2.0 + logkitty: 0.7.1 + slash: 3.0.0 + transitivePeerDependencies: + - encoding + dev: false + + /@react-native-community/cli-platform-ios/9.1.0: + resolution: {integrity: sha512-NtZ9j+VXLj8pxsk/trxbS779uXp/ge4fSwDWNwOM9APRoTcClJ/Xp8cp1koXwfULSn152Czo0u5b291DG2WRfQ==} + dependencies: + '@react-native-community/cli-tools': 9.1.0 + chalk: 4.1.2 + execa: 1.0.0 + glob: 7.2.0 + ora: 5.4.1 + transitivePeerDependencies: + - encoding + dev: false + + /@react-native-community/cli-plugin-metro/9.1.1_@babel+core@7.17.8: + resolution: {integrity: sha512-8CBwEZrbYIeQw69Exg/oW20pV9C6mbYlDz0pxZJ0AYmC20Q+wFFs6sUh5zm28ZUh1L0LxNGmhle/YvMPqA+fMQ==} + dependencies: + '@react-native-community/cli-server-api': 9.1.0 + '@react-native-community/cli-tools': 9.1.0 + chalk: 4.1.2 + metro: 0.72.2 + metro-config: 0.72.2 + metro-core: 0.72.2 + metro-react-native-babel-transformer: 0.72.1_@babel+core@7.17.8 + metro-resolver: 0.72.2 + metro-runtime: 0.72.2 + readline: 1.3.0 + transitivePeerDependencies: + - '@babel/core' + - bufferutil + - encoding + - supports-color + - utf-8-validate + dev: false + + /@react-native-community/cli-server-api/9.1.0: + resolution: {integrity: sha512-Xf3hUqUc99hVmWOsmfNqUQ+sxhut9MIHlINzlo7Azxlmg9v9U/vtwJVJSIPD6iwPzvaPH1qeshzwy/r0GUR7fg==} + dependencies: + '@react-native-community/cli-debugger-ui': 9.0.0 + '@react-native-community/cli-tools': 9.1.0 + compression: 1.7.4 + connect: 3.7.0 + errorhandler: 1.5.1 + nocache: 3.0.4 + pretty-format: 26.6.2 + serve-static: 1.15.0 + ws: 7.5.5 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + dev: false + + /@react-native-community/cli-tools/9.1.0: + resolution: {integrity: sha512-07Z1hyy4cYty84P9cGq+Xf8Vb0S/0ffxLVdVQEMmLjU71sC9YTUv1anJdZyt6f9uUPvA9+e/YIXw5Bu0rvuXIw==} + dependencies: + appdirsjs: 1.2.7 + chalk: 4.1.2 + find-up: 5.0.0 + mime: 2.6.0 + node-fetch: 2.6.7 + open: 6.4.0 + ora: 5.4.1 + semver: 6.3.0 + shell-quote: 1.7.3 + transitivePeerDependencies: + - encoding + dev: false + + /@react-native-community/cli-types/9.1.0: + resolution: {integrity: sha512-KDybF9XHvafLEILsbiKwz5Iobd+gxRaPyn4zSaAerBxedug4er5VUWa8Szy+2GeYKZzMh/gsb1o9lCToUwdT/g==} + dependencies: + joi: 17.6.0 + dev: false + + /@react-native-community/cli/9.1.1_@babel+core@7.17.8: + resolution: {integrity: sha512-LjXcYahjFzM7TlsGzQLH9bCx3yvBsHEj/5Ytdnk0stdDET329JdXWEh6JiSRjVWPVAoDAV5pRAFmEOEGDNIiAw==} + engines: {node: '>=14'} + hasBin: true + dependencies: + '@react-native-community/cli-clean': 9.1.0 + '@react-native-community/cli-config': 9.1.0 + '@react-native-community/cli-debugger-ui': 9.0.0 + '@react-native-community/cli-doctor': 9.1.1 + '@react-native-community/cli-hermes': 9.1.0 + '@react-native-community/cli-plugin-metro': 9.1.1_@babel+core@7.17.8 + '@react-native-community/cli-server-api': 9.1.0 + '@react-native-community/cli-tools': 9.1.0 + '@react-native-community/cli-types': 9.1.0 + chalk: 4.1.2 + commander: 9.4.0 + execa: 1.0.0 + find-up: 4.1.0 + fs-extra: 8.1.0 + graceful-fs: 4.2.9 + prompts: 2.4.2 + semver: 6.3.0 + transitivePeerDependencies: + - '@babel/core' + - bufferutil + - encoding + - supports-color + - utf-8-validate + dev: false + + /@react-native/assets/1.0.0: + resolution: {integrity: sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==} + dev: false + + /@react-native/normalize-color/2.0.0: + resolution: {integrity: sha512-Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw==} + dev: false + + /@react-native/polyfills/2.0.0: + resolution: {integrity: sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==} + dev: false + /@react-spring/animated/9.4.4_react@17.0.2: resolution: {integrity: sha512-e9xnuBaUTD+NolKikUmrGWjX8AVCPyj1GcEgjgq9E+0sXKv46UY7cm2EmB6mUDTxWIDVKebARY++xT4nGDraBQ==} peerDependencies: @@ -9797,7 +9151,7 @@ packages: resolution: {integrity: sha512-KpxKt/D//q/t/6FBcde/RE36LKp8PpWu7kFEMLwpzMGl9RpcexunmYOQJWwmJWtkQjgE1YRr7DzBMryz6La1cQ==} dev: false - /@react-spring/web/9.4.4_react-dom@17.0.2+react@17.0.2: + /@react-spring/web/9.4.4_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-iJmOLdhcuizriUlu/xqBc5y8KaFts+UI+iC+GxyTwBtzxA9czKiSAZW2ESuhG8stafa3jncwjfTQQp84KN36cw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -9915,7 +9269,7 @@ packages: - debug dev: false - /@storybook/addon-a11y/6.4.19: + /@storybook/addon-a11y/6.4.19_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-dG6easap6W4AqyggVZPq8lBrhza8StA8J4eYz/GVdoXINSGtq/casV0rkmY3+SUXhPYux5oGavHo86j5I4Q/0Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -9926,18 +9280,20 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19 - '@storybook/api': 6.4.19 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/channels': 6.4.19 '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19 + '@storybook/components': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/theming': 6.4.19 + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m axe-core: 4.3.5 core-js: 3.21.1 global: 4.4.0 lodash: 4.17.21 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 react-sizeme: 3.0.2 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 @@ -9946,7 +9302,7 @@ packages: - '@types/react' dev: true - /@storybook/addon-actions/6.4.19: + /@storybook/addon-actions/6.4.19_6rln7q2jvtuewdvbdwpg4txtvm: resolution: {integrity: sha512-GpSvP8xV8GfNkmtGJjfCgaOx6mbjtyTK0aT9FqX9pU0s+KVMmoCTrBh43b7dWrwxxas01yleBK9VpYggzhi/Fw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -9957,45 +9313,12 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19 - '@storybook/api': 6.4.19 - '@storybook/components': 6.4.19 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/components': 6.4.19_6rln7q2jvtuewdvbdwpg4txtvm '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/theming': 6.4.19 - core-js: 3.21.1 - fast-deep-equal: 3.1.3 - global: 4.4.0 - lodash: 4.17.21 - polished: 4.1.4 - prop-types: 15.8.1 - react-inspector: 5.1.1 - regenerator-runtime: 0.13.9 - telejson: 5.3.3 - ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - uuid-browser: 3.1.0 - transitivePeerDependencies: - - '@types/react' - dev: true - - /@storybook/addon-actions/6.4.19_00d6772dea80510e818fd171caaa025a: - resolution: {integrity: sha512-GpSvP8xV8GfNkmtGJjfCgaOx6mbjtyTK0aT9FqX9pU0s+KVMmoCTrBh43b7dWrwxxas01yleBK9VpYggzhi/Fw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@storybook/addons': 6.4.19_react@17.0.2 - '@storybook/api': 6.4.19_react@17.0.2 - '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/theming': 6.4.19_react@17.0.2 + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m core-js: 3.21.1 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -10003,6 +9326,7 @@ packages: polished: 4.1.4 prop-types: 15.8.1 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 react-inspector: 5.1.1_react@17.0.2 regenerator-runtime: 0.13.9 telejson: 5.3.3 @@ -10013,16 +9337,51 @@ packages: - '@types/react' dev: true - /@storybook/addon-console/1.2.3_@storybook+addon-actions@6.4.19: + /@storybook/addon-actions/6.4.19_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-GpSvP8xV8GfNkmtGJjfCgaOx6mbjtyTK0aT9FqX9pU0s+KVMmoCTrBh43b7dWrwxxas01yleBK9VpYggzhi/Fw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + dependencies: + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/components': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + core-js: 3.21.1 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + polished: 4.1.4 + prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + react-inspector: 5.1.1_react@17.0.2 + regenerator-runtime: 0.13.9 + telejson: 5.3.3 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + uuid-browser: 3.1.0 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/addon-console/1.2.3_kthckm6zfmobggl2ahqbjihlce: resolution: {integrity: sha512-w5uCUwECA28fdZWoa+A4e/RS9XzBStdd3TwwmpSM5m4fjURJI7Qr+uVq30UeRdgZRH1K7CdWzYUE6RxWXMdVyw==} peerDependencies: '@storybook/addon-actions': '*' dependencies: - '@storybook/addon-actions': 6.4.19 + '@storybook/addon-actions': 6.4.19_sfoxds7t5ydpegc3knd667wn6m global: 4.4.0 dev: true - /@storybook/addon-controls/6.4.19_8469d84421212093500428258085ef2e: + /@storybook/addon-controls/6.4.19_gqjg2tmv5vcd24pd3idedy2yy4: resolution: {integrity: sha512-JHi5z9i6NsgQLfG5WOeQE1AyOrM+QJLrjT+uOYx40bq+OC1yWHH7qHiphPP8kjJJhCZlaQk1qqXYkkQXgaeHSw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10033,18 +9392,19 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19_react@17.0.2 - '@storybook/api': 6.4.19_react@17.0.2 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a - '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 + '@storybook/components': 6.4.19_6rln7q2jvtuewdvbdwpg4txtvm + '@storybook/core-common': 6.4.19_u3faqwawpy6t3w4ivio7rphdly '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.19 - '@storybook/store': 6.4.19_react@17.0.2 - '@storybook/theming': 6.4.19_react@17.0.2 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m core-js: 3.21.1 lodash: 4.17.21 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' @@ -10056,7 +9416,7 @@ packages: - webpack-command dev: true - /@storybook/addon-controls/6.4.19_typescript@4.2.4: + /@storybook/addon-controls/6.4.19_kgza7ssibsmztbp7og4fdm6cqi: resolution: {integrity: sha512-JHi5z9i6NsgQLfG5WOeQE1AyOrM+QJLrjT+uOYx40bq+OC1yWHH7qHiphPP8kjJJhCZlaQk1qqXYkkQXgaeHSw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10067,17 +9427,19 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19 - '@storybook/api': 6.4.19 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19 - '@storybook/core-common': 6.4.19_typescript@4.2.4 + '@storybook/components': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core-common': 6.4.19_kgza7ssibsmztbp7og4fdm6cqi '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.19 - '@storybook/store': 6.4.19 - '@storybook/theming': 6.4.19 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m core-js: 3.21.1 lodash: 4.17.21 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' @@ -10089,7 +9451,7 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.4.19_0e171cb44cbc3183f7a2f6791a9a5c37: + /@storybook/addon-docs/6.4.19_asxjc6on6q4d4hx3mahr75p3aa: resolution: {integrity: sha512-OEPyx/5ZXmZOPqIAWoPjlIP8Q/YfNjAmBosA8tmA8t5KCSiq/vpLcAvQhxqK6n0wk/B8Xp67Z8RpLfXjU8R3tw==} peerDependencies: '@storybook/angular': 6.4.19 @@ -10145,22 +9507,22 @@ packages: '@mdx-js/loader': 1.6.22_react@17.0.2 '@mdx-js/mdx': 1.6.22 '@mdx-js/react': 1.6.22_react@17.0.2 - '@storybook/addons': 6.4.19_react@17.0.2 - '@storybook/api': 6.4.19_react@17.0.2 - '@storybook/builder-webpack4': 6.4.19_637ed751c9d518505c2a54210742b0dc + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/builder-webpack4': 6.4.19_m2iymrk5mj7uzxn4pokatvkani '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a - '@storybook/core': 6.4.19_8524ae9d1d4e3afeee7c4e2470ee45fc + '@storybook/components': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core': 6.4.19_osykqqetktamzdfmbkje3vffse '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.19 '@storybook/node-logger': 6.4.19 '@storybook/postinstall': 6.4.19 - '@storybook/preview-web': 6.4.19_react@17.0.2 - '@storybook/react': 6.4.19_ac71394bf7b79921297ea028da6e50ca - '@storybook/source-loader': 6.4.19_react@17.0.2 - '@storybook/store': 6.4.19_react@17.0.2 - '@storybook/theming': 6.4.19_react@17.0.2 + '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/react': 6.4.19_ehcptaz4xabpozflxv7cqxvegy + '@storybook/source-loader': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m acorn: 7.4.1 acorn-jsx: 5.3.2_acorn@7.4.1 acorn-walk: 7.2.0 @@ -10178,17 +9540,19 @@ packages: prettier: 2.3.0 prop-types: 15.8.1 react: 17.0.2 - react-element-to-jsx-string: 14.3.4_react@17.0.2 + react-dom: 17.0.2_react@17.0.2 + react-element-to-jsx-string: 14.3.4_sfoxds7t5ydpegc3knd667wn6m regenerator-runtime: 0.13.9 remark-external-links: 8.0.0 remark-slug: 6.1.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - webpack: 5.70.0_webpack-cli@3.3.12 + webpack: 5.70.0 transitivePeerDependencies: - '@storybook/builder-webpack5' - '@storybook/manager-webpack5' - '@types/react' + - bluebird - bufferutil - encoding - eslint @@ -10200,7 +9564,7 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.4.19_a84ef1f946d21a14f1015f55f0de5456: + /@storybook/addon-docs/6.4.19_iiadpej7rmoptout6757wmnnqi: resolution: {integrity: sha512-OEPyx/5ZXmZOPqIAWoPjlIP8Q/YfNjAmBosA8tmA8t5KCSiq/vpLcAvQhxqK6n0wk/B8Xp67Z8RpLfXjU8R3tw==} peerDependencies: '@storybook/angular': 6.4.19 @@ -10253,25 +9617,25 @@ packages: '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.8 '@babel/preset-env': 7.16.11_@babel+core@7.17.8 '@jest/transform': 26.6.2 - '@mdx-js/loader': 1.6.22 + '@mdx-js/loader': 1.6.22_react@17.0.2 '@mdx-js/mdx': 1.6.22 - '@mdx-js/react': 1.6.22 - '@storybook/addons': 6.4.19 - '@storybook/api': 6.4.19 - '@storybook/builder-webpack4': 6.4.19_acorn@7.4.1+typescript@4.2.4 + '@mdx-js/react': 1.6.22_react@17.0.2 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/builder-webpack4': 6.4.19_426ma7r2xm33b3zalauaxawhau '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19 - '@storybook/core': 6.4.19_daa74e9ea57648d1383d4f5a915eef9c + '@storybook/components': 6.4.19_6rln7q2jvtuewdvbdwpg4txtvm + '@storybook/core': 6.4.19_2mhfuqncnjrqz5ubsl3hxnzln4 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.19 '@storybook/node-logger': 6.4.19 '@storybook/postinstall': 6.4.19 - '@storybook/preview-web': 6.4.19 - '@storybook/react': 6.4.19_1a3cbc393c8e54a301ca95e65ea44c36 - '@storybook/source-loader': 6.4.19 - '@storybook/store': 6.4.19 - '@storybook/theming': 6.4.19 + '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/react': 6.4.19_otv2hfrmxpoqzd2wgrsryt4y3u + '@storybook/source-loader': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m acorn: 7.4.1 acorn-jsx: 5.3.2_acorn@7.4.1 acorn-walk: 7.2.0 @@ -10288,17 +9652,20 @@ packages: p-limit: 3.1.0 prettier: 2.3.0 prop-types: 15.8.1 - react-element-to-jsx-string: 14.3.4 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + react-element-to-jsx-string: 14.3.4_sfoxds7t5ydpegc3knd667wn6m regenerator-runtime: 0.13.9 remark-external-links: 8.0.0 remark-slug: 6.1.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - webpack: 5.70.0 + webpack: 5.70.0_webpack-cli@3.3.12 transitivePeerDependencies: - '@storybook/builder-webpack5' - '@storybook/manager-webpack5' - '@types/react' + - bluebird - bufferutil - encoding - eslint @@ -10310,7 +9677,7 @@ packages: - webpack-command dev: true - /@storybook/addon-knobs/6.4.0_80fa647588bad5a9aae035b5831b7e40: + /@storybook/addon-knobs/6.4.0_nu75ilgc3qugomjhuwv2hk42im: resolution: {integrity: sha512-DiH1/5e2AFHoHrncl1qLu18ZHPHzRMMPvOLFz8AWvvmc+VCqTdIaE+tdxKr3e8rYylKllibgvDOzrLjfTNjF+Q==} deprecated: deprecating @storybook/addon-knobs in favor of @storybook/addon-controls peerDependencies: @@ -10327,11 +9694,11 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19_react@17.0.2 - '@storybook/api': 6.4.19_react@17.0.2 - '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/components': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/core-events': 6.4.19 - '@storybook/theming': 6.4.19_react@17.0.2 + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m copy-to-clipboard: 3.3.1 core-js: 3.21.1 escape-html: 1.0.3 @@ -10341,47 +9708,13 @@ packages: prop-types: 15.8.1 qs: 6.10.3 react: 17.0.2 - react-colorful: 5.5.1_react@17.0.2 + react-colorful: 5.5.1_sfoxds7t5ydpegc3knd667wn6m + react-dom: 17.0.2_react@17.0.2 react-lifecycles-compat: 3.0.4 - react-select: 3.2.0_react@17.0.2 + react-select: 3.2.0_sfoxds7t5ydpegc3knd667wn6m dev: true - /@storybook/addon-knobs/6.4.0_bdb88cf577f190583d60d23c102288af: - resolution: {integrity: sha512-DiH1/5e2AFHoHrncl1qLu18ZHPHzRMMPvOLFz8AWvvmc+VCqTdIaE+tdxKr3e8rYylKllibgvDOzrLjfTNjF+Q==} - deprecated: deprecating @storybook/addon-knobs in favor of @storybook/addon-controls - peerDependencies: - '@storybook/addons': ^6.4.0 - '@storybook/api': ^6.4.0 - '@storybook/components': ^6.4.0 - '@storybook/core-events': ^6.4.0 - '@storybook/theming': ^6.4.0 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@storybook/addons': 6.4.19 - '@storybook/api': 6.4.19 - '@storybook/components': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/theming': 6.4.19 - copy-to-clipboard: 3.3.1 - core-js: 3.21.1 - escape-html: 1.0.3 - fast-deep-equal: 3.1.3 - global: 4.4.0 - lodash: 4.17.21 - prop-types: 15.8.1 - qs: 6.10.3 - react-colorful: 5.5.1 - react-lifecycles-compat: 3.0.4 - react-select: 3.2.0 - dev: true - - /@storybook/addon-links/6.4.19: + /@storybook/addon-links/6.4.19_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-ebFHYlGDQkHSmI5QEJb1NxGNToVOLgjKkxXUe+JXX7AfHvrWiXVrN/57aOtBPZzj4h2jRPRTZgwR5glhPIlfEQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10392,47 +9725,23 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/router': 6.4.19 - '@types/qs': 6.9.7 - core-js: 3.21.1 - global: 4.4.0 - prop-types: 15.8.1 - qs: 6.10.3 - regenerator-runtime: 0.13.9 - ts-dedent: 2.2.0 - dev: true - - /@storybook/addon-links/6.4.19_react@17.0.2: - resolution: {integrity: sha512-ebFHYlGDQkHSmI5QEJb1NxGNToVOLgjKkxXUe+JXX7AfHvrWiXVrN/57aOtBPZzj4h2jRPRTZgwR5glhPIlfEQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@storybook/addons': 6.4.19_react@17.0.2 - '@storybook/client-logger': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/router': 6.4.19_react@17.0.2 + '@storybook/router': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/qs': 6.9.7 core-js: 3.21.1 global: 4.4.0 prop-types: 15.8.1 qs: 6.10.3 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 dev: true - /@storybook/addon-storysource/6.4.19: + /@storybook/addon-storysource/6.4.19_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-WcjPgd0/m9rGMQbf6H2/wvXUhW5lSELWdXeCCK1taQHQUjhs8tq83fa7OkI9kE25drPiUJuPzObbCoYr94hftQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10443,25 +9752,27 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19 - '@storybook/api': 6.4.19 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19 - '@storybook/router': 6.4.19 - '@storybook/source-loader': 6.4.19 - '@storybook/theming': 6.4.19 + '@storybook/components': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/source-loader': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m core-js: 3.21.1 estraverse: 5.3.0 loader-utils: 2.0.2 prettier: 2.3.0 prop-types: 15.8.1 - react-syntax-highlighter: 13.5.3 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + react-syntax-highlighter: 13.5.3_react@17.0.2 regenerator-runtime: 0.13.9 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/addon-viewport/6.4.19: + /@storybook/addon-viewport/6.4.19_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-T1hdImxbLj8suQSTbp6HSA1LLHOlqaNK5jjnqzEOoAxY0O8LNPXMJ2jKIeT2fPQ0v+tWGU3tbwf+3xFq0parVQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10472,61 +9783,45 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19 - '@storybook/api': 6.4.19 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19 + '@storybook/components': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/core-events': 6.4.19 - '@storybook/theming': 6.4.19 + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m core-js: 3.21.1 global: 4.4.0 memoizerific: 1.11.3 prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/addons/6.4.19: + /@storybook/addons/6.4.19_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-QNyRYhpqmHV8oJxxTBdkRlLSbDFhpBvfvMfIrIT1UXb/eemdBZTaCGVvXZ9UixoEEI7f8VwAQ44IvkU5B1509w==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/api': 6.4.19 + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/channels': 6.4.19 '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/router': 6.4.19 - '@storybook/theming': 6.4.19 - '@types/webpack-env': 1.16.3 - core-js: 3.21.1 - global: 4.4.0 - regenerator-runtime: 0.13.9 - dev: true - - /@storybook/addons/6.4.19_react@17.0.2: - resolution: {integrity: sha512-QNyRYhpqmHV8oJxxTBdkRlLSbDFhpBvfvMfIrIT1UXb/eemdBZTaCGVvXZ9UixoEEI7f8VwAQ44IvkU5B1509w==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@storybook/api': 6.4.19_react@17.0.2 - '@storybook/channels': 6.4.19 - '@storybook/client-logger': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/router': 6.4.19_react@17.0.2 - '@storybook/theming': 6.4.19_react@17.0.2 + '@storybook/router': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/webpack-env': 1.16.3 core-js: 3.21.1 global: 4.4.0 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 dev: true - /@storybook/api/6.4.19: + /@storybook/api/6.4.19_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-aDvea+NpQCBjpNp9YidO1Pr7fzzCp15FSdkG+2ihGQfv5raxrN+IIJnGUXecpe71nvlYiB+29UXBVK7AL0j51Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10536,40 +9831,16 @@ packages: '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/router': 6.4.19 + '@storybook/router': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/semver': 7.3.2 - '@storybook/theming': 6.4.19 - core-js: 3.21.1 - fast-deep-equal: 3.1.3 - global: 4.4.0 - lodash: 4.17.21 - memoizerific: 1.11.3 - regenerator-runtime: 0.13.9 - store2: 2.13.2 - telejson: 5.3.3 - ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - dev: true - - /@storybook/api/6.4.19_react@17.0.2: - resolution: {integrity: sha512-aDvea+NpQCBjpNp9YidO1Pr7fzzCp15FSdkG+2ihGQfv5raxrN+IIJnGUXecpe71nvlYiB+29UXBVK7AL0j51Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@storybook/channels': 6.4.19 - '@storybook/client-logger': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/router': 6.4.19_react@17.0.2 - '@storybook/semver': 7.3.2 - '@storybook/theming': 6.4.19_react@17.0.2 + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m core-js: 3.21.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 store2: 2.13.2 telejson: 5.3.3 @@ -10577,7 +9848,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/builder-webpack4/6.4.19_637ed751c9d518505c2a54210742b0dc: + /@storybook/builder-webpack4/6.4.19_426ma7r2xm33b3zalauaxawhau: resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10608,26 +9879,26 @@ packages: '@babel/preset-env': 7.16.11_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19_react@17.0.2 - '@storybook/api': 6.4.19_react@17.0.2 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/channel-postmessage': 6.4.19 '@storybook/channels': 6.4.19 - '@storybook/client-api': 6.4.19_react@17.0.2 + '@storybook/client-api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a - '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 + '@storybook/components': 6.4.19_6rln7q2jvtuewdvbdwpg4txtvm + '@storybook/core-common': 6.4.19_u3faqwawpy6t3w4ivio7rphdly '@storybook/core-events': 6.4.19 '@storybook/node-logger': 6.4.19 - '@storybook/preview-web': 6.4.19_react@17.0.2 - '@storybook/router': 6.4.19_react@17.0.2 + '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react@17.0.2 - '@storybook/theming': 6.4.19_react@17.0.2 - '@storybook/ui': 6.4.19_00d6772dea80510e818fd171caaa025a + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_6rln7q2jvtuewdvbdwpg4txtvm '@types/node': 14.14.33 '@types/webpack': 4.41.32 autoprefixer: 9.8.6 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy babel-plugin-macros: 2.8.0 babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 case-sensitive-paths-webpack-plugin: 2.4.0 @@ -10635,7 +9906,7 @@ packages: css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6 + fork-ts-checker-webpack-plugin: 4.1.6_5q2la2giz43vmgv46x6vwifbgq glob: 7.2.0 glob-promise: 3.4.0_glob@7.2.0 global: 4.4.0 @@ -10643,15 +9914,16 @@ packages: pnp-webpack-plugin: 1.6.4_typescript@4.6.2 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.2.0_postcss@7.0.39+webpack@4.46.0 + postcss-loader: 4.2.0_gzaxsinx64nntyd3vmdqwl7coe raw-loader: 4.0.2_webpack@4.46.0 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 stable: 0.1.8 style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_acorn@7.4.1+webpack@4.46.0 ts-dedent: 2.2.0 typescript: 4.6.2 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0_webpack-cli@3.3.12 webpack-dev-middleware: 3.7.3_webpack@4.46.0 @@ -10661,6 +9933,7 @@ packages: transitivePeerDependencies: - '@types/react' - acorn + - bluebird - eslint - supports-color - vue-template-compiler @@ -10668,7 +9941,7 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack4/6.4.19_8469d84421212093500428258085ef2e: + /@storybook/builder-webpack4/6.4.19_gqjg2tmv5vcd24pd3idedy2yy4: resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10699,26 +9972,26 @@ packages: '@babel/preset-env': 7.16.11_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19_react@17.0.2 - '@storybook/api': 6.4.19_react@17.0.2 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/channel-postmessage': 6.4.19 '@storybook/channels': 6.4.19 - '@storybook/client-api': 6.4.19_react@17.0.2 + '@storybook/client-api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a - '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 + '@storybook/components': 6.4.19_6rln7q2jvtuewdvbdwpg4txtvm + '@storybook/core-common': 6.4.19_u3faqwawpy6t3w4ivio7rphdly '@storybook/core-events': 6.4.19 '@storybook/node-logger': 6.4.19 - '@storybook/preview-web': 6.4.19_react@17.0.2 - '@storybook/router': 6.4.19_react@17.0.2 + '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react@17.0.2 - '@storybook/theming': 6.4.19_react@17.0.2 - '@storybook/ui': 6.4.19_00d6772dea80510e818fd171caaa025a + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_6rln7q2jvtuewdvbdwpg4txtvm '@types/node': 14.14.33 '@types/webpack': 4.41.32 autoprefixer: 9.8.6 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy babel-plugin-macros: 2.8.0 babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 case-sensitive-paths-webpack-plugin: 2.4.0 @@ -10726,7 +9999,7 @@ packages: css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6 + fork-ts-checker-webpack-plugin: 4.1.6_5q2la2giz43vmgv46x6vwifbgq glob: 7.2.0 glob-promise: 3.4.0_glob@7.2.0 global: 4.4.0 @@ -10734,15 +10007,16 @@ packages: pnp-webpack-plugin: 1.6.4_typescript@4.6.2 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.2.0_postcss@7.0.39+webpack@4.46.0 + postcss-loader: 4.2.0_gzaxsinx64nntyd3vmdqwl7coe raw-loader: 4.0.2_webpack@4.46.0 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 stable: 0.1.8 style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 typescript: 4.6.2 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0_webpack-cli@3.3.12 webpack-dev-middleware: 3.7.3_webpack@4.46.0 @@ -10752,6 +10026,7 @@ packages: transitivePeerDependencies: - '@types/react' - acorn + - bluebird - eslint - supports-color - vue-template-compiler @@ -10759,7 +10034,7 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack4/6.4.19_acorn@7.4.1+typescript@4.2.4: + /@storybook/builder-webpack4/6.4.19_iopxtdjg5lx5qeu5nejjrbtkaa: resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10790,26 +10065,26 @@ packages: '@babel/preset-env': 7.16.11_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19 - '@storybook/api': 6.4.19 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/channel-postmessage': 6.4.19 '@storybook/channels': 6.4.19 - '@storybook/client-api': 6.4.19 + '@storybook/client-api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19 - '@storybook/core-common': 6.4.19_typescript@4.2.4 + '@storybook/components': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core-common': 6.4.19_kgza7ssibsmztbp7og4fdm6cqi '@storybook/core-events': 6.4.19 '@storybook/node-logger': 6.4.19 - '@storybook/preview-web': 6.4.19 - '@storybook/router': 6.4.19 + '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19 - '@storybook/theming': 6.4.19 - '@storybook/ui': 6.4.19 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/node': 14.14.33 '@types/webpack': 4.41.32 autoprefixer: 9.8.6 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy babel-plugin-macros: 2.8.0 babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 case-sensitive-paths-webpack-plugin: 2.4.0 @@ -10817,7 +10092,7 @@ packages: css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6 + fork-ts-checker-webpack-plugin: 4.1.6_sfjhwazafbou6ucdr5ol5z2g64 glob: 7.2.0 glob-promise: 3.4.0_glob@7.2.0 global: 4.4.0 @@ -10825,14 +10100,16 @@ packages: pnp-webpack-plugin: 1.6.4_typescript@4.2.4 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.2.0_postcss@7.0.39+webpack@4.46.0 + postcss-loader: 4.2.0_gzaxsinx64nntyd3vmdqwl7coe raw-loader: 4.0.2_webpack@4.46.0 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 stable: 0.1.8 style-loader: 1.3.0_webpack@4.46.0 - terser-webpack-plugin: 4.2.3_acorn@7.4.1+webpack@4.46.0 + terser-webpack-plugin: 4.2.3_acorn@8.7.0+webpack@4.46.0 ts-dedent: 2.2.0 typescript: 4.2.4 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 webpack-dev-middleware: 3.7.3_webpack@4.46.0 @@ -10842,6 +10119,7 @@ packages: transitivePeerDependencies: - '@types/react' - acorn + - bluebird - eslint - supports-color - vue-template-compiler @@ -10849,7 +10127,7 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack4/6.4.19_ad5fc232a476648e022b673b2e1293fc: + /@storybook/builder-webpack4/6.4.19_m2iymrk5mj7uzxn4pokatvkani: resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10880,26 +10158,26 @@ packages: '@babel/preset-env': 7.16.11_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19 - '@storybook/api': 6.4.19 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/channel-postmessage': 6.4.19 '@storybook/channels': 6.4.19 - '@storybook/client-api': 6.4.19 + '@storybook/client-api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19 - '@storybook/core-common': 6.4.19_ad5fc232a476648e022b673b2e1293fc + '@storybook/components': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core-common': 6.4.19_kgza7ssibsmztbp7og4fdm6cqi '@storybook/core-events': 6.4.19 '@storybook/node-logger': 6.4.19 - '@storybook/preview-web': 6.4.19 - '@storybook/router': 6.4.19 + '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19 - '@storybook/theming': 6.4.19 - '@storybook/ui': 6.4.19 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/node': 14.14.33 '@types/webpack': 4.41.32 autoprefixer: 9.8.6 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy babel-plugin-macros: 2.8.0 babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 case-sensitive-paths-webpack-plugin: 2.4.0 @@ -10907,97 +10185,7 @@ packages: css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6 - glob: 7.2.0 - glob-promise: 3.4.0_glob@7.2.0 - global: 4.4.0 - html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.6.2 - postcss: 7.0.39 - postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.2.0_postcss@7.0.39+webpack@4.46.0 - raw-loader: 4.0.2_webpack@4.46.0 - stable: 0.1.8 - style-loader: 1.3.0_webpack@4.46.0 - terser-webpack-plugin: 4.2.3_webpack@4.46.0 - ts-dedent: 2.2.0 - typescript: 4.6.2 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 - util-deprecate: 1.0.2 - webpack: 4.46.0_webpack-cli@3.3.12 - webpack-dev-middleware: 3.7.3_webpack@4.46.0 - webpack-filter-warnings-plugin: 1.2.1_webpack@4.46.0 - webpack-hot-middleware: 2.25.1 - webpack-virtual-modules: 0.2.2 - transitivePeerDependencies: - - '@types/react' - - acorn - - eslint - - supports-color - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - - /@storybook/builder-webpack4/6.4.19_typescript@4.2.4: - resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@babel/core': 7.17.8 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 - '@babel/preset-env': 7.16.11_@babel+core@7.17.8 - '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19 - '@storybook/api': 6.4.19 - '@storybook/channel-postmessage': 6.4.19 - '@storybook/channels': 6.4.19 - '@storybook/client-api': 6.4.19 - '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19 - '@storybook/core-common': 6.4.19_typescript@4.2.4 - '@storybook/core-events': 6.4.19 - '@storybook/node-logger': 6.4.19 - '@storybook/preview-web': 6.4.19 - '@storybook/router': 6.4.19 - '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19 - '@storybook/theming': 6.4.19 - '@storybook/ui': 6.4.19 - '@types/node': 14.14.33 - '@types/webpack': 4.41.32 - autoprefixer: 9.8.6 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe - babel-plugin-macros: 2.8.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 - case-sensitive-paths-webpack-plugin: 2.4.0 - core-js: 3.21.1 - css-loader: 3.6.0_webpack@4.46.0 - file-loader: 6.2.0_webpack@4.46.0 - find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6 + fork-ts-checker-webpack-plugin: 4.1.6_sfjhwazafbou6ucdr5ol5z2g64 glob: 7.2.0 glob-promise: 3.4.0_glob@7.2.0 global: 4.4.0 @@ -11005,14 +10193,16 @@ packages: pnp-webpack-plugin: 1.6.4_typescript@4.2.4 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.2.0_postcss@7.0.39+webpack@4.46.0 + postcss-loader: 4.2.0_gzaxsinx64nntyd3vmdqwl7coe raw-loader: 4.0.2_webpack@4.46.0 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 stable: 0.1.8 style-loader: 1.3.0_webpack@4.46.0 - terser-webpack-plugin: 4.2.3_webpack@4.46.0 + terser-webpack-plugin: 4.2.3_acorn@7.4.1+webpack@4.46.0 ts-dedent: 2.2.0 typescript: 4.2.4 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 webpack-dev-middleware: 3.7.3_webpack@4.46.0 @@ -11022,6 +10212,7 @@ packages: transitivePeerDependencies: - '@types/react' - acorn + - bluebird - eslint - supports-color - vue-template-compiler @@ -11029,7 +10220,100 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack5/6.4.19_typescript@4.2.4: + /@storybook/builder-webpack4/6.4.19_u3faqwawpy6t3w4ivio7rphdly: + resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 + '@babel/preset-env': 7.16.11_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channels': 6.4.19 + '@storybook/client-api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/client-logger': 6.4.19 + '@storybook/components': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core-common': 6.4.19_u3faqwawpy6t3w4ivio7rphdly + '@storybook/core-events': 6.4.19 + '@storybook/node-logger': 6.4.19 + '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@types/node': 14.14.33 + '@types/webpack': 4.41.32 + autoprefixer: 9.8.6 + babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy + babel-plugin-macros: 2.8.0 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 + case-sensitive-paths-webpack-plugin: 2.4.0 + core-js: 3.21.1 + css-loader: 3.6.0_webpack@4.46.0 + file-loader: 6.2.0_webpack@4.46.0 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 4.1.6_5q2la2giz43vmgv46x6vwifbgq + glob: 7.2.0 + glob-promise: 3.4.0_glob@7.2.0 + global: 4.4.0 + html-webpack-plugin: 4.5.2_webpack@4.46.0 + pnp-webpack-plugin: 1.6.4_typescript@4.6.2 + postcss: 7.0.39 + postcss-flexbugs-fixes: 4.2.1 + postcss-loader: 4.2.0_gzaxsinx64nntyd3vmdqwl7coe + raw-loader: 4.0.2_webpack@4.46.0 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + stable: 0.1.8 + style-loader: 1.3.0_webpack@4.46.0 + terser-webpack-plugin: 4.2.3_webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.6.2 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy + util-deprecate: 1.0.2 + webpack: 4.46.0_webpack-cli@3.3.12 + webpack-dev-middleware: 3.7.3_webpack@4.46.0 + webpack-filter-warnings-plugin: 1.2.1_webpack@4.46.0 + webpack-hot-middleware: 2.25.1 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - acorn + - bluebird + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/builder-webpack5/6.4.19_iopxtdjg5lx5qeu5nejjrbtkaa: resolution: {integrity: sha512-AWM4YMN1gPaf7jfntqZTCGpIQ1tF6YRU1JtczPG4ox28rTaO6NMfOBi9aRhBre/59pPOh9bF6u2gu/MIHmRW+w==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -11059,37 +10343,39 @@ packages: '@babel/preset-env': 7.16.11_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19 - '@storybook/api': 6.4.19 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/channel-postmessage': 6.4.19 '@storybook/channels': 6.4.19 - '@storybook/client-api': 6.4.19 + '@storybook/client-api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19 - '@storybook/core-common': 6.4.19_typescript@4.2.4 + '@storybook/components': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core-common': 6.4.19_kgza7ssibsmztbp7og4fdm6cqi '@storybook/core-events': 6.4.19 '@storybook/node-logger': 6.4.19 - '@storybook/preview-web': 6.4.19 - '@storybook/router': 6.4.19 + '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19 - '@storybook/theming': 6.4.19 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/node': 14.14.33 - babel-loader: 8.2.3_fa907c5a4f16ccc493e21649ccc59574 + babel-loader: 8.2.3_7kihywspc3gmje7ccze4zrmvoq babel-plugin-macros: 3.1.0 babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.21.1 css-loader: 5.2.7_webpack@5.70.0 - fork-ts-checker-webpack-plugin: 6.5.0_typescript@4.2.4+webpack@5.70.0 + fork-ts-checker-webpack-plugin: 6.5.0_2iwbsxmmxzlklmwmpsmkubfwfq glob: 7.2.0 glob-promise: 3.4.0_glob@7.2.0 - html-webpack-plugin: 5.5.0_webpack@5.70.0 + html-webpack-plugin: 5.5.0_acorn@8.7.0+webpack@5.70.0 path-browserify: 1.0.1 process: 0.11.10 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 stable: 0.1.8 style-loader: 2.0.0_webpack@5.70.0 - terser-webpack-plugin: 5.2.5_webpack@5.70.0 + terser-webpack-plugin: 5.2.5_acorn@8.7.0+webpack@5.70.0 ts-dedent: 2.2.0 typescript: 4.2.4 util-deprecate: 1.0.2 @@ -11140,47 +10426,19 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/client-api/6.4.19: + /@storybook/client-api/6.4.19_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-OCrT5Um3FDvZnimQKwWtwsaI+5agPwq2i8YiqlofrI/NPMKp0I7DEkCGwE5IRD1Q8BIKqHcMo5tTmfYi0AxyOg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/addons': 6.4.19 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/channel-postmessage': 6.4.19 '@storybook/channels': 6.4.19 '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/store': 6.4.19 - '@types/qs': 6.9.7 - '@types/webpack-env': 1.16.3 - core-js: 3.21.1 - fast-deep-equal: 3.1.3 - global: 4.4.0 - lodash: 4.17.21 - memoizerific: 1.11.3 - qs: 6.10.3 - regenerator-runtime: 0.13.9 - store2: 2.13.2 - synchronous-promise: 2.0.15 - ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - dev: true - - /@storybook/client-api/6.4.19_react@17.0.2: - resolution: {integrity: sha512-OCrT5Um3FDvZnimQKwWtwsaI+5agPwq2i8YiqlofrI/NPMKp0I7DEkCGwE5IRD1Q8BIKqHcMo5tTmfYi0AxyOg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@storybook/addons': 6.4.19_react@17.0.2 - '@storybook/channel-postmessage': 6.4.19 - '@storybook/channels': 6.4.19 - '@storybook/client-logger': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/store': 6.4.19_react@17.0.2 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/qs': 6.9.7 '@types/webpack-env': 1.16.3 core-js: 3.21.1 @@ -11190,6 +10448,7 @@ packages: memoizerific: 1.11.3 qs: 6.10.3 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 store2: 2.13.2 synchronous-promise: 2.0.15 @@ -11204,7 +10463,7 @@ packages: global: 4.4.0 dev: true - /@storybook/components/6.4.19: + /@storybook/components/6.4.19_6rln7q2jvtuewdvbdwpg4txtvm: resolution: {integrity: sha512-q/0V37YAJA7CNc+wSiiefeM9+3XVk8ixBNylY36QCGJgIeGQ5/79vPyUe6K4lLmsQwpmZsIq1s1Ad5+VbboeOA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -11213,41 +10472,7 @@ packages: '@popperjs/core': 2.11.4 '@storybook/client-logger': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/theming': 6.4.19 - '@types/color-convert': 2.0.0 - '@types/overlayscrollbars': 1.12.1 - '@types/react-syntax-highlighter': 11.0.5 - color-convert: 2.0.1 - core-js: 3.21.1 - fast-deep-equal: 3.1.3 - global: 4.4.0 - lodash: 4.17.21 - markdown-to-jsx: 7.1.7 - memoizerific: 1.11.3 - overlayscrollbars: 1.13.1 - polished: 4.1.4 - prop-types: 15.8.1 - react-colorful: 5.5.1 - react-popper-tooltip: 3.1.1 - react-syntax-highlighter: 13.5.3 - react-textarea-autosize: 8.3.3 - regenerator-runtime: 0.13.9 - ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - transitivePeerDependencies: - - '@types/react' - dev: true - - /@storybook/components/6.4.19_00d6772dea80510e818fd171caaa025a: - resolution: {integrity: sha512-q/0V37YAJA7CNc+wSiiefeM9+3XVk8ixBNylY36QCGJgIeGQ5/79vPyUe6K4lLmsQwpmZsIq1s1Ad5+VbboeOA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@popperjs/core': 2.11.4 - '@storybook/client-logger': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/theming': 6.4.19_react@17.0.2 + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/color-convert': 2.0.0 '@types/overlayscrollbars': 1.12.1 '@types/react-syntax-highlighter': 11.0.5 @@ -11262,10 +10487,11 @@ packages: polished: 4.1.4 prop-types: 15.8.1 react: 17.0.2 - react-colorful: 5.5.1_react@17.0.2 - react-popper-tooltip: 3.1.1_react@17.0.2 + react-colorful: 5.5.1_sfoxds7t5ydpegc3knd667wn6m + react-dom: 17.0.2_react@17.0.2 + react-popper-tooltip: 3.1.1_sfoxds7t5ydpegc3knd667wn6m react-syntax-highlighter: 13.5.3_react@17.0.2 - react-textarea-autosize: 8.3.3_00d6772dea80510e818fd171caaa025a + react-textarea-autosize: 8.3.3_adlholpkqbiq5amp2fy4vkqcli regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 util-deprecate: 1.0.2 @@ -11273,7 +10499,43 @@ packages: - '@types/react' dev: true - /@storybook/core-client/6.4.19_98f22687148c9cf1bdeabebc76b1ed21: + /@storybook/components/6.4.19_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-q/0V37YAJA7CNc+wSiiefeM9+3XVk8ixBNylY36QCGJgIeGQ5/79vPyUe6K4lLmsQwpmZsIq1s1Ad5+VbboeOA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@popperjs/core': 2.11.4 + '@storybook/client-logger': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@types/color-convert': 2.0.0 + '@types/overlayscrollbars': 1.12.1 + '@types/react-syntax-highlighter': 11.0.5 + color-convert: 2.0.1 + core-js: 3.21.1 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + markdown-to-jsx: 7.1.7_react@17.0.2 + memoizerific: 1.11.3 + overlayscrollbars: 1.13.1 + polished: 4.1.4 + prop-types: 15.8.1 + react: 17.0.2 + react-colorful: 5.5.1_sfoxds7t5ydpegc3knd667wn6m + react-dom: 17.0.2_react@17.0.2 + react-popper-tooltip: 3.1.1_sfoxds7t5ydpegc3knd667wn6m + react-syntax-highlighter: 13.5.3_react@17.0.2 + react-textarea-autosize: 8.3.3_react@17.0.2 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/core-client/6.4.19_43gaa4yyddwaokoj4e3jn46cra: resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -11284,16 +10546,16 @@ packages: typescript: optional: true dependencies: - '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/channel-postmessage': 6.4.19 '@storybook/channel-websocket': 6.4.19 - '@storybook/client-api': 6.4.19_react@17.0.2 + '@storybook/client-api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/preview-web': 6.4.19_react@17.0.2 - '@storybook/store': 6.4.19_react@17.0.2 - '@storybook/ui': 6.4.19_00d6772dea80510e818fd171caaa025a + '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_sfoxds7t5ydpegc3knd667wn6m airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.21.1 @@ -11301,6 +10563,46 @@ packages: lodash: 4.17.21 qs: 6.10.3 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + typescript: 4.2.4 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 4.46.0 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/core-client/6.4.19_62e4mj2m4e7w2obm7cgxxbloyq: + resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channel-websocket': 6.4.19 + '@storybook/client-api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/client-logger': 6.4.19 + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_6rln7q2jvtuewdvbdwpg4txtvm + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.21.1 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.10.3 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 typescript: 4.6.2 @@ -11311,7 +10613,7 @@ packages: - '@types/react' dev: true - /@storybook/core-client/6.4.19_d99be1b4f00e9434dc3d01c71c87961c: + /@storybook/core-client/6.4.19_b5hypkxpakg32eu5xvulb7gw2q: resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -11322,16 +10624,16 @@ packages: typescript: optional: true dependencies: - '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/channel-postmessage': 6.4.19 '@storybook/channel-websocket': 6.4.19 - '@storybook/client-api': 6.4.19_react@17.0.2 + '@storybook/client-api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/preview-web': 6.4.19_react@17.0.2 - '@storybook/store': 6.4.19_react@17.0.2 - '@storybook/ui': 6.4.19_00d6772dea80510e818fd171caaa025a + '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_sfoxds7t5ydpegc3knd667wn6m airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.21.1 @@ -11339,80 +10641,7 @@ packages: lodash: 4.17.21 qs: 6.10.3 react: 17.0.2 - regenerator-runtime: 0.13.9 - ts-dedent: 2.2.0 - typescript: 4.6.2 - unfetch: 4.2.0 - util-deprecate: 1.0.2 - webpack: 4.46.0_webpack-cli@3.3.12 - transitivePeerDependencies: - - '@types/react' - dev: true - - /@storybook/core-client/6.4.19_typescript@4.2.4+webpack@4.46.0: - resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - webpack: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@storybook/addons': 6.4.19 - '@storybook/channel-postmessage': 6.4.19 - '@storybook/channel-websocket': 6.4.19 - '@storybook/client-api': 6.4.19 - '@storybook/client-logger': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/preview-web': 6.4.19 - '@storybook/store': 6.4.19 - '@storybook/ui': 6.4.19 - airbnb-js-shims: 2.2.1 - ansi-to-html: 0.6.15 - core-js: 3.21.1 - global: 4.4.0 - lodash: 4.17.21 - qs: 6.10.3 - regenerator-runtime: 0.13.9 - ts-dedent: 2.2.0 - typescript: 4.2.4 - unfetch: 4.2.0 - util-deprecate: 1.0.2 - webpack: 4.46.0 - transitivePeerDependencies: - - '@types/react' - dev: true - - /@storybook/core-client/6.4.19_typescript@4.2.4+webpack@5.70.0: - resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - webpack: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@storybook/addons': 6.4.19 - '@storybook/channel-postmessage': 6.4.19 - '@storybook/channel-websocket': 6.4.19 - '@storybook/client-api': 6.4.19 - '@storybook/client-logger': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/preview-web': 6.4.19 - '@storybook/store': 6.4.19 - '@storybook/ui': 6.4.19 - airbnb-js-shims: 2.2.1 - ansi-to-html: 0.6.15 - core-js: 3.21.1 - global: 4.4.0 - lodash: 4.17.21 - qs: 6.10.3 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 typescript: 4.2.4 @@ -11423,7 +10652,7 @@ packages: - '@types/react' dev: true - /@storybook/core-client/6.4.19_typescript@4.6.2+webpack@4.46.0: + /@storybook/core-client/6.4.19_rhk7yz6mn2gv7fnythy2x7dhkm: resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -11434,22 +10663,24 @@ packages: typescript: optional: true dependencies: - '@storybook/addons': 6.4.19 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/channel-postmessage': 6.4.19 '@storybook/channel-websocket': 6.4.19 - '@storybook/client-api': 6.4.19 + '@storybook/client-api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/preview-web': 6.4.19 - '@storybook/store': 6.4.19 - '@storybook/ui': 6.4.19 + '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_sfoxds7t5ydpegc3knd667wn6m airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.21.1 global: 4.4.0 lodash: 4.17.21 qs: 6.10.3 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 typescript: 4.6.2 @@ -11460,7 +10691,46 @@ packages: - '@types/react' dev: true - /@storybook/core-common/6.4.19_a82b73e100b701d7a4b2b606aa98cbb5: + /@storybook/core-client/6.4.19_vxxd7eurta744xzckejt5zslha: + resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channel-websocket': 6.4.19 + '@storybook/client-api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/client-logger': 6.4.19 + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_6rln7q2jvtuewdvbdwpg4txtvm + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.21.1 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.10.3 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + typescript: 4.6.2 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 4.46.0_webpack-cli@3.3.12 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/core-common/6.4.19_kgza7ssibsmztbp7og4fdm6cqi: resolution: {integrity: sha512-X1pJJkO48DFxl6iyEemIKqRkJ7j9/cBh3BRBUr+xZHXBvnD0GKDXIocwh0PjSxSC6XSu3UCQnqtKi3PbjRl8Dg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -11490,20 +10760,20 @@ packages: '@babel/preset-env': 7.16.11_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@babel/register': 7.12.1_@babel+core@7.17.8 + '@babel/register': 7.18.9_@babel+core@7.17.8 '@storybook/node-logger': 6.4.19 '@storybook/semver': 7.3.2 '@types/node': 14.14.33 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy babel-plugin-macros: 3.1.0 babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 chalk: 4.1.2 core-js: 3.21.1 - express: 4.17.1 + express: 4.18.1 file-system-cache: 1.0.5 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.0_ec34b068c8cf37561abcf5fd5b20a134 + fork-ts-checker-webpack-plugin: 6.5.0_sfjhwazafbou6ucdr5ol5z2g64 fs-extra: 9.1.0 glob: 7.2.0 handlebars: 4.7.7 @@ -11514,142 +10784,7 @@ packages: pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 react: 17.0.2 - resolve-from: 5.0.0 - slash: 3.0.0 - telejson: 5.3.3 - ts-dedent: 2.2.0 - typescript: 4.6.2 - util-deprecate: 1.0.2 - webpack: 4.46.0_webpack-cli@3.3.12 - transitivePeerDependencies: - - eslint - - supports-color - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - - /@storybook/core-common/6.4.19_ad5fc232a476648e022b673b2e1293fc: - resolution: {integrity: sha512-X1pJJkO48DFxl6iyEemIKqRkJ7j9/cBh3BRBUr+xZHXBvnD0GKDXIocwh0PjSxSC6XSu3UCQnqtKi3PbjRl8Dg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@babel/core': 7.17.8 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 - '@babel/preset-env': 7.16.11_@babel+core@7.17.8 - '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@babel/register': 7.12.1_@babel+core@7.17.8 - '@storybook/node-logger': 6.4.19 - '@storybook/semver': 7.3.2 - '@types/node': 14.14.33 - '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe - babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 - chalk: 4.1.2 - core-js: 3.21.1 - express: 4.17.1 - file-system-cache: 1.0.5 - find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.0_ec34b068c8cf37561abcf5fd5b20a134 - fs-extra: 9.1.0 - glob: 7.2.0 - handlebars: 4.7.7 - interpret: 2.2.0 - json5: 2.2.0 - lazy-universal-dotenv: 3.0.1 - picomatch: 2.3.0 - pkg-dir: 5.0.0 - pretty-hrtime: 1.0.3 - resolve-from: 5.0.0 - slash: 3.0.0 - telejson: 5.3.3 - ts-dedent: 2.2.0 - typescript: 4.6.2 - util-deprecate: 1.0.2 - webpack: 4.46.0_webpack-cli@3.3.12 - transitivePeerDependencies: - - eslint - - supports-color - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - - /@storybook/core-common/6.4.19_typescript@4.2.4: - resolution: {integrity: sha512-X1pJJkO48DFxl6iyEemIKqRkJ7j9/cBh3BRBUr+xZHXBvnD0GKDXIocwh0PjSxSC6XSu3UCQnqtKi3PbjRl8Dg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@babel/core': 7.17.8 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 - '@babel/preset-env': 7.16.11_@babel+core@7.17.8 - '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@babel/register': 7.12.1_@babel+core@7.17.8 - '@storybook/node-logger': 6.4.19 - '@storybook/semver': 7.3.2 - '@types/node': 14.14.33 - '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe - babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 - chalk: 4.1.2 - core-js: 3.21.1 - express: 4.17.1 - file-system-cache: 1.0.5 - find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.0_typescript@4.2.4+webpack@4.46.0 - fs-extra: 9.1.0 - glob: 7.2.0 - handlebars: 4.7.7 - interpret: 2.2.0 - json5: 2.2.0 - lazy-universal-dotenv: 3.0.1 - picomatch: 2.3.0 - pkg-dir: 5.0.0 - pretty-hrtime: 1.0.3 + react-dom: 17.0.2_react@17.0.2 resolve-from: 5.0.0 slash: 3.0.0 telejson: 5.3.3 @@ -11665,13 +10800,83 @@ packages: - webpack-command dev: true + /@storybook/core-common/6.4.19_u3faqwawpy6t3w4ivio7rphdly: + resolution: {integrity: sha512-X1pJJkO48DFxl6iyEemIKqRkJ7j9/cBh3BRBUr+xZHXBvnD0GKDXIocwh0PjSxSC6XSu3UCQnqtKi3PbjRl8Dg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 + '@babel/preset-env': 7.16.11_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 + '@babel/register': 7.18.9_@babel+core@7.17.8 + '@storybook/node-logger': 6.4.19 + '@storybook/semver': 7.3.2 + '@types/node': 14.14.33 + '@types/pretty-hrtime': 1.0.1 + babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy + babel-plugin-macros: 3.1.0 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 + chalk: 4.1.2 + core-js: 3.21.1 + express: 4.18.1 + file-system-cache: 1.0.5 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 6.5.0_5q2la2giz43vmgv46x6vwifbgq + fs-extra: 9.1.0 + glob: 7.2.0 + handlebars: 4.7.7 + interpret: 2.2.0 + json5: 2.2.0 + lazy-universal-dotenv: 3.0.1 + picomatch: 2.3.0 + pkg-dir: 5.0.0 + pretty-hrtime: 1.0.3 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + resolve-from: 5.0.0 + slash: 3.0.0 + telejson: 5.3.3 + ts-dedent: 2.2.0 + typescript: 4.6.2 + util-deprecate: 1.0.2 + webpack: 4.46.0_webpack-cli@3.3.12 + transitivePeerDependencies: + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + /@storybook/core-events/6.4.19: resolution: {integrity: sha512-KICzUw6XVQUJzFSCXfvhfHAuyhn4Q5J4IZEfuZkcGJS4ODkrO6tmpdYE5Cfr+so95Nfp0ErWiLUuodBsW9/rtA==} dependencies: core-js: 3.21.1 dev: true - /@storybook/core-server/6.4.19_32ff3fc743ba90b9723aa5427911cd5d: + /@storybook/core-server/6.4.19_426ma7r2xm33b3zalauaxawhau: resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -11688,18 +10893,16 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.19_acorn@7.4.1+typescript@4.2.4 - '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 - '@storybook/core-client': 6.4.19_typescript@4.2.4+webpack@4.46.0 - '@storybook/core-common': 6.4.19_typescript@4.2.4 + '@storybook/builder-webpack4': 6.4.19_426ma7r2xm33b3zalauaxawhau + '@storybook/core-client': 6.4.19_vxxd7eurta744xzckejt5zslha + '@storybook/core-common': 6.4.19_u3faqwawpy6t3w4ivio7rphdly '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.19 - '@storybook/manager-webpack4': 6.4.19_acorn@7.4.1+typescript@4.2.4 - '@storybook/manager-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/manager-webpack4': 6.4.19_426ma7r2xm33b3zalauaxawhau '@storybook/node-logger': 6.4.19 '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/node': 14.14.33 '@types/node-fetch': 2.6.1 '@types/pretty-hrtime': 1.0.1 @@ -11713,7 +10916,7 @@ packages: core-js: 3.21.1 cpy: 8.1.2 detect-port: 1.3.0 - express: 4.17.1 + express: 4.18.1 file-system-cache: 1.0.5 fs-extra: 9.1.0 globby: 11.1.0 @@ -11722,6 +10925,85 @@ packages: node-fetch: 2.6.7 pretty-hrtime: 1.0.3 prompts: 2.4.2 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + regenerator-runtime: 0.13.9 + serve-favicon: 2.5.0 + slash: 3.0.0 + telejson: 5.3.3 + ts-dedent: 2.2.0 + typescript: 4.6.2 + util-deprecate: 1.0.2 + watchpack: 2.2.0 + webpack: 4.46.0_webpack-cli@3.3.12 + ws: 8.5.0 + transitivePeerDependencies: + - '@types/react' + - acorn + - bluebird + - bufferutil + - encoding + - eslint + - supports-color + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/core-server/6.4.19_7d6xhl362e56xnulfklrnq4w4i: + resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} + peerDependencies: + '@storybook/builder-webpack5': 6.4.19 + '@storybook/manager-webpack5': 6.4.19 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true + dependencies: + '@discoveryjs/json-ext': 0.5.7 + '@storybook/builder-webpack4': 6.4.19_iopxtdjg5lx5qeu5nejjrbtkaa + '@storybook/builder-webpack5': 6.4.19_iopxtdjg5lx5qeu5nejjrbtkaa + '@storybook/core-client': 6.4.19_43gaa4yyddwaokoj4e3jn46cra + '@storybook/core-common': 6.4.19_kgza7ssibsmztbp7og4fdm6cqi + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/csf-tools': 6.4.19 + '@storybook/manager-webpack4': 6.4.19_iopxtdjg5lx5qeu5nejjrbtkaa + '@storybook/manager-webpack5': 6.4.19_iopxtdjg5lx5qeu5nejjrbtkaa + '@storybook/node-logger': 6.4.19 + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@types/node': 14.14.33 + '@types/node-fetch': 2.6.1 + '@types/pretty-hrtime': 1.0.1 + '@types/webpack': 4.41.32 + better-opn: 2.1.1 + boxen: 5.1.2 + chalk: 4.1.2 + cli-table3: 0.6.1 + commander: 6.2.1 + compression: 1.7.4 + core-js: 3.21.1 + cpy: 8.1.2 + detect-port: 1.3.0 + express: 4.18.1 + file-system-cache: 1.0.5 + fs-extra: 9.1.0 + globby: 11.1.0 + ip: 1.1.5 + lodash: 4.17.21 + node-fetch: 2.6.7 + pretty-hrtime: 1.0.3 + prompts: 2.4.2 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 slash: 3.0.0 @@ -11735,6 +11017,7 @@ packages: transitivePeerDependencies: - '@types/react' - acorn + - bluebird - bufferutil - encoding - eslint @@ -11745,7 +11028,7 @@ packages: - webpack-command dev: true - /@storybook/core-server/6.4.19_560e6d9d0dc6ba0e4a0e3ac9dfb0acdc: + /@storybook/core-server/6.4.19_gqjg2tmv5vcd24pd3idedy2yy4: resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -11762,18 +11045,16 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.19_8469d84421212093500428258085ef2e - '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 - '@storybook/core-client': 6.4.19_d99be1b4f00e9434dc3d01c71c87961c - '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 + '@storybook/builder-webpack4': 6.4.19_gqjg2tmv5vcd24pd3idedy2yy4 + '@storybook/core-client': 6.4.19_vxxd7eurta744xzckejt5zslha + '@storybook/core-common': 6.4.19_u3faqwawpy6t3w4ivio7rphdly '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.19 - '@storybook/manager-webpack4': 6.4.19_8469d84421212093500428258085ef2e - '@storybook/manager-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/manager-webpack4': 6.4.19_gqjg2tmv5vcd24pd3idedy2yy4 '@storybook/node-logger': 6.4.19 '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react@17.0.2 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/node': 14.14.33 '@types/node-fetch': 2.6.1 '@types/pretty-hrtime': 1.0.1 @@ -11787,7 +11068,7 @@ packages: core-js: 3.21.1 cpy: 8.1.2 detect-port: 1.3.0 - express: 4.17.1 + express: 4.18.1 file-system-cache: 1.0.5 fs-extra: 9.1.0 globby: 11.1.0 @@ -11797,6 +11078,7 @@ packages: pretty-hrtime: 1.0.3 prompts: 2.4.2 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 slash: 3.0.0 @@ -11810,6 +11092,7 @@ packages: transitivePeerDependencies: - '@types/react' - acorn + - bluebird - bufferutil - encoding - eslint @@ -11820,7 +11103,7 @@ packages: - webpack-command dev: true - /@storybook/core-server/6.4.19_60ccbba86818d02b17e42a10157b06cd: + /@storybook/core-server/6.4.19_o5ne4vvf2abft7c7sfvmcfstwa: resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -11837,18 +11120,18 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.19_637ed751c9d518505c2a54210742b0dc - '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 - '@storybook/core-client': 6.4.19_d99be1b4f00e9434dc3d01c71c87961c - '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 + '@storybook/builder-webpack4': 6.4.19_m2iymrk5mj7uzxn4pokatvkani + '@storybook/builder-webpack5': 6.4.19_iopxtdjg5lx5qeu5nejjrbtkaa + '@storybook/core-client': 6.4.19_43gaa4yyddwaokoj4e3jn46cra + '@storybook/core-common': 6.4.19_kgza7ssibsmztbp7og4fdm6cqi '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.19 - '@storybook/manager-webpack4': 6.4.19_637ed751c9d518505c2a54210742b0dc - '@storybook/manager-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/manager-webpack4': 6.4.19_m2iymrk5mj7uzxn4pokatvkani + '@storybook/manager-webpack5': 6.4.19_iopxtdjg5lx5qeu5nejjrbtkaa '@storybook/node-logger': 6.4.19 '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react@17.0.2 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/node': 14.14.33 '@types/node-fetch': 2.6.1 '@types/pretty-hrtime': 1.0.1 @@ -11862,7 +11145,7 @@ packages: core-js: 3.21.1 cpy: 8.1.2 detect-port: 1.3.0 - express: 4.17.1 + express: 4.18.1 file-system-cache: 1.0.5 fs-extra: 9.1.0 globby: 11.1.0 @@ -11872,80 +11155,7 @@ packages: pretty-hrtime: 1.0.3 prompts: 2.4.2 react: 17.0.2 - regenerator-runtime: 0.13.9 - serve-favicon: 2.5.0 - slash: 3.0.0 - telejson: 5.3.3 - ts-dedent: 2.2.0 - typescript: 4.6.2 - util-deprecate: 1.0.2 - watchpack: 2.2.0 - webpack: 4.46.0_webpack-cli@3.3.12 - ws: 8.5.0 - transitivePeerDependencies: - - '@types/react' - - acorn - - bufferutil - - encoding - - eslint - - supports-color - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - - /@storybook/core-server/6.4.19_bd8532947d2e6ce2622b1981219456e8: - resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} - peerDependencies: - '@storybook/builder-webpack5': 6.4.19 - '@storybook/manager-webpack5': 6.4.19 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true - dependencies: - '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.19_typescript@4.2.4 - '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 - '@storybook/core-client': 6.4.19_typescript@4.2.4+webpack@4.46.0 - '@storybook/core-common': 6.4.19_typescript@4.2.4 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/csf-tools': 6.4.19 - '@storybook/manager-webpack4': 6.4.19_typescript@4.2.4 - '@storybook/manager-webpack5': 6.4.19_typescript@4.2.4 - '@storybook/node-logger': 6.4.19 - '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19 - '@types/node': 14.14.33 - '@types/node-fetch': 2.6.1 - '@types/pretty-hrtime': 1.0.1 - '@types/webpack': 4.41.32 - better-opn: 2.1.1 - boxen: 5.1.2 - chalk: 4.1.2 - cli-table3: 0.6.1 - commander: 6.2.1 - compression: 1.7.4 - core-js: 3.21.1 - cpy: 8.1.2 - detect-port: 1.3.0 - express: 4.17.1 - file-system-cache: 1.0.5 - fs-extra: 9.1.0 - globby: 11.1.0 - ip: 1.1.5 - lodash: 4.17.21 - node-fetch: 2.6.7 - pretty-hrtime: 1.0.3 - prompts: 2.4.2 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 slash: 3.0.0 @@ -11959,6 +11169,7 @@ packages: transitivePeerDependencies: - '@types/react' - acorn + - bluebird - bufferutil - encoding - eslint @@ -11969,7 +11180,7 @@ packages: - webpack-command dev: true - /@storybook/core-server/6.4.19_de51fed6d5568596cbb9a47b25330f0e: + /@storybook/core-server/6.4.19_u3faqwawpy6t3w4ivio7rphdly: resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -11986,18 +11197,16 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.19_ad5fc232a476648e022b673b2e1293fc - '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 - '@storybook/core-client': 6.4.19_typescript@4.6.2+webpack@4.46.0 - '@storybook/core-common': 6.4.19_ad5fc232a476648e022b673b2e1293fc + '@storybook/builder-webpack4': 6.4.19_u3faqwawpy6t3w4ivio7rphdly + '@storybook/core-client': 6.4.19_rhk7yz6mn2gv7fnythy2x7dhkm + '@storybook/core-common': 6.4.19_u3faqwawpy6t3w4ivio7rphdly '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.19 - '@storybook/manager-webpack4': 6.4.19_ad5fc232a476648e022b673b2e1293fc - '@storybook/manager-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/manager-webpack4': 6.4.19_u3faqwawpy6t3w4ivio7rphdly '@storybook/node-logger': 6.4.19 '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/node': 14.14.33 '@types/node-fetch': 2.6.1 '@types/pretty-hrtime': 1.0.1 @@ -12011,7 +11220,7 @@ packages: core-js: 3.21.1 cpy: 8.1.2 detect-port: 1.3.0 - express: 4.17.1 + express: 4.18.1 file-system-cache: 1.0.5 fs-extra: 9.1.0 globby: 11.1.0 @@ -12020,6 +11229,8 @@ packages: node-fetch: 2.6.7 pretty-hrtime: 1.0.3 prompts: 2.4.2 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 slash: 3.0.0 @@ -12033,6 +11244,7 @@ packages: transitivePeerDependencies: - '@types/react' - acorn + - bluebird - bufferutil - encoding - eslint @@ -12043,7 +11255,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.19_56153e2fc75ffe3d23f60c0ecebf9977: + /@storybook/core/6.4.19_2mhfuqncnjrqz5ubsl3hxnzln4: resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -12057,49 +11269,17 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 - '@storybook/core-client': 6.4.19_typescript@4.6.2+webpack@4.46.0 - '@storybook/core-server': 6.4.19_de51fed6d5568596cbb9a47b25330f0e - typescript: 4.6.2 - webpack: 4.46.0_webpack-cli@3.3.12 - transitivePeerDependencies: - - '@storybook/manager-webpack5' - - '@types/react' - - acorn - - bufferutil - - encoding - - eslint - - supports-color - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - - /@storybook/core/6.4.19_8524ae9d1d4e3afeee7c4e2470ee45fc: - resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} - peerDependencies: - '@storybook/builder-webpack5': 6.4.19 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - webpack: '*' - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - typescript: - optional: true - dependencies: - '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 - '@storybook/core-client': 6.4.19_98f22687148c9cf1bdeabebc76b1ed21 - '@storybook/core-server': 6.4.19_60ccbba86818d02b17e42a10157b06cd + '@storybook/core-client': 6.4.19_62e4mj2m4e7w2obm7cgxxbloyq + '@storybook/core-server': 6.4.19_426ma7r2xm33b3zalauaxawhau react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 typescript: 4.6.2 webpack: 5.70.0_webpack-cli@3.3.12 transitivePeerDependencies: - '@storybook/manager-webpack5' - '@types/react' - acorn + - bluebird - bufferutil - encoding - eslint @@ -12110,7 +11290,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.19_93bef303caea8dc93db67fc70693bb95: + /@storybook/core/6.4.19_7t6syfwqccqlf66wrqz2lvmopq: resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -12124,16 +11304,17 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 - '@storybook/core-client': 6.4.19_d99be1b4f00e9434dc3d01c71c87961c - '@storybook/core-server': 6.4.19_560e6d9d0dc6ba0e4a0e3ac9dfb0acdc + '@storybook/core-client': 6.4.19_vxxd7eurta744xzckejt5zslha + '@storybook/core-server': 6.4.19_gqjg2tmv5vcd24pd3idedy2yy4 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 typescript: 4.6.2 webpack: 4.46.0_webpack-cli@3.3.12 transitivePeerDependencies: - '@storybook/manager-webpack5' - '@types/react' - acorn + - bluebird - bufferutil - encoding - eslint @@ -12144,7 +11325,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.19_c15466773815ac7b8bfbbf8420ba0ee2: + /@storybook/core/6.4.19_gdwtcltjtjpiapnl7t5ygmg6nq: resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -12158,15 +11339,18 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 - '@storybook/core-client': 6.4.19_typescript@4.2.4+webpack@4.46.0 - '@storybook/core-server': 6.4.19_bd8532947d2e6ce2622b1981219456e8 + '@storybook/builder-webpack5': 6.4.19_iopxtdjg5lx5qeu5nejjrbtkaa + '@storybook/core-client': 6.4.19_43gaa4yyddwaokoj4e3jn46cra + '@storybook/core-server': 6.4.19_7d6xhl362e56xnulfklrnq4w4i + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 typescript: 4.2.4 webpack: 4.46.0 transitivePeerDependencies: - '@storybook/manager-webpack5' - '@types/react' - acorn + - bluebird - bufferutil - encoding - eslint @@ -12177,7 +11361,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.19_daa74e9ea57648d1383d4f5a915eef9c: + /@storybook/core/6.4.19_osykqqetktamzdfmbkje3vffse: resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -12191,15 +11375,53 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 - '@storybook/core-client': 6.4.19_typescript@4.2.4+webpack@5.70.0 - '@storybook/core-server': 6.4.19_32ff3fc743ba90b9723aa5427911cd5d + '@storybook/builder-webpack5': 6.4.19_iopxtdjg5lx5qeu5nejjrbtkaa + '@storybook/core-client': 6.4.19_b5hypkxpakg32eu5xvulb7gw2q + '@storybook/core-server': 6.4.19_o5ne4vvf2abft7c7sfvmcfstwa + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 typescript: 4.2.4 webpack: 5.70.0 transitivePeerDependencies: - '@storybook/manager-webpack5' - '@types/react' - acorn + - bluebird + - bufferutil + - encoding + - eslint + - supports-color + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/core/6.4.19_oua7nu3yubfn44vdgqoep6ejfa: + resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} + peerDependencies: + '@storybook/builder-webpack5': 6.4.19 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + typescript: + optional: true + dependencies: + '@storybook/core-client': 6.4.19_rhk7yz6mn2gv7fnythy2x7dhkm + '@storybook/core-server': 6.4.19_u3faqwawpy6t3w4ivio7rphdly + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + typescript: 4.6.2 + webpack: 4.46.0_webpack-cli@3.3.12 + transitivePeerDependencies: + - '@storybook/manager-webpack5' + - '@types/react' + - acorn + - bluebird - bufferutil - encoding - eslint @@ -12240,7 +11462,7 @@ packages: lodash: 4.17.21 dev: true - /@storybook/manager-webpack4/6.4.19_637ed751c9d518505c2a54210742b0dc: + /@storybook/manager-webpack4/6.4.19_426ma7r2xm33b3zalauaxawhau: resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -12253,20 +11475,20 @@ packages: '@babel/core': 7.17.8 '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19_react@17.0.2 - '@storybook/core-client': 6.4.19_d99be1b4f00e9434dc3d01c71c87961c - '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core-client': 6.4.19_vxxd7eurta744xzckejt5zslha + '@storybook/core-common': 6.4.19_u3faqwawpy6t3w4ivio7rphdly '@storybook/node-logger': 6.4.19 - '@storybook/theming': 6.4.19_react@17.0.2 - '@storybook/ui': 6.4.19_00d6772dea80510e818fd171caaa025a + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_6rln7q2jvtuewdvbdwpg4txtvm '@types/node': 14.14.33 '@types/webpack': 4.41.32 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.21.1 css-loader: 3.6.0_webpack@4.46.0 - express: 4.17.1 + express: 4.18.1 file-loader: 6.2.0_webpack@4.46.0 file-system-cache: 1.0.5 find-up: 5.0.0 @@ -12275,6 +11497,7 @@ packages: node-fetch: 2.6.7 pnp-webpack-plugin: 1.6.4_typescript@4.6.2 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -12283,7 +11506,7 @@ packages: terser-webpack-plugin: 4.2.3_acorn@7.4.1+webpack@4.46.0 ts-dedent: 2.2.0 typescript: 4.6.2 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0_webpack-cli@3.3.12 webpack-dev-middleware: 3.7.3_webpack@4.46.0 @@ -12291,6 +11514,7 @@ packages: transitivePeerDependencies: - '@types/react' - acorn + - bluebird - encoding - eslint - supports-color @@ -12299,7 +11523,7 @@ packages: - webpack-command dev: true - /@storybook/manager-webpack4/6.4.19_8469d84421212093500428258085ef2e: + /@storybook/manager-webpack4/6.4.19_gqjg2tmv5vcd24pd3idedy2yy4: resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -12312,20 +11536,20 @@ packages: '@babel/core': 7.17.8 '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19_react@17.0.2 - '@storybook/core-client': 6.4.19_d99be1b4f00e9434dc3d01c71c87961c - '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core-client': 6.4.19_vxxd7eurta744xzckejt5zslha + '@storybook/core-common': 6.4.19_u3faqwawpy6t3w4ivio7rphdly '@storybook/node-logger': 6.4.19 - '@storybook/theming': 6.4.19_react@17.0.2 - '@storybook/ui': 6.4.19_00d6772dea80510e818fd171caaa025a + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_6rln7q2jvtuewdvbdwpg4txtvm '@types/node': 14.14.33 '@types/webpack': 4.41.32 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.21.1 css-loader: 3.6.0_webpack@4.46.0 - express: 4.17.1 + express: 4.18.1 file-loader: 6.2.0_webpack@4.46.0 file-system-cache: 1.0.5 find-up: 5.0.0 @@ -12334,6 +11558,7 @@ packages: node-fetch: 2.6.7 pnp-webpack-plugin: 1.6.4_typescript@4.6.2 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -12342,7 +11567,7 @@ packages: terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 typescript: 4.6.2 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0_webpack-cli@3.3.12 webpack-dev-middleware: 3.7.3_webpack@4.46.0 @@ -12350,6 +11575,7 @@ packages: transitivePeerDependencies: - '@types/react' - acorn + - bluebird - encoding - eslint - supports-color @@ -12358,7 +11584,7 @@ packages: - webpack-command dev: true - /@storybook/manager-webpack4/6.4.19_acorn@7.4.1+typescript@4.2.4: + /@storybook/manager-webpack4/6.4.19_iopxtdjg5lx5qeu5nejjrbtkaa: resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -12371,20 +11597,20 @@ packages: '@babel/core': 7.17.8 '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19 - '@storybook/core-client': 6.4.19_typescript@4.2.4+webpack@4.46.0 - '@storybook/core-common': 6.4.19_typescript@4.2.4 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core-client': 6.4.19_43gaa4yyddwaokoj4e3jn46cra + '@storybook/core-common': 6.4.19_kgza7ssibsmztbp7og4fdm6cqi '@storybook/node-logger': 6.4.19 - '@storybook/theming': 6.4.19 - '@storybook/ui': 6.4.19 + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/node': 14.14.33 '@types/webpack': 4.41.32 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.21.1 css-loader: 3.6.0_webpack@4.46.0 - express: 4.17.1 + express: 4.18.1 file-loader: 6.2.0_webpack@4.46.0 file-system-cache: 1.0.5 find-up: 5.0.0 @@ -12392,6 +11618,69 @@ packages: html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.7 pnp-webpack-plugin: 1.6.4_typescript@4.2.4 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + read-pkg-up: 7.0.1 + regenerator-runtime: 0.13.9 + resolve-from: 5.0.0 + style-loader: 1.3.0_webpack@4.46.0 + telejson: 5.3.3 + terser-webpack-plugin: 4.2.3_acorn@8.7.0+webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.2.4 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy + util-deprecate: 1.0.2 + webpack: 4.46.0 + webpack-dev-middleware: 3.7.3_webpack@4.46.0 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - acorn + - bluebird + - encoding + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/manager-webpack4/6.4.19_m2iymrk5mj7uzxn4pokatvkani: + resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core-client': 6.4.19_43gaa4yyddwaokoj4e3jn46cra + '@storybook/core-common': 6.4.19_kgza7ssibsmztbp7og4fdm6cqi + '@storybook/node-logger': 6.4.19 + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@types/node': 14.14.33 + '@types/webpack': 4.41.32 + babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy + case-sensitive-paths-webpack-plugin: 2.4.0 + chalk: 4.1.2 + core-js: 3.21.1 + css-loader: 3.6.0_webpack@4.46.0 + express: 4.18.1 + file-loader: 6.2.0_webpack@4.46.0 + file-system-cache: 1.0.5 + find-up: 5.0.0 + fs-extra: 9.1.0 + html-webpack-plugin: 4.5.2_webpack@4.46.0 + node-fetch: 2.6.7 + pnp-webpack-plugin: 1.6.4_typescript@4.2.4 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -12400,7 +11689,7 @@ packages: terser-webpack-plugin: 4.2.3_acorn@7.4.1+webpack@4.46.0 ts-dedent: 2.2.0 typescript: 4.2.4 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 webpack-dev-middleware: 3.7.3_webpack@4.46.0 @@ -12408,6 +11697,7 @@ packages: transitivePeerDependencies: - '@types/react' - acorn + - bluebird - encoding - eslint - supports-color @@ -12416,7 +11706,7 @@ packages: - webpack-command dev: true - /@storybook/manager-webpack4/6.4.19_ad5fc232a476648e022b673b2e1293fc: + /@storybook/manager-webpack4/6.4.19_u3faqwawpy6t3w4ivio7rphdly: resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -12429,20 +11719,20 @@ packages: '@babel/core': 7.17.8 '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19 - '@storybook/core-client': 6.4.19_typescript@4.6.2+webpack@4.46.0 - '@storybook/core-common': 6.4.19_ad5fc232a476648e022b673b2e1293fc + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core-client': 6.4.19_rhk7yz6mn2gv7fnythy2x7dhkm + '@storybook/core-common': 6.4.19_u3faqwawpy6t3w4ivio7rphdly '@storybook/node-logger': 6.4.19 - '@storybook/theming': 6.4.19 - '@storybook/ui': 6.4.19 + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/node': 14.14.33 '@types/webpack': 4.41.32 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.21.1 css-loader: 3.6.0_webpack@4.46.0 - express: 4.17.1 + express: 4.18.1 file-loader: 6.2.0_webpack@4.46.0 file-system-cache: 1.0.5 find-up: 5.0.0 @@ -12450,6 +11740,8 @@ packages: html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.7 pnp-webpack-plugin: 1.6.4_typescript@4.6.2 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -12458,7 +11750,7 @@ packages: terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 typescript: 4.6.2 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0_webpack-cli@3.3.12 webpack-dev-middleware: 3.7.3_webpack@4.46.0 @@ -12466,6 +11758,7 @@ packages: transitivePeerDependencies: - '@types/react' - acorn + - bluebird - encoding - eslint - supports-color @@ -12474,65 +11767,7 @@ packages: - webpack-command dev: true - /@storybook/manager-webpack4/6.4.19_typescript@4.2.4: - resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@babel/core': 7.17.8 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 - '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19 - '@storybook/core-client': 6.4.19_typescript@4.2.4+webpack@4.46.0 - '@storybook/core-common': 6.4.19_typescript@4.2.4 - '@storybook/node-logger': 6.4.19 - '@storybook/theming': 6.4.19 - '@storybook/ui': 6.4.19 - '@types/node': 14.14.33 - '@types/webpack': 4.41.32 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe - case-sensitive-paths-webpack-plugin: 2.4.0 - chalk: 4.1.2 - core-js: 3.21.1 - css-loader: 3.6.0_webpack@4.46.0 - express: 4.17.1 - file-loader: 6.2.0_webpack@4.46.0 - file-system-cache: 1.0.5 - find-up: 5.0.0 - fs-extra: 9.1.0 - html-webpack-plugin: 4.5.2_webpack@4.46.0 - node-fetch: 2.6.7 - pnp-webpack-plugin: 1.6.4_typescript@4.2.4 - read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.9 - resolve-from: 5.0.0 - style-loader: 1.3.0_webpack@4.46.0 - telejson: 5.3.3 - terser-webpack-plugin: 4.2.3_webpack@4.46.0 - ts-dedent: 2.2.0 - typescript: 4.2.4 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 - util-deprecate: 1.0.2 - webpack: 4.46.0 - webpack-dev-middleware: 3.7.3_webpack@4.46.0 - webpack-virtual-modules: 0.2.2 - transitivePeerDependencies: - - '@types/react' - - acorn - - encoding - - eslint - - supports-color - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - - /@storybook/manager-webpack5/6.4.19_typescript@4.2.4: + /@storybook/manager-webpack5/6.4.19_iopxtdjg5lx5qeu5nejjrbtkaa: resolution: {integrity: sha512-hVjWhWAOgWaymBy0HeRskN+MfKLpqLP4Txfw+3Xqg1qplgexV0w2O4BQrS/SNEH4V/1qF9h8XTsk3L3oQIj3Mg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -12545,31 +11780,33 @@ packages: '@babel/core': 7.17.8 '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19 - '@storybook/core-client': 6.4.19_typescript@4.2.4+webpack@5.70.0 - '@storybook/core-common': 6.4.19_typescript@4.2.4 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core-client': 6.4.19_b5hypkxpakg32eu5xvulb7gw2q + '@storybook/core-common': 6.4.19_kgza7ssibsmztbp7og4fdm6cqi '@storybook/node-logger': 6.4.19 - '@storybook/theming': 6.4.19 - '@storybook/ui': 6.4.19 + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/ui': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/node': 14.14.33 - babel-loader: 8.2.3_fa907c5a4f16ccc493e21649ccc59574 + babel-loader: 8.2.3_7kihywspc3gmje7ccze4zrmvoq case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.21.1 css-loader: 5.2.7_webpack@5.70.0 - express: 4.17.1 + express: 4.18.1 file-system-cache: 1.0.5 find-up: 5.0.0 fs-extra: 9.1.0 - html-webpack-plugin: 5.5.0_webpack@5.70.0 + html-webpack-plugin: 5.5.0_acorn@8.7.0+webpack@5.70.0 node-fetch: 2.6.7 process: 0.11.10 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 style-loader: 2.0.0_webpack@5.70.0 telejson: 5.3.3 - terser-webpack-plugin: 5.2.5_webpack@5.70.0 + terser-webpack-plugin: 5.2.5_acorn@8.7.0+webpack@5.70.0 ts-dedent: 2.2.0 typescript: 4.2.4 util-deprecate: 1.0.2 @@ -12606,48 +11843,25 @@ packages: core-js: 3.21.1 dev: true - /@storybook/preview-web/6.4.19: + /@storybook/preview-web/6.4.19_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-jqltoBv5j7lvnxEfV9w8dLX9ASWGuvgz97yg8Yo5FqkftEwrHJenyvMGcTgDJKJPorF+wiz/9aIqnmd3LCAcZQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/addons': 6.4.19 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/channel-postmessage': 6.4.19 '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/store': 6.4.19 - ansi-to-html: 0.6.15 - core-js: 3.21.1 - global: 4.4.0 - lodash: 4.17.21 - qs: 6.10.3 - regenerator-runtime: 0.13.9 - synchronous-promise: 2.0.15 - ts-dedent: 2.2.0 - unfetch: 4.2.0 - util-deprecate: 1.0.2 - dev: true - - /@storybook/preview-web/6.4.19_react@17.0.2: - resolution: {integrity: sha512-jqltoBv5j7lvnxEfV9w8dLX9ASWGuvgz97yg8Yo5FqkftEwrHJenyvMGcTgDJKJPorF+wiz/9aIqnmd3LCAcZQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@storybook/addons': 6.4.19_react@17.0.2 - '@storybook/channel-postmessage': 6.4.19 - '@storybook/client-logger': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/store': 6.4.19_react@17.0.2 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m ansi-to-html: 0.6.15 core-js: 3.21.1 global: 4.4.0 lodash: 4.17.21 qs: 6.10.3 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 synchronous-promise: 2.0.15 ts-dedent: 2.2.0 @@ -12655,32 +11869,13 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/react-docgen-typescript-plugin/1.0.2-canary.253f8c1.0_typescript@4.2.4+webpack@4.46.0: + /@storybook/react-docgen-typescript-plugin/1.0.2-canary.253f8c1.0_7in6qbnjgkqokibdcer35wqugu: resolution: {integrity: sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw==} peerDependencies: typescript: '>= 3.x' webpack: '>= 4' dependencies: - debug: 4.3.3 - endent: 2.1.0 - find-cache-dir: 3.3.2 - flat-cache: 3.0.4 - micromatch: 4.0.4 - react-docgen-typescript: 2.2.2_typescript@4.2.4 - tslib: 2.3.1 - typescript: 4.2.4 - webpack: 4.46.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@storybook/react-docgen-typescript-plugin/1.0.2-canary.253f8c1.0_typescript@4.6.2+webpack@4.46.0: - resolution: {integrity: sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw==} - peerDependencies: - typescript: '>= 3.x' - webpack: '>= 4' - dependencies: - debug: 4.3.3 + debug: 4.3.4 endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.0.4 @@ -12693,7 +11888,91 @@ packages: - supports-color dev: true - /@storybook/react/6.4.19_1a3cbc393c8e54a301ca95e65ea44c36: + /@storybook/react-docgen-typescript-plugin/1.0.2-canary.253f8c1.0_e7hrjdrs22zc4syxbltzlwluhe: + resolution: {integrity: sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw==} + peerDependencies: + typescript: '>= 3.x' + webpack: '>= 4' + dependencies: + debug: 4.3.4 + endent: 2.1.0 + find-cache-dir: 3.3.2 + flat-cache: 3.0.4 + micromatch: 4.0.4 + react-docgen-typescript: 2.2.2_typescript@4.2.4 + tslib: 2.3.1 + typescript: 4.2.4 + webpack: 4.46.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@storybook/react/6.4.19_2rf5qxxh7hbwyjnlewt2ae7ylm: + resolution: {integrity: sha512-5b3i8jkVrjQGmcxxxXwCduHPIh+cluWkfeweKeQOe+lW4BR8fuUICo3AMLrYPAtB/UcaJyYkIYmTvF2mkfepFA==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + '@babel/core': ^7.11.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + '@babel/core': + optional: true + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/preset-flow': 7.16.7_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.1_a3gyllrqvxpec3fpybsrposvju + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core': 6.4.19_oua7nu3yubfn44vdgqoep6ejfa + '@storybook/core-common': 6.4.19_u3faqwawpy6t3w4ivio7rphdly + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/node-logger': 6.4.19 + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_7in6qbnjgkqokibdcer35wqugu + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@types/webpack-env': 1.16.3 + babel-plugin-add-react-displayname: 0.0.5 + babel-plugin-named-asset-import: 0.3.8_@babel+core@7.17.8 + babel-plugin-react-docgen: 4.2.1 + core-js: 3.21.1 + global: 4.4.0 + lodash: 4.17.21 + prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + react-refresh: 0.11.0 + read-pkg-up: 7.0.1 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + typescript: 4.6.2 + webpack: 4.46.0_webpack-cli@3.3.12 + transitivePeerDependencies: + - '@storybook/builder-webpack5' + - '@storybook/manager-webpack5' + - '@types/react' + - '@types/webpack' + - acorn + - bluebird + - bufferutil + - encoding + - eslint + - sockjs-client + - supports-color + - type-fest + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-command + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve + dev: true + + /@storybook/react/6.4.19_ehcptaz4xabpozflxv7cqxvegy: resolution: {integrity: sha512-5b3i8jkVrjQGmcxxxXwCduHPIh+cluWkfeweKeQOe+lW4BR8fuUICo3AMLrYPAtB/UcaJyYkIYmTvF2mkfepFA==} engines: {node: '>=10.13.0'} hasBin: true @@ -12711,15 +11990,15 @@ packages: '@babel/core': 7.12.9 '@babel/preset-flow': 7.16.7_@babel+core@7.12.9 '@babel/preset-react': 7.16.7_@babel+core@7.12.9 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.1_06cd85ae30adde416cafc06517ba554d - '@storybook/addons': 6.4.19 - '@storybook/core': 6.4.19_c15466773815ac7b8bfbbf8420ba0ee2 - '@storybook/core-common': 6.4.19_typescript@4.2.4 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.1_a3gyllrqvxpec3fpybsrposvju + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core': 6.4.19_gdwtcltjtjpiapnl7t5ygmg6nq + '@storybook/core-common': 6.4.19_kgza7ssibsmztbp7og4fdm6cqi '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.19 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_typescript@4.2.4+webpack@4.46.0 + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_e7hrjdrs22zc4syxbltzlwluhe '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/webpack-env': 1.16.3 babel-plugin-add-react-displayname: 0.0.5 babel-plugin-named-asset-import: 0.3.8_@babel+core@7.12.9 @@ -12728,6 +12007,8 @@ packages: global: 4.4.0 lodash: 4.17.21 prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 react-refresh: 0.11.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 @@ -12740,6 +12021,7 @@ packages: - '@types/react' - '@types/webpack' - acorn + - bluebird - bufferutil - encoding - eslint @@ -12755,7 +12037,7 @@ packages: - webpack-plugin-serve dev: true - /@storybook/react/6.4.19_ac71394bf7b79921297ea028da6e50ca: + /@storybook/react/6.4.19_otv2hfrmxpoqzd2wgrsryt4y3u: resolution: {integrity: sha512-5b3i8jkVrjQGmcxxxXwCduHPIh+cluWkfeweKeQOe+lW4BR8fuUICo3AMLrYPAtB/UcaJyYkIYmTvF2mkfepFA==} engines: {node: '>=10.13.0'} hasBin: true @@ -12773,15 +12055,15 @@ packages: '@babel/core': 7.17.8 '@babel/preset-flow': 7.16.7_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.1_06cd85ae30adde416cafc06517ba554d - '@storybook/addons': 6.4.19_react@17.0.2 - '@storybook/core': 6.4.19_93bef303caea8dc93db67fc70693bb95 - '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.1_a3gyllrqvxpec3fpybsrposvju + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core': 6.4.19_7t6syfwqccqlf66wrqz2lvmopq + '@storybook/core-common': 6.4.19_u3faqwawpy6t3w4ivio7rphdly '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.19 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_typescript@4.6.2+webpack@4.46.0 + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_7in6qbnjgkqokibdcer35wqugu '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react@17.0.2 + '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@types/webpack-env': 1.16.3 babel-plugin-add-react-displayname: 0.0.5 babel-plugin-named-asset-import: 0.3.8_@babel+core@7.17.8 @@ -12791,6 +12073,7 @@ packages: lodash: 4.17.21 prop-types: 15.8.1 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 react-refresh: 0.11.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 @@ -12803,6 +12086,7 @@ packages: - '@types/react' - '@types/webpack' - acorn + - bluebird - bufferutil - encoding - eslint @@ -12818,88 +12102,7 @@ packages: - webpack-plugin-serve dev: true - /@storybook/react/6.4.19_ce33fa78e84ed7674385e603320a18f7: - resolution: {integrity: sha512-5b3i8jkVrjQGmcxxxXwCduHPIh+cluWkfeweKeQOe+lW4BR8fuUICo3AMLrYPAtB/UcaJyYkIYmTvF2mkfepFA==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - '@babel/core': ^7.11.5 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - typescript: - optional: true - dependencies: - '@babel/core': 7.17.8 - '@babel/preset-flow': 7.16.7_@babel+core@7.17.8 - '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.1_06cd85ae30adde416cafc06517ba554d - '@storybook/addons': 6.4.19 - '@storybook/core': 6.4.19_56153e2fc75ffe3d23f60c0ecebf9977 - '@storybook/core-common': 6.4.19_ad5fc232a476648e022b673b2e1293fc - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/node-logger': 6.4.19 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_typescript@4.6.2+webpack@4.46.0 - '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19 - '@types/webpack-env': 1.16.3 - babel-plugin-add-react-displayname: 0.0.5 - babel-plugin-named-asset-import: 0.3.8_@babel+core@7.17.8 - babel-plugin-react-docgen: 4.2.1 - core-js: 3.21.1 - global: 4.4.0 - lodash: 4.17.21 - prop-types: 15.8.1 - react-refresh: 0.11.0 - read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.9 - ts-dedent: 2.2.0 - typescript: 4.6.2 - webpack: 4.46.0_webpack-cli@3.3.12 - transitivePeerDependencies: - - '@storybook/builder-webpack5' - - '@storybook/manager-webpack5' - - '@types/react' - - '@types/webpack' - - acorn - - bufferutil - - encoding - - eslint - - sockjs-client - - supports-color - - type-fest - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-command - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - dev: true - - /@storybook/router/6.4.19: - resolution: {integrity: sha512-KWWwIzuyeEIWVezkCihwY2A76Il9tUNg0I410g9qT7NrEsKyqXGRYOijWub7c1GGyNjLqz0jtrrehtixMcJkuA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@storybook/client-logger': 6.4.19 - core-js: 3.21.1 - fast-deep-equal: 3.1.3 - global: 4.4.0 - history: 5.0.0 - lodash: 4.17.21 - memoizerific: 1.11.3 - qs: 6.10.3 - react-router: 6.2.2 - react-router-dom: 6.2.2 - ts-dedent: 2.2.0 - dev: true - - /@storybook/router/6.4.19_react@17.0.2: + /@storybook/router/6.4.19_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-KWWwIzuyeEIWVezkCihwY2A76Il9tUNg0I410g9qT7NrEsKyqXGRYOijWub7c1GGyNjLqz0jtrrehtixMcJkuA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -12914,8 +12117,9 @@ packages: memoizerific: 1.11.3 qs: 6.10.3 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 react-router: 6.2.2_react@17.0.2 - react-router-dom: 6.2.2_react@17.0.2 + react-router-dom: 6.2.2_sfoxds7t5ydpegc3knd667wn6m ts-dedent: 2.2.0 dev: true @@ -12928,31 +12132,13 @@ packages: find-up: 4.1.0 dev: true - /@storybook/source-loader/6.4.19: + /@storybook/source-loader/6.4.19_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-XqTsqddRglvfW7mhyjwoqd/B8L6samcBehhO0OEbsFp6FPWa9eXuObCxtRYIcjcSIe+ksbW3D/54ppEs1L/g1Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/addons': 6.4.19 - '@storybook/client-logger': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - core-js: 3.21.1 - estraverse: 5.3.0 - global: 4.4.0 - loader-utils: 2.0.2 - lodash: 4.17.21 - prettier: 2.3.0 - regenerator-runtime: 0.13.9 - dev: true - - /@storybook/source-loader/6.4.19_react@17.0.2: - resolution: {integrity: sha512-XqTsqddRglvfW7mhyjwoqd/B8L6samcBehhO0OEbsFp6FPWa9eXuObCxtRYIcjcSIe+ksbW3D/54ppEs1L/g1Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 core-js: 3.21.1 @@ -12962,39 +12148,17 @@ packages: lodash: 4.17.21 prettier: 2.3.0 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 dev: true - /@storybook/store/6.4.19: + /@storybook/store/6.4.19_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-N9/ZjemRHGfT3InPIbqQqc6snkcfnf3Qh9oOr0smbfaVGJol//KOX65kzzobtzFcid0WxtTDZ3HmgFVH+GvuhQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/addons': 6.4.19 - '@storybook/client-logger': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - core-js: 3.21.1 - fast-deep-equal: 3.1.3 - global: 4.4.0 - lodash: 4.17.21 - memoizerific: 1.11.3 - regenerator-runtime: 0.13.9 - slash: 3.0.0 - stable: 0.1.8 - synchronous-promise: 2.0.15 - ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - dev: true - - /@storybook/store/6.4.19_react@17.0.2: - resolution: {integrity: sha512-N9/ZjemRHGfT3InPIbqQqc6snkcfnf3Qh9oOr0smbfaVGJol//KOX65kzzobtzFcid0WxtTDZ3HmgFVH+GvuhQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 @@ -13004,6 +12168,7 @@ packages: lodash: 4.17.21 memoizerific: 1.11.3 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 slash: 3.0.0 stable: 0.1.8 @@ -13012,27 +12177,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/theming/6.4.19: - resolution: {integrity: sha512-V4pWmTvAxmbHR6B3jA4hPkaxZPyExHvCToy7b76DpUTpuHihijNDMAn85KhOQYIeL9q14zP/aiz899tOHsOidg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@emotion/core': 10.3.1 - '@emotion/is-prop-valid': 0.8.8 - '@emotion/styled': 10.3.0_@emotion+core@10.3.1 - '@storybook/client-logger': 6.4.19 - core-js: 3.21.1 - deep-object-diff: 1.1.7 - emotion-theming: 10.3.0_@emotion+core@10.3.1 - global: 4.4.0 - memoizerific: 1.11.3 - polished: 4.1.4 - resolve-from: 5.0.0 - ts-dedent: 2.2.0 - dev: true - - /@storybook/theming/6.4.19_react@17.0.2: + /@storybook/theming/6.4.19_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-V4pWmTvAxmbHR6B3jA4hPkaxZPyExHvCToy7b76DpUTpuHihijNDMAn85KhOQYIeL9q14zP/aiz899tOHsOidg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -13040,78 +12185,41 @@ packages: dependencies: '@emotion/core': 10.3.1_react@17.0.2 '@emotion/is-prop-valid': 0.8.8 - '@emotion/styled': 10.3.0_316248eb6686a2fd4fbadcfd00de37f3 + '@emotion/styled': 10.3.0_gfrer23gq2rp2t523t6qbxrx6m '@storybook/client-logger': 6.4.19 core-js: 3.21.1 deep-object-diff: 1.1.7 - emotion-theming: 10.3.0_316248eb6686a2fd4fbadcfd00de37f3 + emotion-theming: 10.3.0_gfrer23gq2rp2t523t6qbxrx6m global: 4.4.0 memoizerific: 1.11.3 polished: 4.1.4 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 resolve-from: 5.0.0 ts-dedent: 2.2.0 dev: true - /@storybook/ui/6.4.19: - resolution: {integrity: sha512-gFwdn5LA2U6oQ4bfUFLyHZnNasGQ01YVdwjbi+l6yjmnckBNtZfJoVTZ1rzGUbxSE9rK48InJRU+latTsr7xAg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@emotion/core': 10.3.1 - '@storybook/addons': 6.4.19 - '@storybook/api': 6.4.19 - '@storybook/channels': 6.4.19 - '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/router': 6.4.19 - '@storybook/semver': 7.3.2 - '@storybook/theming': 6.4.19 - copy-to-clipboard: 3.3.1 - core-js: 3.21.1 - core-js-pure: 3.19.1 - downshift: 6.1.7 - emotion-theming: 10.3.0_@emotion+core@10.3.1 - fuse.js: 3.6.1 - global: 4.4.0 - lodash: 4.17.21 - markdown-to-jsx: 7.1.7 - memoizerific: 1.11.3 - polished: 4.1.4 - qs: 6.10.3 - react-draggable: 4.4.4 - react-helmet-async: 1.2.3 - react-sizeme: 3.0.2 - regenerator-runtime: 0.13.9 - resolve-from: 5.0.0 - store2: 2.13.2 - transitivePeerDependencies: - - '@types/react' - dev: true - - /@storybook/ui/6.4.19_00d6772dea80510e818fd171caaa025a: + /@storybook/ui/6.4.19_6rln7q2jvtuewdvbdwpg4txtvm: resolution: {integrity: sha512-gFwdn5LA2U6oQ4bfUFLyHZnNasGQ01YVdwjbi+l6yjmnckBNtZfJoVTZ1rzGUbxSE9rK48InJRU+latTsr7xAg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: '@emotion/core': 10.3.1_react@17.0.2 - '@storybook/addons': 6.4.19_react@17.0.2 - '@storybook/api': 6.4.19_react@17.0.2 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/channels': 6.4.19 '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a + '@storybook/components': 6.4.19_6rln7q2jvtuewdvbdwpg4txtvm '@storybook/core-events': 6.4.19 - '@storybook/router': 6.4.19_react@17.0.2 + '@storybook/router': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/semver': 7.3.2 - '@storybook/theming': 6.4.19_react@17.0.2 + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m copy-to-clipboard: 3.3.1 core-js: 3.21.1 core-js-pure: 3.19.1 downshift: 6.1.7_react@17.0.2 - emotion-theming: 10.3.0_316248eb6686a2fd4fbadcfd00de37f3 + emotion-theming: 10.3.0_gfrer23gq2rp2t523t6qbxrx6m fuse.js: 3.6.1 global: 4.4.0 lodash: 4.17.21 @@ -13120,8 +12228,9 @@ packages: polished: 4.1.4 qs: 6.10.3 react: 17.0.2 - react-draggable: 4.4.4_react@17.0.2 - react-helmet-async: 1.2.3_react@17.0.2 + react-dom: 17.0.2_react@17.0.2 + react-draggable: 4.4.4_sfoxds7t5ydpegc3knd667wn6m + react-helmet-async: 1.2.3_sfoxds7t5ydpegc3knd667wn6m react-sizeme: 3.0.2 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -13130,7 +12239,47 @@ packages: - '@types/react' dev: true - /@stylelint/postcss-css-in-js/0.37.2_4f7b71a942b8b7a555b8adf78f88122b: + /@storybook/ui/6.4.19_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-gFwdn5LA2U6oQ4bfUFLyHZnNasGQ01YVdwjbi+l6yjmnckBNtZfJoVTZ1rzGUbxSE9rK48InJRU+latTsr7xAg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@emotion/core': 10.3.1_react@17.0.2 + '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/channels': 6.4.19 + '@storybook/client-logger': 6.4.19 + '@storybook/components': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/core-events': 6.4.19 + '@storybook/router': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + '@storybook/semver': 7.3.2 + '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m + copy-to-clipboard: 3.3.1 + core-js: 3.21.1 + core-js-pure: 3.19.1 + downshift: 6.1.7_react@17.0.2 + emotion-theming: 10.3.0_gfrer23gq2rp2t523t6qbxrx6m + fuse.js: 3.6.1 + global: 4.4.0 + lodash: 4.17.21 + markdown-to-jsx: 7.1.7_react@17.0.2 + memoizerific: 1.11.3 + polished: 4.1.4 + qs: 6.10.3 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + react-draggable: 4.4.4_sfoxds7t5ydpegc3knd667wn6m + react-helmet-async: 1.2.3_sfoxds7t5ydpegc3knd667wn6m + react-sizeme: 3.0.2 + regenerator-runtime: 0.13.9 + resolve-from: 5.0.0 + store2: 2.13.2 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@stylelint/postcss-css-in-js/0.37.2_j55xdkkcxc32kvnyvx3y7casfm: resolution: {integrity: sha512-nEhsFoJurt8oUmieT8qy4nk81WRHmJynmVwn/Vts08PL9fhgIsMhk1GId5yAN643OzqEEb5S/6At2TZW7pqPDA==} peerDependencies: postcss: '>=7.0.0' @@ -13138,12 +12287,12 @@ packages: dependencies: '@babel/core': 7.17.8 postcss: 7.0.39 - postcss-syntax: 0.36.2_postcss@7.0.39 + postcss-syntax: 0.36.2_kei4jy7wdgbhc236h4oijypxom transitivePeerDependencies: - supports-color dev: true - /@stylelint/postcss-markdown/0.36.2_4f7b71a942b8b7a555b8adf78f88122b: + /@stylelint/postcss-markdown/0.36.2_j55xdkkcxc32kvnyvx3y7casfm: resolution: {integrity: sha512-2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ==} deprecated: 'Use the original unforked package instead: postcss-markdown' peerDependencies: @@ -13151,7 +12300,7 @@ packages: postcss-syntax: '>=0.36.2' dependencies: postcss: 7.0.39 - postcss-syntax: 0.36.2_postcss@7.0.39 + postcss-syntax: 0.36.2_kei4jy7wdgbhc236h4oijypxom remark: 13.0.0 unist-util-find-all-after: 3.0.2 transitivePeerDependencies: @@ -13320,27 +12469,7 @@ packages: lodash: 4.17.21 redent: 3.0.0 - /@testing-library/react-hooks/7.0.2: - resolution: {integrity: sha512-dYxpz8u9m4q1TuzfcUApqi8iFfR6R0FaMbr2hjZJy1uC8z+bO/K4v8Gs9eogGKYQop7QsrBTFkv/BCF7MzD2Cg==} - engines: {node: '>=12'} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' - react-test-renderer: '>=16.9.0' - peerDependenciesMeta: - react-dom: - optional: true - react-test-renderer: - optional: true - dependencies: - '@babel/runtime': 7.17.7 - '@types/react': 17.0.40 - '@types/react-dom': 17.0.13 - '@types/react-test-renderer': 17.0.1 - react-error-boundary: 3.1.4 - dev: true - - /@testing-library/react-hooks/7.0.2_react-dom@17.0.2+react@17.0.2: + /@testing-library/react-hooks/7.0.2_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-dYxpz8u9m4q1TuzfcUApqi8iFfR6R0FaMbr2hjZJy1uC8z+bO/K4v8Gs9eogGKYQop7QsrBTFkv/BCF7MzD2Cg==} engines: {node: '>=12'} peerDependencies: @@ -13362,18 +12491,7 @@ packages: react-error-boundary: 3.1.4_react@17.0.2 dev: true - /@testing-library/react/12.1.4: - resolution: {integrity: sha512-jiPKOm7vyUw311Hn/HlNQ9P8/lHNtArAx0PisXyFixDDvfl8DbD6EUdbshK5eqauvBSvzZd19itqQ9j3nferJA==} - engines: {node: '>=12'} - peerDependencies: - react: '*' - react-dom: '*' - dependencies: - '@babel/runtime': 7.17.7 - '@testing-library/dom': 8.11.3 - '@types/react-dom': 17.0.13 - - /@testing-library/react/12.1.4_react-dom@17.0.2+react@17.0.2: + /@testing-library/react/12.1.4_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-jiPKOm7vyUw311Hn/HlNQ9P8/lHNtArAx0PisXyFixDDvfl8DbD6EUdbshK5eqauvBSvzZd19itqQ9j3nferJA==} engines: {node: '>=12'} peerDependencies: @@ -13385,22 +12503,8 @@ packages: '@types/react-dom': 17.0.13 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - dev: true - /@testing-library/react/12.1.4_react@17.0.2: - resolution: {integrity: sha512-jiPKOm7vyUw311Hn/HlNQ9P8/lHNtArAx0PisXyFixDDvfl8DbD6EUdbshK5eqauvBSvzZd19itqQ9j3nferJA==} - engines: {node: '>=12'} - peerDependencies: - react: '*' - react-dom: '*' - dependencies: - '@babel/runtime': 7.17.7 - '@testing-library/dom': 8.11.3 - '@types/react-dom': 17.0.13 - react: 17.0.2 - dev: true - - /@testing-library/user-event/13.5.0_@testing-library+dom@8.11.3: + /@testing-library/user-event/13.5.0_gzufz4q333be4gqfrvipwvqt6a: resolution: {integrity: sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==} engines: {node: '>=10', npm: '>=6'} peerDependencies: @@ -13424,18 +12528,14 @@ packages: engines: {node: '>=10.13.0'} dev: true - /@tsconfig/node10/1.0.8: - resolution: {integrity: sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==} + /@tsconfig/node10/1.0.9: + resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} - /@tsconfig/node12/1.0.9: - resolution: {integrity: sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw==} + /@tsconfig/node12/1.0.11: + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - /@tsconfig/node14/1.0.1: - resolution: {integrity: sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==} - - /@tsconfig/node16/1.0.2: - resolution: {integrity: sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==} - dev: true + /@tsconfig/node14/1.0.3: + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} /@tsconfig/node16/1.0.3: resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} @@ -13543,7 +12643,6 @@ packages: dependencies: '@types/eslint': 7.29.0 '@types/estree': 0.0.51 - dev: true /@types/eslint-visitor-keys/1.0.0: resolution: {integrity: sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==} @@ -13554,11 +12653,9 @@ packages: dependencies: '@types/estree': 0.0.51 '@types/json-schema': 7.0.9 - dev: true /@types/estree/0.0.51: resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - dev: true /@types/expect-puppeteer/4.4.7: resolution: {integrity: sha512-C5UHvCNTmjiGAVU5XyzR7xmZPRF/+YfpSd746Gd4ytcSpLT+/ke1EzrpDhO0OqqtpExQvr8M4qb0md9tybq7XA==} @@ -13571,19 +12668,19 @@ packages: resolution: {integrity: sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==} dev: true - /@types/express-serve-static-core/4.17.30: - resolution: {integrity: sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ==} + /@types/express-serve-static-core/4.17.31: + resolution: {integrity: sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==} dependencies: '@types/node': 17.0.21 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 dev: true - /@types/express/4.17.13: - resolution: {integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==} + /@types/express/4.17.14: + resolution: {integrity: sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==} dependencies: '@types/body-parser': 1.19.2 - '@types/express-serve-static-core': 4.17.30 + '@types/express-serve-static-core': 4.17.31 '@types/qs': 6.9.7 '@types/serve-static': 1.15.0 dev: true @@ -13867,8 +12964,8 @@ packages: /@types/scheduler/0.16.2: resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} - /@types/semver/7.3.10: - resolution: {integrity: sha512-zsv3fsC7S84NN6nPK06u79oWgrPVd0NvOyqgghV1haPaFcVxIrP4DLomRwGAXk0ui4HZA7mOcSFL98sMVW9viw==} + /@types/semver/7.3.12: + resolution: {integrity: sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==} dev: false /@types/serve-static/1.15.0: @@ -13889,7 +12986,7 @@ packages: resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} /@types/strip-ansi/3.0.0: - resolution: {integrity: sha1-m2PUU6a1SqhJGCIHcRoIvo7qSK4=} + resolution: {integrity: sha512-wVhzc+WJ/JNdV25MeaK0skxGdbdOFeqYv1sqY8yPXbsshZ0XwSbWWwfKzj836cPW+e+PpqUNvKoiac9ZqCdyRQ==} dev: false /@types/tapable/1.0.8: @@ -13953,48 +13050,33 @@ packages: source-map: 0.6.1 dev: true - /@types/wordpress__block-editor/7.0.0_react@17.0.2: + /@types/wordpress__block-editor/7.0.0_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-JERpxKAQ7J07C2wtKxr+5ZE9NETIcpu0EiXuXka6Qmrq74oOypdy9jYdhMIYBDMOx4ptR3ne7edaFb2+1SBcqA==} dependencies: '@types/react': 17.0.40 - '@types/wordpress__blocks': 11.0.6_react@17.0.2 - '@types/wordpress__components': 19.10.1_react@17.0.2 + '@types/wordpress__blocks': 11.0.6_sfoxds7t5ydpegc3knd667wn6m + '@types/wordpress__components': 19.10.1_sfoxds7t5ydpegc3knd667wn6m '@types/wordpress__data': 6.0.0 '@types/wordpress__keycodes': 2.3.1 '@wordpress/element': 4.14.0 - react-autosize-textarea: 7.1.0_react@17.0.2 + react-autosize-textarea: 7.1.0_sfoxds7t5ydpegc3knd667wn6m transitivePeerDependencies: - react - react-dom dev: true - /@types/wordpress__blocks/11.0.6_react@17.0.2: + /@types/wordpress__blocks/11.0.6_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-VMLFFMSExFqaWTQOX4Pj3I8TiMQD4fuNIpu0FJNJWqHztli6wNwP68oqWkz5O2N/e1YaxzgSFE9xl5j6IXriDw==} dependencies: '@types/react': 17.0.40 - '@types/wordpress__components': 19.10.1_react@17.0.2 + '@types/wordpress__components': 19.10.1_sfoxds7t5ydpegc3knd667wn6m '@wordpress/element': 4.14.0 transitivePeerDependencies: - react - react-dom dev: true - /@types/wordpress__components/19.10.1: - resolution: {integrity: sha512-zD+lrwMkh8ttnUQb6EUYZ55q6QGIwqqg0SfD8xX0kdinx/1KMKMUgInMkiVQ8ky56BIzADiYH3+A0Pdh76GAxw==} - dependencies: - '@types/react': 17.0.40 - '@types/tinycolor2': 1.4.3 - '@types/wordpress__notices': 3.5.0 - '@types/wordpress__rich-text': 3.4.6 - '@wordpress/element': 4.8.0 - downshift: 6.1.9 - re-resizable: 6.9.5 - transitivePeerDependencies: - - react - - react-dom - dev: true - - /@types/wordpress__components/19.10.1_react-dom@17.0.2+react@17.0.2: + /@types/wordpress__components/19.10.1_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-zD+lrwMkh8ttnUQb6EUYZ55q6QGIwqqg0SfD8xX0kdinx/1KMKMUgInMkiVQ8ky56BIzADiYH3+A0Pdh76GAxw==} dependencies: '@types/react': 17.0.40 @@ -14003,22 +13085,7 @@ packages: '@types/wordpress__rich-text': 3.4.6 '@wordpress/element': 4.8.0 downshift: 6.1.9_react@17.0.2 - re-resizable: 6.9.5_react-dom@17.0.2+react@17.0.2 - transitivePeerDependencies: - - react - - react-dom - dev: true - - /@types/wordpress__components/19.10.1_react@17.0.2: - resolution: {integrity: sha512-zD+lrwMkh8ttnUQb6EUYZ55q6QGIwqqg0SfD8xX0kdinx/1KMKMUgInMkiVQ8ky56BIzADiYH3+A0Pdh76GAxw==} - dependencies: - '@types/react': 17.0.40 - '@types/tinycolor2': 1.4.3 - '@types/wordpress__notices': 3.5.0 - '@types/wordpress__rich-text': 3.4.6 - '@wordpress/element': 4.8.0 - downshift: 6.1.9_react@17.0.2 - re-resizable: 6.9.5_react@17.0.2 + re-resizable: 6.9.5_sfoxds7t5ydpegc3knd667wn6m transitivePeerDependencies: - react - react-dom @@ -14054,10 +13121,10 @@ packages: resolution: {integrity: sha512-CUZv3WdPvWqnEwojbc4yEttwZlvsMGI8YurgB9CHVJXx6nQ4U2RU6PB0Mv7nxATufduFDMKq8TNpCHBenZqEjQ==} dev: true - /@types/wordpress__media-utils/3.0.0_react@17.0.2: + /@types/wordpress__media-utils/3.0.0_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-iNQoyc9BD8HevjABZPh4L2bKEy/UYMb8+iswjn8AgUYjBpu8Y1x+9f+Zc6JRu/HEsFyEprY5LjSOxRLjti1gRQ==} dependencies: - '@types/wordpress__block-editor': 7.0.0_react@17.0.2 + '@types/wordpress__block-editor': 7.0.0_sfoxds7t5ydpegc3knd667wn6m '@types/wordpress__core-data': 2.4.5 '@wordpress/element': 4.8.0 transitivePeerDependencies: @@ -14077,11 +13144,11 @@ packages: '@types/react': 17.0.40 dev: true - /@types/wordpress__plugins/3.0.0_react-dom@17.0.2+react@17.0.2: + /@types/wordpress__plugins/3.0.0_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-P/Jkp0e1oLXLN34i5/U6JgBiZGjln6oDkHOLiNGF2yB9l+BkScV4aXQyLmOiib91kUvfGdK3+Pb+skecs474cA==} dependencies: '@types/react': 17.0.40 - '@types/wordpress__components': 19.10.1_react-dom@17.0.2+react@17.0.2 + '@types/wordpress__components': 19.10.1_sfoxds7t5ydpegc3knd667wn6m '@wordpress/element': 3.2.0 transitivePeerDependencies: - react @@ -14129,7 +13196,7 @@ packages: dev: true optional: true - /@typescript-eslint/eslint-plugin/3.10.1_aab05197bc2ab2306ca58e96baf5381b: + /@typescript-eslint/eslint-plugin/3.10.1_vkyfdf54fkzda3ffr2llv5jydm: resolution: {integrity: sha512-PQg0emRtzZFWq6PxBcdxRH3QIQiyFO3WCVpRL3fgj5oQS3CDs3AeAKfv4DxNhzn8ITdNJGJ4D3Qw8eAJf3lXeQ==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -14140,20 +13207,20 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 3.10.1_eslint@6.8.0+typescript@3.9.7 - '@typescript-eslint/parser': 3.10.1_eslint@6.8.0+typescript@3.9.7 - debug: 4.3.2 + '@typescript-eslint/experimental-utils': 3.10.1_x6qkcl3khy3aa3bbfxwmcukvzu + '@typescript-eslint/parser': 3.10.1_x6qkcl3khy3aa3bbfxwmcukvzu + debug: 4.3.4 eslint: 6.8.0 functional-red-black-tree: 1.0.1 regexpp: 3.2.0 - semver: 7.3.5 + semver: 7.3.7 tsutils: 3.21.0_typescript@3.9.7 typescript: 3.9.7 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/4.33.0_d337b069968294b7daf1a5fc7d23d391: + /@typescript-eslint/eslint-plugin/4.33.0_3ekaj7j3owlolnuhj3ykrb7u7i: resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -14164,22 +13231,22 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 4.33.0_eslint@7.32.0+typescript@4.2.4 - '@typescript-eslint/parser': 4.33.0_eslint@7.32.0+typescript@4.2.4 + '@typescript-eslint/experimental-utils': 4.33.0_hxadhbs2xogijvk7vq4t2azzbu + '@typescript-eslint/parser': 4.33.0_hxadhbs2xogijvk7vq4t2azzbu '@typescript-eslint/scope-manager': 4.33.0 debug: 4.3.4 eslint: 7.32.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 - semver: 7.3.5 - tsutils: 3.21.0_typescript@4.2.4 - typescript: 4.2.4 + semver: 7.3.7 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.15.0_c8b324c35d270b9e6d84e3592e846620: + /@typescript-eslint/eslint-plugin/5.15.0_6lcjzz6q5e7lz7nuw7jfwey3fa: resolution: {integrity: sha512-u6Db5JfF0Esn3tiAKELvoU5TpXVSkOpZ78cEGn/wXtT2RVqs2vkt4ge6N8cRCyw7YVKhmmLDbwI2pg92mlv7cA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14190,88 +13257,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.15.0_eslint@8.12.0+typescript@4.6.2 + '@typescript-eslint/parser': 5.15.0_ynv3edxl3ah44xwgrna2g2yine '@typescript-eslint/scope-manager': 5.15.0 - '@typescript-eslint/type-utils': 5.15.0_eslint@8.12.0+typescript@4.6.2 - '@typescript-eslint/utils': 5.15.0_eslint@8.12.0+typescript@4.6.2 - debug: 4.3.3 - eslint: 8.12.0 - functional-red-black-tree: 1.0.1 - ignore: 5.2.0 - regexpp: 3.2.0 - semver: 7.3.5 - tsutils: 3.21.0_typescript@4.6.2 - typescript: 4.6.2 - transitivePeerDependencies: - - supports-color - - /@typescript-eslint/eslint-plugin/5.15.0_db3cd493186c3234b80a3843c7aaf877: - resolution: {integrity: sha512-u6Db5JfF0Esn3tiAKELvoU5TpXVSkOpZ78cEGn/wXtT2RVqs2vkt4ge6N8cRCyw7YVKhmmLDbwI2pg92mlv7cA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/parser': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/parser': 5.15.0_typescript@4.2.4 - '@typescript-eslint/scope-manager': 5.15.0 - '@typescript-eslint/type-utils': 5.15.0_typescript@4.2.4 - '@typescript-eslint/utils': 5.15.0_typescript@4.2.4 - debug: 4.3.3 - functional-red-black-tree: 1.0.1 - ignore: 5.2.0 - regexpp: 3.2.0 - semver: 7.3.5 - tsutils: 3.21.0_typescript@4.2.4 - typescript: 4.2.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/eslint-plugin/5.15.0_eslint@8.12.0+typescript@4.6.2: - resolution: {integrity: sha512-u6Db5JfF0Esn3tiAKELvoU5TpXVSkOpZ78cEGn/wXtT2RVqs2vkt4ge6N8cRCyw7YVKhmmLDbwI2pg92mlv7cA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/parser': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 5.15.0 - '@typescript-eslint/type-utils': 5.15.0_eslint@8.12.0+typescript@4.6.2 - '@typescript-eslint/utils': 5.15.0_eslint@8.12.0+typescript@4.6.2 - debug: 4.3.3 - eslint: 8.12.0 - functional-red-black-tree: 1.0.1 - ignore: 5.2.0 - regexpp: 3.2.0 - semver: 7.3.5 - tsutils: 3.21.0_typescript@4.6.2 - typescript: 4.6.2 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/eslint-plugin/5.15.0_f2c49ce7d0e93ebcfdb4b7d25b131b28: - resolution: {integrity: sha512-u6Db5JfF0Esn3tiAKELvoU5TpXVSkOpZ78cEGn/wXtT2RVqs2vkt4ge6N8cRCyw7YVKhmmLDbwI2pg92mlv7cA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/parser': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/parser': 5.15.0_eslint@8.11.0+typescript@4.6.2 - '@typescript-eslint/scope-manager': 5.15.0 - '@typescript-eslint/type-utils': 5.15.0_eslint@8.11.0+typescript@4.6.2 - '@typescript-eslint/utils': 5.15.0_eslint@8.11.0+typescript@4.6.2 + '@typescript-eslint/type-utils': 5.15.0_ynv3edxl3ah44xwgrna2g2yine + '@typescript-eslint/utils': 5.15.0_ynv3edxl3ah44xwgrna2g2yine debug: 4.3.3 eslint: 8.11.0 functional-red-black-tree: 1.0.1 @@ -14284,7 +13273,60 @@ packages: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.3.0_ef742ec0d85d332d26b421951e243e75: + /@typescript-eslint/eslint-plugin/5.15.0_atr5zsmgmhbxx42ytq7ef6lbhi: + resolution: {integrity: sha512-u6Db5JfF0Esn3tiAKELvoU5TpXVSkOpZ78cEGn/wXtT2RVqs2vkt4ge6N8cRCyw7YVKhmmLDbwI2pg92mlv7cA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/parser': 5.15.0_7bdza2waopngrtr4qhziihsire + '@typescript-eslint/scope-manager': 5.15.0 + '@typescript-eslint/type-utils': 5.15.0_7bdza2waopngrtr4qhziihsire + '@typescript-eslint/utils': 5.15.0_7bdza2waopngrtr4qhziihsire + debug: 4.3.3 + eslint: 8.12.0 + functional-red-black-tree: 1.0.1 + ignore: 5.2.0 + regexpp: 3.2.0 + semver: 7.3.5 + tsutils: 3.21.0_typescript@4.2.4 + typescript: 4.2.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/eslint-plugin/5.15.0_zczsjq25e4fz43me4nms5bdgea: + resolution: {integrity: sha512-u6Db5JfF0Esn3tiAKELvoU5TpXVSkOpZ78cEGn/wXtT2RVqs2vkt4ge6N8cRCyw7YVKhmmLDbwI2pg92mlv7cA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/parser': 5.15.0_qfndwjbknwkswbha2khu23tpva + '@typescript-eslint/scope-manager': 5.15.0 + '@typescript-eslint/type-utils': 5.15.0_qfndwjbknwkswbha2khu23tpva + '@typescript-eslint/utils': 5.15.0_qfndwjbknwkswbha2khu23tpva + debug: 4.3.3 + eslint: 8.12.0 + functional-red-black-tree: 1.0.1 + ignore: 5.2.0 + regexpp: 3.2.0 + semver: 7.3.5 + tsutils: 3.21.0_typescript@4.6.2 + typescript: 4.6.2 + transitivePeerDependencies: + - supports-color + + /@typescript-eslint/eslint-plugin/5.3.0_bxzhylcjqw6xv25czibwuei3cm: resolution: {integrity: sha512-ARUEJHJrq85aaiCqez7SANeahDsJTD3AEua34EoQN9pHS6S5Bq9emcIaGGySt/4X2zSi+vF5hAH52sEen7IO7g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14295,22 +13337,22 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 5.3.0_eslint@8.1.0+typescript@4.2.4 - '@typescript-eslint/parser': 5.3.0_eslint@8.1.0+typescript@4.2.4 + '@typescript-eslint/experimental-utils': 5.3.0_f662wmtjhhyn6wvwljgximehn4 + '@typescript-eslint/parser': 5.3.0_f662wmtjhhyn6wvwljgximehn4 '@typescript-eslint/scope-manager': 5.3.0 debug: 4.3.2 - eslint: 8.1.0 + eslint: 8.12.0 functional-red-black-tree: 1.0.1 ignore: 5.1.8 regexpp: 3.2.0 semver: 7.3.5 - tsutils: 3.21.0_typescript@4.2.4 - typescript: 4.2.4 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.4.0_b983626bd16070d34b18187cb6bde052: + /@typescript-eslint/eslint-plugin/5.4.0_xgbwe26rmbyngsyydb6lnppaki: resolution: {integrity: sha512-9/yPSBlwzsetCsGEn9j24D8vGQgJkOTr4oMLas/w886ZtzKIs1iyoqFrwsX2fqYEeUwsdBpC21gcjRGo57u0eg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14321,8 +13363,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 5.4.0_eslint@8.2.0+typescript@4.4.4 - '@typescript-eslint/parser': 5.4.0_eslint@8.2.0+typescript@4.4.4 + '@typescript-eslint/experimental-utils': 5.4.0_dpa3fc6zkz7v3bcs7pcctk7gra + '@typescript-eslint/parser': 5.4.0_dpa3fc6zkz7v3bcs7pcctk7gra '@typescript-eslint/scope-manager': 5.4.0 debug: 4.3.2 eslint: 8.2.0 @@ -14336,23 +13378,7 @@ packages: - supports-color dev: true - /@typescript-eslint/experimental-utils/2.34.0_eslint@6.8.0+typescript@3.9.7: - resolution: {integrity: sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - peerDependencies: - eslint: '*' - dependencies: - '@types/json-schema': 7.0.9 - '@typescript-eslint/typescript-estree': 2.34.0_typescript@3.9.7 - eslint: 6.8.0 - eslint-scope: 5.1.1 - eslint-utils: 2.1.0 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - - /@typescript-eslint/experimental-utils/2.34.0_eslint@7.32.0+typescript@4.6.2: + /@typescript-eslint/experimental-utils/2.34.0_e6rt7vlgxfprtuallp2t3cvyi4: resolution: {integrity: sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} peerDependencies: @@ -14368,7 +13394,23 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils/3.10.1_eslint@6.8.0+typescript@3.9.7: + /@typescript-eslint/experimental-utils/2.34.0_x6qkcl3khy3aa3bbfxwmcukvzu: + resolution: {integrity: sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + peerDependencies: + eslint: '*' + dependencies: + '@types/json-schema': 7.0.9 + '@typescript-eslint/typescript-estree': 2.34.0_typescript@3.9.7 + eslint: 6.8.0 + eslint-scope: 5.1.1 + eslint-utils: 2.1.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/experimental-utils/3.10.1_x6qkcl3khy3aa3bbfxwmcukvzu: resolution: {integrity: sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -14385,7 +13427,7 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils/4.33.0_eslint@7.32.0+typescript@4.2.4: + /@typescript-eslint/experimental-utils/4.33.0_hxadhbs2xogijvk7vq4t2azzbu: resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -14394,7 +13436,7 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.2.4 + '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.7.4 eslint: 7.32.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@7.32.0 @@ -14403,7 +13445,7 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils/5.3.0_eslint@8.1.0+typescript@4.2.4: + /@typescript-eslint/experimental-utils/5.3.0_f662wmtjhhyn6wvwljgximehn4: resolution: {integrity: sha512-NFVxYTjKj69qB0FM+piah1x3G/63WB8vCBMnlnEHUsiLzXSTWb9FmFn36FD9Zb4APKBLY3xRArOGSMQkuzTF1w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14412,16 +13454,16 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 5.3.0 '@typescript-eslint/types': 5.3.0 - '@typescript-eslint/typescript-estree': 5.3.0_typescript@4.2.4 - eslint: 8.1.0 + '@typescript-eslint/typescript-estree': 5.3.0_typescript@4.7.4 + eslint: 8.12.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.1.0 + eslint-utils: 3.0.0_eslint@8.12.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/experimental-utils/5.4.0_eslint@8.12.0+typescript@4.6.2: + /@typescript-eslint/experimental-utils/5.4.0_7bdza2waopngrtr4qhziihsire: resolution: {integrity: sha512-Nz2JDIQUdmIGd6p33A+naQmwfkU5KVTLb/5lTk+tLVTDacZKoGQisj8UCxk7onJcrgjIvr8xWqkYI+DbI3TfXg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14430,15 +13472,16 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 5.4.0 '@typescript-eslint/types': 5.4.0 - '@typescript-eslint/typescript-estree': 5.4.0_typescript@4.6.2 + '@typescript-eslint/typescript-estree': 5.4.0_typescript@4.2.4 eslint: 8.12.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.12.0 transitivePeerDependencies: - supports-color - typescript + dev: true - /@typescript-eslint/experimental-utils/5.4.0_eslint@8.2.0+typescript@4.4.4: + /@typescript-eslint/experimental-utils/5.4.0_dpa3fc6zkz7v3bcs7pcctk7gra: resolution: {integrity: sha512-Nz2JDIQUdmIGd6p33A+naQmwfkU5KVTLb/5lTk+tLVTDacZKoGQisj8UCxk7onJcrgjIvr8xWqkYI+DbI3TfXg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14456,7 +13499,7 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils/5.4.0_typescript@4.2.4: + /@typescript-eslint/experimental-utils/5.4.0_qfndwjbknwkswbha2khu23tpva: resolution: {integrity: sha512-Nz2JDIQUdmIGd6p33A+naQmwfkU5KVTLb/5lTk+tLVTDacZKoGQisj8UCxk7onJcrgjIvr8xWqkYI+DbI3TfXg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14465,15 +13508,15 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 5.4.0 '@typescript-eslint/types': 5.4.0 - '@typescript-eslint/typescript-estree': 5.4.0_typescript@4.2.4 + '@typescript-eslint/typescript-estree': 5.4.0_typescript@4.6.2 + eslint: 8.12.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0 + eslint-utils: 3.0.0_eslint@8.12.0 transitivePeerDependencies: - supports-color - typescript - dev: true - /@typescript-eslint/parser/3.10.1_eslint@6.8.0+typescript@3.9.7: + /@typescript-eslint/parser/3.10.1_x6qkcl3khy3aa3bbfxwmcukvzu: resolution: {integrity: sha512-Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -14484,7 +13527,7 @@ packages: optional: true dependencies: '@types/eslint-visitor-keys': 1.0.0 - '@typescript-eslint/experimental-utils': 3.10.1_eslint@6.8.0+typescript@3.9.7 + '@typescript-eslint/experimental-utils': 3.10.1_x6qkcl3khy3aa3bbfxwmcukvzu '@typescript-eslint/types': 3.10.1 '@typescript-eslint/typescript-estree': 3.10.1_typescript@3.9.7 eslint: 6.8.0 @@ -14494,7 +13537,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/4.33.0_eslint@7.32.0+typescript@4.2.4: + /@typescript-eslint/parser/4.33.0_hxadhbs2xogijvk7vq4t2azzbu: resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -14506,15 +13549,54 @@ packages: dependencies: '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.2.4 + '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.7.4 debug: 4.3.4 eslint: 7.32.0 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser/5.15.0_7bdza2waopngrtr4qhziihsire: + resolution: {integrity: sha512-NGAYP/+RDM2sVfmKiKOCgJYPstAO40vPAgACoWPO/+yoYKSgAXIFaBKsV8P0Cc7fwKgvj27SjRNX4L7f4/jCKQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.15.0 + '@typescript-eslint/types': 5.15.0 + '@typescript-eslint/typescript-estree': 5.15.0_typescript@4.2.4 + debug: 4.3.3 + eslint: 8.12.0 typescript: 4.2.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.15.0_eslint@8.11.0+typescript@4.6.2: + /@typescript-eslint/parser/5.15.0_qfndwjbknwkswbha2khu23tpva: + resolution: {integrity: sha512-NGAYP/+RDM2sVfmKiKOCgJYPstAO40vPAgACoWPO/+yoYKSgAXIFaBKsV8P0Cc7fwKgvj27SjRNX4L7f4/jCKQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.15.0 + '@typescript-eslint/types': 5.15.0 + '@typescript-eslint/typescript-estree': 5.15.0_typescript@4.6.2 + debug: 4.3.3 + eslint: 8.12.0 + typescript: 4.6.2 + transitivePeerDependencies: + - supports-color + + /@typescript-eslint/parser/5.15.0_ynv3edxl3ah44xwgrna2g2yine: resolution: {integrity: sha512-NGAYP/+RDM2sVfmKiKOCgJYPstAO40vPAgACoWPO/+yoYKSgAXIFaBKsV8P0Cc7fwKgvj27SjRNX4L7f4/jCKQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14534,45 +13616,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.15.0_eslint@8.12.0+typescript@4.6.2: - resolution: {integrity: sha512-NGAYP/+RDM2sVfmKiKOCgJYPstAO40vPAgACoWPO/+yoYKSgAXIFaBKsV8P0Cc7fwKgvj27SjRNX4L7f4/jCKQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 5.15.0 - '@typescript-eslint/types': 5.15.0 - '@typescript-eslint/typescript-estree': 5.15.0_typescript@4.6.2 - debug: 4.3.3 - eslint: 8.12.0 - typescript: 4.6.2 - transitivePeerDependencies: - - supports-color - - /@typescript-eslint/parser/5.15.0_typescript@4.2.4: - resolution: {integrity: sha512-NGAYP/+RDM2sVfmKiKOCgJYPstAO40vPAgACoWPO/+yoYKSgAXIFaBKsV8P0Cc7fwKgvj27SjRNX4L7f4/jCKQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 5.15.0 - '@typescript-eslint/types': 5.15.0 - '@typescript-eslint/typescript-estree': 5.15.0_typescript@4.2.4 - debug: 4.3.3 - typescript: 4.2.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/parser/5.3.0_eslint@8.1.0+typescript@4.2.4: + /@typescript-eslint/parser/5.3.0_f662wmtjhhyn6wvwljgximehn4: resolution: {integrity: sha512-rKu/yAReip7ovx8UwOAszJVO5MgBquo8WjIQcp1gx4pYQCwYzag+I5nVNHO4MqyMkAo0gWt2gWUi+36gWAVKcw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14584,15 +13628,15 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.3.0 '@typescript-eslint/types': 5.3.0 - '@typescript-eslint/typescript-estree': 5.3.0_typescript@4.2.4 + '@typescript-eslint/typescript-estree': 5.3.0_typescript@4.7.4 debug: 4.3.2 - eslint: 8.1.0 - typescript: 4.2.4 + eslint: 8.12.0 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.4.0_eslint@8.2.0+typescript@4.4.4: + /@typescript-eslint/parser/5.4.0_dpa3fc6zkz7v3bcs7pcctk7gra: resolution: {integrity: sha512-JoB41EmxiYpaEsRwpZEYAJ9XQURPFer8hpkIW9GiaspVLX8oqbqNM8P4EP8HOZg96yaALiLEVWllA2E8vwsIKw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14642,7 +13686,7 @@ packages: '@typescript-eslint/types': 5.4.0 '@typescript-eslint/visitor-keys': 5.4.0 - /@typescript-eslint/type-utils/5.15.0_eslint@8.11.0+typescript@4.6.2: + /@typescript-eslint/type-utils/5.15.0_7bdza2waopngrtr4qhziihsire: resolution: {integrity: sha512-KGeDoEQ7gHieLydujGEFLyLofipe9PIzfvA/41urz4hv+xVxPEbmMQonKSynZ0Ks2xDhJQ4VYjB3DnRiywvKDA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14652,16 +13696,16 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.15.0_eslint@8.11.0+typescript@4.6.2 - debug: 4.3.3 - eslint: 8.11.0 - tsutils: 3.21.0_typescript@4.6.2 - typescript: 4.6.2 + '@typescript-eslint/utils': 5.15.0_7bdza2waopngrtr4qhziihsire + debug: 4.3.4 + eslint: 8.12.0 + tsutils: 3.21.0_typescript@4.2.4 + typescript: 4.2.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils/5.15.0_eslint@8.12.0+typescript@4.6.2: + /@typescript-eslint/type-utils/5.15.0_qfndwjbknwkswbha2khu23tpva: resolution: {integrity: sha512-KGeDoEQ7gHieLydujGEFLyLofipe9PIzfvA/41urz4hv+xVxPEbmMQonKSynZ0Ks2xDhJQ4VYjB3DnRiywvKDA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14671,15 +13715,15 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.15.0_eslint@8.12.0+typescript@4.6.2 - debug: 4.3.3 + '@typescript-eslint/utils': 5.15.0_qfndwjbknwkswbha2khu23tpva + debug: 4.3.4 eslint: 8.12.0 tsutils: 3.21.0_typescript@4.6.2 typescript: 4.6.2 transitivePeerDependencies: - supports-color - /@typescript-eslint/type-utils/5.15.0_typescript@4.2.4: + /@typescript-eslint/type-utils/5.15.0_ynv3edxl3ah44xwgrna2g2yine: resolution: {integrity: sha512-KGeDoEQ7gHieLydujGEFLyLofipe9PIzfvA/41urz4hv+xVxPEbmMQonKSynZ0Ks2xDhJQ4VYjB3DnRiywvKDA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14689,10 +13733,11 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.15.0_typescript@4.2.4 - debug: 4.3.3 - tsutils: 3.21.0_typescript@4.2.4 - typescript: 4.2.4 + '@typescript-eslint/utils': 5.15.0_ynv3edxl3ah44xwgrna2g2yine + debug: 4.3.4 + eslint: 8.11.0 + tsutils: 3.21.0_typescript@4.6.2 + typescript: 4.6.2 transitivePeerDependencies: - supports-color dev: true @@ -14734,7 +13779,7 @@ packages: glob: 7.2.0 is-glob: 4.0.3 lodash: 4.17.21 - semver: 7.3.5 + semver: 7.3.7 tsutils: 3.21.0_typescript@3.9.7 typescript: 3.9.7 transitivePeerDependencies: @@ -14755,7 +13800,7 @@ packages: glob: 7.2.0 is-glob: 4.0.3 lodash: 4.17.21 - semver: 7.3.5 + semver: 7.3.7 tsutils: 3.21.0_typescript@4.6.2 typescript: 4.6.2 transitivePeerDependencies: @@ -14777,14 +13822,14 @@ packages: glob: 7.2.0 is-glob: 4.0.3 lodash: 4.17.21 - semver: 7.3.5 + semver: 7.3.7 tsutils: 3.21.0_typescript@3.9.7 typescript: 3.9.7 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/4.33.0_typescript@4.2.4: + /@typescript-eslint/typescript-estree/4.33.0_typescript@4.7.4: resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -14798,9 +13843,9 @@ packages: debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.3.5 - tsutils: 3.21.0_typescript@4.2.4 - typescript: 4.2.4 + semver: 7.3.7 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true @@ -14816,10 +13861,10 @@ packages: dependencies: '@typescript-eslint/types': 5.15.0 '@typescript-eslint/visitor-keys': 5.15.0 - debug: 4.3.3 + debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.3.5 + semver: 7.3.7 tsutils: 3.21.0_typescript@4.2.4 typescript: 4.2.4 transitivePeerDependencies: @@ -14837,16 +13882,16 @@ packages: dependencies: '@typescript-eslint/types': 5.15.0 '@typescript-eslint/visitor-keys': 5.15.0 - debug: 4.3.3 + debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.3.5 + semver: 7.3.7 tsutils: 3.21.0_typescript@4.6.2 typescript: 4.6.2 transitivePeerDependencies: - supports-color - /@typescript-eslint/typescript-estree/5.3.0_typescript@4.2.4: + /@typescript-eslint/typescript-estree/5.3.0_typescript@4.7.4: resolution: {integrity: sha512-FJ0nqcaUOpn/6Z4Jwbtf+o0valjBLkqc3MWkMvrhA2TvzFXtcclIM8F4MBEmYa2kgcI8EZeSAzwoSrIC8JYkug==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14861,8 +13906,8 @@ packages: globby: 11.0.4 is-glob: 4.0.3 semver: 7.3.5 - tsutils: 3.21.0_typescript@4.2.4 - typescript: 4.2.4 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true @@ -14929,7 +13974,7 @@ packages: transitivePeerDependencies: - supports-color - /@typescript-eslint/utils/5.15.0_eslint@8.11.0+typescript@4.6.2: + /@typescript-eslint/utils/5.15.0_7bdza2waopngrtr4qhziihsire: resolution: {integrity: sha512-081rWu2IPKOgTOhHUk/QfxuFog8m4wxW43sXNOMSCdh578tGJ1PAaWPsj42LOa7pguh173tNlMigsbrHvh/mtA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14938,16 +13983,16 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 5.15.0 '@typescript-eslint/types': 5.15.0 - '@typescript-eslint/typescript-estree': 5.15.0_typescript@4.6.2 - eslint: 8.11.0 + '@typescript-eslint/typescript-estree': 5.15.0_typescript@4.2.4 + eslint: 8.12.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.11.0 + eslint-utils: 3.0.0_eslint@8.12.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils/5.15.0_eslint@8.12.0+typescript@4.6.2: + /@typescript-eslint/utils/5.15.0_qfndwjbknwkswbha2khu23tpva: resolution: {integrity: sha512-081rWu2IPKOgTOhHUk/QfxuFog8m4wxW43sXNOMSCdh578tGJ1PAaWPsj42LOa7pguh173tNlMigsbrHvh/mtA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14964,7 +14009,7 @@ packages: - supports-color - typescript - /@typescript-eslint/utils/5.15.0_typescript@4.2.4: + /@typescript-eslint/utils/5.15.0_ynv3edxl3ah44xwgrna2g2yine: resolution: {integrity: sha512-081rWu2IPKOgTOhHUk/QfxuFog8m4wxW43sXNOMSCdh578tGJ1PAaWPsj42LOa7pguh173tNlMigsbrHvh/mtA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14973,9 +14018,10 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 5.15.0 '@typescript-eslint/types': 5.15.0 - '@typescript-eslint/typescript-estree': 5.15.0_typescript@4.2.4 + '@typescript-eslint/typescript-estree': 5.15.0_typescript@4.6.2 + eslint: 8.11.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0 + eslint-utils: 3.0.0_eslint@8.11.0 transitivePeerDependencies: - supports-color - typescript @@ -15022,14 +14068,6 @@ packages: resolution: {integrity: sha512-7WFIDfeTB+7RBui8YOrB2xbgmvMsvaCDjyzrdvECKkgOpIynNSdhlLXjiFuqQMtnK71IL/9WNZNU0P8xuaLuUQ==} dev: false - /@use-gesture/react/10.2.10: - resolution: {integrity: sha512-znChnKVAMMGXD9J7fCKN686BJNBlUJaRtCu92IQXVWdcxg4MqS0SgsBslGnTWXTlsHVkg5zcGjKYf7qYkOf0Rg==} - peerDependencies: - react: '>= 16.8.0' - dependencies: - '@use-gesture/core': 10.2.10 - dev: false - /@use-gesture/react/10.2.10_react@17.0.2: resolution: {integrity: sha512-znChnKVAMMGXD9J7fCKN686BJNBlUJaRtCu92IQXVWdcxg4MqS0SgsBslGnTWXTlsHVkg5zcGjKYf7qYkOf0Rg==} peerDependencies: @@ -15044,7 +14082,6 @@ packages: dependencies: '@webassemblyjs/helper-numbers': 1.11.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.1 - dev: true /@webassemblyjs/ast/1.9.0: resolution: {integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==} @@ -15056,7 +14093,6 @@ packages: /@webassemblyjs/floating-point-hex-parser/1.11.1: resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==} - dev: true /@webassemblyjs/floating-point-hex-parser/1.9.0: resolution: {integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==} @@ -15064,7 +14100,6 @@ packages: /@webassemblyjs/helper-api-error/1.11.1: resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==} - dev: true /@webassemblyjs/helper-api-error/1.9.0: resolution: {integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==} @@ -15072,7 +14107,6 @@ packages: /@webassemblyjs/helper-buffer/1.11.1: resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==} - dev: true /@webassemblyjs/helper-buffer/1.9.0: resolution: {integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==} @@ -15100,11 +14134,9 @@ packages: '@webassemblyjs/floating-point-hex-parser': 1.11.1 '@webassemblyjs/helper-api-error': 1.11.1 '@xtuc/long': 4.2.2 - dev: true /@webassemblyjs/helper-wasm-bytecode/1.11.1: resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==} - dev: true /@webassemblyjs/helper-wasm-bytecode/1.9.0: resolution: {integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==} @@ -15117,7 +14149,6 @@ packages: '@webassemblyjs/helper-buffer': 1.11.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.1 '@webassemblyjs/wasm-gen': 1.11.1 - dev: true /@webassemblyjs/helper-wasm-section/1.9.0: resolution: {integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==} @@ -15132,7 +14163,6 @@ packages: resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==} dependencies: '@xtuc/ieee754': 1.2.0 - dev: true /@webassemblyjs/ieee754/1.9.0: resolution: {integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==} @@ -15144,7 +14174,6 @@ packages: resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==} dependencies: '@xtuc/long': 4.2.2 - dev: true /@webassemblyjs/leb128/1.9.0: resolution: {integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==} @@ -15154,7 +14183,6 @@ packages: /@webassemblyjs/utf8/1.11.1: resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==} - dev: true /@webassemblyjs/utf8/1.9.0: resolution: {integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==} @@ -15171,7 +14199,6 @@ packages: '@webassemblyjs/wasm-opt': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 '@webassemblyjs/wast-printer': 1.11.1 - dev: true /@webassemblyjs/wasm-edit/1.9.0: resolution: {integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==} @@ -15194,7 +14221,6 @@ packages: '@webassemblyjs/ieee754': 1.11.1 '@webassemblyjs/leb128': 1.11.1 '@webassemblyjs/utf8': 1.11.1 - dev: true /@webassemblyjs/wasm-gen/1.9.0: resolution: {integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==} @@ -15213,7 +14239,6 @@ packages: '@webassemblyjs/helper-buffer': 1.11.1 '@webassemblyjs/wasm-gen': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 - dev: true /@webassemblyjs/wasm-opt/1.9.0: resolution: {integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==} @@ -15233,7 +14258,6 @@ packages: '@webassemblyjs/ieee754': 1.11.1 '@webassemblyjs/leb128': 1.11.1 '@webassemblyjs/utf8': 1.11.1 - dev: true /@webassemblyjs/wasm-parser/1.9.0: resolution: {integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==} @@ -15262,7 +14286,6 @@ packages: dependencies: '@webassemblyjs/ast': 1.11.1 '@xtuc/long': 4.2.2 - dev: true /@webassemblyjs/wast-printer/1.9.0: resolution: {integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==} @@ -15272,14 +14295,14 @@ packages: '@xtuc/long': 4.2.2 dev: true - /@webpack-cli/configtest/1.1.1_webpack-cli@4.9.2+webpack@5.70.0: + /@webpack-cli/configtest/1.1.1_spmstbzrmxjdafr7ccogoqrx6e: resolution: {integrity: sha512-1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==} peerDependencies: webpack: 4.x.x || 5.x.x webpack-cli: 4.x.x dependencies: webpack: 5.70.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_b04de8011015a40c567469bf79798750 + webpack-cli: 4.9.2_wbg6qaiqcwsayvtung7xs6mhka dev: true /@webpack-cli/info/1.4.1_webpack-cli@4.9.2: @@ -15288,7 +14311,7 @@ packages: webpack-cli: 4.x.x dependencies: envinfo: 7.8.1 - webpack-cli: 4.9.2_b04de8011015a40c567469bf79798750 + webpack-cli: 4.9.2_wbg6qaiqcwsayvtung7xs6mhka dev: true /@webpack-cli/serve/1.6.1_webpack-cli@4.9.2: @@ -15300,25 +14323,10 @@ packages: webpack-dev-server: optional: true dependencies: - webpack-cli: 4.9.2_b04de8011015a40c567469bf79798750 + webpack-cli: 4.9.2_wbg6qaiqcwsayvtung7xs6mhka dev: true - /@wojtekmaj/enzyme-adapter-react-17/0.6.6_enzyme@3.11.0: - resolution: {integrity: sha512-gSfhg8CiL0Vwc2UgUblGVZIy7M0KyXaZsd8+QwzV8TSVRLkGyzdLtYEcs9wRWyQTsdmOd+oRGqbVgUX7AVJxug==} - peerDependencies: - enzyme: ^3.0.0 - react: ^17.0.0-0 - react-dom: ^17.0.0-0 - dependencies: - '@wojtekmaj/enzyme-adapter-utils': 0.1.2 - enzyme: 3.11.0 - enzyme-shallow-equal: 1.0.4 - has: 1.0.3 - prop-types: 15.7.2 - react-is: 17.0.2 - react-test-renderer: 17.0.2 - - /@wojtekmaj/enzyme-adapter-react-17/0.6.6_fae758709a8810ba97b4c03852dde4d0: + /@wojtekmaj/enzyme-adapter-react-17/0.6.6_7ltvq4e2railvf5uya4ffxpe2a: resolution: {integrity: sha512-gSfhg8CiL0Vwc2UgUblGVZIy7M0KyXaZsd8+QwzV8TSVRLkGyzdLtYEcs9wRWyQTsdmOd+oRGqbVgUX7AVJxug==} peerDependencies: enzyme: ^3.0.0 @@ -15334,9 +14342,26 @@ packages: react-dom: 17.0.2_react@17.0.2 react-is: 17.0.2 react-test-renderer: 17.0.2_react@17.0.2 + + /@wojtekmaj/enzyme-adapter-react-17/0.6.6_j6bpv5pizkyfppcg2tmva6pmii: + resolution: {integrity: sha512-gSfhg8CiL0Vwc2UgUblGVZIy7M0KyXaZsd8+QwzV8TSVRLkGyzdLtYEcs9wRWyQTsdmOd+oRGqbVgUX7AVJxug==} + peerDependencies: + enzyme: ^3.0.0 + react: ^17.0.0-0 + react-dom: ^17.0.0-0 + dependencies: + '@wojtekmaj/enzyme-adapter-utils': 0.1.2_react@16.14.0 + enzyme: 3.11.0 + enzyme-shallow-equal: 1.0.4 + has: 1.0.3 + prop-types: 15.7.2 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 + react-is: 17.0.2 + react-test-renderer: 17.0.2_react@16.14.0 dev: true - /@wojtekmaj/enzyme-adapter-utils/0.1.2: + /@wojtekmaj/enzyme-adapter-utils/0.1.2_react@16.14.0: resolution: {integrity: sha512-MM/DqDqvxNVlWLqSVQiUbRN9MuDLJfefmPbJ8ZKdmdf5ID8G+i42XhFpoQh5bAZUCdwzRae3+WSZl2lXcFOrhw==} peerDependencies: react: ^17.0.0-0 @@ -15345,6 +14370,8 @@ packages: has: 1.0.3 object.fromentries: 2.0.5 prop-types: 15.7.2 + react: 16.14.0 + dev: true /@wojtekmaj/enzyme-adapter-utils/0.1.2_react@17.0.2: resolution: {integrity: sha512-MM/DqDqvxNVlWLqSVQiUbRN9MuDLJfefmPbJ8ZKdmdf5ID8G+i42XhFpoQh5bAZUCdwzRae3+WSZl2lXcFOrhw==} @@ -15356,7 +14383,24 @@ packages: object.fromentries: 2.0.5 prop-types: 15.7.2 react: 17.0.2 - dev: true + + /@woocommerce/e2e-utils/0.1.6_3h22dpk5jbotugkadnxqe4t2uq: + resolution: {integrity: sha512-gWSEgFIjMqaqiiIyrpa1epIHkmBBAfk6WfRojva1f5ZmffSJCc0VbX2jQQRdFm1BuEYr8KGCCYo+q8NIjlMZ7g==} + peerDependencies: + '@woocommerce/api': ^0.2.0 + dependencies: + '@woocommerce/api': link:packages/js/api + '@wordpress/deprecated': 2.12.3 + '@wordpress/e2e-test-utils': 4.16.1_ujr7gcpwq6xmoiv7mmimozpxs4 + config: 3.3.3 + faker: 5.5.3 + fishery: 1.4.0 + transitivePeerDependencies: + - encoding + - jest + - puppeteer + - react-native + dev: false /@woocommerce/woocommerce-rest-api/1.0.1: resolution: {integrity: sha512-YBk3EEYE0zax/egx6Rhpbu6hcCFyZpYQrjH9JO4NUGU3n3T0W9Edn7oAUbjL/c7Oezcg+UaQluCaKjY/B3zwxg==} @@ -15366,6 +14410,8 @@ packages: create-hmac: 1.1.7 oauth-1.0a: 2.2.6 url-parse: 1.5.10 + transitivePeerDependencies: + - supports-color dev: true /@wordpress/a11y/2.15.3: @@ -15382,7 +14428,7 @@ packages: dependencies: '@babel/runtime': 7.17.7 '@wordpress/dom-ready': 3.10.0 - '@wordpress/i18n': 4.15.0 + '@wordpress/i18n': 4.16.0 dev: false /@wordpress/a11y/3.4.1: @@ -15411,6 +14457,17 @@ packages: '@wordpress/url': 2.22.2 transitivePeerDependencies: - react-native + dev: true + + /@wordpress/api-fetch/3.23.1_react-native@0.70.0: + resolution: {integrity: sha512-dmeigLuvqYAzpQ2hWUQT1P5VQAjkj9hS1z7PgNi1CcULFPbY8BWW+KiBETUu6Wm+rlSbUL2dC8qrA4JDv9ja5A==} + dependencies: + '@babel/runtime': 7.17.7 + '@wordpress/i18n': 3.20.0 + '@wordpress/url': 2.22.2_react-native@0.70.0 + transitivePeerDependencies: + - react-native + dev: false /@wordpress/api-fetch/4.0.0: resolution: {integrity: sha512-4nWH/gEpG7/VnEJbjbOWS0AWBnX5snPc3ZaKcXNZsLQlv9YgsS8idL/BNkUl9/ylZeez/UX4lJLVkOR5clvg8A==} @@ -15420,6 +14477,17 @@ packages: '@wordpress/url': 2.22.2 transitivePeerDependencies: - react-native + dev: true + + /@wordpress/api-fetch/4.0.0_react-native@0.70.0: + resolution: {integrity: sha512-4nWH/gEpG7/VnEJbjbOWS0AWBnX5snPc3ZaKcXNZsLQlv9YgsS8idL/BNkUl9/ylZeez/UX4lJLVkOR5clvg8A==} + dependencies: + '@babel/runtime': 7.17.7 + '@wordpress/i18n': 3.20.0 + '@wordpress/url': 2.22.2_react-native@0.70.0 + transitivePeerDependencies: + - react-native + dev: false /@wordpress/api-fetch/5.2.6: resolution: {integrity: sha512-AG8KdCHwtYJWR38AAU7nEI+UbumUSqSBthQj3rShLUVyFbYGkQdpwXJJG6vFj7FjIp41zljiyj3K1Fh3cqdaAw==} @@ -15427,7 +14495,7 @@ packages: dependencies: '@babel/runtime': 7.17.7 '@wordpress/i18n': 4.4.1 - '@wordpress/url': 3.5.1 + '@wordpress/url': 3.16.0 dev: true /@wordpress/api-fetch/6.1.1: @@ -15499,19 +14567,21 @@ packages: dependencies: '@babel/core': 7.17.8 - /@wordpress/babel-preset-default/3.0.2: + /@wordpress/babel-preset-default/3.0.2_@babel+core@7.12.9: resolution: {integrity: sha512-bsa4piS4GU02isj2XJNUgSEC7MpzdYNy9wOFySrp8G6IHAvwrlwcPEXJf5EuwE8ZqTMmFAzPyKOHFEAx/j+J1A==} engines: {node: '>=8'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.16.0 - '@babel/plugin-proposal-async-generator-functions': 7.16.4_@babel+core@7.16.0 - '@babel/plugin-proposal-object-rest-spread': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-react-jsx': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-runtime': 7.16.4_@babel+core@7.16.0 - '@babel/preset-env': 7.16.4_@babel+core@7.16.0 + '@babel/core': 7.12.9 + '@babel/plugin-proposal-async-generator-functions': 7.16.4_@babel+core@7.12.9 + '@babel/plugin-proposal-object-rest-spread': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-react-jsx': 7.16.0_@babel+core@7.12.9 + '@babel/plugin-transform-runtime': 7.16.4_@babel+core@7.12.9 + '@babel/preset-env': 7.16.4_@babel+core@7.12.9 '@babel/runtime': 7.16.3 '@wordpress/browserslist-config': 2.7.0 - babel-core: 7.0.0-bridge.0_@babel+core@7.16.0 + babel-core: 7.0.0-bridge.0_@babel+core@7.12.9 transitivePeerDependencies: - supports-color dev: true @@ -15582,6 +14652,11 @@ packages: /@wordpress/base-styles/4.5.0: resolution: {integrity: sha512-iz2bDZSDWEgBNOXx3072avn/+zsI+9akhTF2DA/wDdRX0TpS4SSs/vrfhvWfruq5PPLRjJ7ogLKHMnN9VvB9yg==} + dev: false + + /@wordpress/base-styles/4.8.0: + resolution: {integrity: sha512-xN5IFlr4uh7u9aGEeLIf6kpZp8IybW1+sGQuU1zRGtzrnImdwc085mxV3I0SzIor56JmndRx0D+Ltk+OlvF4cA==} + dev: true /@wordpress/blob/3.15.0: resolution: {integrity: sha512-aZhT0KkbTZo7/pEpR2eb3tWyRS/EjUgsmZMgWrT7sojCFNxvVOY2v0c16uzZyf1k3JK2LtFX4/txoAL3Fhgzog==} @@ -15604,35 +14679,6 @@ packages: '@babel/runtime': 7.17.7 dev: false - /@wordpress/blocks/11.3.1: - resolution: {integrity: sha512-0T/qD1/hxJpNrUrJ2suZY0MP6Gw83mXfkaOupZ7rwjcWEi8c6AmzXaU/amAMNobM6oiNr4Sa6FctnnTGCEC1mQ==} - engines: {node: '>=12'} - peerDependencies: - react: ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/autop': 3.4.1 - '@wordpress/blob': 3.4.1 - '@wordpress/block-serialization-default-parser': 4.4.1 - '@wordpress/compose': 5.2.1 - '@wordpress/data': 6.15.0 - '@wordpress/deprecated': 3.4.1 - '@wordpress/dom': 3.4.1 - '@wordpress/element': 4.14.0 - '@wordpress/hooks': 3.5.0 - '@wordpress/html-entities': 3.4.1 - '@wordpress/i18n': 4.4.1 - '@wordpress/is-shallow-equal': 4.4.1 - '@wordpress/shortcode': 3.4.1 - colord: 2.9.2 - hpq: 1.3.0 - lodash: 4.17.21 - rememo: 3.0.0 - showdown: 1.9.1 - simple-html-tokenizer: 0.5.11 - uuid: 8.3.2 - dev: false - /@wordpress/blocks/11.3.1_react@17.0.2: resolution: {integrity: sha512-0T/qD1/hxJpNrUrJ2suZY0MP6Gw83mXfkaOupZ7rwjcWEi8c6AmzXaU/amAMNobM6oiNr4Sa6FctnnTGCEC1mQ==} engines: {node: '>=12'} @@ -15645,7 +14691,7 @@ packages: '@wordpress/block-serialization-default-parser': 4.4.1 '@wordpress/compose': 5.2.1_react@17.0.2 '@wordpress/data': 6.15.0_react@17.0.2 - '@wordpress/deprecated': 3.4.1 + '@wordpress/deprecated': 3.16.0 '@wordpress/dom': 3.4.1 '@wordpress/element': 4.14.0 '@wordpress/hooks': 3.5.0 @@ -15676,16 +14722,16 @@ packages: resolution: {integrity: sha512-UH0Ifmm4tEjVPOtiqH6yxDvk2EKtqSAhnyhyfSIb0wUnEoGsWTjREZjzuhgjt/I2nTqfg+0gUSzL5D0yQH6wDQ==} engines: {node: '>=12'} - /@wordpress/components/12.0.9_@wordpress+data@4.27.3: + /@wordpress/components/12.0.9_hwlqtremp5axtc7oh3yr6fpizy: resolution: {integrity: sha512-J6uM20Jpchr/NywQmAeVqx/LohwKizi2F8HylqN1Xt2mYzuOrDirlEhQT1wmfqiEqEt0l+mefZEBlxeknMfBag==} dependencies: '@babel/runtime': 7.17.7 - '@emotion/core': 10.3.1 + '@emotion/core': 10.3.1_react@16.14.0 '@emotion/css': 10.0.27 - '@emotion/native': 10.0.27_@emotion+core@10.3.1 - '@emotion/styled': 10.3.0_@emotion+core@10.3.1 + '@emotion/native': 10.0.27_peeplpcor766cv2dor4ihhuuki + '@emotion/styled': 10.3.0_qzeatvug73zaio2r3dlvejynye '@wordpress/a11y': 2.15.3 - '@wordpress/compose': 3.25.3 + '@wordpress/compose': 3.25.3_react@16.14.0 '@wordpress/date': 3.15.1 '@wordpress/deprecated': 2.12.3 '@wordpress/dom': 2.18.0 @@ -15696,27 +14742,27 @@ packages: '@wordpress/is-shallow-equal': 3.1.3 '@wordpress/keycodes': 2.19.3 '@wordpress/primitives': 1.12.3 - '@wordpress/rich-text': 3.25.3 + '@wordpress/rich-text': 3.25.3_react@16.14.0 '@wordpress/warning': 1.4.2 - '@wp-g2/components': 0.0.140_5bd65f250b6b6f498b93c4f7fa8a50e6 - '@wp-g2/context': 0.0.140_781a76f2df0044de58919a3ef767af9f - '@wp-g2/styles': 0.0.140_781a76f2df0044de58919a3ef767af9f - '@wp-g2/utils': 0.0.140 + '@wp-g2/components': 0.0.140_ty5dlwfo5favn5jfawlzvhwt6e + '@wp-g2/context': 0.0.140_amkogjb4agy5k2c7l3v5yjbnnm + '@wp-g2/styles': 0.0.140_amkogjb4agy5k2c7l3v5yjbnnm + '@wp-g2/utils': 0.0.140_wcqkhtmu7mswc6yz4uyexck3ty classnames: 2.3.1 dom-scroll-into-view: 1.2.1 - downshift: 6.1.7 + downshift: 6.1.9_react@16.14.0 gradient-parser: 0.1.5 highlight-words-core: 1.2.2 lodash: 4.17.21 memize: 1.1.0 moment: 2.29.1 - re-resizable: 6.9.5 - react-dates: 17.2.0_moment@2.29.1 + re-resizable: 6.9.5_wcqkhtmu7mswc6yz4uyexck3ty + react-dates: 17.2.0_lfyzzauoe5u4sh3sz3gzisy47a react-merge-refs: 1.1.0 - react-resize-aware: 3.1.1 - react-spring: 8.0.27 - react-use-gesture: 9.1.3 - reakit: 1.3.11 + react-resize-aware: 3.1.1_react@16.14.0 + react-spring: 8.0.27_wcqkhtmu7mswc6yz4uyexck3ty + react-use-gesture: 9.1.3_react@16.14.0 + reakit: 1.3.11_wcqkhtmu7mswc6yz4uyexck3ty rememo: 3.0.0 tinycolor2: 1.4.2 uuid: 8.3.2 @@ -15726,9 +14772,10 @@ packages: - react - react-dom - react-native + - react-with-direction dev: false - /@wordpress/components/19.12.0_707fe24a3ddaa8115c00d0a9966a19ae: + /@wordpress/components/19.12.0_lxraipvdfcmyzw3sdzk3k7kygu: resolution: {integrity: sha512-Ac1+aIMM7NDgN3G7i5kcaETSvZfeqB4U6PubApPmM6FdBF5VfkYUZeqNcC7cuJdveyokRrqHg11/l+DcJGA7/g==} engines: {node: '>=12'} peerDependencies: @@ -15738,24 +14785,24 @@ packages: '@babel/runtime': 7.17.7 '@emotion/cache': 11.7.1 '@emotion/css': 11.7.1_@babel+core@7.17.8 - '@emotion/react': 11.8.2_707fe24a3ddaa8115c00d0a9966a19ae + '@emotion/react': 11.8.2_ob76esr53kubcxaa2cuzm2qzvy '@emotion/serialize': 1.0.2 - '@emotion/styled': 11.8.1_fd44c83c6284aa4d6bde750ada762da8 + '@emotion/styled': 11.8.1_7vcmqpdcqsve2266oufnu5rnva '@emotion/utils': 1.0.0 - '@floating-ui/react-dom': 0.6.3_00d6772dea80510e818fd171caaa025a + '@floating-ui/react-dom': 0.6.3_6rln7q2jvtuewdvbdwpg4txtvm '@use-gesture/react': 10.2.10_react@17.0.2 '@wordpress/a11y': 3.10.0 '@wordpress/compose': 5.8.0_react@17.0.2 '@wordpress/date': 4.10.0 - '@wordpress/deprecated': 3.10.0 + '@wordpress/deprecated': 3.16.0 '@wordpress/dom': 3.10.0 '@wordpress/element': 4.14.0 '@wordpress/escape-html': 2.15.0 '@wordpress/hooks': 3.15.0 - '@wordpress/i18n': 4.15.0 + '@wordpress/i18n': 4.16.0 '@wordpress/icons': 9.1.0 '@wordpress/is-shallow-equal': 4.10.0 - '@wordpress/keycodes': 3.10.0 + '@wordpress/keycodes': 3.16.0 '@wordpress/primitives': 3.8.0 '@wordpress/rich-text': 5.8.0_react@17.0.2 '@wordpress/warning': 2.10.0 @@ -15763,24 +14810,26 @@ packages: colord: 2.9.2 dom-scroll-into-view: 1.2.1 downshift: 6.1.9_react@17.0.2 - framer-motion: 6.2.8_react@17.0.2 + framer-motion: 6.2.8_sfoxds7t5ydpegc3knd667wn6m gradient-parser: 0.1.5 highlight-words-core: 1.2.2 lodash: 4.17.21 memize: 1.1.0 moment: 2.29.1 - re-resizable: 6.9.5_react@17.0.2 + re-resizable: 6.9.5_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 - react-colorful: 5.5.1_react@17.0.2 - react-dates: 21.8.0_33310dc40fed09c713f34ce185e0313d - reakit: 1.3.11_react@17.0.2 + react-colorful: 5.5.1_sfoxds7t5ydpegc3knd667wn6m + react-dates: 21.8.0_3e2zt6dsmku6uyxszuwububhzi + react-dom: 17.0.2_react@17.0.2 + reakit: 1.3.11_sfoxds7t5ydpegc3knd667wn6m uuid: 8.3.2 transitivePeerDependencies: - '@babel/core' - '@types/react' + - react-with-direction dev: false - /@wordpress/components/19.6.1_707fe24a3ddaa8115c00d0a9966a19ae: + /@wordpress/components/19.6.1_67fiyx7k2wr2ple2yfldahug5u: resolution: {integrity: sha512-O6hnJm9tfxkPnKknnJInpMy6qUS29CfRYtX5p5HdQMR2QFaOYvmwy7of3s5zBh7mubx3NeSzMy+ytZEWJ9ETJw==} engines: {node: '>=12'} peerDependencies: @@ -15790,9 +14839,117 @@ packages: '@babel/runtime': 7.17.7 '@emotion/cache': 11.7.1 '@emotion/css': 11.7.1_@babel+core@7.17.8 - '@emotion/react': 11.8.2_707fe24a3ddaa8115c00d0a9966a19ae + '@emotion/react': 11.8.2_ob76esr53kubcxaa2cuzm2qzvy '@emotion/serialize': 1.0.2 - '@emotion/styled': 11.8.1_fd44c83c6284aa4d6bde750ada762da8 + '@emotion/styled': 11.8.1_7vcmqpdcqsve2266oufnu5rnva + '@emotion/utils': 1.0.0 + '@use-gesture/react': 10.2.10_react@17.0.2 + '@wordpress/a11y': 3.4.1 + '@wordpress/compose': 5.2.1_react@17.0.2 + '@wordpress/date': 4.4.1 + '@wordpress/deprecated': 3.4.1 + '@wordpress/dom': 3.4.1 + '@wordpress/element': 4.8.0 + '@wordpress/escape-html': 2.4.1 + '@wordpress/hooks': 3.5.0 + '@wordpress/i18n': 4.4.1 + '@wordpress/icons': 8.0.1 + '@wordpress/is-shallow-equal': 4.4.1 + '@wordpress/keycodes': 3.4.1 + '@wordpress/primitives': 3.2.1 + '@wordpress/rich-text': 5.2.1_react@17.0.2 + '@wordpress/warning': 2.4.1 + classnames: 2.3.1 + colord: 2.9.2 + dom-scroll-into-view: 1.2.1 + downshift: 6.1.7_react@17.0.2 + framer-motion: 6.2.8_sfoxds7t5ydpegc3knd667wn6m + gradient-parser: 0.1.5 + highlight-words-core: 1.2.2 + lodash: 4.17.21 + memize: 1.1.0 + moment: 2.29.1 + re-resizable: 6.9.5_sfoxds7t5ydpegc3knd667wn6m + react: 17.0.2 + react-colorful: 5.5.1_sfoxds7t5ydpegc3knd667wn6m + react-dates: 17.2.0_2cae2nzgvwcdm26milsjiueody + react-dom: 17.0.2_react@17.0.2 + react-resize-aware: 3.1.1_react@17.0.2 + reakit: 1.3.11_sfoxds7t5ydpegc3knd667wn6m + uuid: 8.3.2 + transitivePeerDependencies: + - '@babel/core' + - '@types/react' + - react-with-direction + dev: false + + /@wordpress/components/19.6.1_lxraipvdfcmyzw3sdzk3k7kygu: + resolution: {integrity: sha512-O6hnJm9tfxkPnKknnJInpMy6qUS29CfRYtX5p5HdQMR2QFaOYvmwy7of3s5zBh7mubx3NeSzMy+ytZEWJ9ETJw==} + engines: {node: '>=12'} + peerDependencies: + react: ^17.0.0 + react-dom: ^17.0.0 + dependencies: + '@babel/runtime': 7.17.7 + '@emotion/cache': 11.7.1 + '@emotion/css': 11.7.1_@babel+core@7.17.8 + '@emotion/react': 11.8.2_ob76esr53kubcxaa2cuzm2qzvy + '@emotion/serialize': 1.0.2 + '@emotion/styled': 11.8.1_7vcmqpdcqsve2266oufnu5rnva + '@emotion/utils': 1.0.0 + '@use-gesture/react': 10.2.10_react@17.0.2 + '@wordpress/a11y': 3.4.1 + '@wordpress/compose': 5.2.1_react@17.0.2 + '@wordpress/date': 4.4.1 + '@wordpress/deprecated': 3.4.1 + '@wordpress/dom': 3.4.1 + '@wordpress/element': 4.8.0 + '@wordpress/escape-html': 2.4.1 + '@wordpress/hooks': 3.5.0 + '@wordpress/i18n': 4.4.1 + '@wordpress/icons': 8.0.1 + '@wordpress/is-shallow-equal': 4.4.1 + '@wordpress/keycodes': 3.4.1 + '@wordpress/primitives': 3.2.1 + '@wordpress/rich-text': 5.2.1_react@17.0.2 + '@wordpress/warning': 2.4.1 + classnames: 2.3.1 + colord: 2.9.2 + dom-scroll-into-view: 1.2.1 + downshift: 6.1.7_react@17.0.2 + framer-motion: 6.2.8_sfoxds7t5ydpegc3knd667wn6m + gradient-parser: 0.1.5 + highlight-words-core: 1.2.2 + lodash: 4.17.21 + memize: 1.1.0 + moment: 2.29.1 + re-resizable: 6.9.5_sfoxds7t5ydpegc3knd667wn6m + react: 17.0.2 + react-colorful: 5.5.1_sfoxds7t5ydpegc3knd667wn6m + react-dates: 17.2.0_doem77jvh4k7pyuvpbnkip467u + react-dom: 17.0.2_react@17.0.2 + react-resize-aware: 3.1.1_react@17.0.2 + reakit: 1.3.11_sfoxds7t5ydpegc3knd667wn6m + uuid: 8.3.2 + transitivePeerDependencies: + - '@babel/core' + - '@types/react' + - react-with-direction + dev: false + + /@wordpress/components/19.6.1_mcptgafjogap2nfvnfqvfwh6uu: + resolution: {integrity: sha512-O6hnJm9tfxkPnKknnJInpMy6qUS29CfRYtX5p5HdQMR2QFaOYvmwy7of3s5zBh7mubx3NeSzMy+ytZEWJ9ETJw==} + engines: {node: '>=12'} + peerDependencies: + react: ^17.0.0 + react-dom: ^17.0.0 + dependencies: + '@babel/runtime': 7.17.7 + '@emotion/cache': 11.7.1 + '@emotion/css': 11.7.1_@babel+core@7.17.8 + '@emotion/react': 11.8.2_mcptgafjogap2nfvnfqvfwh6uu + '@emotion/serialize': 1.0.2 + '@emotion/styled': 11.8.1_lddnk6nv2rrayprsm6yu5n7lz4 '@emotion/utils': 1.0.0 '@use-gesture/react': 10.2.10_react@17.0.2 '@wordpress/a11y': 3.4.1 @@ -15830,9 +14987,10 @@ packages: transitivePeerDependencies: - '@babel/core' - '@types/react' + - react-with-direction dev: false - /@wordpress/components/19.6.1_@babel+core@7.17.8: + /@wordpress/components/19.6.1_s6htitehnjl4cfb77y2wxeg7ge: resolution: {integrity: sha512-O6hnJm9tfxkPnKknnJInpMy6qUS29CfRYtX5p5HdQMR2QFaOYvmwy7of3s5zBh7mubx3NeSzMy+ytZEWJ9ETJw==} engines: {node: '>=12'} peerDependencies: @@ -15842,60 +15000,9 @@ packages: '@babel/runtime': 7.17.7 '@emotion/cache': 11.7.1 '@emotion/css': 11.7.1_@babel+core@7.17.8 - '@emotion/react': 11.8.2_@babel+core@7.17.8 + '@emotion/react': 11.8.2_mcptgafjogap2nfvnfqvfwh6uu '@emotion/serialize': 1.0.2 - '@emotion/styled': 11.8.1_14926ce31c24bafac75661d38a5c90f5 - '@emotion/utils': 1.0.0 - '@use-gesture/react': 10.2.10 - '@wordpress/a11y': 3.4.1 - '@wordpress/compose': 5.2.1 - '@wordpress/date': 4.4.1 - '@wordpress/deprecated': 3.4.1 - '@wordpress/dom': 3.4.1 - '@wordpress/element': 4.8.0 - '@wordpress/escape-html': 2.4.1 - '@wordpress/hooks': 3.5.0 - '@wordpress/i18n': 4.4.1 - '@wordpress/icons': 8.0.1 - '@wordpress/is-shallow-equal': 4.4.1 - '@wordpress/keycodes': 3.4.1 - '@wordpress/primitives': 3.2.1 - '@wordpress/rich-text': 5.2.1 - '@wordpress/warning': 2.4.1 - classnames: 2.3.1 - colord: 2.9.2 - dom-scroll-into-view: 1.2.1 - downshift: 6.1.7 - framer-motion: 6.2.8 - gradient-parser: 0.1.5 - highlight-words-core: 1.2.2 - lodash: 4.17.21 - memize: 1.1.0 - moment: 2.29.1 - re-resizable: 6.9.5 - react-colorful: 5.5.1 - react-dates: 17.2.0_moment@2.29.1 - react-resize-aware: 3.1.1 - reakit: 1.3.11 - uuid: 8.3.2 - transitivePeerDependencies: - - '@babel/core' - - '@types/react' - dev: false - - /@wordpress/components/19.6.1_f7ca8c5fead5a3a7ac9ac156301e86ed: - resolution: {integrity: sha512-O6hnJm9tfxkPnKknnJInpMy6qUS29CfRYtX5p5HdQMR2QFaOYvmwy7of3s5zBh7mubx3NeSzMy+ytZEWJ9ETJw==} - engines: {node: '>=12'} - peerDependencies: - react: ^17.0.0 - react-dom: ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@emotion/cache': 11.7.1 - '@emotion/css': 11.7.1_@babel+core@7.17.8 - '@emotion/react': 11.8.2_707fe24a3ddaa8115c00d0a9966a19ae - '@emotion/serialize': 1.0.2 - '@emotion/styled': 11.8.1_fd44c83c6284aa4d6bde750ada762da8 + '@emotion/styled': 11.8.1_lddnk6nv2rrayprsm6yu5n7lz4 '@emotion/utils': 1.0.0 '@use-gesture/react': 10.2.10_react@17.0.2 '@wordpress/a11y': 3.4.1 @@ -15917,44 +15024,26 @@ packages: colord: 2.9.2 dom-scroll-into-view: 1.2.1 downshift: 6.1.7_react@17.0.2 - framer-motion: 6.2.8_react-dom@17.0.2+react@17.0.2 + framer-motion: 6.2.8_sfoxds7t5ydpegc3knd667wn6m gradient-parser: 0.1.5 highlight-words-core: 1.2.2 lodash: 4.17.21 memize: 1.1.0 moment: 2.29.1 - re-resizable: 6.9.5_react-dom@17.0.2+react@17.0.2 + re-resizable: 6.9.5_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 - react-colorful: 5.5.1_react-dom@17.0.2+react@17.0.2 - react-dates: 17.2.0_d0804d3726ad84366bcc42e494508e1e + react-colorful: 5.5.1_sfoxds7t5ydpegc3knd667wn6m + react-dates: 17.2.0_2cae2nzgvwcdm26milsjiueody react-dom: 17.0.2_react@17.0.2 react-resize-aware: 3.1.1_react@17.0.2 - reakit: 1.3.11_react-dom@17.0.2+react@17.0.2 + reakit: 1.3.11_sfoxds7t5ydpegc3knd667wn6m uuid: 8.3.2 transitivePeerDependencies: - '@babel/core' - '@types/react' + - react-with-direction dev: false - /@wordpress/compose/3.25.3: - resolution: {integrity: sha512-tCO2EnJCkCH548OqA0uU8V1k/1skz2QwBlHs8ZQSpimqUS4OWWsAlndCEFe4U4vDTqFt2ow7tzAir+05Cw8MAg==} - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/deprecated': 2.12.3 - '@wordpress/dom': 2.18.0 - '@wordpress/element': 2.20.3 - '@wordpress/is-shallow-equal': 3.1.3 - '@wordpress/keycodes': 2.19.3 - '@wordpress/priority-queue': 1.11.2 - clipboard: 2.0.10 - lodash: 4.17.21 - memize: 1.1.0 - mousetrap: 1.6.5 - react-resize-aware: 3.1.1 - use-memo-one: 1.1.2 - transitivePeerDependencies: - - react - /@wordpress/compose/3.25.3_react@16.14.0: resolution: {integrity: sha512-tCO2EnJCkCH548OqA0uU8V1k/1skz2QwBlHs8ZQSpimqUS4OWWsAlndCEFe4U4vDTqFt2ow7tzAir+05Cw8MAg==} dependencies: @@ -15973,7 +15062,6 @@ packages: use-memo-one: 1.1.2_react@16.14.0 transitivePeerDependencies: - react - dev: true /@wordpress/compose/3.25.3_react@17.0.2: resolution: {integrity: sha512-tCO2EnJCkCH548OqA0uU8V1k/1skz2QwBlHs8ZQSpimqUS4OWWsAlndCEFe4U4vDTqFt2ow7tzAir+05Cw8MAg==} @@ -15993,28 +15081,6 @@ packages: use-memo-one: 1.1.2_react@17.0.2 transitivePeerDependencies: - react - dev: false - - /@wordpress/compose/5.14.0: - resolution: {integrity: sha512-DSERuUJtz76r+genM0mbMMhHUN57K5V028WBacLrU0bOh8CQ3frgsn5vvogTXvf/Eaib/Mx2F/mpcDX3KMId6Q==} - engines: {node: '>=12'} - peerDependencies: - react: ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@types/lodash': 4.14.184 - '@types/mousetrap': 1.6.9 - '@wordpress/deprecated': 3.16.0 - '@wordpress/dom': 3.16.0 - '@wordpress/element': 4.14.0 - '@wordpress/is-shallow-equal': 4.16.0 - '@wordpress/keycodes': 3.16.0 - '@wordpress/priority-queue': 2.16.0 - change-case: 4.1.2 - clipboard: 2.0.10 - lodash: 4.17.21 - mousetrap: 1.6.5 - use-memo-one: 1.1.2 /@wordpress/compose/5.14.0_react@17.0.2: resolution: {integrity: sha512-DSERuUJtz76r+genM0mbMMhHUN57K5V028WBacLrU0bOh8CQ3frgsn5vvogTXvf/Eaib/Mx2F/mpcDX3KMId6Q==} @@ -16037,29 +15103,6 @@ packages: mousetrap: 1.6.5 react: 17.0.2 use-memo-one: 1.1.2_react@17.0.2 - dev: false - - /@wordpress/compose/5.2.1: - resolution: {integrity: sha512-0l5UOiq5tDFeuIsdSVsWzNETHZagTnSBSTdGsxDmKIi5NC7vf1pXs4rlrEA45vUdFm/SbpIA9gp+NFzfpVKIXw==} - engines: {node: '>=12'} - peerDependencies: - react: ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@types/lodash': 4.14.180 - '@types/mousetrap': 1.6.9 - '@wordpress/deprecated': 3.4.1 - '@wordpress/dom': 3.4.1 - '@wordpress/element': 4.8.0 - '@wordpress/is-shallow-equal': 4.4.1 - '@wordpress/keycodes': 3.4.1 - '@wordpress/priority-queue': 2.4.1 - clipboard: 2.0.10 - lodash: 4.17.21 - mousetrap: 1.6.5 - react-resize-aware: 3.1.1 - use-memo-one: 1.1.2 - dev: false /@wordpress/compose/5.2.1_react@17.0.2: resolution: {integrity: sha512-0l5UOiq5tDFeuIsdSVsWzNETHZagTnSBSTdGsxDmKIi5NC7vf1pXs4rlrEA45vUdFm/SbpIA9gp+NFzfpVKIXw==} @@ -16093,11 +15136,11 @@ packages: '@babel/runtime': 7.17.7 '@types/lodash': 4.14.184 '@types/mousetrap': 1.6.9 - '@wordpress/deprecated': 3.10.0 - '@wordpress/dom': 3.10.0 + '@wordpress/deprecated': 3.16.0 + '@wordpress/dom': 3.16.0 '@wordpress/element': 4.14.0 - '@wordpress/is-shallow-equal': 4.10.0 - '@wordpress/keycodes': 3.10.0 + '@wordpress/is-shallow-equal': 4.16.0 + '@wordpress/keycodes': 3.16.0 '@wordpress/priority-queue': 2.10.0 clipboard: 2.0.10 lodash: 4.17.21 @@ -16106,29 +15149,6 @@ packages: use-memo-one: 1.1.2_react@17.0.2 dev: false - /@wordpress/core-data/4.2.1: - resolution: {integrity: sha512-L0Gia4qbzwU7mXTUPep94MRgvt8a0iR18bfPTOz2ptYW6ciAftearEEBBIEoAExnZhW+8ihHNCH/Jm2NOqGaKg==} - engines: {node: '>=12'} - peerDependencies: - react: ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/api-fetch': 6.1.1 - '@wordpress/blocks': 11.3.1 - '@wordpress/data': 6.15.0 - '@wordpress/deprecated': 3.4.1 - '@wordpress/element': 4.8.0 - '@wordpress/html-entities': 3.4.1 - '@wordpress/i18n': 4.4.1 - '@wordpress/is-shallow-equal': 4.4.1 - '@wordpress/url': 3.5.1 - equivalent-key-map: 0.2.2 - lodash: 4.17.21 - memize: 1.1.0 - rememo: 3.0.0 - uuid: 8.3.2 - dev: false - /@wordpress/core-data/4.2.1_react@17.0.2: resolution: {integrity: sha512-L0Gia4qbzwU7mXTUPep94MRgvt8a0iR18bfPTOz2ptYW6ciAftearEEBBIEoAExnZhW+8ihHNCH/Jm2NOqGaKg==} engines: {node: '>=12'} @@ -16163,16 +15183,29 @@ packages: webpack: 5.70.0_webpack-cli@4.9.2 dev: true - /@wordpress/data-controls/1.21.3: + /@wordpress/data-controls/1.21.3_3lfrqxmbuwi67co5eklk724ov4: resolution: {integrity: sha512-aLpx/HvKaxCQfWSLGIz699SB9Guyq8Yoq5XLlH8eNWnf/8HkQg8hQ6yagDY8BinV/t8HScc5A7a6n6pvZNGtjg==} dependencies: '@babel/runtime': 7.17.7 - '@wordpress/api-fetch': 4.0.0 - '@wordpress/data': 4.27.3 + '@wordpress/api-fetch': 4.0.0_react-native@0.70.0 + '@wordpress/data': 4.27.3_react@16.14.0 '@wordpress/deprecated': 2.12.3 transitivePeerDependencies: - react - react-native + dev: false + + /@wordpress/data-controls/1.21.3_react@17.0.2: + resolution: {integrity: sha512-aLpx/HvKaxCQfWSLGIz699SB9Guyq8Yoq5XLlH8eNWnf/8HkQg8hQ6yagDY8BinV/t8HScc5A7a6n6pvZNGtjg==} + dependencies: + '@babel/runtime': 7.17.7 + '@wordpress/api-fetch': 4.0.0 + '@wordpress/data': 4.27.3_react@17.0.2 + '@wordpress/deprecated': 2.12.3 + transitivePeerDependencies: + - react + - react-native + dev: true /@wordpress/data-controls/2.10.0_react@17.0.2: resolution: {integrity: sha512-QbRLuEfwLyy/GVDHl7mzf/W6/hKMzCruggeR197JDOP7U3+HZXnbaZo7wb9YcdLKIyRNNwi4aNrFrgBgJAB72g==} @@ -16182,23 +15215,11 @@ packages: dependencies: '@babel/runtime': 7.17.7 '@wordpress/api-fetch': 6.12.0 - '@wordpress/data': 6.10.0_react@17.0.2 - '@wordpress/deprecated': 3.10.0 + '@wordpress/data': 6.15.0_react@17.0.2 + '@wordpress/deprecated': 3.16.0 react: 17.0.2 dev: false - /@wordpress/data-controls/2.4.1: - resolution: {integrity: sha512-Jy1twLWn4edvb4A9qz7wajE775i79cheCR7SggMbtZ+Pbmza+F2V+nqtx727YKat2M7P08XoTCq0dW9awCAetQ==} - engines: {node: '>=12'} - peerDependencies: - react: ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/api-fetch': 6.1.1 - '@wordpress/data': 6.15.0 - '@wordpress/deprecated': 3.4.1 - dev: false - /@wordpress/data-controls/2.4.1_react@17.0.2: resolution: {integrity: sha512-Jy1twLWn4edvb4A9qz7wajE775i79cheCR7SggMbtZ+Pbmza+F2V+nqtx727YKat2M7P08XoTCq0dW9awCAetQ==} engines: {node: '>=12'} @@ -16212,11 +15233,11 @@ packages: react: 17.0.2 dev: false - /@wordpress/data/4.27.3: + /@wordpress/data/4.27.3_react@16.14.0: resolution: {integrity: sha512-5763NgNV9IIa1CC3Q80dAvrH6108tJtj3IrHfUCZmUk1atSNsOMBCkLdQ7tGTTi2JFejeGEMg1LJI22JD5zM6Q==} dependencies: '@babel/runtime': 7.17.7 - '@wordpress/compose': 3.25.3 + '@wordpress/compose': 3.25.3_react@16.14.0 '@wordpress/deprecated': 2.12.3 '@wordpress/element': 2.20.3 '@wordpress/is-shallow-equal': 3.1.3 @@ -16228,52 +15249,31 @@ packages: memize: 1.1.0 redux: 4.2.0 turbo-combine-reducers: 1.0.2 - use-memo-one: 1.1.2 + use-memo-one: 1.1.2_react@16.14.0 transitivePeerDependencies: - react + dev: false - /@wordpress/data/6.10.0_react@17.0.2: - resolution: {integrity: sha512-kLylD1AI+RqigRhqJ0aWBUUhro348w7y7UQj/8PBRFKkyywG44856JpOJYQgSU/tY+yOCgG9w3sDWmgzcOihLA==} - engines: {node: '>=12'} - peerDependencies: - react: ^17.0.0 + /@wordpress/data/4.27.3_react@17.0.2: + resolution: {integrity: sha512-5763NgNV9IIa1CC3Q80dAvrH6108tJtj3IrHfUCZmUk1atSNsOMBCkLdQ7tGTTi2JFejeGEMg1LJI22JD5zM6Q==} dependencies: '@babel/runtime': 7.17.7 - '@wordpress/compose': 5.8.0_react@17.0.2 - '@wordpress/deprecated': 3.10.0 - '@wordpress/element': 4.14.0 - '@wordpress/is-shallow-equal': 4.10.0 - '@wordpress/priority-queue': 2.10.0 - '@wordpress/redux-routine': 4.10.0_redux@4.2.0 + '@wordpress/compose': 3.25.3_react@17.0.2 + '@wordpress/deprecated': 2.12.3 + '@wordpress/element': 2.20.3 + '@wordpress/is-shallow-equal': 3.1.3 + '@wordpress/priority-queue': 1.11.2 + '@wordpress/redux-routine': 3.14.2 equivalent-key-map: 0.2.2 is-promise: 4.0.0 lodash: 4.17.21 - react: 17.0.2 + memize: 1.1.0 redux: 4.2.0 turbo-combine-reducers: 1.0.2 use-memo-one: 1.1.2_react@17.0.2 - dev: false - - /@wordpress/data/6.15.0: - resolution: {integrity: sha512-EReq6QQ3ASWPcB60q18GLfDBhQQrf2Ru9Vvkid/tk7tn4ttqy/axn09/ck/GQ1uwi9BoSRyydPOnQCsluPAgNA==} - engines: {node: '>=12'} - peerDependencies: - react: ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/compose': 5.14.0 - '@wordpress/deprecated': 3.16.0 - '@wordpress/element': 4.14.0 - '@wordpress/is-shallow-equal': 4.16.0 - '@wordpress/priority-queue': 2.16.0 - '@wordpress/redux-routine': 4.16.0_redux@4.2.0 - equivalent-key-map: 0.2.2 - is-plain-obj: 4.1.0 - is-promise: 4.0.0 - lodash: 4.17.21 - redux: 4.2.0 - turbo-combine-reducers: 1.0.2 - use-memo-one: 1.1.2 + transitivePeerDependencies: + - react + dev: true /@wordpress/data/6.15.0_react@17.0.2: resolution: {integrity: sha512-EReq6QQ3ASWPcB60q18GLfDBhQQrf2Ru9Vvkid/tk7tn4ttqy/axn09/ck/GQ1uwi9BoSRyydPOnQCsluPAgNA==} @@ -16296,28 +15296,6 @@ packages: redux: 4.2.0 turbo-combine-reducers: 1.0.2 use-memo-one: 1.1.2_react@17.0.2 - dev: false - - /@wordpress/data/6.4.1: - resolution: {integrity: sha512-pDTQl+cmVvwyGuGo6DtWkSGtIz6FTJw87XxtRkOeuQlEqsfHoyXSA4da7cBY5o22Ss5P5408hXjR0SAIqEBhmg==} - engines: {node: '>=12'} - peerDependencies: - react: ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/compose': 5.2.1 - '@wordpress/deprecated': 3.4.1 - '@wordpress/element': 4.14.0 - '@wordpress/is-shallow-equal': 4.4.1 - '@wordpress/priority-queue': 2.4.1 - '@wordpress/redux-routine': 4.4.1_redux@4.2.0 - equivalent-key-map: 0.2.2 - is-promise: 4.0.0 - lodash: 4.17.21 - redux: 4.2.0 - turbo-combine-reducers: 1.0.2 - use-memo-one: 1.1.2 - dev: false /@wordpress/data/6.4.1_react@17.0.2: resolution: {integrity: sha512-pDTQl+cmVvwyGuGo6DtWkSGtIz6FTJw87XxtRkOeuQlEqsfHoyXSA4da7cBY5o22Ss5P5408hXjR0SAIqEBhmg==} @@ -16393,14 +15371,6 @@ packages: '@babel/runtime': 7.17.7 '@wordpress/hooks': 2.12.3 - /@wordpress/deprecated/3.10.0: - resolution: {integrity: sha512-qWY/pTNVxEfbJeUjJJlkwhQKh6W0nDxdTSmodX86IcTdk+1j0hDHAgFo3Pmigvs+DbsXaka+wZgtN4aZBlYodg==} - engines: {node: '>=12'} - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/hooks': 3.15.0 - dev: false - /@wordpress/deprecated/3.16.0: resolution: {integrity: sha512-/lCISYhy1l4N4HdGB8vKtPRYcvlLL+Lo/luwxgWzDxV+GkIlva6mZvEwsSd/Ocd5NXzR496V6+AKREDOyfJgiQ==} engines: {node: '>=12'} @@ -16462,7 +15432,7 @@ packages: engines: {node: '>=12'} dependencies: '@babel/runtime': 7.17.7 - '@wordpress/deprecated': 3.10.0 + '@wordpress/deprecated': 3.16.0 lodash: 4.17.21 dev: false @@ -16481,7 +15451,7 @@ packages: lodash: 4.17.21 dev: false - /@wordpress/e2e-test-utils/3.0.0_jest@24.9.0+puppeteer@2.1.1: + /@wordpress/e2e-test-utils/3.0.0_lawbsmxtcxar2rt6ez6hclrarm: resolution: {integrity: sha512-XMdR8DeKyDQRF5jKeUlOzP4pTRtoJuOLsNZRLUFUvnrs9y/7/hH17VmPbWp3TJGvV/eGKzO4+D+wJTsP9nJmIw==} engines: {node: '>=8'} peerDependencies: @@ -16499,7 +15469,7 @@ packages: - react-native dev: false - /@wordpress/e2e-test-utils/4.16.1_jest@27.5.1+puppeteer@2.1.1: + /@wordpress/e2e-test-utils/4.16.1_ujr7gcpwq6xmoiv7mmimozpxs4: resolution: {integrity: sha512-Dpsq5m0VSvjIhro2MjACSzkOkOf1jGEryzgEMW1ikbT6YI+motspHfGtisKXgYhZJOnjV4PwuEg+9lPVnd971g==} engines: {node: '>=8'} peerDependencies: @@ -16511,13 +15481,14 @@ packages: '@wordpress/url': 2.22.2 jest: 27.5.1 lodash: 4.17.21 - node-fetch: 2.6.5 + node-fetch: 2.6.7 puppeteer: 2.1.1 transitivePeerDependencies: + - encoding - react-native dev: false - /@wordpress/e2e-test-utils/5.3.2_jest@27.3.1: + /@wordpress/e2e-test-utils/5.3.2_ujr7gcpwq6xmoiv7mmimozpxs4: resolution: {integrity: sha512-K44fl1Fgh2kk2RV14BDFSr2QVa5F2aeZ3IOyvLYo1OqaTD2pxXbdQDL1U4wvbkXxAoub4fsF0ugAYYyvxyLIvw==} engines: {node: '>=12'} peerDependencies: @@ -16527,9 +15498,10 @@ packages: '@babel/runtime': 7.17.7 '@wordpress/keycodes': 3.16.0 '@wordpress/url': 3.16.0 - jest: 27.3.1 + jest: 27.5.1 lodash: 4.17.21 node-fetch: 2.6.7 + puppeteer: 2.1.1 transitivePeerDependencies: - encoding dev: false @@ -16583,8 +15555,8 @@ packages: react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - /@wordpress/env/4.8.0: - resolution: {integrity: sha512-PiXP4z0txUdjmhW+8/43efa8gajWHr+LIO6OQt1LEM413TBFSjcjQtV4Q1Y/VaOkp7IqQ/XOveFBAVyi2NxkBA==} + /@wordpress/env/4.9.0: + resolution: {integrity: sha512-C2g5aOYxl1Bd9lypvEMjXZ1s1Gx/JHpFWuPlCAI8gAzwzB9jCIZkqpU85GsGScpZLAANS/N7wF3LMY68UkN9fQ==} hasBin: true dependencies: chalk: 4.1.2 @@ -16596,7 +15568,7 @@ packages: js-yaml: 3.14.1 ora: 4.1.1 rimraf: 3.0.2 - simple-git: 3.7.1 + simple-git: 3.14.0 terminal-link: 2.1.1 yargs: 17.5.1 transitivePeerDependencies: @@ -16627,7 +15599,7 @@ packages: '@babel/runtime': 7.17.7 dev: false - /@wordpress/eslint-plugin/11.0.1_45b6e6918fb11850d1105a4fd2c5fed3: + /@wordpress/eslint-plugin/11.0.1_d5jpixt37lgia4d4o6cytys66y: resolution: {integrity: sha512-HDKwKjOmCaWdyJEtWKRAd0xK/NAXL/ykUP/I8l+zCvzvCXbS1UuixWN09RRzl09tv17JUtPiEqehDilkWRCBZg==} engines: {node: '>=12', npm: '>=6.9'} peerDependencies: @@ -16642,30 +15614,33 @@ packages: optional: true dependencies: '@babel/core': 7.12.9 - '@babel/eslint-parser': 7.17.0_@babel+core@7.12.9 - '@typescript-eslint/eslint-plugin': 5.15.0_db3cd493186c3234b80a3843c7aaf877 - '@typescript-eslint/parser': 5.15.0_typescript@4.2.4 + '@babel/eslint-parser': 7.17.0_u45bfrtwjt2x2yv3wnqpipckby + '@typescript-eslint/eslint-plugin': 5.15.0_atr5zsmgmhbxx42ytq7ef6lbhi + '@typescript-eslint/parser': 5.15.0_7bdza2waopngrtr4qhziihsire '@wordpress/babel-preset-default': 6.6.1 '@wordpress/prettier-config': 1.1.3 cosmiconfig: 7.0.1 - eslint-config-prettier: 8.5.0 - eslint-plugin-import: 2.25.4 - eslint-plugin-jest: 25.7.0_a17cfd3e96203023414471d4aee9df06 - eslint-plugin-jsdoc: 37.9.7 - eslint-plugin-jsx-a11y: 6.5.1 - eslint-plugin-prettier: 3.4.1_93aed9f9c1dbf782336866b35bfb42b9 - eslint-plugin-react: 7.29.4 - eslint-plugin-react-hooks: 4.3.0 + eslint: 8.12.0 + eslint-config-prettier: 8.5.0_eslint@8.12.0 + eslint-plugin-import: 2.25.4_zry6r357nk6buau6dccmtrgyfm + eslint-plugin-jest: 25.7.0_ixikrc6l4iebcvppoirujuaz24 + eslint-plugin-jsdoc: 37.9.7_eslint@8.12.0 + eslint-plugin-jsx-a11y: 6.5.1_eslint@8.12.0 + eslint-plugin-prettier: 3.4.1_y56j6i6hor3dgpuevglq6yd6ay + eslint-plugin-react: 7.29.4_eslint@8.12.0 + eslint-plugin-react-hooks: 4.3.0_eslint@8.12.0 globals: 13.12.0 prettier: /wp-prettier/2.6.2 requireindex: 1.2.0 typescript: 4.2.4 transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack - jest - supports-color dev: true - /@wordpress/eslint-plugin/11.0.1_5db9b2fd1f8449bec1ecdb36b46d5f98: + /@wordpress/eslint-plugin/11.0.1_dkjil42ze2w7xdnhihp2ya7hea: resolution: {integrity: sha512-HDKwKjOmCaWdyJEtWKRAd0xK/NAXL/ykUP/I8l+zCvzvCXbS1UuixWN09RRzl09tv17JUtPiEqehDilkWRCBZg==} engines: {node: '>=12', npm: '>=6.9'} peerDependencies: @@ -16680,30 +15655,73 @@ packages: optional: true dependencies: '@babel/core': 7.17.8 - '@babel/eslint-parser': 7.17.0_@babel+core@7.17.8+eslint@8.12.0 - '@typescript-eslint/eslint-plugin': 5.15.0_c8b324c35d270b9e6d84e3592e846620 - '@typescript-eslint/parser': 5.15.0_eslint@8.12.0+typescript@4.6.2 + '@babel/eslint-parser': 7.17.0_6wgsqylbyqb6adwodmhnbhszeq + '@typescript-eslint/eslint-plugin': 5.15.0_zczsjq25e4fz43me4nms5bdgea + '@typescript-eslint/parser': 5.15.0_qfndwjbknwkswbha2khu23tpva '@wordpress/babel-preset-default': 6.6.1 '@wordpress/prettier-config': 1.1.3 cosmiconfig: 7.0.1 eslint: 8.12.0 eslint-config-prettier: 8.5.0_eslint@8.12.0 - eslint-plugin-import: 2.25.4_eslint@8.12.0 - eslint-plugin-jest: 25.7.0_6bef967891becc1ab6057e2949a5834f + eslint-plugin-import: 2.25.4_zry6r357nk6buau6dccmtrgyfm + eslint-plugin-jest: 25.7.0_npxzm6erx3gbvnqfpyuutjmdj4 eslint-plugin-jsdoc: 37.9.7_eslint@8.12.0 eslint-plugin-jsx-a11y: 6.5.1_eslint@8.12.0 - eslint-plugin-prettier: 3.4.1_c77c9f23c77476333e84a9970f607e06 + eslint-plugin-prettier: 3.4.1_vd5mkele5dxuckzmv7qvtxxknq eslint-plugin-react: 7.29.4_eslint@8.12.0 eslint-plugin-react-hooks: 4.3.0_eslint@8.12.0 globals: 13.12.0 - prettier: /wp-prettier/2.6.2 + prettier: 2.3.0 requireindex: 1.2.0 typescript: 4.6.2 transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack - jest - supports-color + dev: true - /@wordpress/eslint-plugin/7.4.0_eslint@7.32.0+typescript@4.6.2: + /@wordpress/eslint-plugin/11.0.1_nxdi2qub4ra46tpyph3fb3wi2e: + resolution: {integrity: sha512-HDKwKjOmCaWdyJEtWKRAd0xK/NAXL/ykUP/I8l+zCvzvCXbS1UuixWN09RRzl09tv17JUtPiEqehDilkWRCBZg==} + engines: {node: '>=12', npm: '>=6.9'} + peerDependencies: + '@babel/core': '>=7' + eslint: '>=8' + prettier: '>=2' + typescript: '>=4' + peerDependenciesMeta: + prettier: + optional: true + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/eslint-parser': 7.17.0_6wgsqylbyqb6adwodmhnbhszeq + '@typescript-eslint/eslint-plugin': 5.15.0_zczsjq25e4fz43me4nms5bdgea + '@typescript-eslint/parser': 5.15.0_qfndwjbknwkswbha2khu23tpva + '@wordpress/babel-preset-default': 6.6.1 + '@wordpress/prettier-config': 1.1.3 + cosmiconfig: 7.0.1 + eslint: 8.12.0 + eslint-config-prettier: 8.5.0_eslint@8.12.0 + eslint-plugin-import: 2.25.4_zry6r357nk6buau6dccmtrgyfm + eslint-plugin-jest: 25.7.0_npxzm6erx3gbvnqfpyuutjmdj4 + eslint-plugin-jsdoc: 37.9.7_eslint@8.12.0 + eslint-plugin-jsx-a11y: 6.5.1_eslint@8.12.0 + eslint-plugin-prettier: 3.4.1_g34tdu47tekfx6nxgc7umt64na + eslint-plugin-react: 7.29.4_eslint@8.12.0 + eslint-plugin-react-hooks: 4.3.0_eslint@8.12.0 + globals: 13.12.0 + requireindex: 1.2.0 + typescript: 4.6.2 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - jest + - supports-color + dev: false + + /@wordpress/eslint-plugin/7.4.0_e6rt7vlgxfprtuallp2t3cvyi4: resolution: {integrity: sha512-HJpDYz2drtC9rY8MiYtYJ3cimioEIweGyb3P2DQTjUZ3sC4AGg+97PhXLHUdKfsFQ31JRxyLS9kKuGdDVBwWww==} engines: {node: '>=10', npm: '>=6.9'} peerDependencies: @@ -16714,10 +15732,10 @@ packages: cosmiconfig: 7.0.1 eslint: 7.32.0 eslint-config-prettier: 6.15.0_eslint@7.32.0 - eslint-plugin-jest: 23.20.0_eslint@7.32.0+typescript@4.6.2 + eslint-plugin-jest: 23.20.0_e6rt7vlgxfprtuallp2t3cvyi4 eslint-plugin-jsdoc: 30.7.13_eslint@7.32.0 eslint-plugin-jsx-a11y: 6.5.1_eslint@7.32.0 - eslint-plugin-prettier: 3.4.1_c9a99bfb2ee2af6122c24fded4a635d5 + eslint-plugin-prettier: 3.4.1_zguzx6zo4kxwciwcj7pnjjrv2u eslint-plugin-react: 7.29.4_eslint@7.32.0 eslint-plugin-react-hooks: 4.3.0_eslint@7.32.0 globals: 12.4.0 @@ -16728,7 +15746,7 @@ packages: - typescript dev: true - /@wordpress/eslint-plugin/9.3.0_6151749b1cff915528d72fb0304a7f13: + /@wordpress/eslint-plugin/9.3.0_g4pmehz2ztf7apfee6qpsfc3iq: resolution: {integrity: sha512-9F7B60gHAjiTIi9vBw5ZoH0MZW3UnmbuKols4kWpJVdgsvG4X1Wj6XXTLmQKrzh/Em7mD1CCIbCSyWknEzIOLw==} engines: {node: '>=12', npm: '>=6.9'} peerDependencies: @@ -16738,26 +15756,28 @@ packages: typescript: optional: true dependencies: - '@babel/eslint-parser': 7.17.0_@babel+core@7.12.9+eslint@7.32.0 - '@typescript-eslint/eslint-plugin': 4.33.0_d337b069968294b7daf1a5fc7d23d391 - '@typescript-eslint/parser': 4.33.0_eslint@7.32.0+typescript@4.2.4 + '@babel/eslint-parser': 7.17.0_xujkgafwcpm5gwokncqwvv5ure + '@typescript-eslint/eslint-plugin': 4.33.0_3ekaj7j3owlolnuhj3ykrb7u7i + '@typescript-eslint/parser': 4.33.0_hxadhbs2xogijvk7vq4t2azzbu '@wordpress/prettier-config': 1.1.3 cosmiconfig: 7.0.1 eslint: 7.32.0 eslint-config-prettier: 7.2.0_eslint@7.32.0 - eslint-plugin-import: 2.25.4_eslint@7.32.0 - eslint-plugin-jest: 24.7.0_a0850db06e663c2717df708ee59002bd + eslint-plugin-import: 2.25.4_ffi3uiz42rv3jyhs6cr7p7qqry + eslint-plugin-jest: 24.7.0_k5xjpq6klvmabs3ktw27vlap4u eslint-plugin-jsdoc: 36.1.1_eslint@7.32.0 eslint-plugin-jsx-a11y: 6.5.1_eslint@7.32.0 - eslint-plugin-prettier: 3.4.1_34b707f3a53b0942f3919c1ff656ce36 + eslint-plugin-prettier: 3.4.1_gs3qp45fhmeuf44rtqp7mvwogy eslint-plugin-react: 7.29.4_eslint@7.32.0 eslint-plugin-react-hooks: 4.3.0_eslint@7.32.0 globals: 12.4.0 prettier: /wp-prettier/2.2.1-beta-1 requireindex: 1.2.0 - typescript: 4.2.4 + typescript: 4.7.4 transitivePeerDependencies: - '@babel/core' + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack - supports-color dev: true @@ -16993,7 +16013,7 @@ packages: jest-matcher-utils: 27.5.1 lodash: 4.17.21 - /@wordpress/jest-preset-default/6.6.0_70cfaaf06058dc9452c00bf5e5a9c8f2: + /@wordpress/jest-preset-default/6.6.0_slykazngj4ewgpxsih7vabcvku: resolution: {integrity: sha512-9HbKUNRMUCooXAKt+6jj5SZjDMtWoR9yMb9bJ5eCd9wUfrfQ/x2nUJK/RXiv1aI85HHmzl5KfQquZF76lYEkcw==} engines: {node: '>=10'} peerDependencies: @@ -17003,7 +16023,7 @@ packages: '@wordpress/jest-console': 3.10.0_jest@25.5.4 babel-jest: 25.5.1_@babel+core@7.17.8 enzyme: 3.11.0 - enzyme-adapter-react-16: 1.15.6_enzyme@3.11.0+react@17.0.2 + enzyme-adapter-react-16: 1.15.6_7ltvq4e2railvf5uya4ffxpe2a enzyme-to-json: 3.6.2_enzyme@3.11.0 jest: 25.5.4 transitivePeerDependencies: @@ -17013,35 +16033,15 @@ packages: - supports-color dev: true - /@wordpress/jest-preset-default/6.6.0_92f0a065a64f09633ef241ff50045555: - resolution: {integrity: sha512-9HbKUNRMUCooXAKt+6jj5SZjDMtWoR9yMb9bJ5eCd9wUfrfQ/x2nUJK/RXiv1aI85HHmzl5KfQquZF76lYEkcw==} - engines: {node: '>=10'} - peerDependencies: - jest: '>=25' - dependencies: - '@jest/reporters': 25.5.1 - '@wordpress/jest-console': 3.10.0_jest@25.5.4 - babel-jest: 25.5.1_@babel+core@7.17.8 - enzyme: 3.11.0 - enzyme-adapter-react-16: 1.15.6_fae758709a8810ba97b4c03852dde4d0 - enzyme-to-json: 3.6.2_enzyme@3.11.0 - jest: 25.5.4 - transitivePeerDependencies: - - '@babel/core' - - react - - react-dom - - supports-color - dev: true - - /@wordpress/jest-preset-default/7.1.3_@babel+core@7.12.9+jest@26.6.3: + /@wordpress/jest-preset-default/7.1.3_elzwojtqw3qxuf4po5iyc3kz2a: resolution: {integrity: sha512-rz9V/YRr3TjLdZJQu7DAZHo848PpZ4N5ThtP4Lujy1O/UtcvtKF0r34SZTNDlFQO/G1USZQX/WL6HRhgl57iHA==} engines: {node: '>=12'} peerDependencies: jest: '>=26' dependencies: - '@wojtekmaj/enzyme-adapter-react-17': 0.6.6_enzyme@3.11.0 + '@wojtekmaj/enzyme-adapter-react-17': 0.6.6_j6bpv5pizkyfppcg2tmva6pmii '@wordpress/jest-console': 4.1.1_jest@26.6.3 - babel-jest: 26.6.3_@babel+core@7.12.9 + babel-jest: 26.6.3_@babel+core@7.17.8 enzyme: 3.11.0 enzyme-to-json: 3.6.2_enzyme@3.11.0 jest: 26.6.3 @@ -17052,13 +16052,13 @@ packages: - supports-color dev: true - /@wordpress/jest-preset-default/7.1.3_@babel+core@7.12.9+jest@27.5.1: + /@wordpress/jest-preset-default/7.1.3_lzj7uau34542hrpvigopp7itta: resolution: {integrity: sha512-rz9V/YRr3TjLdZJQu7DAZHo848PpZ4N5ThtP4Lujy1O/UtcvtKF0r34SZTNDlFQO/G1USZQX/WL6HRhgl57iHA==} engines: {node: '>=12'} peerDependencies: jest: '>=26' dependencies: - '@wojtekmaj/enzyme-adapter-react-17': 0.6.6_enzyme@3.11.0 + '@wojtekmaj/enzyme-adapter-react-17': 0.6.6_7ltvq4e2railvf5uya4ffxpe2a '@wordpress/jest-console': 4.1.1_jest@27.5.1 babel-jest: 26.6.3_@babel+core@7.12.9 enzyme: 3.11.0 @@ -17071,7 +16071,7 @@ packages: - supports-color dev: false - /@wordpress/jest-preset-default/8.1.1_591b21f22e79f442e7df48b63364953c: + /@wordpress/jest-preset-default/8.1.1_lensd4roph2efz67jc3dgzevhq: resolution: {integrity: sha512-rcTZjDY482rUEz2pGLzc3FyQg4+2jFdduaO8kQGS/mC80HJ00X5m35NlkORbKitwLxDA0stFHA2334Rs2r6mDg==} engines: {node: '>=12'} peerDependencies: @@ -17081,7 +16081,7 @@ packages: react-dom: ^17.0.0 dependencies: '@babel/core': 7.17.8 - '@wojtekmaj/enzyme-adapter-react-17': 0.6.6_fae758709a8810ba97b4c03852dde4d0 + '@wojtekmaj/enzyme-adapter-react-17': 0.6.6_7ltvq4e2railvf5uya4ffxpe2a '@wordpress/jest-console': 5.0.2_jest@27.5.1 babel-jest: 27.5.1_@babel+core@7.17.8 enzyme: 3.11.0 @@ -17100,15 +16100,6 @@ packages: '@wordpress/i18n': 3.20.0 lodash: 4.17.21 - /@wordpress/keycodes/3.10.0: - resolution: {integrity: sha512-Udr9a8m39v4yFVdOlRv/yG82RkzBHxMNVJ6M9bhuQttpqeO7SzkYH2HyFIxg0wFvmZLXz9EYLZkr9AI8jhnDJw==} - engines: {node: '>=12'} - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/i18n': 4.15.0 - lodash: 4.17.21 - dev: false - /@wordpress/keycodes/3.16.0: resolution: {integrity: sha512-Vs/t3GBMaJ3dBAPZfhuZBuxdwagJdXhpSpvnkX3/MJrn6sRrLKijxkWK8x26PfkDePQ+3kiupP2pEoIwSCTUXg==} engines: {node: '>=12'} @@ -17138,18 +16129,6 @@ packages: '@wordpress/i18n': 4.15.0 dev: false - /@wordpress/notices/3.4.1: - resolution: {integrity: sha512-Y7e2GLlB5wjLOtxsXzJd3jg/p6LV2GeeUnk+reURqUbb/4rlVlXQuMPOboTxLRB/0eTMNwWFI/MIr+NKbuY7MQ==} - engines: {node: '>=12'} - peerDependencies: - react: ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/a11y': 3.5.0 - '@wordpress/data': 6.4.1 - lodash: 4.17.21 - dev: false - /@wordpress/notices/3.4.1_react@17.0.2: resolution: {integrity: sha512-Y7e2GLlB5wjLOtxsXzJd3jg/p6LV2GeeUnk+reURqUbb/4rlVlXQuMPOboTxLRB/0eTMNwWFI/MIr+NKbuY7MQ==} engines: {node: '>=12'} @@ -17163,7 +16142,7 @@ packages: react: 17.0.2 dev: false - /@wordpress/npm-package-json-lint-config/3.1.0_npm-package-json-lint@5.4.2: + /@wordpress/npm-package-json-lint-config/3.1.0_ngbyqqcq5j4itme2ewj5k5pf2y: resolution: {integrity: sha512-SYRWpzpQaSsBUiRO+ssqg6AHjgCF4j2npstGTGaKdVs/B720fLFzeyONuMmo1ZtMb9v6MyEWxVz5ON6dDgmVYg==} engines: {node: '>=8'} peerDependencies: @@ -17172,9 +16151,9 @@ packages: npm-package-json-lint: 5.4.2 dev: true - /@wordpress/npm-package-json-lint-config/4.1.2_npm-package-json-lint@5.4.2: - resolution: {integrity: sha512-Cq1qoSqt+nF2KOkzyH141YnHEnmd5jDRNbCmyC4lkofy6Qxpl4cVwFDX1dZ4S9WVjqqbLp3CEgRKxUzehyGInA==} - engines: {node: '>=12'} + /@wordpress/npm-package-json-lint-config/4.2.0_ngbyqqcq5j4itme2ewj5k5pf2y: + resolution: {integrity: sha512-eU7n1NsddAY0uooxe+oWtfWKxpZB9s8LBRvv6WxoFyA9eetxyvauaTrvvYhzgjxxdd5swTCPLvSR+jbkVYkuQw==} + engines: {node: '>=14'} peerDependencies: npm-package-json-lint: '>=3.6.0' dependencies: @@ -17206,13 +16185,13 @@ packages: autoprefixer: 9.8.6 postcss-custom-properties: 10.0.0 - /@wordpress/postcss-plugins-preset/3.8.0_postcss@8.4.12: - resolution: {integrity: sha512-Z+fHDY73QpxJZQxGZDQIsNhHJ1ubeqqwDVQcjOR5rhoo2EAgDtvbDTvf080/QGEzcQVenykmcb4M+5VduQypnA==} + /@wordpress/postcss-plugins-preset/3.10.0_postcss@8.4.12: + resolution: {integrity: sha512-vBXy+8e6BpUvmxcIFgldvFlTFA6kAlC+J86GcDEoIq/IFVoqSJlnX1s1QHXgG3CzTHjIlN/FNJxGxYinSMJhng==} engines: {node: '>=12'} peerDependencies: postcss: ^8.0.0 dependencies: - '@wordpress/base-styles': 4.5.0 + '@wordpress/base-styles': 4.8.0 autoprefixer: 10.4.4_postcss@8.4.12 postcss: 8.4.12 dev: true @@ -17224,6 +16203,8 @@ packages: autoprefixer: 8.6.5 postcss: 6.0.23 postcss-color-function: 4.1.0 + transitivePeerDependencies: + - supports-color dev: true /@wordpress/postcss-themes/2.6.0: @@ -17312,7 +16293,7 @@ packages: dependencies: '@babel/runtime': 7.17.7 '@wordpress/element': 4.14.0 - '@wordpress/i18n': 4.15.0 + '@wordpress/i18n': 4.16.0 utility-types: 3.10.0 dev: false @@ -17324,19 +16305,6 @@ packages: lodash: 4.17.21 rungen: 0.3.2 - /@wordpress/redux-routine/4.10.0_redux@4.2.0: - resolution: {integrity: sha512-1KDWOPRmm6Vf13+LoqwrEEcOp7vhZ+lgqOlOsW1FkZldOSQMqk273DYmCk+5VwD1vso6Sf5AX3IzlSLqUG8Jkg==} - engines: {node: '>=12'} - peerDependencies: - redux: '>=4' - dependencies: - '@babel/runtime': 7.17.7 - is-promise: 4.0.0 - lodash: 4.17.21 - redux: 4.2.0 - rungen: 0.3.2 - dev: false - /@wordpress/redux-routine/4.16.0_redux@4.2.0: resolution: {integrity: sha512-6nzF2HCYYCYN3WJAhWkYRMpz+I8hM1k9GO9SkD+W8BfCYUZ57+xv6no7g4IimYnqON6Iskm08V26194ZJbMLsQ==} engines: {node: '>=12'} @@ -17363,12 +16331,12 @@ packages: rungen: 0.3.2 dev: false - /@wordpress/rich-text/3.25.3: + /@wordpress/rich-text/3.25.3_react@16.14.0: resolution: {integrity: sha512-FdqL1/rHTsRxZ1gW1UEWuy0URmUEqMzj5hcAbOhHFPO5m0ENrkzC9bBa195KqZBSNSmBmXnDZdHu4UJUolzcZg==} dependencies: '@babel/runtime': 7.17.7 - '@wordpress/compose': 3.25.3 - '@wordpress/data': 4.27.3 + '@wordpress/compose': 3.25.3_react@16.14.0 + '@wordpress/data': 4.27.3_react@16.14.0 '@wordpress/dom': 2.18.0 '@wordpress/element': 2.20.3 '@wordpress/escape-html': 1.12.2 @@ -17382,25 +16350,6 @@ packages: - react dev: false - /@wordpress/rich-text/5.2.1: - resolution: {integrity: sha512-PBoDPQjihEOteHlDvVRtAjmDTx3T3NRr/GAX8MKVajECWFhiS6tKY2R/llg7fnJAinCIhEAfpNwQDpx2UCp3bA==} - engines: {node: '>=12'} - peerDependencies: - react: ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/a11y': 3.4.1 - '@wordpress/compose': 5.2.1 - '@wordpress/data': 6.4.1 - '@wordpress/element': 4.14.0 - '@wordpress/escape-html': 2.15.0 - '@wordpress/i18n': 4.4.1 - '@wordpress/keycodes': 3.4.1 - lodash: 4.17.21 - memize: 1.1.0 - rememo: 3.0.0 - dev: false - /@wordpress/rich-text/5.2.1_react@17.0.2: resolution: {integrity: sha512-PBoDPQjihEOteHlDvVRtAjmDTx3T3NRr/GAX8MKVajECWFhiS6tKY2R/llg7fnJAinCIhEAfpNwQDpx2UCp3bA==} engines: {node: '>=12'} @@ -17410,11 +16359,11 @@ packages: '@babel/runtime': 7.17.7 '@wordpress/a11y': 3.4.1 '@wordpress/compose': 5.2.1_react@17.0.2 - '@wordpress/data': 6.4.1_react@17.0.2 + '@wordpress/data': 6.15.0_react@17.0.2 '@wordpress/element': 4.14.0 '@wordpress/escape-html': 2.15.0 '@wordpress/i18n': 4.4.1 - '@wordpress/keycodes': 3.4.1 + '@wordpress/keycodes': 3.16.0 lodash: 4.17.21 memize: 1.1.0 react: 17.0.2 @@ -17429,19 +16378,19 @@ packages: dependencies: '@babel/runtime': 7.17.7 '@wordpress/a11y': 3.10.0 - '@wordpress/compose': 5.8.0_react@17.0.2 - '@wordpress/data': 6.10.0_react@17.0.2 + '@wordpress/compose': 5.14.0_react@17.0.2 + '@wordpress/data': 6.15.0_react@17.0.2 '@wordpress/element': 4.14.0 '@wordpress/escape-html': 2.15.0 - '@wordpress/i18n': 4.15.0 - '@wordpress/keycodes': 3.10.0 + '@wordpress/i18n': 4.16.0 + '@wordpress/keycodes': 3.16.0 lodash: 4.17.21 memize: 1.1.0 react: 17.0.2 rememo: 4.0.0 dev: false - /@wordpress/scripts/12.6.1_3f1b4fa1d29169e6bd7bf0dc7584ef3d: + /@wordpress/scripts/12.6.1_susjpqamog7lsizpt2hlm2i7w4: resolution: {integrity: sha512-pDLtACFrP5gUA414qrE49dUrR7yMy40+//1e/5Nx821lnmDb7GAGWGo1gX4lJ2gbfSjePwmRoZe6Mph87vSnLQ==} engines: {node: '>=10', npm: '>=6.9'} hasBin: true @@ -17449,13 +16398,13 @@ packages: '@svgr/webpack': 5.5.0 '@wordpress/babel-preset-default': 4.20.0 '@wordpress/dependency-extraction-webpack-plugin': 2.9.0_webpack@4.46.0 - '@wordpress/eslint-plugin': 7.4.0_eslint@7.32.0+typescript@4.6.2 - '@wordpress/jest-preset-default': 6.6.0_70cfaaf06058dc9452c00bf5e5a9c8f2 - '@wordpress/npm-package-json-lint-config': 3.1.0_npm-package-json-lint@5.4.2 + '@wordpress/eslint-plugin': 7.4.0_e6rt7vlgxfprtuallp2t3cvyi4 + '@wordpress/jest-preset-default': 6.6.0_slykazngj4ewgpxsih7vabcvku + '@wordpress/npm-package-json-lint-config': 3.1.0_ngbyqqcq5j4itme2ewj5k5pf2y '@wordpress/postcss-plugins-preset': 1.6.0 '@wordpress/prettier-config': 0.4.0 babel-jest: 25.5.1_@babel+core@7.17.8 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy chalk: 4.1.2 check-node-version: 3.3.0 clean-webpack-plugin: 3.0.0_webpack@4.46.0 @@ -17491,11 +16440,14 @@ packages: webpack-livereload-plugin: 2.3.0 transitivePeerDependencies: - '@babel/core' + - bluebird - bufferutil - canvas - fibers - file-loader - node-sass + - postcss-jsx + - postcss-markdown - react - react-dom - supports-color @@ -17504,70 +16456,7 @@ packages: - webpack-command dev: true - /@wordpress/scripts/12.6.1_952497c00c71beb9232f9e8eb6691fb7: - resolution: {integrity: sha512-pDLtACFrP5gUA414qrE49dUrR7yMy40+//1e/5Nx821lnmDb7GAGWGo1gX4lJ2gbfSjePwmRoZe6Mph87vSnLQ==} - engines: {node: '>=10', npm: '>=6.9'} - hasBin: true - dependencies: - '@svgr/webpack': 5.5.0 - '@wordpress/babel-preset-default': 4.20.0 - '@wordpress/dependency-extraction-webpack-plugin': 2.9.0_webpack@4.46.0 - '@wordpress/eslint-plugin': 7.4.0_eslint@7.32.0+typescript@4.6.2 - '@wordpress/jest-preset-default': 6.6.0_92f0a065a64f09633ef241ff50045555 - '@wordpress/npm-package-json-lint-config': 3.1.0_npm-package-json-lint@5.4.2 - '@wordpress/postcss-plugins-preset': 1.6.0 - '@wordpress/prettier-config': 0.4.0 - babel-jest: 25.5.1_@babel+core@7.17.8 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe - chalk: 4.1.2 - check-node-version: 3.3.0 - clean-webpack-plugin: 3.0.0_webpack@4.46.0 - cross-spawn: 5.1.0 - css-loader: 3.6.0_webpack@4.46.0 - dir-glob: 3.0.1 - eslint: 7.32.0 - eslint-plugin-markdown: 1.0.2 - ignore-emit-webpack-plugin: 2.0.6 - jest: 25.5.4 - jest-puppeteer: 4.4.0_puppeteer-core@3.0.0 - markdownlint: 0.18.0 - markdownlint-cli: 0.21.0 - mini-css-extract-plugin: 0.9.0_webpack@4.46.0 - minimist: 1.2.5 - npm-package-json-lint: 5.4.2 - postcss-loader: 3.0.0 - prettier: /wp-prettier/2.2.1-beta-1 - puppeteer: /puppeteer-core/3.0.0 - read-pkg-up: 1.0.1 - resolve-bin: 0.4.3 - sass: 1.49.9 - sass-loader: 8.0.2_sass@1.49.9+webpack@4.46.0 - source-map-loader: 0.2.4 - stylelint: 13.13.1 - stylelint-config-wordpress: 17.0.0_stylelint@13.13.1 - terser-webpack-plugin: 3.0.3_webpack@4.46.0 - thread-loader: 2.1.3_webpack@4.46.0 - url-loader: 3.0.0_webpack@4.46.0 - webpack: 4.46.0_webpack-cli@3.3.12 - webpack-bundle-analyzer: 3.9.0 - webpack-cli: 3.3.12_webpack@4.46.0 - webpack-livereload-plugin: 2.3.0 - transitivePeerDependencies: - - '@babel/core' - - bufferutil - - canvas - - fibers - - file-loader - - node-sass - - react - - react-dom - - supports-color - - typescript - - utf-8-validate - - webpack-command - dev: true - - /@wordpress/scripts/19.2.4_ee910045e4cc2812de8b965e303c7169: + /@wordpress/scripts/19.2.4_ip2riybfi2a76rt3fygtwzhpj4: resolution: {integrity: sha512-klkfjBOPfr/RT/3Tvmx+gLbZ+dxq5L0dJQHCHxEURMRW/A8SfJJPtmC29L9sE1KhO3zUMWxrkn2L6HhSzbvQbA==} engines: {node: '>=12.13', npm: '>=6.9'} hasBin: true @@ -17576,21 +16465,21 @@ packages: '@wordpress/babel-preset-default': 6.6.1 '@wordpress/browserslist-config': 4.1.2 '@wordpress/dependency-extraction-webpack-plugin': 3.4.1_webpack@5.70.0 - '@wordpress/eslint-plugin': 9.3.0_6151749b1cff915528d72fb0304a7f13 - '@wordpress/jest-preset-default': 7.1.3_@babel+core@7.12.9+jest@26.6.3 - '@wordpress/npm-package-json-lint-config': 4.1.2_npm-package-json-lint@5.4.2 - '@wordpress/postcss-plugins-preset': 3.8.0_postcss@8.4.12 + '@wordpress/eslint-plugin': 9.3.0_g4pmehz2ztf7apfee6qpsfc3iq + '@wordpress/jest-preset-default': 7.1.3_elzwojtqw3qxuf4po5iyc3kz2a + '@wordpress/npm-package-json-lint-config': 4.2.0_ngbyqqcq5j4itme2ewj5k5pf2y + '@wordpress/postcss-plugins-preset': 3.10.0_postcss@8.4.12 '@wordpress/prettier-config': 1.1.3 '@wordpress/stylelint-config': 19.1.0_stylelint@13.13.1 - babel-jest: 26.6.3_@babel+core@7.12.9 - babel-loader: 8.2.3_d3f6fe5812216e437b67a6bf164a056c - browserslist: 4.20.2 + babel-jest: 26.6.3_@babel+core@7.17.8 + babel-loader: 8.2.3_7kihywspc3gmje7ccze4zrmvoq + browserslist: 4.20.4 chalk: 4.1.2 check-node-version: 4.2.1 clean-webpack-plugin: 3.0.0_webpack@5.70.0 cross-spawn: 5.1.0 css-loader: 6.7.1_webpack@5.70.0 - cssnano: 5.1.11_postcss@8.4.12 + cssnano: 5.1.13_postcss@8.4.12 cwd: 0.10.0 dir-glob: 3.0.1 eslint: 7.32.0 @@ -17608,7 +16497,7 @@ packages: minimist: 1.2.5 npm-package-json-lint: 5.4.2 postcss: 8.4.12 - postcss-loader: 6.2.1_postcss@8.4.12+webpack@5.70.0 + postcss-loader: 6.2.1_wn4p5kzkgq2ohl66pfawxjf2x4 prettier: /wp-prettier/2.2.1-beta-1 puppeteer-core: 10.4.0 read-pkg-up: 1.0.1 @@ -17617,11 +16506,11 @@ packages: sass-loader: 12.6.0_sass@1.49.9+webpack@5.70.0 source-map-loader: 3.0.1_webpack@5.70.0 stylelint: 13.13.1 - terser-webpack-plugin: 5.2.5_uglify-js@3.14.5+webpack@5.70.0 + terser-webpack-plugin: 5.2.5_nbcs627s4kyotihtrmdrdzcw4a url-loader: 4.1.1_webpack@5.70.0 - webpack: 5.70.0_09a0288cc3aa3015774a489e904fdd90 - webpack-bundle-analyzer: 4.5.0 - webpack-cli: 4.9.2_ef5a9a6d45a146bbab2769a98537c0d5 + webpack: 5.70.0_bgqcrdgdviybk52kjcpjat65sa + webpack-bundle-analyzer: 4.6.1 + webpack-cli: 4.9.2_l6uyfs2pwihmnqphljbiozjymm webpack-livereload-plugin: 3.0.2_webpack@5.70.0 transitivePeerDependencies: - '@babel/core' @@ -17633,9 +16522,13 @@ packages: - canvas - debug - esbuild + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack - fibers - file-loader - node-sass + - postcss-jsx + - postcss-markdown - react - react-dom - sass-embedded @@ -17664,7 +16557,7 @@ packages: dependencies: stylelint: 13.13.1 stylelint-config-recommended: 3.0.0_stylelint@13.13.1 - stylelint-config-recommended-scss: 4.3.0_d55469ff7b1b68c43b61270d19a60ab6 + stylelint-config-recommended-scss: 4.3.0_2vkgt733dnumio3be4grtjqkwy stylelint-scss: 3.21.0_stylelint@13.13.1 dev: true @@ -17676,11 +16569,11 @@ packages: dependencies: stylelint: 13.8.0 stylelint-config-recommended: 3.0.0_stylelint@13.8.0 - stylelint-config-recommended-scss: 4.3.0_748c5b2cfae76328890a14c0b5cd0d73 + stylelint-config-recommended-scss: 4.3.0_osgfwlh245rsrcikctalltinom stylelint-scss: 3.21.0_stylelint@13.8.0 dev: true - /@wordpress/stylelint-config/20.0.2_postcss@8.4.12+stylelint@14.6.0: + /@wordpress/stylelint-config/20.0.2_gnuvbpze6hr4gjidcj2xbzgequ: resolution: {integrity: sha512-guP0Cwc4PysbRJroxWcBxViYaqaTlxrkcZ/dfsoB0ZLO+RrZ8YFktt02mt6q6MASLTBEWIBHVQ5nKLVFPWAWJg==} engines: {node: '>=12'} peerDependencies: @@ -17688,7 +16581,7 @@ packages: dependencies: stylelint: 14.6.0 stylelint-config-recommended: 6.0.0_stylelint@14.6.0 - stylelint-config-recommended-scss: 5.0.2_postcss@8.4.12+stylelint@14.6.0 + stylelint-config-recommended-scss: 5.0.2_gnuvbpze6hr4gjidcj2xbzgequ transitivePeerDependencies: - postcss dev: true @@ -17702,13 +16595,22 @@ packages: transitivePeerDependencies: - react-native + /@wordpress/url/2.22.2_react-native@0.70.0: + resolution: {integrity: sha512-aqpYKQXzyzkCOm+GzZRYlLb+wh58g0cwR1PaKAl0UXaBS4mdS+X6biMriylb4P8CVC/RR7CSw5XI20JC24KDwQ==} + dependencies: + '@babel/runtime': 7.17.7 + lodash: 4.17.21 + react-native-url-polyfill: 1.3.0_react-native@0.70.0 + transitivePeerDependencies: + - react-native + dev: false + /@wordpress/url/3.16.0: resolution: {integrity: sha512-5hlT8KfioKrmfqQAHihj2pWqc8oMUFNae3n5/Wlu8H60Btf5h+cBfxr6eiOXPEVX9Ko9NskLjmAqCxxoiNviqg==} engines: {node: '>=12'} dependencies: '@babel/runtime': 7.17.7 remove-accents: 0.4.2 - dev: false /@wordpress/url/3.5.1: resolution: {integrity: sha512-m4gjNdOkwaZ9NOVk/lYtpW4GoxHU0ZSv6WX3pFYRDSPdI1eX45uA8RrhPBYuj/e/XPUBiS+FXDilR0uvqqz9FA==} @@ -17716,6 +16618,7 @@ packages: dependencies: '@babel/runtime': 7.17.7 lodash: 4.17.21 + dev: false /@wordpress/viewport/4.2.1_react@17.0.2: resolution: {integrity: sha512-khCqUED/fXT3RlbWiCcE4gilcB0iZ5Y6d+VjwkJcoAtPLJn6HBiOS9qypNj8NmMYhkIGP1SMSnnp4u2jiHsqcg==} @@ -17725,7 +16628,7 @@ packages: dependencies: '@babel/runtime': 7.17.7 '@wordpress/compose': 5.2.1_react@17.0.2 - '@wordpress/data': 6.4.1_react@17.0.2 + '@wordpress/data': 6.15.0_react@17.0.2 lodash: 4.17.21 react: 17.0.2 dev: false @@ -17747,7 +16650,7 @@ packages: resolution: {integrity: sha512-RE4iOGxYuWB0OnUEdp5qRDY1gteaBcIv3ihAYMM2e7EVqmE0rSHANjsYQQEk/3XfpnvaVTz+YGifMnaVF2z7Mg==} engines: {node: '>=12'} - /@wp-g2/components/0.0.140_5bd65f250b6b6f498b93c4f7fa8a50e6: + /@wp-g2/components/0.0.140_ty5dlwfo5favn5jfawlzvhwt6e: resolution: {integrity: sha512-bychuhZ3wPSB457CHYcogoPQPlP/eUA9GoTo0Fv0rj7f44Gr9XlPoqVT+GQa3CmPnvSCAl1sjoe75Vkaoo/O1w==} peerDependencies: '@wordpress/i18n': '>=3.17.0' @@ -17758,42 +16661,46 @@ packages: '@popperjs/core': 2.11.4 '@wordpress/i18n': 3.20.0 '@wordpress/icons': 2.10.3 - '@wp-g2/context': 0.0.140_781a76f2df0044de58919a3ef767af9f - '@wp-g2/styles': 0.0.140_781a76f2df0044de58919a3ef767af9f - '@wp-g2/utils': 0.0.140 + '@wp-g2/context': 0.0.140_amkogjb4agy5k2c7l3v5yjbnnm + '@wp-g2/styles': 0.0.140_amkogjb4agy5k2c7l3v5yjbnnm + '@wp-g2/utils': 0.0.140_wcqkhtmu7mswc6yz4uyexck3ty csstype: 3.0.10 - downshift: 6.1.7 - framer-motion: 2.9.5 + downshift: 6.1.9_react@16.14.0 + framer-motion: 2.9.5_wcqkhtmu7mswc6yz4uyexck3ty highlight-words-core: 1.2.2 history: 4.10.1 lodash: 4.17.21 path-to-regexp: 1.8.0 - react-colorful: 4.4.4 - react-textarea-autosize: 8.3.3 - react-use-gesture: 9.1.3 - reakit: 1.1.0 + react: 16.14.0 + react-colorful: 4.4.4_wcqkhtmu7mswc6yz4uyexck3ty + react-dom: 16.14.0_react@16.14.0 + react-textarea-autosize: 8.3.3_react@16.14.0 + react-use-gesture: 9.1.3_react@16.14.0 + reakit: 1.1.0_wcqkhtmu7mswc6yz4uyexck3ty transitivePeerDependencies: - '@types/react' - '@wordpress/data' - '@wordpress/is-shallow-equal' dev: false - /@wp-g2/context/0.0.140_781a76f2df0044de58919a3ef767af9f: + /@wp-g2/context/0.0.140_amkogjb4agy5k2c7l3v5yjbnnm: resolution: {integrity: sha512-z32fxZ2tCVmYQC+wyyziyrhEvWBPFBQfUhUHF85JmTUPzQQeEPiLC3rgDAT0fUTFlJHinPJQq6871RDqFSwCUA==} peerDependencies: react: ^16.13.1 react-dom: ^16.13.1 dependencies: - '@wp-g2/styles': 0.0.140_781a76f2df0044de58919a3ef767af9f - '@wp-g2/utils': 0.0.140 + '@wp-g2/styles': 0.0.140_amkogjb4agy5k2c7l3v5yjbnnm + '@wp-g2/utils': 0.0.140_wcqkhtmu7mswc6yz4uyexck3ty lodash: 4.17.21 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 transitivePeerDependencies: - '@types/react' - '@wordpress/data' - '@wordpress/is-shallow-equal' dev: false - /@wp-g2/create-styles/0.0.140_781a76f2df0044de58919a3ef767af9f: + /@wp-g2/create-styles/0.0.140_amkogjb4agy5k2c7l3v5yjbnnm: resolution: {integrity: sha512-/60DxWjCAhsoYOqY7aiHVbkTAF+L6qZIyHyH50oNs9FTVkcRLHQFSC0kHgAam+Z9K3eImQ7hM52wfBDqae0q2Q==} peerDependencies: '@wordpress/data': '>=4.26' @@ -17801,37 +16708,41 @@ packages: react: ^16.13.1 react-dom: ^16.13.1 dependencies: - '@emotion/core': 10.3.1 + '@emotion/core': 10.3.1_react@16.14.0 '@emotion/is-prop-valid': 0.8.8 - '@wordpress/data': 4.27.3 + '@wordpress/data': 4.27.3_react@16.14.0 '@wordpress/is-shallow-equal': 3.1.3 - '@wp-g2/utils': 0.0.140 + '@wp-g2/utils': 0.0.140_wcqkhtmu7mswc6yz4uyexck3ty create-emotion: 10.0.27 emotion: 10.0.27 - emotion-theming: 10.3.0_@emotion+core@10.3.1 + emotion-theming: 10.3.0_qzeatvug73zaio2r3dlvejynye lodash: 4.17.21 mitt: 2.1.0 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 rtlcss: 2.6.2 styled-griddie: 0.1.3 transitivePeerDependencies: - '@types/react' dev: false - /@wp-g2/styles/0.0.140_781a76f2df0044de58919a3ef767af9f: + /@wp-g2/styles/0.0.140_amkogjb4agy5k2c7l3v5yjbnnm: resolution: {integrity: sha512-wAvtqQOqX2zYpfEdVK4l4abH/hUUgw/+8+E5PvPgrsvqFg8IehNSksnjNF5/IloLRGAH70d8ytjMuMnUK8PVYA==} peerDependencies: react: ^16.13.1 react-dom: ^16.13.1 dependencies: - '@wp-g2/create-styles': 0.0.140_781a76f2df0044de58919a3ef767af9f - '@wp-g2/utils': 0.0.140 + '@wp-g2/create-styles': 0.0.140_amkogjb4agy5k2c7l3v5yjbnnm + '@wp-g2/utils': 0.0.140_wcqkhtmu7mswc6yz4uyexck3ty + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 transitivePeerDependencies: - '@types/react' - '@wordpress/data' - '@wordpress/is-shallow-equal' dev: false - /@wp-g2/utils/0.0.140: + /@wp-g2/utils/0.0.140_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-a4uYi/XQEDrOAIO3JUQ+L/oeSkgp+08pSy41xxQ1nIRHs7X+Du84X2EFQrvZfGBRuXuVlVuUIlN2e0IE8yUZKw==} peerDependencies: react: ^16.13.1 @@ -17845,50 +16756,52 @@ packages: json2mq: 0.2.0 lodash: 4.17.21 memize: 1.1.0 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 react-merge-refs: 1.1.0 - react-resize-aware: 3.1.1 - reakit-warning: 0.5.5 + react-resize-aware: 3.1.1_react@16.14.0 + reakit-warning: 0.5.5_wcqkhtmu7mswc6yz4uyexck3ty tinycolor2: 1.4.2 - use-enhanced-state: 0.0.13 - use-isomorphic-layout-effect: 1.1.1 + use-enhanced-state: 0.0.13_react@16.14.0 + use-isomorphic-layout-effect: 1.1.1_react@16.14.0 transitivePeerDependencies: - '@types/react' dev: false /@xtuc/ieee754/1.2.0: resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} - dev: true /@xtuc/long/4.2.2: resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} - dev: true /abab/2.0.5: resolution: {integrity: sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==} /abbrev/1.0.9: - resolution: {integrity: sha1-kbR5JYinc4wl813W9jdSovh3YTU=} + resolution: {integrity: sha512-LEyx4aLEC3x6T0UguF6YILf+ntvmOaWsVfENmIW0E9H09vKlLDGelMjjSm0jkDHALj8A8quZ/HapKNigzwge+Q==} dev: true /abbrev/1.1.1: resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} dev: true - /accepts/1.3.7: - resolution: {integrity: sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==} - engines: {node: '>= 0.6'} + /abort-controller/3.0.0: + resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} + engines: {node: '>=6.5'} dependencies: - mime-types: 2.1.34 - negotiator: 0.6.2 - dev: true + event-target-shim: 5.0.1 + dev: false + + /absolute-path/0.0.0: + resolution: {integrity: sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==} + dev: false /accepts/1.3.8: resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} engines: {node: '>= 0.6'} dependencies: - mime-types: 2.1.34 + mime-types: 2.1.35 negotiator: 0.6.3 - dev: false /acorn-globals/4.3.4: resolution: {integrity: sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==} @@ -17908,7 +16821,6 @@ packages: acorn: ^8 dependencies: acorn: 8.7.0 - dev: true /acorn-jsx/5.3.2_acorn@6.4.2: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} @@ -17931,7 +16843,6 @@ packages: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.7.0 - dev: true /acorn-walk/6.2.0: resolution: {integrity: sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==} @@ -18035,7 +16946,7 @@ packages: symbol.prototype.description: 1.0.5 dev: true - /airbnb-prop-types/2.16.0: + /airbnb-prop-types/2.16.0_react@16.14.0: resolution: {integrity: sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==} peerDependencies: react: ^0.14 || ^15.0.0 || ^16.0.0-alpha @@ -18048,6 +16959,7 @@ packages: object.entries: 1.1.5 prop-types: 15.8.1 prop-types-exact: 1.2.0 + react: 16.14.0 react-is: 16.13.1 dev: false @@ -18074,8 +16986,10 @@ packages: dependencies: ajv: 6.12.6 - /ajv-formats/2.1.1: + /ajv-formats/2.1.1_ajv@8.8.1: resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 peerDependenciesMeta: ajv: optional: true @@ -18113,8 +17027,8 @@ packages: require-from-string: 2.0.2 uri-js: 4.4.1 - /allure-commandline/2.17.2: - resolution: {integrity: sha512-2a0M0nX1KtVrg4y0rWEFn/OQkv7AaQSMBOEtlKfQl3heZoTEo0IdB08Uk5vU390+qPsEv3EO5igjyCrS0gX+FQ==} + /allure-commandline/2.18.1: + resolution: {integrity: sha512-bB0jY00yXxROgaTkC/PTFzmT0sVuHGiOhm80onO+N/tr5MF3eQrBkwTOdvuefEWJ1NTACutvmzZSYn8o6W2evA==} hasBin: true /allure-js-commons/1.3.2: @@ -18123,28 +17037,32 @@ packages: file-type: 7.7.1 fs-extra: 6.0.1 js2xmlparser: 3.0.0 - mime: 2.5.2 + mime: 2.6.0 object-assign: 4.1.1 uuid: 3.4.0 dev: false - /allure-js-commons/2.0.0-beta.16: - resolution: {integrity: sha512-biAFm8FugPMA0THZpsWLdi+F8n1BeUTYkkpmQ4ZqUAKeg2xcw5arM0Qa4rq6Qs0HPLbdVS9Jj8fb7e/ahCr/Ig==} + /allure-js-commons/2.0.0-beta.19: + resolution: {integrity: sha512-sgt7TnU7s8QIzEOmLFO0T5ih4W2YbLrcsL1ElO7WN/dPzIww4G1BBJQDK98VCS+cG5qIljBYRuJ+rtzKWgtM8A==} dependencies: mkdirp: 1.0.4 properties: 1.2.1 uuid: 8.3.2 dev: true - /allure-playwright/2.0.0-beta.16: - resolution: {integrity: sha512-0Nj2BLIIRFUCZn7CGSXYa7d1M+phmSzUwMD3fbHVxO+q10vNrY8Hf5IT2ITwWMtUHaTAE6uH58GPsa6DB9N3Xw==} + /allure-playwright/2.0.0-beta.19: + resolution: {integrity: sha512-TMSZToE0oPXz0qfH1cMaO5kcMrV8GkSlM1650Hk9dwpR/ldH2zx23/E7l1f77Elpqp/bGNyekjXNhYSx9ihCVg==} dependencies: - allure-js-commons: 2.0.0-beta.16 + allure-js-commons: 2.0.0-beta.19 dev: true /alphanum-sort/1.0.2: resolution: {integrity: sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==} + /anser/1.4.10: + resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==} + dev: false + /ansi-align/2.0.0: resolution: {integrity: sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=} dependencies: @@ -18177,6 +17095,14 @@ packages: dependencies: type-fest: 0.21.3 + /ansi-fragments/0.2.1: + resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==} + dependencies: + colorette: 1.4.0 + slice-ansi: 2.1.0 + strip-ansi: 5.2.0 + dev: false + /ansi-html-community/0.0.8: resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} engines: {'0': node >= 0.8.0} @@ -18184,7 +17110,7 @@ packages: dev: true /ansi-regex/1.1.1: - resolution: {integrity: sha1-QchHGUZGN15qGl0Qw8oFTvn8mA0=} + resolution: {integrity: sha512-q5i8bFLg2wDfsuR56c1NzlJFPzVD+9mxhDrhqOGigEFa87OZHlF+9dWeGWzVTP/0ECiA/JUGzfzRr2t3eYORRw==} engines: {node: '>=0.10.0'} dev: false @@ -18254,6 +17180,8 @@ packages: dependencies: micromatch: 3.1.10 normalize-path: 2.1.1 + transitivePeerDependencies: + - supports-color /anymatch/3.1.2: resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} @@ -18271,8 +17199,12 @@ packages: engines: {node: '>= 6.0.0'} dev: false + /appdirsjs/1.2.7: + resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==} + dev: false + /append-transform/0.4.0: - resolution: {integrity: sha1-126/jKlNJ24keja61EpLdKthGZE=} + resolution: {integrity: sha512-Yisb7ew0ZEyDtRYQ+b+26o9KbiYPFxwcsxKzbssigzRRMJ9LpExPVUg6Fos7eP7yP3q7///tzze4nm4lTptPBw==} engines: {node: '>=0.10.0'} dependencies: default-require-extensions: 1.0.0 @@ -18290,9 +17222,9 @@ packages: readable-stream: 3.6.0 dev: true - /are-we-there-yet/3.0.0: - resolution: {integrity: sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16} + /are-we-there-yet/3.0.1: + resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: delegates: 1.0.0 readable-stream: 3.6.0 @@ -18308,7 +17240,6 @@ packages: /argparse/2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - dev: true /aria-query/4.2.2: resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} @@ -18322,7 +17253,7 @@ packages: engines: {node: '>=6.0'} /arr-diff/4.0.0: - resolution: {integrity: sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=} + resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} engines: {node: '>=0.10.0'} /arr-flatten/1.1.0: @@ -18330,7 +17261,7 @@ packages: engines: {node: '>=0.10.0'} /arr-union/3.1.0: - resolution: {integrity: sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=} + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} engines: {node: '>=0.10.0'} /array-differ/3.0.0: @@ -18395,7 +17326,7 @@ packages: dev: true /array-unique/0.3.2: - resolution: {integrity: sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=} + resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} engines: {node: '>=0.10.0'} /array.prototype.filter/1.0.1: @@ -18403,8 +17334,8 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.19.1 + define-properties: 1.1.4 + es-abstract: 1.20.2 es-array-method-boxes-properly: 1.0.0 is-string: 1.0.7 @@ -18412,8 +17343,8 @@ packages: resolution: {integrity: sha512-00S1O4ewO95OmmJW7EesWfQlrCrLEL8kZ40w3+GkLX2yTt0m2ggcePPa2uHPJ9KUmJvwRq+lCV9bD8Yim23x/Q==} dependencies: call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.19.1 + define-properties: 1.1.4 + es-abstract: 1.20.2 /array.prototype.flat/1.2.5: resolution: {integrity: sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==} @@ -18436,8 +17367,8 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.19.1 + define-properties: 1.1.4 + es-abstract: 1.20.2 es-array-method-boxes-properly: 1.0.0 is-string: 1.0.7 dev: true @@ -18458,7 +17389,6 @@ packages: /asap/2.0.6: resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} - dev: true /asn1.js/5.4.1: resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==} @@ -18490,7 +17420,7 @@ packages: dev: true /assign-symbols/1.0.0: - resolution: {integrity: sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=} + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} engines: {node: '>=0.10.0'} /ast-types-flow/0.0.7: @@ -18501,7 +17431,6 @@ packages: engines: {node: '>=4'} dependencies: tslib: 2.3.1 - dev: true /astral-regex/1.0.0: resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==} @@ -18520,9 +17449,6 @@ packages: /async-limiter/1.0.1: resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} - /async/0.9.2: - resolution: {integrity: sha512-l6ToIJIotphWahxxHyzK9bnLR6kM4jJIIgLShZeqLY7iboHoGkdgFl7W2/Ivi4SkMJYGKqW8vSuk0uKUj6qsSw==} - /async/1.5.2: resolution: {integrity: sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==} dev: true @@ -18559,7 +17485,7 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.20.2 - caniuse-lite: 1.0.30001317 + caniuse-lite: 1.0.30001352 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -18572,7 +17498,7 @@ packages: hasBin: true dependencies: browserslist: 3.2.8 - caniuse-lite: 1.0.30001317 + caniuse-lite: 1.0.30001352 normalize-range: 0.1.2 num2fraction: 1.2.2 postcss: 6.0.23 @@ -18595,12 +17521,17 @@ packages: resolution: {integrity: sha512-5yxLQ22O0fCRGoxGfeLSNt3J8LB1v+umtpMnPW6XjkTWXKoN0AmXAIhelJcDtFT/Y/wYWmfE+oqU10Q0b8FhaQ==} dev: true + /available-typed-arrays/1.0.5: + resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} + engines: {node: '>= 0.4'} + dev: true + /await-exec/0.1.2: resolution: {integrity: sha512-BQUiyBLScS0+YPnnCZZGjb78mZ8sQ8aKgxarDPNw05rpbaCS7VIQSLy2tgjZKct9Dn1xLbKMXOpA98OWei90zA==} dev: true - /aws-sdk/2.1079.0: - resolution: {integrity: sha512-WHYWiye9f2XYQ33Rj/uVw4VF/Qq/xrB9NDnGlRhgK8Ga7T20+8/iZD5/Z8wICVNZTsfUZ3g6LfkeZ1l+LZhHKw==} + /aws-sdk/2.1215.0: + resolution: {integrity: sha512-btOexIY0O2F+HhjytToaYuub2HEdLqccZSM8rbT3nrbXo7U4k4Gqi6SbMGi2a+vEpj8lY8dAuMR2lvvVs4Ib9Q==} engines: {node: '>= 10.0.0'} dependencies: buffer: 4.9.2 @@ -18610,7 +17541,8 @@ packages: querystring: 0.2.0 sax: 1.2.1 url: 0.10.3 - uuid: 3.3.2 + util: 0.12.4 + uuid: 8.0.0 xml2js: 0.4.19 dev: true @@ -18640,6 +17572,8 @@ packages: deprecated: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410 dependencies: follow-redirects: 1.5.10 + transitivePeerDependencies: + - supports-color dev: true /axios/0.21.4: @@ -18655,7 +17589,6 @@ packages: follow-redirects: 1.14.5 transitivePeerDependencies: - debug - dev: false /axobject-query/2.2.0: resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} @@ -18668,12 +17601,12 @@ packages: js-tokens: 3.0.2 dev: true - /babel-core/7.0.0-bridge.0_@babel+core@7.16.0: + /babel-core/7.0.0-bridge.0_@babel+core@7.12.9: resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.16.0 + '@babel/core': 7.12.9 dev: true /babel-core/7.0.0-bridge.0_@babel+core@7.17.8: @@ -18682,7 +17615,6 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - dev: true /babel-eslint/10.1.0_eslint@6.8.0: resolution: {integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==} @@ -18691,10 +17623,10 @@ packages: peerDependencies: eslint: '>= 4.12.1' dependencies: - '@babel/code-frame': 7.16.0 - '@babel/parser': 7.16.4 - '@babel/traverse': 7.16.3 - '@babel/types': 7.16.0 + '@babel/code-frame': 7.16.7 + '@babel/parser': 7.17.8 + '@babel/traverse': 7.17.3 + '@babel/types': 7.17.0 eslint: 6.8.0 eslint-visitor-keys: 1.3.0 resolve: 1.20.0 @@ -18709,10 +17641,10 @@ packages: peerDependencies: eslint: '>= 4.12.1' dependencies: - '@babel/code-frame': 7.16.0 - '@babel/parser': 7.16.4 - '@babel/traverse': 7.16.3 - '@babel/types': 7.16.0 + '@babel/code-frame': 7.16.7 + '@babel/parser': 7.17.8 + '@babel/traverse': 7.17.3 + '@babel/types': 7.17.0 eslint: 7.32.0 eslint-visitor-keys: 1.3.0 resolve: 1.20.0 @@ -18741,6 +17673,8 @@ packages: babel-template: 6.26.0 babel-traverse: 6.26.0 babel-types: 6.26.0 + transitivePeerDependencies: + - supports-color dev: true /babel-helper-get-function-arity/6.24.1: @@ -18804,6 +17738,7 @@ packages: slash: 3.0.0 transitivePeerDependencies: - supports-color + dev: false /babel-jest/26.6.3_@babel+core@7.17.8: resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} @@ -18824,25 +17759,6 @@ packages: - supports-color dev: true - /babel-jest/27.3.1_@babel+core@7.16.0: - resolution: {integrity: sha512-SjIF8hh/ir0peae2D6S6ZKRhUy7q/DnpH7k/V6fT4Bgs/LXXUztOpX4G2tCgq8mLo5HA9mN6NmlFMeYtKmIsTQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - '@babel/core': ^7.8.0 - dependencies: - '@babel/core': 7.16.0 - '@jest/transform': 27.3.1 - '@jest/types': 27.2.5 - '@types/babel__core': 7.1.16 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 27.2.0_@babel+core@7.16.0 - chalk: 4.1.2 - graceful-fs: 4.2.9 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - dev: true - /babel-jest/27.5.1_@babel+core@7.17.8: resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -18861,22 +17777,7 @@ packages: transitivePeerDependencies: - supports-color - /babel-loader/8.2.3_b72fb7e629d39881e138edb6dcd0dfbe: - resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==} - engines: {node: '>= 8.9'} - peerDependencies: - '@babel/core': ^7.0.0 - webpack: '>=2' - dependencies: - '@babel/core': 7.17.8 - find-cache-dir: 3.3.2 - loader-utils: 1.4.0 - make-dir: 3.1.0 - schema-utils: 2.7.1 - webpack: 4.46.0_webpack-cli@3.3.12 - dev: true - - /babel-loader/8.2.3_d3f6fe5812216e437b67a6bf164a056c: + /babel-loader/8.2.3_2p3p4wasefxeg63hu27rmsqfnq: resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==} engines: {node: '>= 8.9'} peerDependencies: @@ -18891,7 +17792,7 @@ packages: webpack: 5.70.0 dev: true - /babel-loader/8.2.3_fa907c5a4f16ccc493e21649ccc59574: + /babel-loader/8.2.3_7kihywspc3gmje7ccze4zrmvoq: resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==} engines: {node: '>= 8.9'} peerDependencies: @@ -18906,6 +17807,21 @@ packages: webpack: 5.70.0_webpack-cli@4.9.2 dev: true + /babel-loader/8.2.3_w4x3pzrj2omidyjy5w3nzug7xy: + resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: '>=2' + dependencies: + '@babel/core': 7.17.8 + find-cache-dir: 3.3.2 + loader-utils: 1.4.0 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 4.46.0_webpack-cli@3.3.12 + dev: true + /babel-messages/6.23.0: resolution: {integrity: sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=} dependencies: @@ -19000,16 +17916,6 @@ packages: '@types/babel__core': 7.1.16 '@types/babel__traverse': 7.14.2 - /babel-plugin-jest-hoist/27.2.0: - resolution: {integrity: sha512-TOux9khNKdi64mW+0OIhcmbAn75tTlzKhxmiNXevQaPbrBYK7YKjP1jl6NHTJ6XR5UgUrJbCnWlKVnJn29dfjw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@babel/template': 7.16.0 - '@babel/types': 7.17.0 - '@types/babel__core': 7.1.16 - '@types/babel__traverse': 7.14.2 - dev: true - /babel-plugin-jest-hoist/27.5.1: resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -19064,19 +17970,6 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-corejs2/0.3.0_@babel+core@7.16.0: - resolution: {integrity: sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.16.4 - '@babel/core': 7.16.0 - '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - /babel-plugin-polyfill-corejs2/0.3.0_@babel+core@7.16.12: resolution: {integrity: sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==} peerDependencies: @@ -19126,18 +18019,6 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.4.0_@babel+core@7.16.0: - resolution: {integrity: sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.0 - core-js-compat: 3.19.1 - transitivePeerDependencies: - - supports-color - dev: true - /babel-plugin-polyfill-corejs3/0.4.0_@babel+core@7.16.12: resolution: {integrity: sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==} peerDependencies: @@ -19207,17 +18088,6 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.3.0_@babel+core@7.16.0: - resolution: {integrity: sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.0 - transitivePeerDependencies: - - supports-color - dev: true - /babel-plugin-polyfill-regenerator/0.3.0_@babel+core@7.16.12: resolution: {integrity: sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==} peerDependencies: @@ -19256,6 +18126,10 @@ packages: /babel-plugin-syntax-jsx/6.18.0: resolution: {integrity: sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=} + /babel-plugin-syntax-trailing-function-commas/7.0.0-beta.0: + resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} + dev: false + /babel-plugin-transform-class-properties/6.24.1: resolution: {integrity: sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=} dependencies: @@ -19263,6 +18137,8 @@ packages: babel-plugin-syntax-class-properties: 6.13.0 babel-runtime: 6.26.0 babel-template: 6.26.0 + transitivePeerDependencies: + - supports-color dev: true /babel-plugin-transform-es2015-template-literals/6.22.0: @@ -19308,46 +18184,7 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.9 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.9 '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.12.9 - - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.16.0: - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.16.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.16.0 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.16.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.0 - dev: true - - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.16.12: - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.16.12 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.12 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.16.12 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.16.12 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.16.12 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.12 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.12 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.12 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.12 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.12 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.12 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.12 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.12 - dev: true + dev: false /babel-preset-current-node-syntax/1.0.1_@babel+core@7.17.8: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} @@ -19368,6 +18205,43 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8 '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.8 + /babel-preset-fbjs/3.4.0_@babel+core@7.17.8: + resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.8 + '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.8 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 + '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.17.8 + '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.8 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 + babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 + transitivePeerDependencies: + - supports-color + dev: false + /babel-preset-jest/24.9.0_@babel+core@7.17.8: resolution: {integrity: sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==} engines: {node: '>= 6'} @@ -19399,6 +18273,7 @@ packages: '@babel/core': 7.12.9 babel-plugin-jest-hoist: 26.6.2 babel-preset-current-node-syntax: 1.0.1_@babel+core@7.12.9 + dev: false /babel-preset-jest/26.6.2_@babel+core@7.17.8: resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} @@ -19411,17 +18286,6 @@ packages: babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.8 dev: true - /babel-preset-jest/27.2.0_@babel+core@7.16.0: - resolution: {integrity: sha512-z7MgQ3peBwN5L5aCqBKnF6iqdlvZvFUQynEhu0J+X9nHLU72jO3iY331lcYrg+AssJ8q7xsv5/3AICzVmJ/wvg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.16.0 - babel-plugin-jest-hoist: 27.2.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.16.0 - dev: true - /babel-preset-jest/27.5.1_@babel+core@7.17.8: resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -19447,6 +18311,8 @@ packages: babel-types: 6.26.0 babylon: 6.18.0 lodash: 4.17.21 + transitivePeerDependencies: + - supports-color dev: true /babel-traverse/6.26.0: @@ -19461,6 +18327,8 @@ packages: globals: 9.18.0 invariant: 2.2.4 lodash: 4.17.21 + transitivePeerDependencies: + - supports-color dev: true /babel-types/6.26.0: @@ -19564,14 +18432,14 @@ packages: /big.js/5.2.2: resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} - /bin-links/3.0.0: - resolution: {integrity: sha512-fC7kPWcEkAWBgCKxmAMqZldlIeHsXwQy9JXzrppAVQiukGiDKxmYesJcBKWu6UMwx/5GOfo10wtK/4zy+Xt/mg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16} + /bin-links/3.0.3: + resolution: {integrity: sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: - cmd-shim: 4.1.0 + cmd-shim: 5.0.0 mkdirp-infer-owner: 2.0.0 - npm-normalize-package-bin: 1.0.1 - read-cmd-shim: 2.0.0 + npm-normalize-package-bin: 2.0.0 + read-cmd-shim: 3.0.1 rimraf: 3.0.2 write-file-atomic: 4.0.1 dev: true @@ -19626,22 +18494,6 @@ packages: resolution: {integrity: sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==} dev: true - /body-parser/1.19.0: - resolution: {integrity: sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==} - engines: {node: '>= 0.8'} - dependencies: - bytes: 3.1.0 - content-type: 1.0.4 - debug: 2.6.9 - depd: 1.1.2 - http-errors: 1.7.2 - iconv-lite: 0.4.24 - on-finished: 2.3.0 - qs: 6.7.0 - raw-body: 2.4.0 - type-is: 1.6.18 - dev: true - /body-parser/1.20.0: resolution: {integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} @@ -19658,7 +18510,8 @@ packages: raw-body: 2.5.1 type-is: 1.6.18 unpipe: 1.0.0 - dev: false + transitivePeerDependencies: + - supports-color /body-scroll-lock/3.1.5: resolution: {integrity: sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg==} @@ -19713,7 +18566,6 @@ packages: resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} dependencies: balanced-match: 1.0.2 - dev: true /braces/2.3.2: resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} @@ -19729,6 +18581,25 @@ packages: snapdragon-node: 2.1.1 split-string: 3.1.0 to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + /braces/2.3.2_supports-color@6.1.0: + resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} + engines: {node: '>=0.10.0'} + dependencies: + arr-flatten: 1.1.0 + array-unique: 0.3.2 + extend-shallow: 2.0.1 + fill-range: 4.0.0 + isobject: 3.0.1 + repeat-element: 1.1.4 + snapdragon: 0.8.2_supports-color@6.1.0 + snapdragon-node: 2.1.1 + split-string: 3.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color /braces/3.0.2: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} @@ -19832,7 +18703,7 @@ packages: resolution: {integrity: sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==} hasBin: true dependencies: - caniuse-lite: 1.0.30001317 + caniuse-lite: 1.0.30001352 electron-to-chromium: 1.4.88 dev: true @@ -19841,7 +18712,7 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001280 + caniuse-lite: 1.0.30001352 electron-to-chromium: 1.3.899 escalade: 3.1.1 node-releases: 2.0.1 @@ -19863,7 +18734,7 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001317 + caniuse-lite: 1.0.30001352 electron-to-chromium: 1.4.88 escalade: 3.1.1 node-releases: 2.0.2 @@ -19947,7 +18818,7 @@ packages: dev: true /builtins/1.0.3: - resolution: {integrity: sha1-y5T662HIaWRR2zZTThQi+U8K7og=} + resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} dev: true /bytes/1.0.0: @@ -19955,19 +18826,12 @@ packages: dev: true /bytes/3.0.0: - resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=} + resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} engines: {node: '>= 0.8'} - dev: true - - /bytes/3.1.0: - resolution: {integrity: sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==} - engines: {node: '>= 0.8'} - dev: true /bytes/3.1.2: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} - dev: false /c8/7.11.0: resolution: {integrity: sha512-XqPyj1uvlHMr+Y1IeRndC2X5P7iJzJlEJwBpCdBbq2JocXOgJfr+JVfJkyNMGROke5LfKrhSFXGFXnwnRJAUJw==} @@ -20001,7 +18865,7 @@ packages: mississippi: 3.0.0 mkdirp: 0.5.5 move-concurrently: 1.0.1 - promise-inflight: 1.0.1 + promise-inflight: 1.0.1_bluebird@3.7.2 rimraf: 2.7.1 ssri: 6.0.2 unique-filename: 1.1.1 @@ -20030,6 +18894,34 @@ packages: ssri: 8.0.1 tar: 6.1.11 unique-filename: 1.1.1 + transitivePeerDependencies: + - bluebird + dev: true + + /cacache/16.1.3: + resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + '@npmcli/fs': 2.1.2 + '@npmcli/move-file': 2.0.1 + chownr: 2.0.0 + fs-minipass: 2.1.0 + glob: 8.0.3 + infer-owner: 1.0.4 + lru-cache: 7.14.0 + minipass: 3.1.6 + minipass-collect: 1.0.2 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + mkdirp: 1.0.4 + p-map: 4.0.0 + promise-inflight: 1.0.1 + rimraf: 3.0.2 + ssri: 9.0.1 + tar: 6.1.11 + unique-filename: 2.0.1 + transitivePeerDependencies: + - bluebird dev: true /cache-base/1.0.1: @@ -20075,7 +18967,7 @@ packages: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: function-bind: 1.1.1 - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.3 /call-me-maybe/1.0.1: resolution: {integrity: sha1-JtII6onje1y95gJQoV8DHBak1ms=} @@ -20138,7 +19030,7 @@ packages: dev: false /camelcase/3.0.0: - resolution: {integrity: sha1-MvxLn82vhF/N9+c7uXysImHwqwo=} + resolution: {integrity: sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==} engines: {node: '>=0.10.0'} dev: true @@ -20162,8 +19054,8 @@ packages: /caniuse-api/3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: - browserslist: 4.20.2 - caniuse-lite: 1.0.30001317 + browserslist: 4.20.4 + caniuse-lite: 1.0.30001352 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 @@ -20171,12 +19063,6 @@ packages: resolution: {integrity: sha512-VAy5RHDfTJhpxnDdp2n40GPPLp3KqNrXz1QqFv4J64HvArKs8nuNMOWkB3ICOaBTU/Aj4rYAo/ytdQDDFF/Pug==} dev: true - /caniuse-lite/1.0.30001280: - resolution: {integrity: sha512-kFXwYvHe5rix25uwueBxC569o53J6TpnGu0BEEn+6Lhl2vsnAumRFWEBhDft1fwyo6m1r4i+RqA4+163FpeFcA==} - - /caniuse-lite/1.0.30001317: - resolution: {integrity: sha512-xIZLh8gBm4dqNX0gkzrBeyI86J2eCjWzYAs40q88smG844YIrN4tVQl/RhquHvKEKImWWFIVh1Lxe5n1G/N+GQ==} - /caniuse-lite/1.0.30001352: resolution: {integrity: sha512-GUgH8w6YergqPQDGWhJGt8GDRnY0L/iJVQcU3eJ46GYf52R8tk0Wxp0PymuFVZboJYXGiCqwozAYZNRjVj6IcA==} @@ -20212,7 +19098,9 @@ packages: debug: 4.3.4 puppeteer-core: 1.12.2 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate dev: true /case-sensitive-paths-webpack-plugin/2.4.0: @@ -20350,7 +19238,7 @@ packages: dev: false /check-error/1.0.2: - resolution: {integrity: sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=} + resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==} dev: true /check-node-version/3.3.0: @@ -20421,6 +19309,8 @@ packages: upath: 1.2.0 optionalDependencies: fsevents: 1.2.13 + transitivePeerDependencies: + - supports-color dev: true optional: true @@ -20481,7 +19371,6 @@ packages: /chrome-trace-event/1.0.3: resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} engines: {node: '>=6.0'} - dev: true /ci-info/1.6.0: resolution: {integrity: sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==} @@ -20563,11 +19452,11 @@ packages: dependencies: '@types/webpack': 4.41.32 del: 4.1.1 - webpack: 5.70.0_09a0288cc3aa3015774a489e904fdd90 + webpack: 5.70.0_bgqcrdgdviybk52kjcpjat65sa dev: true /cli-boxes/1.0.0: - resolution: {integrity: sha1-T6kXw+WclKAEzWH47lCdplFocUM=} + resolution: {integrity: sha512-3Fo5wu8Ytle8q9iCzS4D2MWVL2X7JVWRiS1BnXbTFDhS9c/REkM9vd1AmabsoZoY5/dGi5TT9iKL8Kb6DeBRQg==} engines: {node: '>=0.10.0'} dev: true @@ -20596,14 +19485,14 @@ packages: restore-cursor: 4.0.0 dev: false - /cli-progress/3.10.0: - resolution: {integrity: sha512-kLORQrhYCAtUPLZxqsAt2YJGOvRdt34+O6jl5cQGb7iF3dM55FQZlTR+rQyIK9JUcO9bBMwZsTlND+3dmFU2Cw==} + /cli-progress/3.11.2: + resolution: {integrity: sha512-lCPoS6ncgX4+rJu5bS3F/iCz17kZ9MPZ6dpuTtI0KXKABkhyXIdYB3Inby1OpaGti3YlI3EeEkM9AuWpelJrVA==} engines: {node: '>=4'} dependencies: string-width: 4.2.3 - /cli-spinners/2.6.1: - resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} + /cli-spinners/2.7.0: + resolution: {integrity: sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==} engines: {node: '>=6'} /cli-table/0.3.11: @@ -20674,7 +19563,6 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 6.2.0 - dev: true /cliui/7.0.4: resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} @@ -20684,7 +19572,7 @@ packages: wrap-ansi: 7.0.0 /clone-buffer/1.0.0: - resolution: {integrity: sha1-4+JbIHrE5wGvch4staFnksrD3Fg=} + resolution: {integrity: sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==} engines: {node: '>= 0.10'} dev: true @@ -20705,7 +19593,6 @@ packages: is-plain-object: 2.0.4 kind-of: 6.0.3 shallow-clone: 3.0.1 - dev: true /clone-regexp/2.2.0: resolution: {integrity: sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q==} @@ -20720,7 +19607,7 @@ packages: mimic-response: 1.0.1 /clone-stats/1.0.0: - resolution: {integrity: sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=} + resolution: {integrity: sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==} dev: true /clone/1.0.4: @@ -20728,7 +19615,7 @@ packages: engines: {node: '>=0.8'} /clone/2.1.2: - resolution: {integrity: sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=} + resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} engines: {node: '>=0.8'} dev: true @@ -20745,9 +19632,9 @@ packages: engines: {node: '>=6'} dev: true - /cmd-shim/4.1.0: - resolution: {integrity: sha512-lb9L7EM4I/ZRVuljLPEtUJOP+xiQVknZ4ZMpMgEp4JzNldPb27HU03hi6K1/6CoIuit/Zm/LQXySErFeXxDprw==} - engines: {node: '>=10'} + /cmd-shim/5.0.0: + resolution: {integrity: sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: mkdirp-infer-owner: 2.0.0 dev: true @@ -20777,7 +19664,7 @@ packages: resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} /collection-visit/1.0.0: - resolution: {integrity: sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=} + resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} engines: {node: '>=0.10.0'} dependencies: map-visit: 1.0.0 @@ -20846,7 +19733,7 @@ packages: engines: {node: '>=0.1.90'} /colors/1.0.3: - resolution: {integrity: sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=} + resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==} engines: {node: '>=0.1.90'} dev: true @@ -20879,10 +19766,18 @@ packages: resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} dev: true + /command-exists/1.2.9: + resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==} + dev: false + /commander/2.1.0: resolution: {integrity: sha512-J2wnb6TKniXNOtoHS8TSrG9IOQluPrsmyAJ8oCUJOBmv+uLBCyPYAZkD2jFvw2DCzIXNnISIM01NIvr35TkBMQ==} engines: {node: '>= 0.6.x'} + /commander/2.13.0: + resolution: {integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==} + dev: false + /commander/2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} @@ -20956,8 +19851,7 @@ packages: dev: true /commondir/1.0.1: - resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=} - dev: true + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} /component-bind/1.0.0: resolution: {integrity: sha512-WZveuKPeKAG9qY+FkYDeADzdHyTYdIboXS59ixDeRJL5ZhxpqUnxSOwop4FQjMsiYm3/Or8cegVbpAHNA7pHxw==} @@ -20978,21 +19872,21 @@ packages: resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} engines: {node: '>= 0.6'} dependencies: - mime-db: 1.51.0 - dev: true + mime-db: 1.52.0 /compression/1.7.4: resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} engines: {node: '>= 0.8.0'} dependencies: - accepts: 1.3.7 + accepts: 1.3.8 bytes: 3.0.0 compressible: 2.0.18 debug: 2.6.9 on-headers: 1.0.2 safe-buffer: 5.1.2 vary: 1.1.2 - dev: true + transitivePeerDependencies: + - supports-color /compute-scroll-into-view/1.0.17: resolution: {integrity: sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==} @@ -21051,6 +19945,18 @@ packages: xdg-basedir: 3.0.0 dev: true + /connect/3.7.0: + resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} + engines: {node: '>= 0.10.0'} + dependencies: + debug: 2.6.9 + finalhandler: 1.1.2 + parseurl: 1.3.3 + utils-merge: 1.0.1 + transitivePeerDependencies: + - supports-color + dev: false + /console-browserify/1.2.0: resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} dev: true @@ -21081,19 +19987,11 @@ packages: resolution: {integrity: sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=} dev: true - /content-disposition/0.5.3: - resolution: {integrity: sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==} - engines: {node: '>= 0.6'} - dependencies: - safe-buffer: 5.1.2 - dev: true - /content-disposition/0.5.4: resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} engines: {node: '>= 0.6'} dependencies: safe-buffer: 5.2.1 - dev: false /content-type/1.0.4: resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==} @@ -21111,11 +20009,6 @@ packages: /cookie-signature/1.0.6: resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} - /cookie/0.4.0: - resolution: {integrity: sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==} - engines: {node: '>= 0.6'} - dev: true - /cookie/0.4.2: resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} engines: {node: '>= 0.6'} @@ -21124,7 +20017,6 @@ packages: /cookie/0.5.0: resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} engines: {node: '>= 0.6'} - dev: false /cookiejar/2.1.3: resolution: {integrity: sha512-JxbCBUdrfr6AQjOXrxoTvAMJO4HBTUIlBzslcJPAz+/KT8yk53fXun51u+RenNYvad/+Vc2DIz5o9UxlCDymFQ==} @@ -21142,7 +20034,7 @@ packages: dev: true /copy-descriptor/0.1.1: - resolution: {integrity: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=} + resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} engines: {node: '>=0.10.0'} /copy-dir/1.3.0: @@ -21178,7 +20070,7 @@ packages: /core-js-compat/3.21.1: resolution: {integrity: sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==} dependencies: - browserslist: 4.20.2 + browserslist: 4.20.4 semver: 7.0.0 /core-js-pure/3.19.1: @@ -21258,6 +20150,8 @@ packages: p-all: 2.1.0 p-filter: 2.1.0 p-map: 3.0.0 + transitivePeerDependencies: + - supports-color dev: true /crc32/0.2.2: @@ -21384,6 +20278,8 @@ packages: color: 0.11.4 debug: 3.2.7 rgb: 0.1.0 + transitivePeerDependencies: + - supports-color dev: true /css-color-keywords/1.0.0: @@ -21401,8 +20297,8 @@ packages: postcss: 7.0.39 timsort: 0.3.0 - /css-declaration-sorter/6.3.0_postcss@8.4.12: - resolution: {integrity: sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==} + /css-declaration-sorter/6.3.1_postcss@8.4.12: + resolution: {integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==} engines: {node: ^10 || ^12 || >=14} peerDependencies: postcss: ^8.0.9 @@ -21594,13 +20490,13 @@ packages: postcss-svgo: 4.0.3 postcss-unique-selectors: 4.0.1 - /cssnano-preset-default/5.2.11_postcss@8.4.12: - resolution: {integrity: sha512-4PadR1NtuaIK8MvLNuY7MznK4WJteldGlzCiMaaTiOUP+apeiIvUDIXykzUOoqgOOUAHrU64ncdD90NfZR3LSQ==} + /cssnano-preset-default/5.2.12_postcss@8.4.12: + resolution: {integrity: sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.3.0_postcss@8.4.12 + css-declaration-sorter: 6.3.1_postcss@8.4.12 cssnano-utils: 3.1.0_postcss@8.4.12 postcss: 8.4.12 postcss-calc: 8.2.4_postcss@8.4.12 @@ -21610,7 +20506,7 @@ packages: postcss-discard-duplicates: 5.1.0_postcss@8.4.12 postcss-discard-empty: 5.1.1_postcss@8.4.12 postcss-discard-overridden: 5.1.0_postcss@8.4.12 - postcss-merge-longhand: 5.1.5_postcss@8.4.12 + postcss-merge-longhand: 5.1.6_postcss@8.4.12 postcss-merge-rules: 5.1.2_postcss@8.4.12 postcss-minify-font-values: 5.1.0_postcss@8.4.12 postcss-minify-gradients: 5.1.1_postcss@8.4.12 @@ -21618,14 +20514,14 @@ packages: postcss-minify-selectors: 5.2.1_postcss@8.4.12 postcss-normalize-charset: 5.1.0_postcss@8.4.12 postcss-normalize-display-values: 5.1.0_postcss@8.4.12 - postcss-normalize-positions: 5.1.0_postcss@8.4.12 - postcss-normalize-repeat-style: 5.1.0_postcss@8.4.12 + postcss-normalize-positions: 5.1.1_postcss@8.4.12 + postcss-normalize-repeat-style: 5.1.1_postcss@8.4.12 postcss-normalize-string: 5.1.0_postcss@8.4.12 postcss-normalize-timing-functions: 5.1.0_postcss@8.4.12 postcss-normalize-unicode: 5.1.0_postcss@8.4.12 postcss-normalize-url: 5.1.0_postcss@8.4.12 postcss-normalize-whitespace: 5.1.1_postcss@8.4.12 - postcss-ordered-values: 5.1.2_postcss@8.4.12 + postcss-ordered-values: 5.1.3_postcss@8.4.12 postcss-reduce-initial: 5.1.0_postcss@8.4.12 postcss-reduce-transforms: 5.1.0_postcss@8.4.12 postcss-svgo: 5.1.0_postcss@8.4.12 @@ -21668,13 +20564,13 @@ packages: is-resolvable: 1.1.0 postcss: 7.0.39 - /cssnano/5.1.11_postcss@8.4.12: - resolution: {integrity: sha512-2nx+O6LvewPo5EBtYrKc8762mMkZRk9cMGIOP4UlkmxHm7ObxH+zvsJJ+qLwPkUc4/yumL/qJkavYi9NlodWIQ==} + /cssnano/5.1.13_postcss@8.4.12: + resolution: {integrity: sha512-S2SL2ekdEz6w6a2epXn4CmMKU4K3KpcyXLKfAYc9UQQqJRkD/2eLUG0vJ3Db/9OvO5GuAdgXw3pFbR6abqghDQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-preset-default: 5.2.11_postcss@8.4.12 + cssnano-preset-default: 5.2.12_postcss@8.4.12 lilconfig: 2.0.4 postcss: 8.4.12 yaml: 1.10.2 @@ -21833,6 +20729,10 @@ packages: resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} dev: true + /dayjs/1.11.5: + resolution: {integrity: sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==} + dev: false + /deasync/0.1.26: resolution: {integrity: sha512-YKw0BmJSWxkjtQsbgn6Q9CHSWB7DKMen8vKrgyC006zy0UZ6nWyGidB0IzZgqkVRkOglAeUaFtiRTeLyel72bg==} engines: {node: '>=0.11.0'} @@ -21844,29 +20744,66 @@ packages: /debug/2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.0.0 + /debug/2.6.9_supports-color@6.1.0: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.0.0 + supports-color: 6.1.0 + /debug/3.1.0: resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.0.0 - /debug/3.2.6: + /debug/3.2.6_supports-color@6.0.0: resolution: {integrity: sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==} deprecated: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797) + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.3 + supports-color: 6.0.0 dev: true /debug/3.2.7: resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.3 /debug/4.1.1: resolution: {integrity: sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==} deprecated: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797) + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.3 dev: false @@ -21893,6 +20830,7 @@ packages: optional: true dependencies: ms: 2.1.2 + dev: true /debug/4.3.3: resolution: {integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==} @@ -21942,7 +20880,7 @@ packages: supports-color: 8.1.1 /debuglog/1.0.1: - resolution: {integrity: sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=} + resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==} dev: true /decamelize-keys/1.1.0: @@ -21961,7 +20899,7 @@ packages: resolution: {integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==} /decode-uri-component/0.2.0: - resolution: {integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=} + resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==} engines: {node: '>=0.10'} /decompress-response/5.0.0: @@ -22009,12 +20947,17 @@ packages: engines: {node: '>=0.10.0'} dev: false + /deepmerge/3.3.0: + resolution: {integrity: sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==} + engines: {node: '>=0.10.0'} + dev: false + /deepmerge/4.2.2: resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} engines: {node: '>=0.10.0'} /default-require-extensions/1.0.0: - resolution: {integrity: sha1-836hXT4T/9m0N9M+GnW1+5eHTLg=} + resolution: {integrity: sha512-Dn2eAftOqXhNXs5f/Xjn7QTZ6kDYkx7u0EXQInN1oyYwsZysu11q7oTtaKcbzLxZRJiDHa8VmwpWmb4lY5FqgA==} engines: {node: '>=0.10.0'} dependencies: strip-bom: 2.0.0 @@ -22040,14 +20983,21 @@ packages: dependencies: object-keys: 1.1.1 + /define-properties/1.1.4: + resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} + engines: {node: '>= 0.4'} + dependencies: + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + /define-property/0.2.5: - resolution: {integrity: sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=} + resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} engines: {node: '>=0.10.0'} dependencies: is-descriptor: 0.1.6 /define-property/1.0.0: - resolution: {integrity: sha1-dp66rz9KY6rTr56NMEybvnm/sOY=} + resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} engines: {node: '>=0.10.0'} dependencies: is-descriptor: 1.0.2 @@ -22083,15 +21033,18 @@ packages: resolution: {integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=} dev: true + /denodeify/1.2.1: + resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==} + dev: false + /depd/1.1.2: - resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=} + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} engines: {node: '>= 0.6'} dev: true /depd/2.0.0: resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} engines: {node: '>= 0.8'} - dev: false /deprecation/2.3.1: resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} @@ -22103,14 +21056,9 @@ packages: minimalistic-assert: 1.0.1 dev: true - /destroy/1.0.4: - resolution: {integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=} - dev: true - /destroy/1.2.0: resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - dev: false /detab/2.0.4: resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==} @@ -22121,10 +21069,9 @@ packages: /detect-file/1.0.0: resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==} engines: {node: '>=0.10.0'} - dev: true /detect-indent/4.0.0: - resolution: {integrity: sha1-920GQ1LN9Docts5hnE7jqUdd4gg=} + resolution: {integrity: sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A==} engines: {node: '>=0.10.0'} dependencies: repeating: 2.0.1 @@ -22155,6 +21102,8 @@ packages: dependencies: address: 1.1.2 debug: 2.6.9 + transitivePeerDependencies: + - supports-color dev: true /devtools-protocol/0.0.901419: @@ -22162,7 +21111,14 @@ packages: dev: true /dezalgo/1.0.3: - resolution: {integrity: sha1-f3Qt4Gb8dIvI24IFad3c5Jvw1FY=} + resolution: {integrity: sha512-K7i4zNfT2kgQz3GylDw40ot9GAE47sFZ9EXHFSPP6zONLgH6kWXE0KWJchkbQJLBkRazq4APwZ4OwiFFlT95OQ==} + dependencies: + asap: 2.0.6 + wrappy: 1.0.2 + dev: false + + /dezalgo/1.0.4: + resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} dependencies: asap: 2.0.6 wrappy: 1.0.2 @@ -22182,11 +21138,6 @@ packages: resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} engines: {node: '>= 10.14.2'} - /diff-sequences/27.0.6: - resolution: {integrity: sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dev: true - /diff-sequences/27.5.1: resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -22200,8 +21151,8 @@ packages: resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} engines: {node: '>=0.3.1'} - /diff/5.0.0: - resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==} + /diff/5.1.0: + resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} engines: {node: '>=0.3.1'} dev: true @@ -22254,7 +21205,7 @@ packages: /document.contains/1.0.2: resolution: {integrity: sha512-YcvYFs15mX8m3AO1QNQy3BlIpSMfNRj3Ujk2BEJxsZG+HZf7/hZ6jr7mDpXrF8q+ff95Vef5yjhiZxm8CGJr6Q==} dependencies: - define-properties: 1.1.3 + define-properties: 1.1.4 dev: false /dom-accessibility-api/0.5.13: @@ -22383,17 +21334,6 @@ packages: engines: {node: '>=10'} dev: true - /downshift/6.1.7: - resolution: {integrity: sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==} - peerDependencies: - react: '>=16.12.0' - dependencies: - '@babel/runtime': 7.17.7 - compute-scroll-into-view: 1.0.17 - prop-types: 15.8.1 - react-is: 17.0.2 - tslib: 2.3.1 - /downshift/6.1.7_react@17.0.2: resolution: {integrity: sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==} peerDependencies: @@ -22406,7 +21346,7 @@ packages: react-is: 17.0.2 tslib: 2.3.1 - /downshift/6.1.9: + /downshift/6.1.9_react@16.14.0: resolution: {integrity: sha512-mzvk61WOX4MEsYHMKCXEVwuz/zM84x/WrCbaCQw71hyNN0fmWXvV673uOQy2idgIA+yqDsjtkV5KPfAFWuQylg==} peerDependencies: react: '>=16.12.0' @@ -22414,9 +21354,10 @@ packages: '@babel/runtime': 7.17.7 compute-scroll-into-view: 1.0.17 prop-types: 15.8.1 + react: 16.14.0 react-is: 17.0.2 tslib: 2.3.1 - dev: true + dev: false /downshift/6.1.9_react@17.0.2: resolution: {integrity: sha512-mzvk61WOX4MEsYHMKCXEVwuz/zM84x/WrCbaCQw71hyNN0fmWXvV673uOQy2idgIA+yqDsjtkV5KPfAFWuQylg==} @@ -22466,20 +21407,12 @@ packages: requiresBuild: true dev: true - /ejs/3.1.6: - resolution: {integrity: sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==} - engines: {node: '>=0.10.0'} - hasBin: true - dependencies: - jake: 10.8.2 - /ejs/3.1.8: resolution: {integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==} engines: {node: '>=0.10.0'} hasBin: true dependencies: jake: 10.8.5 - dev: false /electron-to-chromium/1.3.899: resolution: {integrity: sha512-w16Dtd2zl7VZ4N4Db+FIa7n36sgPGCKjrKvUUmp5ialsikvcQLjcJR9RWnlYNxIyEHLdHaoIZEqKsPxU9MdyBg==} @@ -22539,7 +21472,7 @@ packages: resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} engines: {node: '>= 4'} - /emotion-theming/10.3.0_316248eb6686a2fd4fbadcfd00de37f3: + /emotion-theming/10.3.0_gfrer23gq2rp2t523t6qbxrx6m: resolution: {integrity: sha512-mXiD2Oj7N9b6+h/dC6oLf9hwxbtKHQjoIqtodEyL8CpkN4F3V4IK/BT4D0C7zSs4BBFOu4UlPJbvvBLa88SGEA==} peerDependencies: '@emotion/core': ^10.0.27 @@ -22552,16 +21485,18 @@ packages: react: 17.0.2 dev: true - /emotion-theming/10.3.0_@emotion+core@10.3.1: + /emotion-theming/10.3.0_qzeatvug73zaio2r3dlvejynye: resolution: {integrity: sha512-mXiD2Oj7N9b6+h/dC6oLf9hwxbtKHQjoIqtodEyL8CpkN4F3V4IK/BT4D0C7zSs4BBFOu4UlPJbvvBLa88SGEA==} peerDependencies: '@emotion/core': ^10.0.27 react: '>=16.3.0' dependencies: '@babel/runtime': 7.17.7 - '@emotion/core': 10.3.1 + '@emotion/core': 10.3.1_react@16.14.0 '@emotion/weak-memoize': 0.2.5 hoist-non-react-statics: 3.3.2 + react: 16.14.0 + dev: false /emotion/10.0.27: resolution: {integrity: sha512-2xdDzdWWzue8R8lu4G76uWX5WhyQuzATon9LmNeCy/2BHVC6dsEpfhN1a0qhELgtDVdjyEA6J8Y/VlI5ZnaH0g==} @@ -22607,6 +21542,10 @@ packages: ws: 6.1.4 xmlhttprequest-ssl: 1.5.5 yeast: 0.1.2 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate dev: false /engine.io-parser/2.2.1: @@ -22635,7 +21574,6 @@ packages: graceful-fs: 4.2.9 memory-fs: 0.5.0 tapable: 1.1.3 - dev: true /enhanced-resolve/5.9.2: resolution: {integrity: sha512-GIm3fQfwLJ8YZx2smuHpBKkXC1yOk+OBEmKckVyL0i/ea8mqDEykK3ld5dgH1QYPNyT/lIllxV2LULnxCHaHkA==} @@ -22643,7 +21581,6 @@ packages: dependencies: graceful-fs: 4.2.9 tapable: 2.2.1 - dev: true /enquirer/2.3.6: resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} @@ -22676,29 +21613,8 @@ packages: resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==} engines: {node: '>=4'} hasBin: true - dev: true - /enzyme-adapter-react-16/1.15.6_enzyme@3.11.0+react@17.0.2: - resolution: {integrity: sha512-yFlVJCXh8T+mcQo8M6my9sPgeGzj85HSHi6Apgf1Cvq/7EL/J9+1JoJmJsRxZgyTvPMAqOEpRSu/Ii/ZpyOk0g==} - peerDependencies: - enzyme: ^3.0.0 - react: ^16.0.0-0 - react-dom: ^16.0.0-0 - dependencies: - enzyme: 3.11.0 - enzyme-adapter-utils: 1.14.0_react@17.0.2 - enzyme-shallow-equal: 1.0.4 - has: 1.0.3 - object.assign: 4.1.2 - object.values: 1.1.5 - prop-types: 15.8.1 - react: 17.0.2 - react-is: 16.13.1 - react-test-renderer: 16.14.0_react@17.0.2 - semver: 5.7.1 - dev: true - - /enzyme-adapter-react-16/1.15.6_fae758709a8810ba97b4c03852dde4d0: + /enzyme-adapter-react-16/1.15.6_7ltvq4e2railvf5uya4ffxpe2a: resolution: {integrity: sha512-yFlVJCXh8T+mcQo8M6my9sPgeGzj85HSHi6Apgf1Cvq/7EL/J9+1JoJmJsRxZgyTvPMAqOEpRSu/Ii/ZpyOk0g==} peerDependencies: enzyme: ^3.0.0 @@ -22727,7 +21643,7 @@ packages: airbnb-prop-types: 2.16.0_react@17.0.2 function.prototype.name: 1.1.5 has: 1.0.3 - object.assign: 4.1.2 + object.assign: 4.1.4 object.fromentries: 2.0.5 prop-types: 15.8.1 react: 17.0.2 @@ -22790,7 +21706,6 @@ packages: requiresBuild: true dependencies: prr: 1.0.1 - dev: true /error-ex/1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} @@ -22801,7 +21716,6 @@ packages: resolution: {integrity: sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==} dependencies: stackframe: 1.2.0 - dev: true /error/10.4.0: resolution: {integrity: sha512-YxIFEJuhgcICugOUvRx5th0UM+ActZ9sjY0QJmeVwsQdvosZ7kYzc9QqS0Da3R5iUmgU5meGIxh0xBeZpMVeLw==} @@ -22813,6 +21727,14 @@ packages: string-template: 0.2.1 dev: true + /errorhandler/1.5.1: + resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==} + engines: {node: '>= 0.8'} + dependencies: + accepts: 1.3.8 + escape-html: 1.0.3 + dev: false + /es-abstract/1.19.1: resolution: {integrity: sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==} engines: {node: '>= 0.4'} @@ -22820,10 +21742,10 @@ packages: call-bind: 1.0.2 es-to-primitive: 1.2.1 function-bind: 1.1.1 - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.3 get-symbol-description: 1.0.0 has: 1.0.3 - has-symbols: 1.0.2 + has-symbols: 1.0.3 internal-slot: 1.0.3 is-callable: 1.2.4 is-negative-zero: 2.0.1 @@ -22838,6 +21760,34 @@ packages: string.prototype.trimstart: 1.0.4 unbox-primitive: 1.0.1 + /es-abstract/1.20.2: + resolution: {integrity: sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + es-to-primitive: 1.2.1 + function-bind: 1.1.1 + function.prototype.name: 1.1.5 + get-intrinsic: 1.1.3 + get-symbol-description: 1.0.0 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-symbols: 1.0.3 + internal-slot: 1.0.3 + is-callable: 1.2.4 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-weakref: 1.0.2 + object-inspect: 1.12.2 + object-keys: 1.1.1 + object.assign: 4.1.4 + regexp.prototype.flags: 1.4.3 + string.prototype.trimend: 1.0.5 + string.prototype.trimstart: 1.0.5 + unbox-primitive: 1.0.2 + /es-array-method-boxes-properly/1.0.0: resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} @@ -22845,8 +21795,8 @@ packages: resolution: {integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.1 - has-symbols: 1.0.2 + get-intrinsic: 1.1.3 + has-symbols: 1.0.3 is-arguments: 1.1.1 is-map: 2.0.2 is-set: 2.0.2 @@ -22856,7 +21806,6 @@ packages: /es-module-lexer/0.9.3: resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} - dev: true /es-to-primitive/1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} @@ -22947,13 +21896,6 @@ packages: eslint: 7.32.0 dev: true - /eslint-config-prettier/8.5.0: - resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} - hasBin: true - peerDependencies: - eslint: '>=7.0.0' - dev: true - /eslint-config-prettier/8.5.0_eslint@8.12.0: resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} hasBin: true @@ -22962,7 +21904,7 @@ packages: dependencies: eslint: 8.12.0 - /eslint-config-wpcalypso/5.0.0_eslint@6.8.0: + /eslint-config-wpcalypso/5.0.0_3y2sdwkhlqz3xfbanqi75dzl7y: resolution: {integrity: sha512-bENkOkC7Hk2LREkj9aVqv5ELqYaUZqN2IBtmCdsQXrkJBsW8FV9mOzcBHnLm3Cvw4YYfq0rZzIFuCs3pkPbe1Q==} peerDependencies: eslint: ^6.0.0 @@ -22970,7 +21912,9 @@ packages: eslint-plugin-wpcalypso: ^3.4.1 || ^4.0.0 dependencies: eslint: 6.8.0 + eslint-plugin-jsdoc: 18.11.0_eslint@6.8.0 eslint-plugin-react-hooks: 2.5.1_eslint@6.8.0 + eslint-plugin-wpcalypso: 4.1.0_eslint@6.8.0 dev: true /eslint-import-resolver-node/0.3.6: @@ -22978,8 +21922,10 @@ packages: dependencies: debug: 3.2.7 resolve: 1.20.0 + transitivePeerDependencies: + - supports-color - /eslint-import-resolver-typescript/2.5.0_fe22d862ffeecaee86c93a006d59e41e: + /eslint-import-resolver-typescript/2.5.0_7yrnqyx753fo5bwjhiag2wpedy: resolution: {integrity: sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ==} engines: {node: '>=4'} peerDependencies: @@ -22988,7 +21934,7 @@ packages: dependencies: debug: 4.3.3 eslint: 8.11.0 - eslint-plugin-import: 2.25.4_eslint@8.11.0 + eslint-plugin-import: 2.25.4_o53s3emd3qikejdbqbxdd6vyim glob: 7.2.0 is-glob: 4.0.3 resolve: 1.20.0 @@ -22997,7 +21943,7 @@ packages: - supports-color dev: true - /eslint-import-resolver-webpack/0.13.2_bac363bc2c2f46a65300020741b6cf5e: + /eslint-import-resolver-webpack/0.13.2_xlbwhpbmf5dkmuyaaidudnwply: resolution: {integrity: sha512-XodIPyg1OgE2h5BDErz3WJoK7lawxKTJNhgPNafRST6csC/MZC+L5P6kKqsZGRInpbgc02s/WZMrb4uGJzcuRg==} engines: {node: '>= 6'} peerDependencies: @@ -23007,7 +21953,7 @@ packages: array-find: 1.0.0 debug: 3.2.7 enhanced-resolve: 0.9.1 - eslint-plugin-import: 2.25.4_eslint@8.11.0 + eslint-plugin-import: 2.25.4_o53s3emd3qikejdbqbxdd6vyim find-root: 1.1.0 has: 1.0.3 interpret: 1.4.0 @@ -23017,49 +21963,107 @@ packages: resolve: 1.20.0 semver: 5.7.1 webpack: 5.70.0_webpack-cli@4.9.2 + transitivePeerDependencies: + - supports-color dev: true - /eslint-module-utils/2.7.3: + /eslint-module-utils/2.7.3_54d5qjwnmqnp5634aqlesxatge: resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true dependencies: + '@typescript-eslint/parser': 5.15.0_qfndwjbknwkswbha2khu23tpva debug: 3.2.7 + eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 + transitivePeerDependencies: + - supports-color - /eslint-plugin-import/2.25.4: - resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==} + /eslint-module-utils/2.7.3_gi2uhd4z3ge23sdh3g6bz7is2q: + resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} peerDependencies: - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + '@typescript-eslint/parser': '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true dependencies: - array-includes: 3.1.4 - array.prototype.flat: 1.2.5 - debug: 2.6.9 - doctrine: 2.1.0 + '@typescript-eslint/parser': 5.15.0_ynv3edxl3ah44xwgrna2g2yine + debug: 3.2.7 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3 - has: 1.0.3 - is-core-module: 2.8.0 - is-glob: 4.0.3 - minimatch: 3.0.4 - object.values: 1.1.5 - resolve: 1.20.0 - tsconfig-paths: 3.14.0 + eslint-import-resolver-typescript: 2.5.0_7yrnqyx753fo5bwjhiag2wpedy + eslint-import-resolver-webpack: 0.13.2_xlbwhpbmf5dkmuyaaidudnwply + find-up: 2.1.0 + transitivePeerDependencies: + - supports-color dev: true - /eslint-plugin-import/2.25.4_eslint@7.32.0: + /eslint-module-utils/2.7.3_lkzaig2qiyp6elizstfbgvzhie: + resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + '@typescript-eslint/parser': 4.33.0_hxadhbs2xogijvk7vq4t2azzbu + debug: 3.2.7 + eslint-import-resolver-node: 0.3.6 + find-up: 2.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-import/2.25.4_ffi3uiz42rv3jyhs6cr7p7qqry: resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==} engines: {node: '>=4'} peerDependencies: + '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true dependencies: + '@typescript-eslint/parser': 4.33.0_hxadhbs2xogijvk7vq4t2azzbu array-includes: 3.1.4 array.prototype.flat: 1.2.5 debug: 2.6.9 doctrine: 2.1.0 eslint: 7.32.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3 + eslint-module-utils: 2.7.3_lkzaig2qiyp6elizstfbgvzhie has: 1.0.3 is-core-module: 2.8.0 is-glob: 4.0.3 @@ -23067,21 +22071,30 @@ packages: object.values: 1.1.5 resolve: 1.20.0 tsconfig-paths: 3.14.0 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color dev: true - /eslint-plugin-import/2.25.4_eslint@8.11.0: + /eslint-plugin-import/2.25.4_o53s3emd3qikejdbqbxdd6vyim: resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==} engines: {node: '>=4'} peerDependencies: + '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true dependencies: + '@typescript-eslint/parser': 5.15.0_ynv3edxl3ah44xwgrna2g2yine array-includes: 3.1.4 array.prototype.flat: 1.2.5 debug: 2.6.9 doctrine: 2.1.0 eslint: 8.11.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3 + eslint-module-utils: 2.7.3_gi2uhd4z3ge23sdh3g6bz7is2q has: 1.0.3 is-core-module: 2.8.0 is-glob: 4.0.3 @@ -23089,21 +22102,30 @@ packages: object.values: 1.1.5 resolve: 1.20.0 tsconfig-paths: 3.14.0 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color dev: true - /eslint-plugin-import/2.25.4_eslint@8.12.0: + /eslint-plugin-import/2.25.4_zry6r357nk6buau6dccmtrgyfm: resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==} engines: {node: '>=4'} peerDependencies: + '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true dependencies: + '@typescript-eslint/parser': 5.15.0_qfndwjbknwkswbha2khu23tpva array-includes: 3.1.4 array.prototype.flat: 1.2.5 debug: 2.6.9 doctrine: 2.1.0 eslint: 8.12.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3 + eslint-module-utils: 2.7.3_54d5qjwnmqnp5634aqlesxatge has: 1.0.3 is-core-module: 2.8.0 is-glob: 4.0.3 @@ -23111,34 +22133,38 @@ packages: object.values: 1.1.5 resolve: 1.20.0 tsconfig-paths: 3.14.0 - - /eslint-plugin-jest/23.20.0_eslint@6.8.0+typescript@3.9.7: - resolution: {integrity: sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw==} - engines: {node: '>=8'} - peerDependencies: - eslint: '>=5' - dependencies: - '@typescript-eslint/experimental-utils': 2.34.0_eslint@6.8.0+typescript@3.9.7 - eslint: 6.8.0 transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack - supports-color - - typescript - dev: true - /eslint-plugin-jest/23.20.0_eslint@7.32.0+typescript@4.6.2: + /eslint-plugin-jest/23.20.0_e6rt7vlgxfprtuallp2t3cvyi4: resolution: {integrity: sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw==} engines: {node: '>=8'} peerDependencies: eslint: '>=5' dependencies: - '@typescript-eslint/experimental-utils': 2.34.0_eslint@7.32.0+typescript@4.6.2 + '@typescript-eslint/experimental-utils': 2.34.0_e6rt7vlgxfprtuallp2t3cvyi4 eslint: 7.32.0 transitivePeerDependencies: - supports-color - typescript dev: true - /eslint-plugin-jest/24.7.0_a0850db06e663c2717df708ee59002bd: + /eslint-plugin-jest/23.20.0_x6qkcl3khy3aa3bbfxwmcukvzu: + resolution: {integrity: sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw==} + engines: {node: '>=8'} + peerDependencies: + eslint: '>=5' + dependencies: + '@typescript-eslint/experimental-utils': 2.34.0_x6qkcl3khy3aa3bbfxwmcukvzu + eslint: 6.8.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /eslint-plugin-jest/24.7.0_k5xjpq6klvmabs3ktw27vlap4u: resolution: {integrity: sha512-wUxdF2bAZiYSKBclsUMrYHH6WxiBreNjyDxbRv345TIvPeoCEgPNEn3Sa+ZrSqsf1Dl9SqqSREXMHExlMMu1DA==} engines: {node: '>=10'} peerDependencies: @@ -23148,15 +22174,15 @@ packages: '@typescript-eslint/eslint-plugin': optional: true dependencies: - '@typescript-eslint/eslint-plugin': 4.33.0_d337b069968294b7daf1a5fc7d23d391 - '@typescript-eslint/experimental-utils': 4.33.0_eslint@7.32.0+typescript@4.2.4 + '@typescript-eslint/eslint-plugin': 4.33.0_3ekaj7j3owlolnuhj3ykrb7u7i + '@typescript-eslint/experimental-utils': 4.33.0_hxadhbs2xogijvk7vq4t2azzbu eslint: 7.32.0 transitivePeerDependencies: - supports-color - typescript dev: true - /eslint-plugin-jest/25.7.0_6bef967891becc1ab6057e2949a5834f: + /eslint-plugin-jest/25.7.0_ixikrc6l4iebcvppoirujuaz24: resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} peerDependencies: @@ -23169,33 +22195,53 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.15.0_c8b324c35d270b9e6d84e3592e846620 - '@typescript-eslint/experimental-utils': 5.4.0_eslint@8.12.0+typescript@4.6.2 + '@typescript-eslint/eslint-plugin': 5.15.0_atr5zsmgmhbxx42ytq7ef6lbhi + '@typescript-eslint/experimental-utils': 5.4.0_7bdza2waopngrtr4qhziihsire + eslint: 8.12.0 + jest: 27.3.1 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /eslint-plugin-jest/25.7.0_npxzm6erx3gbvnqfpyuutjmdj4: + resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + jest: '*' + peerDependenciesMeta: + '@typescript-eslint/eslint-plugin': + optional: true + jest: + optional: true + dependencies: + '@typescript-eslint/eslint-plugin': 5.15.0_zczsjq25e4fz43me4nms5bdgea + '@typescript-eslint/experimental-utils': 5.4.0_qfndwjbknwkswbha2khu23tpva eslint: 8.12.0 jest: 27.5.1 transitivePeerDependencies: - supports-color - typescript - /eslint-plugin-jest/25.7.0_a17cfd3e96203023414471d4aee9df06: - resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + /eslint-plugin-jsdoc/18.11.0_eslint@6.8.0: + resolution: {integrity: sha512-24J2+eK2ZHZ1KvpKcoOEir2k4xJKfPzZ1JC9PToi8y8Tn59T8TVVSNRTTRzsDdiaQeIbehApB3KxqIfJG8o7hg==} + engines: {node: '>=6'} peerDependencies: - '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - jest: '*' - peerDependenciesMeta: - '@typescript-eslint/eslint-plugin': - optional: true - jest: - optional: true + eslint: ^5.0.0 || ^6.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.15.0_db3cd493186c3234b80a3843c7aaf877 - '@typescript-eslint/experimental-utils': 5.4.0_typescript@4.2.4 - jest: 27.3.1 + comment-parser: 0.7.6 + debug: 4.3.4 + eslint: 6.8.0 + jsdoctypeparser: 6.1.0 + lodash: 4.17.21 + object.entries-ponyfill: 1.0.1 + regextras: 0.7.1 + semver: 6.3.0 + spdx-expression-parse: 3.0.1 transitivePeerDependencies: - supports-color - - typescript dev: true /eslint-plugin-jsdoc/30.7.13_eslint@7.32.0: @@ -23210,7 +22256,7 @@ packages: jsdoctypeparser: 9.0.0 lodash: 4.17.21 regextras: 0.7.1 - semver: 7.3.5 + semver: 7.3.7 spdx-expression-parse: 3.0.1 transitivePeerDependencies: - supports-color @@ -23230,25 +22276,7 @@ packages: jsdoc-type-pratt-parser: 1.2.0 lodash: 4.17.21 regextras: 0.8.0 - semver: 7.3.5 - spdx-expression-parse: 3.0.1 - transitivePeerDependencies: - - supports-color - dev: true - - /eslint-plugin-jsdoc/37.9.7: - resolution: {integrity: sha512-8alON8yYcStY94o0HycU2zkLKQdcS+qhhOUNQpfONHHwvI99afbmfpYuPqf6PbLz5pLZldG3Te5I0RbAiTN42g==} - engines: {node: ^12 || ^14 || ^16 || ^17} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - dependencies: - '@es-joy/jsdoccomment': 0.20.1 - comment-parser: 1.3.0 - debug: 4.3.3 - escape-string-regexp: 4.0.0 - esquery: 1.4.0 - regextras: 0.8.0 - semver: 7.3.5 + semver: 7.3.7 spdx-expression-parse: 3.0.1 transitivePeerDependencies: - supports-color @@ -23262,36 +22290,16 @@ packages: dependencies: '@es-joy/jsdoccomment': 0.20.1 comment-parser: 1.3.0 - debug: 4.3.3 + debug: 4.3.4 escape-string-regexp: 4.0.0 eslint: 8.12.0 esquery: 1.4.0 regextras: 0.8.0 - semver: 7.3.5 + semver: 7.3.7 spdx-expression-parse: 3.0.1 transitivePeerDependencies: - supports-color - /eslint-plugin-jsx-a11y/6.5.1: - resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} - engines: {node: '>=4.0'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - dependencies: - '@babel/runtime': 7.17.7 - aria-query: 4.2.2 - array-includes: 3.1.4 - ast-types-flow: 0.0.7 - axe-core: 4.3.5 - axobject-query: 2.2.0 - damerau-levenshtein: 1.0.7 - emoji-regex: 9.2.2 - has: 1.0.3 - jsx-ast-utils: 3.2.1 - language-tags: 1.0.5 - minimatch: 3.1.2 - dev: true - /eslint-plugin-jsx-a11y/6.5.1_eslint@7.32.0: resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} engines: {node: '>=4.0'} @@ -23354,7 +22362,23 @@ packages: - supports-color dev: true - /eslint-plugin-prettier/3.4.1_34b707f3a53b0942f3919c1ff656ce36: + /eslint-plugin-prettier/3.4.1_g34tdu47tekfx6nxgc7umt64na: + resolution: {integrity: sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==} + engines: {node: '>=6.0.0'} + peerDependencies: + eslint: '>=5.0.0' + eslint-config-prettier: '*' + prettier: '>=1.13.0' + peerDependenciesMeta: + eslint-config-prettier: + optional: true + dependencies: + eslint: 8.12.0 + eslint-config-prettier: 8.5.0_eslint@8.12.0 + prettier-linter-helpers: 1.0.0 + dev: false + + /eslint-plugin-prettier/3.4.1_gs3qp45fhmeuf44rtqp7mvwogy: resolution: {integrity: sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==} engines: {node: '>=6.0.0'} peerDependencies: @@ -23371,7 +22395,7 @@ packages: prettier-linter-helpers: 1.0.0 dev: true - /eslint-plugin-prettier/3.4.1_93aed9f9c1dbf782336866b35bfb42b9: + /eslint-plugin-prettier/3.4.1_vd5mkele5dxuckzmv7qvtxxknq: resolution: {integrity: sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==} engines: {node: '>=6.0.0'} peerDependencies: @@ -23382,12 +22406,13 @@ packages: eslint-config-prettier: optional: true dependencies: - eslint-config-prettier: 8.5.0 - prettier: /wp-prettier/2.6.2 + eslint: 8.12.0 + eslint-config-prettier: 8.5.0_eslint@8.12.0 + prettier: 2.3.0 prettier-linter-helpers: 1.0.0 dev: true - /eslint-plugin-prettier/3.4.1_c77c9f23c77476333e84a9970f607e06: + /eslint-plugin-prettier/3.4.1_y56j6i6hor3dgpuevglq6yd6ay: resolution: {integrity: sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==} engines: {node: '>=6.0.0'} peerDependencies: @@ -23402,8 +22427,9 @@ packages: eslint-config-prettier: 8.5.0_eslint@8.12.0 prettier: /wp-prettier/2.6.2 prettier-linter-helpers: 1.0.0 + dev: true - /eslint-plugin-prettier/3.4.1_c9a99bfb2ee2af6122c24fded4a635d5: + /eslint-plugin-prettier/3.4.1_zguzx6zo4kxwciwcj7pnjjrv2u: resolution: {integrity: sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==} engines: {node: '>=6.0.0'} peerDependencies: @@ -23429,13 +22455,6 @@ packages: eslint: 6.8.0 dev: true - /eslint-plugin-react-hooks/4.3.0: - resolution: {integrity: sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==} - engines: {node: '>=10'} - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 - dev: true - /eslint-plugin-react-hooks/4.3.0_eslint@7.32.0: resolution: {integrity: sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==} engines: {node: '>=10'} @@ -23453,28 +22472,6 @@ packages: dependencies: eslint: 8.12.0 - /eslint-plugin-react/7.29.4: - resolution: {integrity: sha512-CVCXajliVh509PcZYRFyu/BoUEz452+jtQJq2b3Bae4v3xBUWPLCmtmBM+ZinG4MzwmxJgJ2M5rMqhqLVn7MtQ==} - engines: {node: '>=4'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - dependencies: - array-includes: 3.1.4 - array.prototype.flatmap: 1.2.5 - doctrine: 2.1.0 - estraverse: 5.3.0 - jsx-ast-utils: 3.2.1 - minimatch: 3.1.2 - object.entries: 1.1.5 - object.fromentries: 2.0.5 - object.hasown: 1.1.0 - object.values: 1.1.5 - prop-types: 15.8.1 - resolve: 2.0.0-next.3 - semver: 6.3.0 - string.prototype.matchall: 4.0.6 - dev: true - /eslint-plugin-react/7.29.4_eslint@7.32.0: resolution: {integrity: sha512-CVCXajliVh509PcZYRFyu/BoUEz452+jtQJq2b3Bae4v3xBUWPLCmtmBM+ZinG4MzwmxJgJ2M5rMqhqLVn7MtQ==} engines: {node: '>=4'} @@ -23543,19 +22540,28 @@ packages: semver: 6.3.0 string.prototype.matchall: 4.0.6 - /eslint-plugin-testing-library/5.1.0_eslint@8.12.0+typescript@4.6.2: + /eslint-plugin-testing-library/5.1.0_qfndwjbknwkswbha2khu23tpva: resolution: {integrity: sha512-YSNzasJUbyhOTe14ZPygeOBvcPvcaNkwHwrj4vdf+uirr2D32JTDaKi6CP5Os2aWtOcvt4uBSPXp9h5xGoqvWQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} peerDependencies: eslint: ^7.5.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.15.0_eslint@8.12.0+typescript@4.6.2 + '@typescript-eslint/utils': 5.15.0_qfndwjbknwkswbha2khu23tpva eslint: 8.12.0 transitivePeerDependencies: - supports-color - typescript dev: false + /eslint-plugin-wpcalypso/4.1.0_eslint@6.8.0: + resolution: {integrity: sha512-2gZdaaX5rS7vve5FfIBTANPFXfQstxMppUFR8KzrY5cJPt7hIhpg9lOb4y0hVYNdJkhZxkvEWw8yoJhaUc1OYQ==} + engines: {node: '>=10'} + peerDependencies: + eslint: '>=5' + dependencies: + eslint: 6.8.0 + dev: true + /eslint-scope/4.0.3: resolution: {integrity: sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==} engines: {node: '>=4.0.0'} @@ -23585,7 +22591,6 @@ packages: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 - dev: true /eslint-utils/1.4.3: resolution: {integrity: sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==} @@ -23600,15 +22605,6 @@ packages: eslint-visitor-keys: 1.3.0 dev: true - /eslint-utils/3.0.0: - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' - dependencies: - eslint-visitor-keys: 2.1.0 - dev: true - /eslint-utils/3.0.0_eslint@7.32.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} @@ -23619,16 +22615,6 @@ packages: eslint-visitor-keys: 2.1.0 dev: true - /eslint-utils/3.0.0_eslint@8.1.0: - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' - dependencies: - eslint: 8.1.0 - eslint-visitor-keys: 2.1.0 - dev: true - /eslint-utils/3.0.0_eslint@8.11.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} @@ -23684,7 +22670,7 @@ packages: ajv: 6.12.6 chalk: 2.4.2 cross-spawn: 6.0.5 - debug: 4.3.3 + debug: 4.3.4 doctrine: 3.0.0 eslint-scope: 4.0.3 eslint-utils: 1.4.3 @@ -23704,7 +22690,7 @@ packages: json-stable-stringify-without-jsonify: 1.0.1 levn: 0.3.0 lodash: 4.17.21 - minimatch: 3.0.4 + minimatch: 3.1.2 mkdirp: 0.5.5 natural-compare: 1.4.0 optionator: 0.8.3 @@ -23771,11 +22757,11 @@ packages: engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} hasBin: true dependencies: - '@babel/code-frame': 7.16.0 + '@babel/code-frame': 7.16.7 ajv: 6.12.6 chalk: 2.4.2 cross-spawn: 6.0.5 - debug: 4.3.2 + debug: 4.3.4 doctrine: 3.0.0 eslint-scope: 5.1.1 eslint-utils: 1.4.3 @@ -23796,7 +22782,7 @@ packages: json-stable-stringify-without-jsonify: 1.0.1 levn: 0.3.0 lodash: 4.17.21 - minimatch: 3.0.4 + minimatch: 3.1.2 mkdirp: 0.5.5 natural-compare: 1.4.0 optionator: 0.8.3 @@ -23861,53 +22847,6 @@ packages: - supports-color dev: true - /eslint/8.1.0: - resolution: {integrity: sha512-JZvNneArGSUsluHWJ8g8MMs3CfIEzwaLx9KyH4tZ2i+R2/rPWzL8c0zg3rHdwYVpN/1sB9gqnjHwz9HoeJpGHw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true - dependencies: - '@eslint/eslintrc': 1.0.3 - '@humanwhocodes/config-array': 0.6.0 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.3 - debug: 4.3.2 - doctrine: 3.0.0 - enquirer: 2.3.6 - escape-string-regexp: 4.0.0 - eslint-scope: 6.0.0 - eslint-utils: 3.0.0_eslint@8.1.0 - eslint-visitor-keys: 3.0.0 - espree: 9.0.0 - esquery: 1.4.0 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 - functional-red-black-tree: 1.0.1 - glob-parent: 6.0.2 - globals: 13.11.0 - ignore: 4.0.6 - import-fresh: 3.3.0 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - js-yaml: 4.1.0 - json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 - lodash.merge: 4.6.2 - minimatch: 3.0.4 - natural-compare: 1.4.0 - optionator: 0.9.1 - progress: 2.0.3 - regexpp: 3.2.0 - semver: 7.3.5 - strip-ansi: 6.0.1 - strip-json-comments: 3.1.1 - text-table: 0.2.0 - v8-compile-cache: 2.3.0 - transitivePeerDependencies: - - supports-color - dev: true - /eslint/8.11.0: resolution: {integrity: sha512-/KRpd9mIRg2raGxHRGwW9ZywYNAClZrHjdueHcrVDuO3a6bj83eoTirCCk0M0yPwOjWYKHwRVRid+xK4F/GHgA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -23994,7 +22933,6 @@ packages: v8-compile-cache: 2.3.0 transitivePeerDependencies: - supports-color - dev: true /eslint/8.2.0: resolution: {integrity: sha512-erw7XmM+CLxTOickrimJ1SiF55jiNlVSp2qqm0NuBWPtHYQCegD5ZMaW0c3i5ytPqL+SSLaCxdvQXFPLJn+ABw==} @@ -24075,7 +23013,7 @@ packages: dependencies: acorn: 8.7.0 acorn-jsx: 5.3.2_acorn@8.7.0 - eslint-visitor-keys: 3.0.0 + eslint-visitor-keys: 3.3.0 dev: true /espree/9.3.1: @@ -24085,7 +23023,6 @@ packages: acorn: 8.7.0 acorn-jsx: 5.3.2_acorn@8.7.0 eslint-visitor-keys: 3.3.0 - dev: true /esprima/2.7.3: resolution: {integrity: sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=} @@ -24137,6 +23074,11 @@ packages: resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} engines: {node: '>= 0.6'} + /event-target-shim/5.0.1: + resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} + engines: {node: '>=6'} + dev: false + /eventemitter2/0.4.14: resolution: {integrity: sha512-K7J4xq5xAD5jHsGM5ReWXRTFa3JRGofHiMcVgQ8PRwgWxzjHpMWCIzsmyf60+mh8KLsqYPcjUMa0AC4hd6lPyQ==} dev: true @@ -24149,7 +23091,7 @@ packages: resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} /events/1.1.1: - resolution: {integrity: sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=} + resolution: {integrity: sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==} engines: {node: '>=0.4.x'} dev: true @@ -24266,7 +23208,7 @@ packages: engines: {node: '>= 0.8.0'} /expand-brackets/2.1.4: - resolution: {integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=} + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} engines: {node: '>=0.10.0'} dependencies: debug: 2.6.9 @@ -24276,6 +23218,22 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + /expand-brackets/2.1.4_supports-color@6.1.0: + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} + engines: {node: '>=0.10.0'} + dependencies: + debug: 2.6.9_supports-color@6.1.0 + define-property: 0.2.5 + extend-shallow: 2.0.1 + posix-character-classes: 0.1.1 + regex-not: 1.0.2 + snapdragon: 0.8.2_supports-color@6.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color /expand-tilde/1.2.2: resolution: {integrity: sha512-rtmc+cjLZqnu9dSYosX9EWmSJhTwpACgJQTfj4hgg2JjOD/6SIQalZrt4a3aQeh++oNxkazcaxrhPUj6+g5G/Q==} @@ -24288,7 +23246,6 @@ packages: engines: {node: '>=0.10.0'} dependencies: homedir-polyfill: 1.0.3 - dev: true /expect-more/1.2.0: resolution: {integrity: sha512-AVnjc5oh2jgiJjOrjbiKxbwLlNA/zsl2044Nbd09H4+2KwThtSLYKhdOusLYOrcToFAa2uBOWR1ExCN4kOWgbQ==} @@ -24312,6 +23269,8 @@ packages: jest-matcher-utils: 24.9.0 jest-message-util: 24.9.0 jest-regex-util: 24.9.0 + transitivePeerDependencies: + - supports-color dev: false /expect/25.5.0: @@ -24338,18 +23297,6 @@ packages: jest-regex-util: 26.0.0 dev: true - /expect/27.3.1: - resolution: {integrity: sha512-MrNXV2sL9iDRebWPGOGFdPQRl2eDQNu/uhxIMShjjx74T6kC6jFIkmQ6OqXDtevjGUkyB2IT56RzDBqXf/QPCg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': 27.5.1 - ansi-styles: 5.2.0 - jest-get-type: 27.3.1 - jest-matcher-utils: 27.3.1 - jest-message-util: 27.3.1 - jest-regex-util: 27.0.6 - dev: true - /expect/27.5.1: resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -24368,42 +23315,6 @@ packages: webpack: 5.70.0_webpack-cli@4.9.2 dev: true - /express/4.17.1: - resolution: {integrity: sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==} - engines: {node: '>= 0.10.0'} - dependencies: - accepts: 1.3.7 - array-flatten: 1.1.1 - body-parser: 1.19.0 - content-disposition: 0.5.3 - content-type: 1.0.4 - cookie: 0.4.0 - cookie-signature: 1.0.6 - debug: 2.6.9 - depd: 1.1.2 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - finalhandler: 1.1.2 - fresh: 0.5.2 - merge-descriptors: 1.0.1 - methods: 1.1.2 - on-finished: 2.3.0 - parseurl: 1.3.3 - path-to-regexp: 0.1.7 - proxy-addr: 2.0.7 - qs: 6.7.0 - range-parser: 1.2.1 - safe-buffer: 5.1.2 - send: 0.17.1 - serve-static: 1.14.1 - setprototypeof: 1.1.1 - statuses: 1.5.0 - type-is: 1.6.18 - utils-merge: 1.0.1 - vary: 1.1.2 - dev: true - /express/4.18.1: resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==} engines: {node: '>= 0.10.0'} @@ -24439,16 +23350,17 @@ packages: type-is: 1.6.18 utils-merge: 1.0.1 vary: 1.1.2 - dev: false + transitivePeerDependencies: + - supports-color /extend-shallow/2.0.1: - resolution: {integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=} + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} engines: {node: '>=0.10.0'} dependencies: is-extendable: 0.1.1 /extend-shallow/3.0.2: - resolution: {integrity: sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=} + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} engines: {node: '>=0.10.0'} dependencies: assign-symbols: 1.0.0 @@ -24477,6 +23389,23 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + /extglob/2.0.4_supports-color@6.1.0: + resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} + engines: {node: '>=0.10.0'} + dependencies: + array-unique: 0.3.2 + define-property: 1.0.0 + expand-brackets: 2.1.4_supports-color@6.1.0 + extend-shallow: 2.0.1 + fragment-cache: 0.2.1 + regex-not: 1.0.2 + snapdragon: 0.8.2_supports-color@6.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color /extract-zip/1.7.0: resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} @@ -24486,6 +23415,8 @@ packages: debug: 2.6.9 mkdirp: 0.5.5 yauzl: 2.10.0 + transitivePeerDependencies: + - supports-color /extract-zip/2.0.1: resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} @@ -24525,6 +23456,8 @@ packages: is-glob: 4.0.3 merge2: 1.4.1 micromatch: 3.1.10 + transitivePeerDependencies: + - supports-color dev: true /fast-glob/3.2.11: @@ -24658,7 +23591,6 @@ packages: engines: {node: ^10.12.0 || >=12.0.0} dependencies: flat-cache: 3.0.4 - dev: true /file-loader/6.2.0_webpack@4.46.0: resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} @@ -24684,7 +23616,7 @@ packages: dev: true /file-type/3.9.0: - resolution: {integrity: sha1-JXoHg4TR24CHvESdEH1SpSZyuek=} + resolution: {integrity: sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==} engines: {node: '>=0.10.0'} dev: false @@ -24696,10 +23628,10 @@ packages: /file-uri-to-path/1.0.0: resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} - /filelist/1.0.2: - resolution: {integrity: sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ==} + /filelist/1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} dependencies: - minimatch: 3.1.2 + minimatch: 5.1.0 /filename-reserved-regex/2.0.0: resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==} @@ -24716,10 +23648,10 @@ packages: dev: true /fileset/2.0.3: - resolution: {integrity: sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=} + resolution: {integrity: sha512-UxowFKnAFIwtmSxgKjWAVgjE3Fk7MQJT0ZIyl0NwIFZTrx4913rLaonGJ84V+x/2+w/pe4ULHRns+GZPs1TVuw==} dependencies: glob: 7.2.0 - minimatch: 3.0.4 + minimatch: 3.1.2 dev: true /filesize/3.6.1: @@ -24728,7 +23660,7 @@ packages: dev: true /fill-range/4.0.0: - resolution: {integrity: sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=} + resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} engines: {node: '>=0.10.0'} dependencies: extend-shallow: 2.0.1 @@ -24753,7 +23685,9 @@ packages: parseurl: 1.3.3 statuses: 1.5.0 unpipe: 1.0.0 - dev: true + transitivePeerDependencies: + - supports-color + dev: false /finalhandler/1.2.0: resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} @@ -24766,7 +23700,8 @@ packages: parseurl: 1.3.3 statuses: 2.0.1 unpipe: 1.0.0 - dev: false + transitivePeerDependencies: + - supports-color /find-cache-dir/2.1.0: resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} @@ -24775,7 +23710,6 @@ packages: commondir: 1.0.1 make-dir: 2.1.0 pkg-dir: 3.0.0 - dev: true /find-cache-dir/3.3.2: resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} @@ -24825,7 +23759,7 @@ packages: dev: true /find-up/2.1.0: - resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=} + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} engines: {node: '>=4'} dependencies: locate-path: 2.0.0 @@ -24849,7 +23783,6 @@ packages: dependencies: locate-path: 6.0.0 path-exists: 4.0.0 - dev: true /find-yarn-workspace-root/2.0.0: resolution: {integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==} @@ -24879,17 +23812,20 @@ packages: is-glob: 3.1.0 micromatch: 3.1.10 resolve-dir: 1.0.1 + transitivePeerDependencies: + - supports-color dev: true - /findup-sync/3.0.0: + /findup-sync/3.0.0_supports-color@6.1.0: resolution: {integrity: sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==} engines: {node: '>= 0.10'} dependencies: detect-file: 1.0.0 is-glob: 4.0.3 - micromatch: 3.1.10 + micromatch: 3.1.10_supports-color@6.1.0 resolve-dir: 1.0.1 - dev: true + transitivePeerDependencies: + - supports-color /findup/0.1.5: resolution: {integrity: sha1-itkpozk7rGJ5V6fl3kYjsGsOLOs=} @@ -24911,7 +23847,7 @@ packages: dev: true /first-chunk-stream/2.0.0: - resolution: {integrity: sha1-G97NuOCDwGZLkZRVgVd6Q6nzHXA=} + resolution: {integrity: sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg==} engines: {node: '>=0.10.0'} dependencies: readable-stream: 2.3.7 @@ -24942,7 +23878,6 @@ packages: dependencies: flatted: 3.2.4 rimraf: 3.0.2 - dev: true /flat/4.1.1: resolution: {integrity: sha512-FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA==} @@ -24956,12 +23891,10 @@ packages: /flatted/3.2.4: resolution: {integrity: sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==} - dev: true - /flow-parser/0.174.1: - resolution: {integrity: sha512-nDMOvlFR+4doLpB3OJpseHZ7uEr3ENptlF6qMas/kzQmNcLzMwfQeFX0gGJ/+em7UdldB/nGsk55tDTOvjbCuw==} + /flow-parser/0.121.0: + resolution: {integrity: sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==} engines: {node: '>=0.4.0'} - dev: true /flush-write-stream/1.1.1: resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==} @@ -24978,7 +23911,6 @@ packages: peerDependenciesMeta: debug: optional: true - dev: false /follow-redirects/1.14.7: resolution: {integrity: sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ==} @@ -24994,13 +23926,14 @@ packages: engines: {node: '>=4.0'} dependencies: debug: 3.1.0 + transitivePeerDependencies: + - supports-color dev: true /for-each/0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} dependencies: is-callable: 1.2.4 - dev: false /for-in/0.1.8: resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==} @@ -25034,20 +23967,63 @@ packages: /forever-agent/0.6.1: resolution: {integrity: sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=} - /fork-ts-checker-webpack-plugin/4.1.6: + /fork-ts-checker-webpack-plugin/4.1.6_5q2la2giz43vmgv46x6vwifbgq: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true dependencies: '@babel/code-frame': 7.16.7 chalk: 2.4.2 + eslint: 8.12.0 micromatch: 3.1.10 minimatch: 3.1.2 semver: 5.7.1 tapable: 1.1.3 + typescript: 4.6.2 + webpack: 4.46.0_webpack-cli@3.3.12 worker-rpc: 0.1.1 + transitivePeerDependencies: + - supports-color dev: true - /fork-ts-checker-webpack-plugin/6.5.0_10568ae13669cc833891d65cd6879aa0: + /fork-ts-checker-webpack-plugin/4.1.6_sfjhwazafbou6ucdr5ol5z2g64: + resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} + engines: {node: '>=6.11.5', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + dependencies: + '@babel/code-frame': 7.16.7 + chalk: 2.4.2 + eslint: 8.12.0 + micromatch: 3.1.10 + minimatch: 3.1.2 + semver: 5.7.1 + tapable: 1.1.3 + typescript: 4.2.4 + webpack: 4.46.0 + worker-rpc: 0.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /fork-ts-checker-webpack-plugin/6.5.0_2iwbsxmmxzlklmwmpsmkubfwfq: resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -25067,7 +24043,7 @@ packages: chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.2.2 - eslint: 8.11.0 + eslint: 8.12.0 fs-extra: 9.1.0 glob: 7.2.0 memfs: 3.3.0 @@ -25075,11 +24051,11 @@ packages: schema-utils: 2.7.0 semver: 7.3.5 tapable: 1.1.3 - typescript: 4.6.2 - webpack: 5.70.0_webpack-cli@4.9.2 + typescript: 4.2.4 + webpack: 5.70.0 dev: true - /fork-ts-checker-webpack-plugin/6.5.0_ec34b068c8cf37561abcf5fd5b20a134: + /fork-ts-checker-webpack-plugin/6.5.0_5q2la2giz43vmgv46x6vwifbgq: resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -25111,7 +24087,7 @@ packages: webpack: 4.46.0_webpack-cli@3.3.12 dev: true - /fork-ts-checker-webpack-plugin/6.5.0_typescript@4.2.4+webpack@4.46.0: + /fork-ts-checker-webpack-plugin/6.5.0_cblivyjwnhgigoer2zonnb42ua: resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -25131,6 +24107,39 @@ packages: chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.2.2 + eslint: 8.11.0 + fs-extra: 9.1.0 + glob: 7.2.0 + memfs: 3.3.0 + minimatch: 3.1.2 + schema-utils: 2.7.0 + semver: 7.3.5 + tapable: 1.1.3 + typescript: 4.6.2 + webpack: 5.70.0_webpack-cli@4.9.2 + dev: true + + /fork-ts-checker-webpack-plugin/6.5.0_sfjhwazafbou6ucdr5ol5z2g64: + resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + dependencies: + '@babel/code-frame': 7.16.7 + '@types/json-schema': 7.0.9 + chalk: 4.1.2 + chokidar: 3.5.3 + cosmiconfig: 6.0.0 + deepmerge: 4.2.2 + eslint: 8.12.0 fs-extra: 9.1.0 glob: 7.2.0 memfs: 3.3.0 @@ -25142,44 +24151,13 @@ packages: webpack: 4.46.0 dev: true - /fork-ts-checker-webpack-plugin/6.5.0_typescript@4.2.4+webpack@5.70.0: - resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} - engines: {node: '>=10', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: '>= 4' - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true - dependencies: - '@babel/code-frame': 7.16.7 - '@types/json-schema': 7.0.9 - chalk: 4.1.2 - chokidar: 3.5.3 - cosmiconfig: 6.0.0 - deepmerge: 4.2.2 - fs-extra: 9.1.0 - glob: 7.2.0 - memfs: 3.3.0 - minimatch: 3.1.2 - schema-utils: 2.7.0 - semver: 7.3.5 - tapable: 1.1.3 - typescript: 4.2.4 - webpack: 5.70.0 - dev: true - /form-data/2.3.3: resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} engines: {node: '>= 0.12'} dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 - mime-types: 2.1.34 + mime-types: 2.1.35 /form-data/2.5.1: resolution: {integrity: sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==} @@ -25187,7 +24165,7 @@ packages: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 - mime-types: 2.1.34 + mime-types: 2.1.35 dev: false /form-data/3.0.1: @@ -25196,7 +24174,7 @@ packages: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 - mime-types: 2.1.34 + mime-types: 2.1.35 /form-data/4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} @@ -25204,7 +24182,7 @@ packages: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 - mime-types: 2.1.34 + mime-types: 2.1.35 dev: false /format/0.2.2: @@ -25219,8 +24197,13 @@ packages: fetch-blob: 3.2.0 dev: false - /formidable/1.2.2: - resolution: {integrity: sha512-V8gLm+41I/8kguQ4/o1D3RIHRmhYFG4pnNyonvua+40rqcEmT4+V71yaZ3B457xbbgCsCfjSPi65u/W6vK1U5Q==} + /formidable/2.0.1: + resolution: {integrity: sha512-rjTMNbp2BpfQShhFbR3Ruk3qk2y9jKpvMW78nJgx8QKtxjDVrwbZG+wvDOmVbifHyOUOQJXxqEy6r0faRrPzTQ==} + dependencies: + dezalgo: 1.0.3 + hexoid: 1.0.0 + once: 1.4.0 + qs: 6.9.3 dev: false /forwarded/0.2.0: @@ -25236,12 +24219,12 @@ packages: dev: true /fragment-cache/0.2.1: - resolution: {integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=} + resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} engines: {node: '>=0.10.0'} dependencies: map-cache: 0.2.2 - /framer-motion/2.9.5: + /framer-motion/2.9.5_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-epSX4Co1YbDv0mjfHouuY0q361TpHE7WQzCp/xMTilxy4kXd+Z23uJzPVorfzbm1a/9q1Yu8T5bndaw65NI4Tg==} peerDependencies: react: '>=16.8' @@ -25250,44 +24233,14 @@ packages: framesync: 4.1.0 hey-listen: 1.0.8 popmotion: 9.0.0-rc.20 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 style-value-types: 3.2.0 tslib: 1.14.1 optionalDependencies: '@emotion/is-prop-valid': 0.8.8 dev: false - /framer-motion/6.2.8: - resolution: {integrity: sha512-4PtBWFJ6NqR350zYVt9AsFDtISTqsdqna79FvSYPfYDXuuqFmiKtZdkTnYPslnsOMedTW0pEvaQ7eqjD+sA+HA==} - peerDependencies: - react: '>=16.8 || ^17.0.0 || ^18.0.0' - react-dom: '>=16.8 || ^17.0.0 || ^18.0.0' - dependencies: - framesync: 6.0.1 - hey-listen: 1.0.8 - popmotion: 11.0.3 - style-value-types: 5.0.0 - tslib: 2.3.1 - optionalDependencies: - '@emotion/is-prop-valid': 0.8.8 - dev: false - - /framer-motion/6.2.8_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-4PtBWFJ6NqR350zYVt9AsFDtISTqsdqna79FvSYPfYDXuuqFmiKtZdkTnYPslnsOMedTW0pEvaQ7eqjD+sA+HA==} - peerDependencies: - react: '>=16.8 || ^17.0.0 || ^18.0.0' - react-dom: '>=16.8 || ^17.0.0 || ^18.0.0' - dependencies: - framesync: 6.0.1 - hey-listen: 1.0.8 - popmotion: 11.0.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - style-value-types: 5.0.0 - tslib: 2.3.1 - optionalDependencies: - '@emotion/is-prop-valid': 0.8.8 - dev: false - /framer-motion/6.2.8_react@17.0.2: resolution: {integrity: sha512-4PtBWFJ6NqR350zYVt9AsFDtISTqsdqna79FvSYPfYDXuuqFmiKtZdkTnYPslnsOMedTW0pEvaQ7eqjD+sA+HA==} peerDependencies: @@ -25304,6 +24257,23 @@ packages: '@emotion/is-prop-valid': 0.8.8 dev: false + /framer-motion/6.2.8_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-4PtBWFJ6NqR350zYVt9AsFDtISTqsdqna79FvSYPfYDXuuqFmiKtZdkTnYPslnsOMedTW0pEvaQ7eqjD+sA+HA==} + peerDependencies: + react: '>=16.8 || ^17.0.0 || ^18.0.0' + react-dom: '>=16.8 || ^17.0.0 || ^18.0.0' + dependencies: + framesync: 6.0.1 + hey-listen: 1.0.8 + popmotion: 11.0.3 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + style-value-types: 5.0.0 + tslib: 2.3.1 + optionalDependencies: + '@emotion/is-prop-valid': 0.8.8 + dev: false + /framesync/4.1.0: resolution: {integrity: sha512-MmgZ4wCoeVxNbx2xp5hN/zPDCbLSKiDt4BbbslK7j/pM2lg5S0vhTNv1v8BCVb99JPIo6hXBFdwzU7Q4qcAaoQ==} dependencies: @@ -25345,6 +24315,14 @@ packages: rimraf: 2.7.1 dev: true + /fs-extra/1.0.0: + resolution: {integrity: sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ==} + dependencies: + graceful-fs: 4.2.9 + jsonfile: 2.4.0 + klaw: 1.3.1 + dev: false + /fs-extra/10.1.0: resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} engines: {node: '>=12'} @@ -25367,7 +24345,6 @@ packages: graceful-fs: 4.2.9 jsonfile: 4.0.0 universalify: 0.1.2 - dev: true /fs-extra/9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} @@ -25439,8 +24416,8 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.19.1 + define-properties: 1.1.4 + es-abstract: 1.20.2 functions-have-names: 1.2.2 /functional-red-black-tree/1.0.1: @@ -25469,11 +24446,10 @@ packages: wide-align: 1.1.3 dev: true - /gauge/4.0.1: - resolution: {integrity: sha512-zJ4jePUHR8cceduZ53b6temRalyGpkC2Kc2r3ecNphmL+uWNoJ3YcOcUjpbG6WwoE/Ef6/+aEZz63neI2WIa1Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16} + /gauge/4.0.4: + resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: - ansi-regex: 5.0.1 aproba: 1.2.0 color-support: 1.1.3 console-control-strings: 1.1.0 @@ -25481,14 +24457,14 @@ packages: signal-exit: 3.0.7 string-width: 4.2.3 strip-ansi: 6.0.1 - wide-align: 1.1.3 + wide-align: 1.1.5 dev: true /gaze/1.1.3: resolution: {integrity: sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==} engines: {node: '>= 4.0.0'} dependencies: - globule: 1.3.3 + globule: 1.3.4 dev: true /gensync/1.0.0-beta.2: @@ -25504,7 +24480,7 @@ packages: engines: {node: 6.* || 8.* || >= 10.*} /get-func-name/2.0.0: - resolution: {integrity: sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=} + resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==} dev: true /get-intrinsic/1.1.1: @@ -25512,19 +24488,26 @@ packages: dependencies: function-bind: 1.1.1 has: 1.0.3 - has-symbols: 1.0.2 + has-symbols: 1.0.3 + + /get-intrinsic/1.1.3: + resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==} + dependencies: + function-bind: 1.1.1 + has: 1.0.3 + has-symbols: 1.0.3 /get-package-type/0.1.0: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} /get-stdin/4.0.1: - resolution: {integrity: sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=} + resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} engines: {node: '>=0.10.0'} dev: true /get-stdin/5.0.1: - resolution: {integrity: sha1-Ei4WFZHiH/TFJTAwVpPyDmOTo5g=} + resolution: {integrity: sha512-jZV7n6jGE3Gt7fgSTJoz91Ak5MuTLwMwkoYdjxuJ/AmjIsE1UC03y/IWkZCQGEvVNS9qoRNwy5BCqxImv0FVeA==} engines: {node: '>=0.12.0'} dev: true @@ -25564,10 +24547,10 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.3 /get-value/2.0.6: - resolution: {integrity: sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=} + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} engines: {node: '>=0.10.0'} /getobject/1.0.2: @@ -25614,7 +24597,7 @@ packages: dev: true /glob-parent/3.1.0: - resolution: {integrity: sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=} + resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} dependencies: is-glob: 3.1.0 path-dirname: 1.0.2 @@ -25631,7 +24614,6 @@ packages: engines: {node: '>=10.13.0'} dependencies: is-glob: 4.0.3 - dev: true /glob-promise/3.4.0_glob@7.2.0: resolution: {integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==} @@ -25649,7 +24631,6 @@ packages: /glob-to-regexp/0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - dev: true /glob/5.0.15: resolution: {integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==} @@ -25667,7 +24648,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.0.4 + minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 dev: true @@ -25708,7 +24689,7 @@ packages: resolution: {integrity: sha512-EOeUaup5DgWKlCMhA9YFqNRIlZwoxt731jCh47WBV9fQqHgXhr3Fa55hfgIUqilIcPsfdNKN7LHjrNY+Km40KA==} engines: {node: '>= 0.4'} dependencies: - define-properties: 1.1.3 + define-properties: 1.1.4 is-symbol: 1.0.4 dev: false @@ -25733,14 +24714,12 @@ packages: global-prefix: 1.0.2 is-windows: 1.0.2 resolve-dir: 1.0.1 - dev: true /global-modules/2.0.0: resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} engines: {node: '>=6'} dependencies: global-prefix: 3.0.0 - dev: true /global-prefix/0.1.5: resolution: {integrity: sha512-gOPiyxcD9dJGCEArAhF4Hd0BAqvAe/JzERP7tYumE4yIkmIedPUVXcJFWbV3/p/ovIIvKjkrTk+f1UVkq7vvbw==} @@ -25760,7 +24739,6 @@ packages: ini: 1.3.8 is-windows: 1.0.2 which: 1.3.1 - dev: true /global-prefix/3.0.0: resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} @@ -25769,7 +24747,6 @@ packages: ini: 1.3.8 kind-of: 6.0.3 which: 1.3.1 - dev: true /global/4.4.0: resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} @@ -25788,13 +24765,6 @@ packages: dependencies: type-fest: 0.8.1 - /globals/13.11.0: - resolution: {integrity: sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==} - engines: {node: '>=8'} - dependencies: - type-fest: 0.20.2 - dev: true - /globals/13.12.0: resolution: {integrity: sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==} engines: {node: '>=8'} @@ -25810,11 +24780,11 @@ packages: resolution: {integrity: sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==} engines: {node: '>= 0.4'} dependencies: - define-properties: 1.1.3 + define-properties: 1.1.4 dev: true - /globby/10.0.1: - resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} + /globby/10.0.2: + resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==} engines: {node: '>=8'} dependencies: '@types/glob': 7.2.0 @@ -25862,7 +24832,7 @@ packages: dev: true /globby/6.1.0: - resolution: {integrity: sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=} + resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==} engines: {node: '>=0.10.0'} dependencies: array-union: 1.0.2 @@ -25884,14 +24854,16 @@ packages: ignore: 4.0.6 pify: 4.0.1 slash: 2.0.0 + transitivePeerDependencies: + - supports-color dev: true /globjoin/0.1.4: resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==} dev: true - /globule/1.3.3: - resolution: {integrity: sha512-mb1aYtDbIjTu4ShMB85m3UzjX9BVKe9WCzsnfMSZk+K5GpIbBOexgg4PPCt5eHDEG5/ZQAUX2Kct02zfiPLsKg==} + /globule/1.3.4: + resolution: {integrity: sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==} engines: {node: '>= 0.10'} dependencies: glob: 7.1.7 @@ -25953,7 +24925,7 @@ packages: dev: false /got/6.7.1: - resolution: {integrity: sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=} + resolution: {integrity: sha512-Y/K3EDuiQN9rTZhBvPRWMLXIKdeD1Rj0nzunfoi0Yyn5WBEbzxXKU9Ub2X41oZBagVWOBU3MuDonFMgPWQFnwg==} engines: {node: '>=4'} dependencies: '@types/keyv': 3.1.4 @@ -25971,10 +24943,6 @@ packages: url-parse-lax: 1.0.0 dev: true - /graceful-fs/4.2.8: - resolution: {integrity: sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==} - dev: true - /graceful-fs/4.2.9: resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==} @@ -25991,14 +24959,6 @@ packages: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} dev: false - /gridicons/3.4.0: - resolution: {integrity: sha512-GikyCOcfhwHSN8tfsZvcWwWSaRLebVZCvDzfFg0X50E+dIAnG2phfFUTNa06dXA09kqRYCdnu8sPO8pSYO3UVA==} - peerDependencies: - react: 15 - 17 - dependencies: - prop-types: 15.8.1 - dev: false - /gridicons/3.4.0_react@17.0.2: resolution: {integrity: sha512-GikyCOcfhwHSN8tfsZvcWwWSaRLebVZCvDzfFg0X50E+dIAnG2phfFUTNa06dXA09kqRYCdnu8sPO8pSYO3UVA==} peerDependencies: @@ -26031,6 +24991,8 @@ packages: liftoff: 2.5.0 nopt: 4.0.3 v8flags: 3.1.3 + transitivePeerDependencies: + - supports-color dev: true /grunt-contrib-clean/2.0.0_grunt@1.3.0: @@ -26078,7 +25040,7 @@ packages: dependencies: chalk: 2.4.2 maxmin: 2.1.0 - uglify-js: 3.16.0 + uglify-js: 3.17.0 uri-path: 1.0.0 dev: true @@ -26090,6 +25052,8 @@ packages: gaze: 1.1.3 lodash: 4.17.21 tiny-lr: 1.1.1 + transitivePeerDependencies: + - supports-color dev: true /grunt-known-options/1.1.1: @@ -26211,6 +25175,8 @@ packages: mkdirp: 1.0.4 nopt: 3.0.6 rimraf: 3.0.2 + transitivePeerDependencies: + - supports-color dev: true /gruntify-eslint/5.0.0_grunt@1.3.0: @@ -26283,8 +25249,8 @@ packages: dependencies: ansi-regex: 2.1.1 - /has-bigints/1.0.1: - resolution: {integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==} + /has-bigints/1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} /has-binary2/1.0.3: resolution: {integrity: sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==} @@ -26315,22 +25281,31 @@ packages: is-glob: 3.1.0 dev: true + /has-property-descriptors/1.0.0: + resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + dependencies: + get-intrinsic: 1.1.3 + /has-symbols/1.0.2: resolution: {integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==} engines: {node: '>= 0.4'} + /has-symbols/1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + /has-tostringtag/1.0.0: resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} engines: {node: '>= 0.4'} dependencies: - has-symbols: 1.0.2 + has-symbols: 1.0.3 /has-unicode/2.0.1: resolution: {integrity: sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=} dev: true /has-value/0.3.1: - resolution: {integrity: sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=} + resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} engines: {node: '>=0.10.0'} dependencies: get-value: 2.0.6 @@ -26338,7 +25313,7 @@ packages: isobject: 2.1.0 /has-value/1.0.0: - resolution: {integrity: sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=} + resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} engines: {node: '>=0.10.0'} dependencies: get-value: 2.0.6 @@ -26346,11 +25321,11 @@ packages: isobject: 3.0.1 /has-values/0.1.4: - resolution: {integrity: sha1-bWHeldkd/Km5oCCJrThL/49it3E=} + resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} engines: {node: '>=0.10.0'} /has-values/1.0.0: - resolution: {integrity: sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=} + resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} engines: {node: '>=0.10.0'} dependencies: is-number: 3.0.0 @@ -26449,9 +25424,31 @@ packages: capital-case: 1.0.4 tslib: 2.3.1 + /hermes-estree/0.8.0: + resolution: {integrity: sha512-W6JDAOLZ5pMPMjEiQGLCXSSV7pIBEgRR5zGkxgmzGSXHOxqV5dC/M1Zevqpbm9TZDE5tu358qZf8Vkzmsc+u7Q==} + dev: false + + /hermes-parser/0.8.0: + resolution: {integrity: sha512-yZKalg1fTYG5eOiToLUaw69rQfZq/fi+/NtEXRU7N87K/XobNRhRWorh80oSge2lWUiZfTgUvRJH+XgZWrhoqA==} + dependencies: + hermes-estree: 0.8.0 + dev: false + + /hermes-profile-transformer/0.0.6: + resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==} + engines: {node: '>=8'} + dependencies: + source-map: 0.7.3 + dev: false + /hex-color-regex/1.1.0: resolution: {integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==} + /hexoid/1.0.0: + resolution: {integrity: sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==} + engines: {node: '>=8'} + dev: false + /hey-listen/1.0.8: resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==} dev: false @@ -26577,7 +25574,7 @@ packages: terser: 4.8.0 dev: true - /html-minifier-terser/6.1.0: + /html-minifier-terser/6.1.0_acorn@8.7.0: resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} engines: {node: '>=12'} hasBin: true @@ -26588,7 +25585,7 @@ packages: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.10.0 + terser: 5.10.0_acorn@8.7.0 transitivePeerDependencies: - acorn dev: true @@ -26620,14 +25617,14 @@ packages: webpack: 4.46.0 dev: true - /html-webpack-plugin/5.5.0_webpack@5.70.0: + /html-webpack-plugin/5.5.0_acorn@8.7.0+webpack@5.70.0: resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==} engines: {node: '>=10.13.0'} peerDependencies: webpack: ^5.20.0 dependencies: '@types/html-minifier-terser': 6.1.0 - html-minifier-terser: 6.1.0 + html-minifier-terser: 6.1.0_acorn@8.7.0 lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 @@ -26671,28 +25668,6 @@ packages: transitivePeerDependencies: - supports-color - /http-errors/1.7.2: - resolution: {integrity: sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==} - engines: {node: '>= 0.6'} - dependencies: - depd: 1.1.2 - inherits: 2.0.3 - setprototypeof: 1.1.1 - statuses: 1.5.0 - toidentifier: 1.0.0 - dev: true - - /http-errors/1.7.3: - resolution: {integrity: sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==} - engines: {node: '>= 0.6'} - dependencies: - depd: 1.1.2 - inherits: 2.0.4 - setprototypeof: 1.1.1 - statuses: 1.5.0 - toidentifier: 1.0.0 - dev: true - /http-errors/2.0.0: resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} engines: {node: '>= 0.8'} @@ -26702,7 +25677,6 @@ packages: setprototypeof: 1.2.0 statuses: 2.0.1 toidentifier: 1.0.1 - dev: false /http-parser-js/0.5.3: resolution: {integrity: sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==} @@ -26730,7 +25704,7 @@ packages: dev: true /http-reasons/0.1.0: - resolution: {integrity: sha1-qVPKZwB4Zp3eFCzomUAbnW6F07Q=} + resolution: {integrity: sha512-P6kYh0lKZ+y29T2Gqz+RlC9WBLhKe8kDmcJ+A+611jFfxdPsbMRQ5aNmFRM3lENqFkK+HTTL+tlQviAiv0AbLQ==} dev: false /http-signature/1.2.0: @@ -26759,6 +25733,8 @@ packages: dependencies: agent-base: 4.3.0 debug: 3.2.7 + transitivePeerDependencies: + - supports-color dev: true /https-proxy-agent/4.0.0: @@ -26789,7 +25765,7 @@ packages: engines: {node: '>=10.17.0'} /humanize-ms/1.2.1: - resolution: {integrity: sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=} + resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} dependencies: ms: 2.1.3 dev: true @@ -26822,35 +25798,36 @@ packages: - supports-color dev: true - /i18n-calypso/5.0.0: + /i18n-calypso/5.0.0_react@17.0.2: resolution: {integrity: sha512-YgqLgshNiBOiifWxr4s33ODWQ4JIaHoBPWtgFyqcRy0+WGMX2CmTDbXaeZHkHxuIjzsGP+YrVTPNp7lfbiot4g==} peerDependencies: react: ^16.8 dependencies: '@babel/runtime': 7.17.7 '@tannin/sprintf': 1.2.0 - '@wordpress/compose': 3.25.3 + '@wordpress/compose': 3.25.3_react@17.0.2 debug: 4.3.4 events: 3.3.0 hash.js: 1.1.7 interpolate-components: 1.1.1 lodash: 4.17.21 lru: 3.1.0 + react: 17.0.2 tannin: 1.2.0 - use-subscription: 1.6.0 + use-subscription: 1.6.0_react@17.0.2 transitivePeerDependencies: - supports-color dev: true - /i18n-calypso/6.0.1_00d6772dea80510e818fd171caaa025a: + /i18n-calypso/6.0.1_adlholpkqbiq5amp2fy4vkqcli: resolution: {integrity: sha512-+/mWjFd0IR7VWqTV4iVOiu2wyKLtkoiioABPISVVTy3ybe1EnW8JmTnWnpQh3t6Fq3rHhstO6lMzpi/b6Idk4A==} peerDependencies: react: ^17.0.2 dependencies: - '@automattic/interpolate-components': 1.2.1_00d6772dea80510e818fd171caaa025a + '@automattic/interpolate-components': 1.2.1_adlholpkqbiq5amp2fy4vkqcli '@babel/runtime': 7.17.7 '@tannin/sprintf': 1.2.0 - '@wordpress/compose': 5.8.0_react@17.0.2 + '@wordpress/compose': 5.14.0_react@17.0.2 debug: 4.3.4 events: 3.3.0 hash.js: 1.1.7 @@ -26930,6 +25907,12 @@ packages: resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} engines: {node: '>= 4'} + /image-size/0.6.3: + resolution: {integrity: sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==} + engines: {node: '>=4.0'} + hasBin: true + dev: false + /immutable/4.0.0: resolution: {integrity: sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==} dev: true @@ -26961,7 +25944,7 @@ packages: resolve-from: 3.0.0 /import-lazy/2.1.0: - resolution: {integrity: sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=} + resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} engines: {node: '>=4'} dev: true @@ -27066,9 +26049,9 @@ packages: strip-ansi: 6.0.1 through: 2.3.8 - /inquirer/8.2.0: - resolution: {integrity: sha512-0crLweprevJ02tTuA6ThpoAERAGyVILC4sS74uib58Xf/zSr1/ZWtmm7D5CI+bSQEaA04f0K7idaHpQbSWgiVQ==} - engines: {node: '>=8.0.0'} + /inquirer/8.2.4: + resolution: {integrity: sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==} + engines: {node: '>=12.0.0'} dependencies: ansi-escapes: 4.3.2 chalk: 4.1.2 @@ -27084,13 +26067,14 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 through: 2.3.8 + wrap-ansi: 7.0.0 dev: true /internal-slot/1.0.3: resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.3 has: 1.0.3 side-channel: 1.0.4 @@ -27110,7 +26094,6 @@ packages: /interpret/1.4.0: resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} engines: {node: '>= 0.10'} - dev: true /interpret/2.2.0: resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} @@ -27133,7 +26116,10 @@ packages: dev: true /ip/1.1.5: - resolution: {integrity: sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=} + resolution: {integrity: sha512-rBtCAQAJm8A110nbwn6YdveUnuZH3WrC36IwkRXxDnq53JvXA2NVQvB7IHyKomxK1MJ4VDNw3UtFDdXQ+AvLYA==} + + /ip/2.0.0: + resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} dev: true /ipaddr.js/1.9.1: @@ -27163,7 +26149,7 @@ packages: dev: true /is-accessor-descriptor/0.1.6: - resolution: {integrity: sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=} + resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 @@ -27202,7 +26188,7 @@ packages: /is-bigint/1.0.4: resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: - has-bigints: 1.0.1 + has-bigints: 1.0.2 /is-binary-path/1.0.1: resolution: {integrity: sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=} @@ -27271,7 +26257,7 @@ packages: has: 1.0.3 /is-data-descriptor/0.1.4: - resolution: {integrity: sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=} + resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 @@ -27309,7 +26295,7 @@ packages: kind-of: 6.0.3 /is-directory/0.3.1: - resolution: {integrity: sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=} + resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} engines: {node: '>=0.10.0'} /is-docker/2.2.1: @@ -27329,7 +26315,7 @@ packages: dev: false /is-extendable/0.1.1: - resolution: {integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=} + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} engines: {node: '>=0.10.0'} /is-extendable/1.0.1: @@ -27348,7 +26334,7 @@ packages: dev: true /is-fullwidth-code-point/1.0.0: - resolution: {integrity: sha1-754xOG8DGn8NZDr4L95QxFfvAMs=} + resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==} engines: {node: '>=0.10.0'} dependencies: number-is-nan: 1.0.1 @@ -27375,6 +26361,13 @@ packages: resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} engines: {node: '>=6'} + /is-generator-function/1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + /is-glob/3.1.0: resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} engines: {node: '>=0.10.0'} @@ -27410,7 +26403,7 @@ packages: dev: false /is-lambda/1.0.1: - resolution: {integrity: sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=} + resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} dev: true /is-lower-case/1.1.3: @@ -27427,6 +26420,10 @@ packages: resolution: {integrity: sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==} engines: {node: '>= 0.4'} + /is-negative-zero/2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} + /is-npm/1.0.0: resolution: {integrity: sha1-8vtjpl5JBbQGyGBydloaTceTufQ=} engines: {node: '>=0.10.0'} @@ -27439,7 +26436,7 @@ packages: has-tostringtag: 1.0.0 /is-number/3.0.0: - resolution: {integrity: sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=} + resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 @@ -27567,6 +26564,11 @@ packages: /is-shared-array-buffer/1.0.1: resolution: {integrity: sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==} + /is-shared-array-buffer/1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + dependencies: + call-bind: 1.0.2 + /is-stream/1.1.0: resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} engines: {node: '>=0.10.0'} @@ -27588,12 +26590,23 @@ packages: resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} engines: {node: '>= 0.4'} dependencies: - has-symbols: 1.0.2 + has-symbols: 1.0.3 /is-touch-device/1.0.1: resolution: {integrity: sha512-LAYzo9kMT1b2p19L/1ATGt2XcSilnzNlyvq6c0pbPRVisLbAPpLqr53tIJS00kvrTkj0HtR8U7+u8X0yR8lPSw==} dev: false + /is-typed-array/1.1.9: + resolution: {integrity: sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + es-abstract: 1.20.2 + for-each: 0.3.3 + has-tostringtag: 1.0.0 + dev: true + /is-typedarray/1.0.0: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} @@ -27608,8 +26621,8 @@ packages: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} engines: {node: '>=10'} - /is-unicode-supported/1.2.0: - resolution: {integrity: sha512-wH+U77omcRzevfIG8dDhTS0V9zZyweakfD01FULl97+0EHiJTTZtJqxPSkIIo/SDPv/i07k/C9jAPY+jwLLeUQ==} + /is-unicode-supported/1.3.0: + resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} engines: {node: '>=12'} dev: false @@ -27632,6 +26645,11 @@ packages: dependencies: call-bind: 1.0.2 + /is-weakref/1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + dependencies: + call-bind: 1.0.2 + /is-whitespace-character/1.0.4: resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} dev: true @@ -27674,7 +26692,7 @@ packages: resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} /isarray/2.0.1: - resolution: {integrity: sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=} + resolution: {integrity: sha512-c2cu3UxbI+b6kR3fy0nRnAhodsvR9dx7U5+znCOzdj6IfP3upFURTr0Xl5BlQZNKZjEtxrmVyfSdeE3O57smoQ==} dev: false /isarray/2.0.5: @@ -27688,8 +26706,8 @@ packages: buffer-alloc: 1.2.0 dev: true - /isbinaryfile/4.0.8: - resolution: {integrity: sha512-53h6XFniq77YdW+spoRrebh0mnmTxRPTlcuIArO57lmMdq4uBKFKaeTjnb92oYWrSn/LVL+LT+Hap2tFQj8V+w==} + /isbinaryfile/4.0.10: + resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} engines: {node: '>= 8.0.0'} dev: true @@ -27697,7 +26715,7 @@ packages: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} /isobject/2.1.0: - resolution: {integrity: sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=} + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} engines: {node: '>=0.10.0'} dependencies: isarray: 1.0.0 @@ -27735,6 +26753,8 @@ packages: js-yaml: 3.14.1 mkdirp: 0.5.5 once: 1.4.0 + transitivePeerDependencies: + - supports-color dev: true /istanbul-lib-coverage/1.2.1: @@ -27766,6 +26786,8 @@ packages: babylon: 6.18.0 istanbul-lib-coverage: 1.2.1 semver: 5.7.1 + transitivePeerDependencies: + - supports-color dev: true /istanbul-lib-instrument/3.3.0: @@ -27787,7 +26809,7 @@ packages: resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.16.0 + '@babel/core': 7.17.8 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -27841,6 +26863,8 @@ packages: mkdirp: 0.5.5 rimraf: 2.7.1 source-map: 0.5.7 + transitivePeerDependencies: + - supports-color dev: true /istanbul-lib-source-maps/3.0.6: @@ -27879,14 +26903,6 @@ packages: html-escaper: 2.0.2 dev: false - /istanbul-reports/3.0.5: - resolution: {integrity: sha512-5+19PlhnGabNWB7kOFnuxT8H3T/iIyQzIbQMxXsURmmvKg86P2sbkrGOT77VnHw0Qr0gc2XzRaRfMZYYbSQCJQ==} - engines: {node: '>=8'} - dependencies: - html-escaper: 2.0.2 - istanbul-lib-report: 3.0.0 - dev: true - /istanbul-reports/3.1.4: resolution: {integrity: sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==} engines: {node: '>=8'} @@ -27895,7 +26911,7 @@ packages: istanbul-lib-report: 3.0.0 /istanbul/1.0.0-alpha.2: - resolution: {integrity: sha1-BglrwI6Yuq10Sq5Gli2N+frGPQg=} + resolution: {integrity: sha512-QlgV3dVIRW4AH5I2ehIj3Lp2qD3B1Vt97sqec4q77jxA1a0eckUApQwNtOkYijWdRqYeQz0lkJVF+Zud4BUIUA==} hasBin: true dependencies: abbrev: 1.0.9 @@ -27906,6 +26922,8 @@ packages: nopt: 3.0.6 which: 1.3.1 wordwrap: 1.0.0 + transitivePeerDependencies: + - supports-color dev: true /iterate-iterator/1.0.2: @@ -27919,15 +26937,6 @@ packages: iterate-iterator: 1.0.2 dev: true - /jake/10.8.2: - resolution: {integrity: sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A==} - hasBin: true - dependencies: - async: 0.9.2 - chalk: 2.4.2 - filelist: 1.0.2 - minimatch: 3.1.2 - /jake/10.8.5: resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==} engines: {node: '>=10'} @@ -27935,9 +26944,8 @@ packages: dependencies: async: 3.2.4 chalk: 4.1.2 - filelist: 1.0.2 + filelist: 1.0.4 minimatch: 3.1.2 - dev: false /jest-allure/0.1.3: resolution: {integrity: sha512-EkO3LmkPx/a4VDg81JKtdy6kFXI0D1rHRIJ5Sa9MZaGtFYpgiCJFa6XwTgIySaVN+3+QBbIt1558CEkIW7FKFA==} @@ -27981,7 +26989,7 @@ packages: resolution: {integrity: sha512-9DJs9garMHv4RhylUMZgbdCJ3+jHSkpL9aaVKp13xtXAD80qLTLrqcDZL1PHA9dYA0bCI86Nv2BhkLpLhrBcPg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@jest/types': 27.2.5 + '@jest/types': 27.5.1 execa: 5.1.1 throat: 6.0.1 dev: true @@ -28027,33 +27035,6 @@ packages: - utf-8-validate dev: true - /jest-circus/27.3.1: - resolution: {integrity: sha512-v1dsM9II6gvXokgqq6Yh2jHCpfg7ZqV4jWY66u7npz24JnhP3NHxI0sKT7+ZMQ7IrOWHYAaeEllOySbDbWsiXw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/environment': 27.3.1 - '@jest/test-result': 27.3.1 - '@jest/types': 27.2.5 - '@types/node': 16.10.3 - chalk: 4.1.2 - co: 4.6.0 - dedent: 0.7.0 - expect: 27.3.1 - is-generator-fn: 2.1.0 - jest-each: 27.3.1 - jest-matcher-utils: 27.3.1 - jest-message-util: 27.3.1 - jest-runtime: 27.3.1 - jest-snapshot: 27.3.1 - jest-util: 27.3.1 - pretty-format: 27.3.1 - slash: 3.0.0 - stack-utils: 2.0.5 - throat: 6.0.1 - transitivePeerDependencies: - - supports-color - dev: true - /jest-circus/27.5.1: resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -28099,7 +27080,9 @@ packages: realpath-native: 1.1.0 yargs: 13.3.2 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate dev: false /jest-cli/25.5.4: @@ -28112,7 +27095,7 @@ packages: '@jest/types': 25.5.0 chalk: 3.0.0 exit: 0.1.2 - graceful-fs: 4.2.8 + graceful-fs: 4.2.9 import-local: 3.0.3 is-ci: 2.0.0 jest-config: 25.5.4 @@ -28235,7 +27218,9 @@ packages: pretty-format: 24.9.0 realpath-native: 1.1.0 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate dev: false /jest-config/25.5.4: @@ -28311,27 +27296,27 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.16.0 - '@jest/test-sequencer': 27.3.1 - '@jest/types': 27.2.5 - babel-jest: 27.3.1_@babel+core@7.16.0 + '@babel/core': 7.17.8 + '@jest/test-sequencer': 27.5.1 + '@jest/types': 27.5.1 + babel-jest: 27.5.1_@babel+core@7.17.8 chalk: 4.1.2 ci-info: 3.2.0 deepmerge: 4.2.2 glob: 7.2.0 graceful-fs: 4.2.9 - jest-circus: 27.3.1 - jest-environment-jsdom: 27.3.1 - jest-environment-node: 27.3.1 - jest-get-type: 27.3.1 - jest-jasmine2: 27.3.1 - jest-regex-util: 27.0.6 - jest-resolve: 27.3.1 - jest-runner: 27.3.1 - jest-util: 27.3.1 - jest-validate: 27.3.1 + jest-circus: 27.5.1 + jest-environment-jsdom: 27.5.1 + jest-environment-node: 27.5.1 + jest-get-type: 27.5.1 + jest-jasmine2: 27.5.1 + jest-regex-util: 27.5.1 + jest-resolve: 27.5.1 + jest-runner: 27.5.1 + jest-util: 27.5.1 + jest-validate: 27.5.1 micromatch: 4.0.4 - pretty-format: 27.3.1 + pretty-format: 27.5.1 transitivePeerDependencies: - bufferutil - canvas @@ -28435,16 +27420,6 @@ packages: jest-get-type: 26.3.0 pretty-format: 26.6.2 - /jest-diff/27.3.1: - resolution: {integrity: sha512-PCeuAH4AWUo2O5+ksW4pL9v5xJAcIKPUPfIhZBcG1RKv/0+dvaWTQK1Nrau8d67dp65fOqbeMdoil+6PedyEPQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - chalk: 4.1.2 - diff-sequences: 27.0.6 - jest-get-type: 27.3.1 - pretty-format: 27.3.1 - dev: true - /jest-diff/27.5.1: resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -28475,13 +27450,6 @@ packages: detect-newline: 3.1.0 dev: true - /jest-docblock/27.0.6: - resolution: {integrity: sha512-Fid6dPcjwepTFraz0YxIMCi7dejjJ/KL9FBjPYhBp4Sv1Y9PdhImlKZqYU555BlN4TQKaTc+F2Av1z+anVyGkA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - detect-newline: 3.1.0 - dev: true - /jest-docblock/27.5.1: resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -28497,6 +27465,8 @@ packages: jest-get-type: 24.9.0 jest-util: 24.9.0 pretty-format: 24.9.0 + transitivePeerDependencies: + - supports-color dev: false /jest-each/25.5.0: @@ -28521,17 +27491,6 @@ packages: pretty-format: 26.6.2 dev: true - /jest-each/27.3.1: - resolution: {integrity: sha512-E4SwfzKJWYcvOYCjOxhZcxwL+AY0uFMvdCOwvzgutJiaiodFjkxQQDxHm8FQBeTqDnSmKsQWn7ldMRzTn2zJaQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': 27.5.1 - chalk: 4.1.2 - jest-get-type: 27.3.1 - jest-util: 27.5.1 - pretty-format: 27.3.1 - dev: true - /jest-each/27.5.1: resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -28553,7 +27512,9 @@ packages: jest-util: 24.9.0 jsdom: 11.12.0 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate dev: false /jest-environment-jsdom/25.5.0: @@ -28590,24 +27551,6 @@ packages: - utf-8-validate dev: true - /jest-environment-jsdom/27.3.1: - resolution: {integrity: sha512-3MOy8qMzIkQlfb3W1TfrD7uZHj+xx8Olix5vMENkj5djPmRqndMaXtpnaZkxmxM+Qc3lo+yVzJjzuXbCcZjAlg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/environment': 27.3.1 - '@jest/fake-timers': 27.3.1 - '@jest/types': 27.2.5 - '@types/node': 16.10.3 - jest-mock: 27.3.0 - jest-util: 27.3.1 - jsdom: 16.7.0 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - dev: true - /jest-environment-jsdom/27.5.1: resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -28662,18 +27605,6 @@ packages: jest-util: 26.6.2 dev: true - /jest-environment-node/27.3.1: - resolution: {integrity: sha512-T89F/FgkE8waqrTSA7/ydMkcc52uYPgZZ6q8OaZgyiZkJb5QNNCF6oPZjH9IfPFfcc9uBWh1574N0kY0pSvTXw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/environment': 27.3.1 - '@jest/fake-timers': 27.3.1 - '@jest/types': 27.2.5 - '@types/node': 16.10.3 - jest-mock: 27.3.0 - jest-util: 27.3.1 - dev: true - /jest-environment-node/27.5.1: resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -28723,11 +27654,6 @@ packages: resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} engines: {node: '>= 10.14.2'} - /jest-get-type/27.3.1: - resolution: {integrity: sha512-+Ilqi8hgHSAdhlQ3s12CAVNd8H96ZkQBfYoXmArzZnOfAtVAJEiPDBirjByEblvG/4LPJmkL+nBqPO3A1YJAEg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dev: true - /jest-get-type/27.5.1: resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -28749,6 +27675,8 @@ packages: walker: 1.0.8 optionalDependencies: fsevents: 1.2.13 + transitivePeerDependencies: + - supports-color dev: false /jest-haste-map/25.5.1: @@ -28769,6 +27697,8 @@ packages: which: 2.0.2 optionalDependencies: fsevents: 2.3.2 + transitivePeerDependencies: + - supports-color dev: true /jest-haste-map/26.6.2: @@ -28790,21 +27720,23 @@ packages: walker: 1.0.8 optionalDependencies: fsevents: 2.3.2 + transitivePeerDependencies: + - supports-color /jest-haste-map/27.3.1: resolution: {integrity: sha512-lYfNZIzwPccDJZIyk9Iz5iQMM/MH56NIIcGj7AFU1YyA4ewWFBl8z+YPJuSCRML/ee2cCt2y3W4K3VXPT6Nhzg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@jest/types': 27.2.5 + '@jest/types': 27.5.1 '@types/graceful-fs': 4.1.5 - '@types/node': 16.10.3 + '@types/node': 17.0.21 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.9 - jest-regex-util: 27.0.6 - jest-serializer: 27.0.6 - jest-util: 27.3.1 - jest-worker: 27.3.1 + jest-regex-util: 27.5.1 + jest-serializer: 27.5.1 + jest-util: 27.5.1 + jest-worker: 27.5.1 micromatch: 4.0.4 walker: 1.0.8 optionalDependencies: @@ -28912,32 +27844,6 @@ packages: - utf-8-validate dev: true - /jest-jasmine2/27.3.1: - resolution: {integrity: sha512-WK11ZUetDQaC09w4/j7o4FZDUIp+4iYWH/Lik34Pv7ukL+DuXFGdnmmi7dT58J2ZYKFB5r13GyE0z3NPeyJmsg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@babel/traverse': 7.16.3 - '@jest/environment': 27.3.1 - '@jest/source-map': 27.0.6 - '@jest/test-result': 27.3.1 - '@jest/types': 27.2.5 - '@types/node': 16.10.3 - chalk: 4.1.2 - co: 4.6.0 - expect: 27.3.1 - is-generator-fn: 2.1.0 - jest-each: 27.3.1 - jest-matcher-utils: 27.3.1 - jest-message-util: 27.3.1 - jest-runtime: 27.3.1 - jest-snapshot: 27.3.1 - jest-util: 27.3.1 - pretty-format: 27.3.1 - throat: 6.0.1 - transitivePeerDependencies: - - supports-color - dev: true - /jest-jasmine2/27.5.1: resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -28986,14 +27892,6 @@ packages: pretty-format: 26.6.2 dev: true - /jest-leak-detector/27.3.1: - resolution: {integrity: sha512-78QstU9tXbaHzwlRlKmTpjP9k4Pvre5l0r8Spo4SbFFVy/4Abg9I6ZjHwjg2QyKEAMg020XcjP+UgLZIY50yEg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - jest-get-type: 27.3.1 - pretty-format: 27.3.1 - dev: true - /jest-leak-detector/27.5.1: resolution: {integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -29030,16 +27928,6 @@ packages: jest-get-type: 26.3.0 pretty-format: 26.6.2 - /jest-matcher-utils/27.3.1: - resolution: {integrity: sha512-hX8N7zXS4k+8bC1Aj0OWpGb7D3gIXxYvPNK1inP5xvE4ztbz3rc4AkI6jGVaerepBnfWB17FL5lWFJT3s7qo8w==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - chalk: 4.1.2 - jest-diff: 27.3.1 - jest-get-type: 27.3.1 - pretty-format: 27.3.1 - dev: true - /jest-matcher-utils/27.5.1: resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -29061,6 +27949,8 @@ packages: micromatch: 3.1.10 slash: 2.0.0 stack-utils: 1.0.5 + transitivePeerDependencies: + - supports-color dev: false /jest-message-util/25.5.0: @@ -29081,11 +27971,11 @@ packages: resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/code-frame': 7.16.0 + '@babel/code-frame': 7.16.7 '@jest/types': 26.6.2 '@types/stack-utils': 2.0.1 chalk: 4.1.2 - graceful-fs: 4.2.8 + graceful-fs: 4.2.9 micromatch: 4.0.4 pretty-format: 26.6.2 slash: 3.0.0 @@ -29102,7 +27992,7 @@ packages: chalk: 4.1.2 graceful-fs: 4.2.9 micromatch: 4.0.4 - pretty-format: 27.3.1 + pretty-format: 27.5.1 slash: 3.0.0 stack-utils: 2.0.5 dev: true @@ -29121,7 +28011,7 @@ packages: slash: 3.0.0 stack-utils: 2.0.5 - /jest-mock-extended/1.0.18_jest@27.5.1+typescript@4.6.2: + /jest-mock-extended/1.0.18_cq7676jphrjwjojsru3xahznwm: resolution: {integrity: sha512-qf1n7lIa2dTxxPIBr+FlXrbj3hnV1sG9DPZsrr2H/8W+Jw0wt6OmeOQsPcjRuW8EXIECC9pDXsSIfEdn+HP7JQ==} peerDependencies: jest: ^24.0.0 || ^25.0.0 || ^26.0.0 || ^27.0.0 @@ -29154,14 +28044,6 @@ packages: '@types/node': 17.0.21 dev: true - /jest-mock/27.3.0: - resolution: {integrity: sha512-ziZiLk0elZOQjD08bLkegBzv5hCABu/c8Ytx45nJKkysQwGaonvmTxwjLqEA4qGdasq9o2I8/HtdGMNnVsMTGw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': 27.2.5 - '@types/node': 16.10.3 - dev: true - /jest-mock/27.5.1: resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -29283,6 +28165,8 @@ packages: '@jest/types': 24.9.0 jest-regex-util: 24.9.0 jest-snapshot: 24.9.0 + transitivePeerDependencies: + - supports-color dev: false /jest-resolve-dependencies/25.5.4: @@ -29301,15 +28185,17 @@ packages: '@jest/types': 26.6.2 jest-regex-util: 26.0.0 jest-snapshot: 26.6.2 + transitivePeerDependencies: + - supports-color dev: true /jest-resolve-dependencies/27.3.1: resolution: {integrity: sha512-X7iLzY8pCiYOnvYo2YrK3P9oSE8/3N2f4pUZMJ8IUcZnT81vlSonya1KTO9ZfKGuC+svE6FHK/XOb8SsoRUV1A==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@jest/types': 27.2.5 - jest-regex-util: 27.0.6 - jest-snapshot: 27.3.1 + '@jest/types': 27.5.1 + jest-regex-util: 27.5.1 + jest-snapshot: 27.5.1 transitivePeerDependencies: - supports-color dev: true @@ -29368,13 +28254,13 @@ packages: resolution: {integrity: sha512-Dfzt25CFSPo3Y3GCbxynRBZzxq9AdyNN+x/v2IqYx6KVT5Z6me2Z/PsSGFSv3cOSUZqJ9pHxilao/I/m9FouLw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@jest/types': 27.2.5 + '@jest/types': 27.5.1 chalk: 4.1.2 graceful-fs: 4.2.9 - jest-haste-map: 27.3.1 + jest-haste-map: 27.5.1 jest-pnp-resolver: 1.2.2_jest-resolve@27.3.1 - jest-util: 27.3.1 - jest-validate: 27.3.1 + jest-util: 27.5.1 + jest-validate: 27.5.1 resolve: 1.20.0 resolve.exports: 1.1.0 slash: 3.0.0 @@ -29395,12 +28281,15 @@ packages: resolve.exports: 1.1.0 slash: 3.0.0 - /jest-runner-groups/2.1.0: - resolution: {integrity: sha512-iHBIJ38yEW7qkPTW3tSulq/5kjgIiVtZjuYimBT1PltBYwsb1B1gPWGFMDdEfy9O3+6cyfe5MmVgMHafi69MUw==} + /jest-runner-groups/2.2.0_izd2bb4ook7j3zolwvt7oz6lf4: + resolution: {integrity: sha512-Sp/B9ZX0CDAKa9dIkgH0sGyl2eDuScV4SVvOxqhBMxqWpsNAkmol/C58aTFmPWZj+C0ZTW1r1BSu66MTCN+voA==} engines: {node: '>= 10.14.2'} peerDependencies: jest-docblock: '>= 24' jest-runner: '>= 24' + dependencies: + jest-docblock: 27.5.1 + jest-runner: 27.5.1 dev: false /jest-runner/24.9.0: @@ -29427,7 +28316,9 @@ packages: source-map-support: 0.5.20 throat: 4.1.0 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate dev: false /jest-runner/25.5.4: @@ -29496,26 +28387,26 @@ packages: resolution: {integrity: sha512-r4W6kBn6sPr3TBwQNmqE94mPlYVn7fLBseeJfo4E2uCTmAyDFm2O5DYAQAFP7Q3YfiA/bMwg8TVsciP7k0xOww==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@jest/console': 27.3.1 - '@jest/environment': 27.3.1 - '@jest/test-result': 27.3.1 - '@jest/transform': 27.3.1 - '@jest/types': 27.2.5 - '@types/node': 16.10.3 + '@jest/console': 27.5.1 + '@jest/environment': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 17.0.21 chalk: 4.1.2 emittery: 0.8.1 exit: 0.1.2 graceful-fs: 4.2.9 - jest-docblock: 27.0.6 - jest-environment-jsdom: 27.3.1 - jest-environment-node: 27.3.1 - jest-haste-map: 27.3.1 - jest-leak-detector: 27.3.1 - jest-message-util: 27.3.1 - jest-resolve: 27.3.1 - jest-runtime: 27.3.1 - jest-util: 27.3.1 - jest-worker: 27.3.1 + jest-docblock: 27.5.1 + jest-environment-jsdom: 27.5.1 + jest-environment-node: 27.5.1 + jest-haste-map: 27.5.1 + jest-leak-detector: 27.5.1 + jest-message-util: 27.5.1 + jest-resolve: 27.5.1 + jest-runtime: 27.5.1 + jest-util: 27.5.1 + jest-worker: 27.5.1 source-map-support: 0.5.20 throat: 6.0.1 transitivePeerDependencies: @@ -29585,7 +28476,9 @@ packages: strip-bom: 3.0.0 yargs: 13.3.2 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate dev: false /jest-runtime/25.5.4: @@ -29670,12 +28563,12 @@ packages: resolution: {integrity: sha512-qtO6VxPbS8umqhEDpjA4pqTkKQ1Hy4ZSi9mDVeE9Za7LKBo2LdW2jmT+Iod3XFaJqINikZQsn2wEi0j9wPRbLg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@jest/console': 27.3.1 + '@jest/console': 27.5.1 '@jest/environment': 27.5.1 '@jest/globals': 27.3.1 - '@jest/source-map': 27.0.6 - '@jest/test-result': 27.3.1 - '@jest/transform': 27.3.1 + '@jest/source-map': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/yargs': 16.0.4 chalk: 4.1.2 @@ -29685,14 +28578,14 @@ packages: exit: 0.1.2 glob: 7.2.0 graceful-fs: 4.2.9 - jest-haste-map: 27.3.1 - jest-message-util: 27.3.1 + jest-haste-map: 27.5.1 + jest-message-util: 27.5.1 jest-mock: 27.5.1 - jest-regex-util: 27.0.6 - jest-resolve: 27.3.1 - jest-snapshot: 27.3.1 + jest-regex-util: 27.5.1 + jest-resolve: 27.5.1 + jest-snapshot: 27.5.1 jest-util: 27.5.1 - jest-validate: 27.3.1 + jest-validate: 27.5.1 slash: 3.0.0 strip-bom: 4.0.0 yargs: 16.2.0 @@ -29748,14 +28641,6 @@ packages: '@types/node': 17.0.21 graceful-fs: 4.2.9 - /jest-serializer/27.0.6: - resolution: {integrity: sha512-PtGdVK9EGC7dsaziskfqaAPib6wTViY3G8E5wz9tLVPhHyiDNTZn/xjZ4khAw+09QkoOVpn7vF5nPSN6dtBexA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@types/node': 17.0.21 - graceful-fs: 4.2.9 - dev: true - /jest-serializer/27.5.1: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -29780,6 +28665,8 @@ packages: natural-compare: 1.4.0 pretty-format: 24.9.0 semver: 6.3.0 + transitivePeerDependencies: + - supports-color dev: false /jest-snapshot/25.5.1: @@ -29822,36 +28709,38 @@ packages: jest-resolve: 26.6.2 natural-compare: 1.4.0 pretty-format: 26.6.2 - semver: 7.3.5 + semver: 7.3.7 + transitivePeerDependencies: + - supports-color dev: true /jest-snapshot/27.3.1: resolution: {integrity: sha512-APZyBvSgQgOT0XumwfFu7X3G5elj6TGhCBLbBdn3R1IzYustPGPE38F51dBWMQ8hRXa9je0vAdeVDtqHLvB6lg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.16.12 + '@babel/core': 7.17.8 '@babel/generator': 7.17.7 - '@babel/parser': 7.17.7 - '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.16.12 + '@babel/parser': 7.17.8 + '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.17.8 '@babel/traverse': 7.17.3 '@babel/types': 7.17.0 - '@jest/transform': 27.3.1 + '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__traverse': 7.14.2 '@types/prettier': 2.4.2 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.16.12 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.8 chalk: 4.1.2 - expect: 27.3.1 + expect: 27.5.1 graceful-fs: 4.2.9 - jest-diff: 27.3.1 - jest-get-type: 27.3.1 - jest-haste-map: 27.3.1 - jest-matcher-utils: 27.3.1 - jest-message-util: 27.3.1 - jest-resolve: 27.3.1 + jest-diff: 27.5.1 + jest-get-type: 27.5.1 + jest-haste-map: 27.5.1 + jest-matcher-utils: 27.5.1 + jest-message-util: 27.5.1 + jest-resolve: 27.5.1 jest-util: 27.5.1 natural-compare: 1.4.0 - pretty-format: 27.3.1 + pretty-format: 27.5.1 semver: 7.3.7 transitivePeerDependencies: - supports-color @@ -29902,6 +28791,8 @@ packages: mkdirp: 0.5.5 slash: 2.0.0 source-map: 0.6.1 + transitivePeerDependencies: + - supports-color dev: false /jest-util/25.5.0: @@ -29931,7 +28822,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 16.10.3 + '@types/node': 17.0.21 chalk: 4.1.2 ci-info: 3.2.0 graceful-fs: 4.2.9 @@ -29983,18 +28874,17 @@ packages: jest-get-type: 26.3.0 leven: 3.1.0 pretty-format: 26.6.2 - dev: true /jest-validate/27.3.1: resolution: {integrity: sha512-3H0XCHDFLA9uDII67Bwi1Vy7AqwA5HqEEjyy934lgVhtJ3eisw6ShOF1MDmRPspyikef5MyExvIm0/TuLzZ86Q==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@jest/types': 27.2.5 + '@jest/types': 27.5.1 camelcase: 6.2.1 chalk: 4.1.2 - jest-get-type: 27.3.1 + jest-get-type: 27.5.1 leven: 3.1.0 - pretty-format: 27.3.1 + pretty-format: 27.5.1 dev: true /jest-validate/27.5.1: @@ -30019,6 +28909,8 @@ packages: chalk: 2.4.2 jest-util: 24.9.0 string-length: 2.0.0 + transitivePeerDependencies: + - supports-color dev: false /jest-watcher/25.5.0: @@ -30050,12 +28942,12 @@ packages: resolution: {integrity: sha512-9/xbV6chABsGHWh9yPaAGYVVKurWoP3ZMCv6h+O1v9/+pkOroigs6WzZ0e9gLP/njokUwM7yQhr01LKJVMkaZA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@jest/test-result': 27.3.1 - '@jest/types': 27.2.5 - '@types/node': 16.10.3 + '@jest/test-result': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 17.0.21 ansi-escapes: 4.3.2 chalk: 4.1.2 - jest-util: 27.3.1 + jest-util: 27.5.1 string-length: 4.0.2 dev: true @@ -30095,15 +28987,6 @@ packages: merge-stream: 2.0.0 supports-color: 7.2.0 - /jest-worker/27.3.1: - resolution: {integrity: sha512-ks3WCzsiZaOPJl/oMsDjaf0TRiSv7ctNgs0FqRr2nARsovz6AWWy4oLElwcquGSz692DzgZQrCLScPNs5YlC4g==} - engines: {node: '>= 10.13.0'} - dependencies: - '@types/node': 17.0.21 - merge-stream: 2.0.0 - supports-color: 8.1.1 - dev: true - /jest-worker/27.5.1: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} @@ -30120,7 +29003,9 @@ packages: import-local: 2.0.0 jest-cli: 24.9.0 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate dev: false /jest/25.5.4: @@ -30222,7 +29107,7 @@ packages: dev: true /js-tokens/3.0.2: - resolution: {integrity: sha1-mGbfOVECEw449/mWvOtlRDIJwls=} + resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==} dev: true /js-tokens/4.0.0: @@ -30256,10 +29141,9 @@ packages: hasBin: true dependencies: argparse: 2.0.1 - dev: true /js2xmlparser/3.0.0: - resolution: {integrity: sha1-P7YOqgicVED5MZ9RdgzNB+JJlzM=} + resolution: {integrity: sha512-CSOkdn0/GhRFwxnipmhXfqJ+FG6+wkWBi46kKSsPx6+j65176ZiQcrCYpg6K8x3iLbO4k3zScBnZ7I/L80dAtw==} dependencies: xmlcreate: 1.0.2 dev: false @@ -30267,6 +29151,10 @@ packages: /jsbn/0.1.1: resolution: {integrity: sha1-peZUwuWi3rXyAdls77yoDA7y9RM=} + /jsc-android/250230.2.1: + resolution: {integrity: sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q==} + dev: false + /jscodeshift/0.13.1_@babel+preset-env@7.16.11: resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==} hasBin: true @@ -30279,13 +29167,13 @@ packages: '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.17.8 - '@babel/preset-env': 7.16.11_@babel+core@7.12.9 + '@babel/preset-env': 7.16.11_@babel+core@7.17.8 '@babel/preset-flow': 7.16.7_@babel+core@7.17.8 '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@babel/register': 7.17.7_@babel+core@7.17.8 + '@babel/register': 7.18.9_@babel+core@7.17.8 babel-core: 7.0.0-bridge.0_@babel+core@7.17.8 chalk: 4.1.2 - flow-parser: 0.174.1 + flow-parser: 0.121.0 graceful-fs: 4.2.9 micromatch: 3.1.10 neo-async: 2.6.2 @@ -30295,7 +29183,6 @@ packages: write-file-atomic: 2.4.1 transitivePeerDependencies: - supports-color - dev: true /jsdoc-type-pratt-parser/1.1.1: resolution: {integrity: sha512-uelRmpghNwPBuZScwgBG/OzodaFk5RbO5xaivBdsAY70icWfShwZ7PCMO0x1zSkOa8T1FzHThmrdoyg/0AwV5g==} @@ -30311,6 +29198,12 @@ packages: resolution: {integrity: sha512-2a6eRxSxp1BW040hFvaJxhsCMI9lT8QB8t14t+NY5tC5rckIR0U9cr2tjOeaFirmEOy6MHvmJnY7zTBHq431Lw==} engines: {node: '>=12.0.0'} + /jsdoctypeparser/6.1.0: + resolution: {integrity: sha512-UCQBZ3xCUBv/PLfwKAJhp6jmGOSLFNKzrotXGNgbKhWvz27wPsCsVeP7gIcHPElQw2agBmynAitXqhxR58XAmA==} + engines: {node: '>=6'} + hasBin: true + dev: true + /jsdoctypeparser/9.0.0: resolution: {integrity: sha512-jrTA2jJIL6/DAEILBEh2/w9QxCuwmvNXIry39Ay/HVfhE3o2yVV0U44blYkqdHA/OKloJEqvJy0xU+GSdE2SIw==} engines: {node: '>=10'} @@ -30346,6 +29239,9 @@ packages: whatwg-url: 6.5.0 ws: 5.2.3 xml-name-validator: 3.0.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate dev: false /jsdom/15.2.1: @@ -30430,11 +29326,11 @@ packages: - utf-8-validate /jsesc/0.5.0: - resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=} + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true /jsesc/1.3.0: - resolution: {integrity: sha1-RsP+yMGJKxKwgz25vHYiF226s0s=} + resolution: {integrity: sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA==} hasBin: true dev: true @@ -30502,13 +29398,12 @@ packages: dev: true /jsonfile/2.4.0: - resolution: {integrity: sha1-NzaitCi4e72gzIO1P6PWM6NcKug=} + resolution: {integrity: sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==} optionalDependencies: graceful-fs: 4.2.9 - dev: true /jsonfile/4.0.0: - resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=} + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} optionalDependencies: graceful-fs: 4.2.9 @@ -30520,7 +29415,7 @@ packages: graceful-fs: 4.2.9 /jsonparse/1.3.1: - resolution: {integrity: sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=} + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} engines: {'0': node >= 0.2.0} dev: true @@ -30545,12 +29440,12 @@ packages: engines: {node: '>=8'} dev: true - /just-diff-apply/4.0.1: - resolution: {integrity: sha512-AKOkzB5P6FkfP21UlZVX/OPXx/sC2GagpLX9cBxqHqDuRjwmZ/AJRKSNrB9jHPpRW1W1ONs6gly1gW46t055nQ==} + /just-diff-apply/5.4.1: + resolution: {integrity: sha512-AAV5Jw7tsniWwih8Ly3fXxEZ06y+6p5TwQMsw0dzZ/wPKilzyDgdAnL0Ug4NNIquPUOh1vfFWEHbmXUqM5+o8g==} dev: true - /just-diff/5.0.1: - resolution: {integrity: sha512-X00TokkRIDotUIf3EV4xUm6ELc/IkqhS/vPSHdWnsM5y0HoNMfEqrazizI7g78lpHvnRSRt/PFfKtRqJCOGIuQ==} + /just-diff/5.1.1: + resolution: {integrity: sha512-u8HXJ3HlNrTzY7zrYYKjNEfBlyjqhdBkoyTVdjtn7p02RJD5NvR8rIClzeGA7t+UYP1/7eAkWNLU0+P3QrEqKQ==} dev: true /keyv/4.1.1: @@ -30565,13 +29460,13 @@ packages: is-buffer: 1.1.6 /kind-of/3.2.2: - resolution: {integrity: sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=} + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 /kind-of/4.0.0: - resolution: {integrity: sha1-IIE989cSkosgc3hpGkUGb65y3Vc=} + resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 @@ -30585,10 +29480,9 @@ packages: engines: {node: '>=0.10.0'} /klaw/1.3.1: - resolution: {integrity: sha1-QIhDO0azsbolnXh4XY6W9zugJDk=} + resolution: {integrity: sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==} optionalDependencies: graceful-fs: 4.2.9 - dev: true /kleur/3.0.3: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} @@ -30673,7 +29567,6 @@ packages: dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 - dev: true /liftoff/2.5.0: resolution: {integrity: sha512-01zfGFqfORP1CGmZZP2Zn51zsqz4RltDi0RDOhbGoLYdUT5Lw+I2gX6QdwXhPITF6hPOHEOp+At6/L24hIg9WQ==} @@ -30687,6 +29580,8 @@ packages: object.map: 1.0.1 rechoir: 0.6.2 resolve: 1.20.0 + transitivePeerDependencies: + - supports-color dev: true /lilconfig/2.0.4: @@ -30740,7 +29635,7 @@ packages: dev: true /liquid-json/0.3.1: - resolution: {integrity: sha1-kVWhgTbYprJhXl8W+aJEira1Duo=} + resolution: {integrity: sha512-wUayTU8MS827Dam6MxgD72Ui+KOSF+u/eIqpatOtjnvgJ0+mnDq33uC2M7J0tPK+upe/DpUAuK4JUU89iBoNKQ==} engines: {node: '>=4'} dev: false @@ -30768,7 +29663,7 @@ packages: dev: true /load-json-file/1.1.0: - resolution: {integrity: sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=} + resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} engines: {node: '>=0.10.0'} dependencies: graceful-fs: 4.2.9 @@ -30827,7 +29722,6 @@ packages: /loader-runner/4.2.0: resolution: {integrity: sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==} engines: {node: '>=6.11.5'} - dev: true /loader-utils/1.4.0: resolution: {integrity: sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==} @@ -30879,7 +29773,6 @@ packages: engines: {node: '>=10'} dependencies: p-locate: 5.0.0 - dev: true /locutus/2.0.16: resolution: {integrity: sha512-pGfl6Hb/1mXLzrX5kl5lH7gz25ey0vwQssZp8Qo2CEF59di6KrAgdFm+0pW8ghLnvNzzJGj5tlWhhv2QbK3jeQ==} @@ -30930,7 +29823,7 @@ packages: dev: true /lodash.debounce/4.0.8: - resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=} + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} /lodash.differencewith/4.5.0: resolution: {integrity: sha1-uvr7yRi1UVTheRdqALsK76rIVLc=} @@ -31003,6 +29896,10 @@ packages: /lodash.sortby/4.7.0: resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} + /lodash.throttle/4.1.1: + resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==} + dev: false + /lodash.truncate/4.4.2: resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} dev: true @@ -31032,7 +29929,7 @@ packages: engines: {node: '>=12'} dependencies: chalk: 5.0.1 - is-unicode-supported: 1.2.0 + is-unicode-supported: 1.3.0 dev: false /log-update/4.0.0: @@ -31045,6 +29942,15 @@ packages: wrap-ansi: 6.2.0 dev: true + /logkitty/0.7.1: + resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==} + hasBin: true + dependencies: + ansi-fragments: 0.2.1 + dayjs: 1.11.5 + yargs: 15.4.1 + dev: false + /lolex/5.1.2: resolution: {integrity: sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A==} dependencies: @@ -31111,10 +30017,9 @@ packages: dependencies: yallist: 4.0.0 - /lru-cache/7.4.0: - resolution: {integrity: sha512-YOfuyWa/Ee+PXbDm40j9WXyJrzQUynVbgn4Km643UYcWNcrSfRkKL0WaiUcxcIbkXcVTgNpDqSnPXntWXT75cw==} + /lru-cache/7.14.0: + resolution: {integrity: sha512-EIRtP1GrSJny0dqb50QXRUNBxHJhcpxHC++M5tD7RYbvLLn5KVWKsbyswSSqDuU15UFi3bgTQIY8nhDMeF6aDQ==} engines: {node: '>=12'} - deprecated: Please update to latest patch version to fix memory leak https://github.com/isaacs/node-lru-cache/issues/227 dev: true /lru/3.1.0: @@ -31151,27 +30056,28 @@ packages: /make-error/1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - /make-fetch-happen/10.0.3: - resolution: {integrity: sha512-CzarPHynPpHjhF5in/YapnO44rSZeYX5VCMfdXa99+gLwpbfFLh20CWa6dP/taV9Net9PWJwXNKtp/4ZTCQnag==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16} + /make-fetch-happen/10.2.1: + resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: agentkeepalive: 4.2.1 - cacache: 15.3.0 + cacache: 16.1.3 http-cache-semantics: 4.1.0 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.0 is-lambda: 1.0.1 - lru-cache: 7.4.0 + lru-cache: 7.14.0 minipass: 3.1.6 minipass-collect: 1.0.2 - minipass-fetch: 1.4.1 + minipass-fetch: 2.1.2 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 negotiator: 0.6.3 promise-retry: 2.0.1 - socks-proxy-agent: 6.1.1 - ssri: 8.0.1 + socks-proxy-agent: 7.0.0 + ssri: 9.0.1 transitivePeerDependencies: + - bluebird - supports-color dev: true @@ -31193,9 +30099,10 @@ packages: minipass-pipeline: 1.2.4 negotiator: 0.6.3 promise-retry: 2.0.1 - socks-proxy-agent: 6.1.1 + socks-proxy-agent: 6.2.1 ssri: 8.0.1 transitivePeerDependencies: + - bluebird - supports-color dev: true @@ -31241,7 +30148,7 @@ packages: dev: true /map-visit/1.0.0: - resolution: {integrity: sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=} + resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} engines: {node: '>=0.10.0'} dependencies: object-visit: 1.0.1 @@ -31272,13 +30179,6 @@ packages: uc.micro: 1.0.6 dev: true - /markdown-to-jsx/7.1.7: - resolution: {integrity: sha512-VI3TyyHlGkO8uFle0IOibzpO1c1iJDcXcS/zBrQrXQQvJ2tpdwVzVZ7XdKsyRz1NdRmre4dqQkMZzUHaKIG/1w==} - engines: {node: '>= 10'} - peerDependencies: - react: '>= 0.14.0' - dev: true - /markdown-to-jsx/7.1.7_react@17.0.2: resolution: {integrity: sha512-VI3TyyHlGkO8uFle0IOibzpO1c1iJDcXcS/zBrQrXQQvJ2tpdwVzVZ7XdKsyRz1NdRmre4dqQkMZzUHaKIG/1w==} engines: {node: '>= 10'} @@ -31456,8 +30356,8 @@ packages: resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} engines: {node: '>= 0.6'} - /mem-fs-editor/9.4.0_mem-fs@2.2.1: - resolution: {integrity: sha512-HSSOLSVRrsDdui9I6i96dDtG+oAez/4EB2g4cjSrNhgNQ3M+L57/+22NuPdORSoxvOHjIg/xeOE+C0wwF91D2g==} + /mem-fs-editor/9.5.0_mem-fs@2.2.1: + resolution: {integrity: sha512-7p+bBDqsSisO20YIZf2ntYvST27fFJINn7CKE21XdPUQDcLV62b/yB5sTOooQeEoiZ3rldZQ+4RfONgL/gbRoA==} engines: {node: '>=12.10.0'} peerDependencies: mem-fs: ^2.1.0 @@ -31468,14 +30368,14 @@ packages: binaryextensions: 4.18.0 commondir: 1.0.1 deep-extend: 0.6.0 - ejs: 3.1.6 + ejs: 3.1.8 globby: 11.1.0 - isbinaryfile: 4.0.8 + isbinaryfile: 4.0.10 mem-fs: 2.2.1 minimatch: 3.1.2 multimatch: 5.0.0 normalize-path: 3.0.0 - textextensions: 5.14.0 + textextensions: 5.15.0 dev: true /mem-fs/2.2.1: @@ -31508,7 +30408,6 @@ packages: /memoize-one/5.2.1: resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} - dev: true /memoize-one/6.0.0: resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==} @@ -31537,7 +30436,6 @@ packages: dependencies: errno: 0.1.8 readable-stream: 2.3.7 - dev: true /meow/6.1.1: resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} @@ -31625,6 +30523,395 @@ packages: resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} engines: {node: '>= 0.6'} + /metro-babel-transformer/0.72.1: + resolution: {integrity: sha512-VK7A9gepnhrKC0DMoxtPjYYHjkkfNwzLMYJgeL6Il6IaX/K/VHTILSEqgpxfNDos2jrXazuR5+rXDLE/RCzqmw==} + dependencies: + '@babel/core': 7.17.8 + hermes-parser: 0.8.0 + metro-source-map: 0.72.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-babel-transformer/0.72.2: + resolution: {integrity: sha512-3Bxk/MoXHn/ysmsH7ov6inDHrSWz5eowYRGzilOSSXe9y3DJ/ceTHfT+DWsPr9IgTJLQfKVN/F0pZ+1Ndqh52A==} + dependencies: + '@babel/core': 7.17.8 + hermes-parser: 0.8.0 + metro-source-map: 0.72.2 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-cache-key/0.72.2: + resolution: {integrity: sha512-P8p4QQzbEFMuk81xklc62qdE+CGBjP9u+ECP3iYNXIAW0+apS6Dntyvx/xCLy0a4MIryXqg2EJ2Z8XrmKmNeGQ==} + dev: false + + /metro-cache/0.72.2: + resolution: {integrity: sha512-0Yw3J32eYTp7x7bAAg+a9ScBG/mpib6Wq4WPSYvhoNilPFHzh7knLDMil3WGVCQlI1r+5xtpw/FDhNVKuypQqg==} + dependencies: + metro-core: 0.72.2 + rimraf: 2.7.1 + dev: false + + /metro-config/0.72.2: + resolution: {integrity: sha512-rvX4fBctPYEIPtTEcgun7Q+3IwuR5+gMPQrwDhE8hHDHPmFkfrW9UsEqD7VArJFRr0AwXSd7GD+eapFPjXr43Q==} + dependencies: + cosmiconfig: 5.2.1 + jest-validate: 26.6.2 + metro: 0.72.2 + metro-cache: 0.72.2 + metro-core: 0.72.2 + metro-runtime: 0.72.2 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + dev: false + + /metro-core/0.72.2: + resolution: {integrity: sha512-OXNH8UbKIhvpyHGJrdQYnPUmyPHSuVY4OO6pQxODdTW+uiO68PPPgIIVN67vlCAirZolxRFpma70N7m0sGCZyg==} + dependencies: + lodash.throttle: 4.1.1 + metro-resolver: 0.72.2 + dev: false + + /metro-file-map/0.72.2: + resolution: {integrity: sha512-6LMgsVT2/Ik6sKtzG1T13pwxJYrSX/JtbF5HwOU7Q/L79Mopy9NQnw9hQoXPcnVXA12gbWfp6Va/NnycaTxX+w==} + dependencies: + abort-controller: 3.0.0 + anymatch: 3.1.2 + debug: 2.6.9 + fb-watchman: 2.0.1 + graceful-fs: 4.2.9 + invariant: 2.2.4 + jest-regex-util: 27.5.1 + jest-serializer: 27.5.1 + jest-util: 27.5.1 + jest-worker: 27.5.1 + micromatch: 4.0.4 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.2 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-hermes-compiler/0.72.2: + resolution: {integrity: sha512-X8fjDBGNwjHxYAlMtrsr8x/JI/Gep7uzLDuHOMuRU5iAIVt+gH0Z+zjbJTsX++yLZ41i755zw5akvpQnyjVl/w==} + dev: false + + /metro-inspector-proxy/0.72.2: + resolution: {integrity: sha512-VEJU3J+0qrU33o+5tHemVuRWMXswtSrRI1lTE9yFiU8GAxoKrSy2kfJ5cOPLfv/8Nf6M6zRayjUs/Q46kjvfow==} + hasBin: true + dependencies: + connect: 3.7.0 + debug: 2.6.9 + ws: 7.5.5 + yargs: 15.4.1 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + dev: false + + /metro-minify-uglify/0.72.2: + resolution: {integrity: sha512-b9KH4vMd1yvBYfcA3xvc1HZmPWIpOhiNyiEjh7pw7il1TONAR0+Rj8TS0yG57eSYM8IB86UIwB7Y5PVCNfUNXQ==} + dependencies: + uglify-es: 3.3.9 + dev: false + + /metro-react-native-babel-preset/0.72.1_@babel+core@7.17.8: + resolution: {integrity: sha512-DlvMw2tFrCqD9OXBoN11fPM09kHC22FZpnkTmG4Pr4kecV+aDmEGxwakjUcjELrX1JCXz2MLPvqeJkbiP1f5CA==} + peerDependencies: + '@babel/core': '*' + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.17.8 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 + '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 + '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.8 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.17.8 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 + '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.17.8 + '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.17.8 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.8 + '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.17.8 + '@babel/plugin-transform-react-jsx-source': 7.18.6_@babel+core@7.17.8 + '@babel/plugin-transform-runtime': 7.16.4_@babel+core@7.17.8 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.8 + '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.17.8 + '@babel/template': 7.16.7 + react-refresh: 0.4.3 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-react-native-babel-preset/0.72.2_@babel+core@7.17.8: + resolution: {integrity: sha512-OMp77TUUZAoiuUv5uKNc08AnJNQxD28k92eQvo8tPcA8Wx6OZlEUvL7M7SFkef2mEYJ0vnrRjOamSnbBuq/+1w==} + peerDependencies: + '@babel/core': '*' + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.17.8 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 + '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 + '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.8 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.17.8 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 + '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.17.8 + '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.17.8 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.8 + '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.17.8 + '@babel/plugin-transform-react-jsx-source': 7.18.6_@babel+core@7.17.8 + '@babel/plugin-transform-runtime': 7.16.4_@babel+core@7.17.8 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.8 + '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.17.8 + '@babel/template': 7.16.7 + react-refresh: 0.4.3 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-react-native-babel-transformer/0.72.1_@babel+core@7.17.8: + resolution: {integrity: sha512-hMnN0MOgVloAk94YuXN7sLeDaZ51Y6xIcJXxIU1s/KaygAGXk6o7VAdwf2MY/IV1SIct5lkW4Gn71u/9/EvfXA==} + peerDependencies: + '@babel/core': '*' + dependencies: + '@babel/core': 7.17.8 + babel-preset-fbjs: 3.4.0_@babel+core@7.17.8 + hermes-parser: 0.8.0 + metro-babel-transformer: 0.72.1 + metro-react-native-babel-preset: 0.72.1_@babel+core@7.17.8 + metro-source-map: 0.72.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-resolver/0.72.2: + resolution: {integrity: sha512-5KTWolUgA6ivLkg3DmFS2WltphBPQW7GT7An+6Izk/NU+y/6crmsoaLmNxjpZo4Fv+i/FxDSXqpbpQ6KrRWvlQ==} + dependencies: + absolute-path: 0.0.0 + dev: false + + /metro-runtime/0.72.1: + resolution: {integrity: sha512-CO+fvJKYHKuR2vo7kjsegQ2oF3FMwa4YhnUInQ+xPVxWoy8DbOpmruKBoTsQVgHwyIziXzvJa+mze/6CFvT+3A==} + dependencies: + '@babel/runtime': 7.17.7 + react-refresh: 0.4.3 + dev: false + + /metro-runtime/0.72.2: + resolution: {integrity: sha512-jIHH6ILSWJtINHA0+KgnH1T5RO5mkf46sQahgC+GYjZjGoshs8+tBdjviYD/xy5s4olCJ1hmycV+XvauQmJdkQ==} + dependencies: + '@babel/runtime': 7.17.7 + react-refresh: 0.4.3 + dev: false + + /metro-source-map/0.72.1: + resolution: {integrity: sha512-77TZuf10Ru+USo97HwDT8UceSzOGBZB8EYTObOsR0n1sjQHjvKsMflLA9Pco13o9NsIYAG6c6P/0vIpiHKqaKA==} + dependencies: + '@babel/traverse': 7.17.3 + '@babel/types': 7.17.0 + invariant: 2.2.4 + metro-symbolicate: 0.72.1 + nullthrows: 1.1.1 + ob1: 0.72.1 + source-map: 0.5.7 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-source-map/0.72.2: + resolution: {integrity: sha512-dqYK8DZ4NzGkhik0IkKRBLuPplXqF6GoKrFQ/XMw0FYGy3+dFJ9nIDxsCyg3GcjCt6Mg8FEqGrXlpMG7MrtC9Q==} + dependencies: + '@babel/traverse': 7.17.3 + '@babel/types': 7.17.0 + invariant: 2.2.4 + metro-symbolicate: 0.72.2 + nullthrows: 1.1.1 + ob1: 0.72.2 + source-map: 0.5.7 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-symbolicate/0.72.1: + resolution: {integrity: sha512-ScC3dVd2XrfZSd6kubOw7EJNp2oHdjrqOjGpFohtcXGjhqkzDosp7Fg84VgwQGN8g720xvUyEBfSMmUCXcicOQ==} + engines: {node: '>=8.3'} + hasBin: true + dependencies: + invariant: 2.2.4 + metro-source-map: 0.72.1 + nullthrows: 1.1.1 + source-map: 0.5.7 + through2: 2.0.5 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-symbolicate/0.72.2: + resolution: {integrity: sha512-Rn47dSggFU9jf+fpUE6/gkNQU7PQPTIbh2iUu7jI8cJFBODs0PWlI5h0W9XlQ56lcBtjLQz6fvZSloKdDcI2fQ==} + engines: {node: '>=8.3'} + hasBin: true + dependencies: + invariant: 2.2.4 + metro-source-map: 0.72.2 + nullthrows: 1.1.1 + source-map: 0.5.7 + through2: 2.0.5 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-transform-plugins/0.72.2: + resolution: {integrity: sha512-f2Zt6ti156TWFrnCRg7vxBIHBJcERBX8nwKmRKGFCbU+rk4YOxwONY4Y0Gn9Kocfu313P1xNqWYH5rCqvEWMaQ==} + dependencies: + '@babel/core': 7.17.8 + '@babel/generator': 7.17.7 + '@babel/template': 7.16.7 + '@babel/traverse': 7.17.3 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-transform-worker/0.72.2: + resolution: {integrity: sha512-z5OOnEO3NV6PgI8ORIBvJ5m+u9THFpy+6WIg/MUjP9k1oqasWaP1Rfhv7K/a+MD6uho1rgXj6nwWDqybsqHY/w==} + dependencies: + '@babel/core': 7.17.8 + '@babel/generator': 7.17.7 + '@babel/parser': 7.17.8 + '@babel/types': 7.17.0 + babel-preset-fbjs: 3.4.0_@babel+core@7.17.8 + metro: 0.72.2 + metro-babel-transformer: 0.72.2 + metro-cache: 0.72.2 + metro-cache-key: 0.72.2 + metro-hermes-compiler: 0.72.2 + metro-source-map: 0.72.2 + metro-transform-plugins: 0.72.2 + nullthrows: 1.1.1 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + dev: false + + /metro/0.72.2: + resolution: {integrity: sha512-TWqKnPMu4OX7ew7HJwsD4LBzhtn7Iqeu2OAqjlMCJtqMKqi/YWoxFf1VGZxH/mJVLhbe/5SWU5St/tqsST8swg==} + hasBin: true + dependencies: + '@babel/code-frame': 7.16.7 + '@babel/core': 7.17.8 + '@babel/generator': 7.17.7 + '@babel/parser': 7.17.8 + '@babel/template': 7.16.7 + '@babel/traverse': 7.17.3 + '@babel/types': 7.17.0 + absolute-path: 0.0.0 + accepts: 1.3.8 + async: 3.2.4 + chalk: 4.1.2 + ci-info: 2.0.0 + connect: 3.7.0 + debug: 2.6.9 + denodeify: 1.2.1 + error-stack-parser: 2.0.6 + fs-extra: 1.0.0 + graceful-fs: 4.2.9 + hermes-parser: 0.8.0 + image-size: 0.6.3 + invariant: 2.2.4 + jest-worker: 27.5.1 + lodash.throttle: 4.1.1 + metro-babel-transformer: 0.72.2 + metro-cache: 0.72.2 + metro-cache-key: 0.72.2 + metro-config: 0.72.2 + metro-core: 0.72.2 + metro-file-map: 0.72.2 + metro-hermes-compiler: 0.72.2 + metro-inspector-proxy: 0.72.2 + metro-minify-uglify: 0.72.2 + metro-react-native-babel-preset: 0.72.2_@babel+core@7.17.8 + metro-resolver: 0.72.2 + metro-runtime: 0.72.2 + metro-source-map: 0.72.2 + metro-symbolicate: 0.72.2 + metro-transform-plugins: 0.72.2 + metro-transform-worker: 0.72.2 + mime-types: 2.1.35 + node-fetch: 2.6.7 + nullthrows: 1.1.1 + rimraf: 2.7.1 + serialize-error: 2.1.0 + source-map: 0.5.7 + strip-ansi: 6.0.1 + temp: 0.8.3 + throat: 5.0.0 + ws: 7.5.5 + yargs: 15.4.1 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + dev: false + /microevent.ts/0.1.1: resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==} dev: true @@ -31655,6 +30942,28 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + /micromatch/3.1.10_supports-color@6.1.0: + resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} + engines: {node: '>=0.10.0'} + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + braces: 2.3.2_supports-color@6.1.0 + define-property: 2.0.2 + extend-shallow: 3.0.2 + extglob: 2.0.4_supports-color@6.1.0 + fragment-cache: 0.2.1 + kind-of: 6.0.3 + nanomatch: 1.2.13_supports-color@6.1.0 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2_supports-color@6.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color /micromatch/4.0.4: resolution: {integrity: sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==} @@ -31675,34 +30984,32 @@ packages: brorand: 1.1.0 dev: true - /mime-db/1.49.0: - resolution: {integrity: sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA==} - engines: {node: '>= 0.6'} - dev: false - /mime-db/1.51.0: resolution: {integrity: sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==} engines: {node: '>= 0.6'} + /mime-db/1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + /mime-format/2.0.1: resolution: {integrity: sha512-XxU3ngPbEnrYnNbIX+lYSaYg0M01v6p2ntd2YaFksTu0vayaw5OJvbdRyWs07EYRlLED5qadUZ+xo+XhOvFhwg==} dependencies: charset: 1.0.1 dev: false - /mime-types/2.1.32: - resolution: {integrity: sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==} - engines: {node: '>= 0.6'} - dependencies: - mime-db: 1.49.0 - dev: false - /mime-types/2.1.34: resolution: {integrity: sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==} engines: {node: '>= 0.6'} dependencies: mime-db: 1.51.0 + /mime-types/2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + /mime/1.6.0: resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} engines: {node: '>=4'} @@ -31713,6 +31020,11 @@ packages: engines: {node: '>=4.0.0'} hasBin: true + /mime/2.6.0: + resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} + engines: {node: '>=4.0.0'} + hasBin: true + /mimic-fn/1.2.0: resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==} engines: {node: '>=4'} @@ -31790,19 +31102,11 @@ packages: dependencies: brace-expansion: 1.1.11 - /minimatch/5.0.0: - resolution: {integrity: sha512-EU+GCVjXD00yOUf1TwAHVP7v3fBD3A8RkkPYsWWKGWesxM/572sL53wJQnHxquHlRhYUV36wHkqrN8cdikKc2g==} - engines: {node: '>=10'} - dependencies: - brace-expansion: 2.0.1 - dev: true - /minimatch/5.1.0: resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 - dev: true /minimist-options/4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} @@ -31834,6 +31138,17 @@ packages: encoding: 0.1.13 dev: true + /minipass-fetch/2.1.2: + resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + minipass: 3.1.6 + minipass-sized: 1.0.3 + minizlib: 2.1.2 + optionalDependencies: + encoding: 0.1.13 + dev: true + /minipass-flush/1.0.5: resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} engines: {node: '>= 8'} @@ -31944,7 +31259,7 @@ packages: ansi-colors: 3.2.3 browser-stdout: 1.3.1 chokidar: 3.3.0 - debug: 3.2.6 + debug: 3.2.6_supports-color@6.0.0 diff: 3.5.0 escape-string-regexp: 1.0.5 find-up: 3.0.0 @@ -31967,7 +31282,7 @@ packages: yargs-unparser: 1.6.0 dev: true - /moment-timezone-data-webpack-plugin/1.5.0_839bc812c9610fc0f6876dcec0569bf9: + /moment-timezone-data-webpack-plugin/1.5.0_qon4qewjmeh4b5uhnxhmavu37e: resolution: {integrity: sha512-eidUVGn6Fc8jR0tBf8xAhBR1C3jqknFJe0rfzThnglnJjmzqTXRYVTOeobUzWvlEfgTSu+b0W7GgOdqAWvGbYA==} peerDependencies: moment-timezone: '>= 0.1.0' @@ -32078,6 +31393,26 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + /nanomatch/1.2.13_supports-color@6.1.0: + resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} + engines: {node: '>=0.10.0'} + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + fragment-cache: 0.2.1 + is-windows: 1.0.2 + kind-of: 6.0.3 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2_supports-color@6.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color /natural-compare/1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} @@ -32103,7 +31438,9 @@ packages: optionalDependencies: node-pty: 0.9.0 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate dev: true /nearley/2.20.1: @@ -32115,11 +31452,6 @@ packages: railroad-diagrams: 1.0.0 randexp: 0.4.6 - /negotiator/0.6.2: - resolution: {integrity: sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==} - engines: {node: '>= 0.6'} - dev: true - /negotiator/0.6.3: resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} engines: {node: '>= 0.6'} @@ -32140,16 +31472,20 @@ packages: lower-case: 2.0.2 tslib: 2.3.1 + /nocache/3.0.4: + resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==} + engines: {node: '>=12.0.0'} + dev: false + /node-addon-api/1.7.2: resolution: {integrity: sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==} dev: true /node-dir/0.1.17: - resolution: {integrity: sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=} + resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} engines: {node: '>= 0.10.5'} dependencies: minimatch: 3.1.2 - dev: true /node-domexception/1.0.0: resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} @@ -32174,13 +31510,6 @@ packages: engines: {node: 4.x || >=6.0.0} dev: true - /node-fetch/2.6.5: - resolution: {integrity: sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ==} - engines: {node: 4.x || >=6.0.0} - dependencies: - whatwg-url: 5.0.0 - dev: false - /node-fetch/2.6.7: resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} engines: {node: 4.x || >=6.0.0} @@ -32192,8 +31521,8 @@ packages: dependencies: whatwg-url: 5.0.0 - /node-fetch/3.2.8: - resolution: {integrity: sha512-KtpD1YhGszhntMpBDyp5lyagk8KIMopC1LEb7cQUAh7zcosaX5uK8HnbNb2i3NTQK3sIawCItS0uFC3QzcLHdg==} + /node-fetch/3.2.10: + resolution: {integrity: sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: data-uri-to-buffer: 4.0.0 @@ -32211,12 +31540,13 @@ packages: graceful-fs: 4.2.9 make-fetch-happen: 9.1.0 nopt: 5.0.0 - npmlog: 6.0.1 + npmlog: 6.0.2 rimraf: 3.0.2 - semver: 7.3.5 + semver: 7.3.7 tar: 6.1.11 which: 2.0.2 transitivePeerDependencies: + - bluebird - supports-color dev: true @@ -32251,10 +31581,6 @@ packages: vm-browserify: 1.1.2 dev: true - /node-modules-regexp/1.0.0: - resolution: {integrity: sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=} - engines: {node: '>=0.10.0'} - /node-notifier/5.4.5: resolution: {integrity: sha512-tVbHs7DyTLtzOiN78izLA85zRqB9NvEXkAf014Vx3jtSvn/xBl6bR8ZYifj+dFcFrKI21huSQgJZ6ZtL3B4HfQ==} dependencies: @@ -32283,7 +31609,7 @@ packages: dependencies: growly: 1.3.0 is-wsl: 2.2.0 - semver: 7.3.5 + semver: 7.3.7 shellwords: 0.1.1 uuid: 8.3.2 which: 2.0.2 @@ -32411,19 +31737,24 @@ packages: resolution: {integrity: sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==} engines: {node: '>=10'} dependencies: - semver: 7.3.5 + semver: 7.3.7 dev: true /npm-normalize-package-bin/1.0.1: resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} dev: true + /npm-normalize-package-bin/2.0.0: + resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true + /npm-package-arg/8.1.5: resolution: {integrity: sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==} engines: {node: '>=10'} dependencies: hosted-git-info: 4.0.2 - semver: 7.3.5 + semver: 7.3.7 validate-npm-package-name: 3.0.0 dev: true @@ -32444,7 +31775,7 @@ packages: log-symbols: 4.1.0 meow: 6.1.1 plur: 4.0.0 - semver: 7.3.5 + semver: 7.3.7 slash: 3.0.0 strip-json-comments: 3.1.1 transitivePeerDependencies: @@ -32468,20 +31799,21 @@ packages: npm-install-checks: 4.0.0 npm-normalize-package-bin: 1.0.1 npm-package-arg: 8.1.5 - semver: 7.3.5 + semver: 7.3.7 dev: true /npm-registry-fetch/12.0.2: resolution: {integrity: sha512-Df5QT3RaJnXYuOwtXBXS9BWs+tHH2olvkCLh6jcR/b/u3DvPMlp3J0TvvYwplPKxHMOwfg287PYih9QqaVFoKA==} engines: {node: ^12.13.0 || ^14.15.0 || >=16} dependencies: - make-fetch-happen: 10.0.3 + make-fetch-happen: 10.2.1 minipass: 3.1.6 minipass-fetch: 1.4.1 minipass-json-stream: 1.0.1 minizlib: 2.1.2 npm-package-arg: 8.1.5 transitivePeerDependencies: + - bluebird - supports-color dev: true @@ -32506,13 +31838,13 @@ packages: set-blocking: 2.0.0 dev: true - /npmlog/6.0.1: - resolution: {integrity: sha512-BTHDvY6nrRHuRfyjt1MAufLxYdVXZfd099H4+i1f0lPywNQyI4foeNXJRObB/uy+TYqUW0vAD9gbdSOXPst7Eg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16} + /npmlog/6.0.2: + resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: - are-we-there-yet: 3.0.0 + are-we-there-yet: 3.0.1 console-control-strings: 1.1.0 - gauge: 4.0.1 + gauge: 4.0.4 set-blocking: 2.0.0 dev: true @@ -32526,6 +31858,10 @@ packages: dependencies: boolbase: 1.0.0 + /nullthrows/1.1.1: + resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} + dev: false + /num2fraction/1.2.2: resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==} @@ -32543,6 +31879,14 @@ packages: /oauth-sign/0.9.0: resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} + /ob1/0.72.1: + resolution: {integrity: sha512-TyQX2gO08klGTMuzD+xm3iVrzXiIygCB7t+NWeicOR05hkzgeWOiAZ8q40uMfIDRfEAc6hd66sJdIEhU/yUZZA==} + dev: false + + /ob1/0.72.2: + resolution: {integrity: sha512-P4zh/5GzyXPIzz+2eq2Hjd1wTZAfpwTIBWKhYx8X/DD2wCuFVprBEZp1FerWyTMwOA6AnVxiX1h0JE1v/s+PAQ==} + dev: false + /object-assign/4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} @@ -32552,7 +31896,7 @@ packages: dev: false /object-copy/0.1.0: - resolution: {integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw=} + resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} engines: {node: '>=0.10.0'} dependencies: copy-descriptor: 0.1.1 @@ -32569,12 +31913,15 @@ packages: /object-inspect/1.12.0: resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==} + /object-inspect/1.12.2: + resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} + /object-is/1.1.5: resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.1.3 + define-properties: 1.1.4 /object-keys/1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} @@ -32585,7 +31932,7 @@ packages: engines: {node: '>= 10'} /object-visit/1.0.1: - resolution: {integrity: sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=} + resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 @@ -32609,6 +31956,15 @@ packages: has-symbols: 1.0.2 object-keys: 1.1.1 + /object.assign/4.1.4: + resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + has-symbols: 1.0.3 + object-keys: 1.1.1 + /object.defaults/1.1.0: resolution: {integrity: sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==} engines: {node: '>=0.10.0'} @@ -32619,6 +31975,10 @@ packages: isobject: 3.0.1 dev: true + /object.entries-ponyfill/1.0.1: + resolution: {integrity: sha512-j0ixssXc5GirDWhB2cLVPsOs9jx61G/iRndyMdToTsjMYY8BQmG1Ke6mwqXmpDiP8icye1YCR94NswNaa/yyzA==} + dev: true + /object.entries/1.1.5: resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==} engines: {node: '>= 0.4'} @@ -32640,8 +32000,8 @@ packages: engines: {node: '>= 0.8'} dependencies: call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.19.1 + define-properties: 1.1.4 + es-abstract: 1.20.2 /object.hasown/1.1.0: resolution: {integrity: sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==} @@ -32679,16 +32039,16 @@ packages: resolution: {integrity: sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw==} dev: false - /oclif/2.4.5: - resolution: {integrity: sha512-hYSo62ADZccoxKoY1P6sJzpLmy+nUDYmrV3VQ7lUssn1Fw2WyoXd4AXCm6/B7Ma0Pp6pYRh/bgPzNxCcZlZIUw==} + /oclif/2.7.0: + resolution: {integrity: sha512-nmgk/emtEth/0RYTMeovj22zpiT4P7KvIDc3OOT8VeAEDvdbnZfg3tV3YRnHK0zrSKETKqpHWFyNx2PLMl0eKQ==} engines: {node: '>=12.0.0'} hasBin: true dependencies: - '@oclif/core': 1.3.4 - '@oclif/plugin-help': 5.1.11 + '@oclif/core': 1.16.1 + '@oclif/plugin-help': 5.1.12 '@oclif/plugin-not-found': 2.3.1 '@oclif/plugin-warn-if-update-available': 2.0.4 - aws-sdk: 2.1079.0 + aws-sdk: 2.1215.0 concurrently: 7.0.0 debug: 4.3.4 find-yarn-workspace-root: 2.0.0 @@ -32697,13 +32057,47 @@ packages: lodash: 4.17.21 normalize-package-data: 3.0.3 qqjs: 0.3.11 - semver: 7.3.5 + semver: 7.3.7 tslib: 2.3.1 - yeoman-environment: 3.9.1 - yeoman-generator: 5.6.1_yeoman-environment@3.9.1 + yeoman-environment: 3.10.0 + yeoman-generator: 5.7.0_yeoman-environment@3.10.0 yosay: 2.0.2 transitivePeerDependencies: + - bluebird - encoding + - mem-fs + - mem-fs-editor + - supports-color + dev: true + + /oclif/2.7.0_7yoz4vugw4qcykie6sit5r22dm: + resolution: {integrity: sha512-nmgk/emtEth/0RYTMeovj22zpiT4P7KvIDc3OOT8VeAEDvdbnZfg3tV3YRnHK0zrSKETKqpHWFyNx2PLMl0eKQ==} + engines: {node: '>=12.0.0'} + hasBin: true + dependencies: + '@oclif/core': 1.16.1 + '@oclif/plugin-help': 5.1.12 + '@oclif/plugin-not-found': 2.3.1 + '@oclif/plugin-warn-if-update-available': 2.0.4 + aws-sdk: 2.1215.0 + concurrently: 7.0.0 + debug: 4.3.4 + find-yarn-workspace-root: 2.0.0 + fs-extra: 8.1.0 + github-slugger: 1.4.0 + lodash: 4.17.21 + normalize-package-data: 3.0.3 + qqjs: 0.3.11 + semver: 7.3.7 + tslib: 2.3.1 + yeoman-environment: 3.10.0_7yoz4vugw4qcykie6sit5r22dm + yeoman-generator: 5.7.0_yeoman-environment@3.10.0 + yosay: 2.0.2 + transitivePeerDependencies: + - bluebird + - encoding + - mem-fs + - mem-fs-editor - supports-color dev: true @@ -32718,23 +32112,21 @@ packages: dev: false /on-finished/2.3.0: - resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=} + resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} engines: {node: '>= 0.8'} dependencies: ee-first: 1.1.1 - dev: true + dev: false /on-finished/2.4.1: resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} engines: {node: '>= 0.8'} dependencies: ee-first: 1.1.1 - dev: false /on-headers/1.0.2: resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} engines: {node: '>= 0.8'} - dev: true /once/1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} @@ -32754,6 +32146,13 @@ packages: dependencies: mimic-fn: 2.1.0 + /open/6.4.0: + resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==} + engines: {node: '>=8'} + dependencies: + is-wsl: 1.1.0 + dev: false + /open/7.4.2: resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} engines: {node: '>=8'} @@ -32804,7 +32203,6 @@ packages: prelude-ls: 1.2.1 type-check: 0.4.0 word-wrap: 1.2.3 - dev: true /ora/4.1.1: resolution: {integrity: sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==} @@ -32812,7 +32210,7 @@ packages: dependencies: chalk: 3.0.0 cli-cursor: 3.1.0 - cli-spinners: 2.6.1 + cli-spinners: 2.7.0 is-interactive: 1.0.0 log-symbols: 3.0.0 mute-stream: 0.0.8 @@ -32827,7 +32225,7 @@ packages: bl: 4.1.0 chalk: 4.1.2 cli-cursor: 3.1.0 - cli-spinners: 2.6.1 + cli-spinners: 2.7.0 is-interactive: 1.0.0 is-unicode-supported: 0.1.0 log-symbols: 4.1.0 @@ -32841,9 +32239,9 @@ packages: bl: 5.0.0 chalk: 5.0.1 cli-cursor: 4.0.0 - cli-spinners: 2.6.1 + cli-spinners: 2.7.0 is-interactive: 2.0.0 - is-unicode-supported: 1.2.0 + is-unicode-supported: 1.3.0 log-symbols: 5.1.0 strip-ansi: 7.0.1 wcwidth: 1.0.1 @@ -32947,7 +32345,6 @@ packages: engines: {node: '>=10'} dependencies: yocto-queue: 0.1.0 - dev: true /p-locate/2.0.0: resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=} @@ -32972,7 +32369,6 @@ packages: engines: {node: '>=10'} dependencies: p-limit: 3.1.0 - dev: true /p-map/2.1.0: resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} @@ -33072,11 +32468,12 @@ packages: ssri: 8.0.1 tar: 6.1.11 transitivePeerDependencies: + - bluebird - supports-color dev: true /pad-component/0.0.1: - resolution: {integrity: sha1-rR8izhvw/cDW3dkIrxfzUaQEuKw=} + resolution: {integrity: sha512-8EKVBxCRSvLnsX1p2LlSFSH3c2/wuhY9/BXXWu8boL78FbVKqn2L5SpURt1x5iw6Gq8PTqJ7MdPoe5nCtX3I+g==} dev: true /pako/1.0.11: @@ -33119,13 +32516,13 @@ packages: safe-buffer: 5.2.1 dev: true - /parse-conflict-json/2.0.1: - resolution: {integrity: sha512-Y7nYw+QaSGBto1LB9lgwOR05Rtz5SbuTf+Oe7HJ6SYQ/DHsvRjQ8O03oWdJbvkt6GzDWospgyZbGmjDYL0sDgA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16} + /parse-conflict-json/2.0.2: + resolution: {integrity: sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: json-parse-even-better-errors: 2.3.1 - just-diff: 5.0.1 - just-diff-apply: 4.0.1 + just-diff: 5.1.1 + just-diff-apply: 5.4.1 dev: true /parse-entities/1.2.2: @@ -33160,7 +32557,7 @@ packages: dev: true /parse-json/2.2.0: - resolution: {integrity: sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=} + resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} engines: {node: '>=0.10.0'} dependencies: error-ex: 1.3.2 @@ -33240,7 +32637,7 @@ packages: tslib: 2.3.1 /pascalcase/0.1.1: - resolution: {integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=} + resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} engines: {node: '>=0.10.0'} /password-prompt/1.1.2: @@ -33293,7 +32690,7 @@ packages: engines: {node: '>=0.10.0'} /path-is-inside/1.0.2: - resolution: {integrity: sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=} + resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} dev: true /path-key/2.0.1: @@ -33399,7 +32796,7 @@ packages: dev: true /pify/2.3.0: - resolution: {integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw=} + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} engines: {node: '>=0.10.0'} dev: true @@ -33423,12 +32820,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /pirates/4.0.1: - resolution: {integrity: sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==} - engines: {node: '>= 6'} - dependencies: - node-modules-regexp: 1.0.0 - /pirates/4.0.5: resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} engines: {node: '>= 6'} @@ -33452,8 +32843,8 @@ packages: find-up: 5.0.0 dev: true - /playwright-core/1.22.1: - resolution: {integrity: sha512-H+ZUVYnceWNXrRf3oxTEKAr81QzFsCKu5Fp//fEjQvqgKkfA1iX3E9DBrPJpPNOrgVzcE+IqeI0fDmYJe6Ynnw==} + /playwright-core/1.25.2: + resolution: {integrity: sha512-0yTbUE9lIddkEpLHL3u8PoCL+pWiZtj5A/j3U7YoNjcmKKDGBnCrgHJMzwd2J5vy6l28q4ki3JIuz7McLHhl1A==} engines: {node: '>=14'} hasBin: true dev: true @@ -33518,10 +32909,12 @@ packages: async: 2.6.3 debug: 3.2.7 mkdirp: 0.5.5 + transitivePeerDependencies: + - supports-color dev: true /posix-character-classes/0.1.1: - resolution: {integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=} + resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} engines: {node: '>=0.10.0'} /postcss-calc/7.0.5: @@ -33548,13 +32941,15 @@ packages: postcss: 6.0.23 postcss-message-helpers: 2.0.0 postcss-value-parser: 3.3.1 + transitivePeerDependencies: + - supports-color dev: true /postcss-colormin/4.0.3: resolution: {integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.20.2 + browserslist: 4.20.4 color: 3.2.1 has: 1.0.3 postcss: 7.0.39 @@ -33566,7 +32961,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.20.2 + browserslist: 4.20.4 caniuse-api: 3.0.0 colord: 2.9.2 postcss: 8.4.12 @@ -33664,7 +33059,7 @@ packages: postcss: 7.0.39 dev: true - /postcss-html/0.36.0_4f7b71a942b8b7a555b8adf78f88122b: + /postcss-html/0.36.0_j55xdkkcxc32kvnyvx3y7casfm: resolution: {integrity: sha512-HeiOxGcuwID0AFsNAL0ox3mW6MHH5cstWN1Z3Y+n6H+g12ih7LHdYxWwEA/QmrebctLjo79xz9ouK3MroHwOJw==} peerDependencies: postcss: '>=5.0.0' @@ -33672,7 +33067,7 @@ packages: dependencies: htmlparser2: 3.10.1 postcss: 7.0.39 - postcss-syntax: 0.36.2_postcss@7.0.39 + postcss-syntax: 0.36.2_kei4jy7wdgbhc236h4oijypxom dev: true /postcss-less/3.1.4: @@ -33698,7 +33093,7 @@ packages: postcss-load-config: 2.1.2 schema-utils: 1.0.0 - /postcss-loader/4.2.0_postcss@7.0.39+webpack@4.46.0: + /postcss-loader/4.2.0_gzaxsinx64nntyd3vmdqwl7coe: resolution: {integrity: sha512-mqgScxHqbiz1yxbnNcPdKYo/6aVt+XExURmEbQlviFVWogDbM4AJ0A/B+ZBpYsJrTRxKw7HyRazg9x0Q9SWwLA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -33714,7 +33109,7 @@ packages: webpack: 4.46.0 dev: true - /postcss-loader/6.2.1_postcss@8.4.12+webpack@5.70.0: + /postcss-loader/6.2.1_wn4p5kzkgq2ohl66pfawxjf2x4: resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -33724,8 +33119,8 @@ packages: cosmiconfig: 7.0.1 klona: 2.0.5 postcss: 8.4.12 - semver: 7.3.5 - webpack: 5.70.0_09a0288cc3aa3015774a489e904fdd90 + semver: 7.3.7 + webpack: 5.70.0_bgqcrdgdviybk52kjcpjat65sa dev: true /postcss-media-query-parser/0.2.3: @@ -33741,8 +33136,8 @@ packages: postcss-value-parser: 3.3.1 stylehacks: 4.0.3 - /postcss-merge-longhand/5.1.5_postcss@8.4.12: - resolution: {integrity: sha512-NOG1grw9wIO+60arKa2YYsrbgvP6tp+jqc7+ZD5/MalIw234ooH2C6KlR6FEn4yle7GqZoBxSK1mLBE9KPur6w==} + /postcss-merge-longhand/5.1.6_postcss@8.4.12: + resolution: {integrity: sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 @@ -33756,7 +33151,7 @@ packages: resolution: {integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.20.2 + browserslist: 4.20.4 caniuse-api: 3.0.0 cssnano-util-same-parent: 4.0.1 postcss: 7.0.39 @@ -33823,7 +33218,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: alphanum-sort: 1.0.2 - browserslist: 4.20.2 + browserslist: 4.20.4 cssnano-util-get-arguments: 4.0.0 postcss: 7.0.39 postcss-value-parser: 3.3.1 @@ -33971,8 +33366,8 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-positions/5.1.0_postcss@8.4.12: - resolution: {integrity: sha512-8gmItgA4H5xiUxgN/3TVvXRoJxkAWLW6f/KKhdsH03atg0cB8ilXnrB5PpSshwVu/dD2ZsRFQcR1OEmSBDAgcQ==} + /postcss-normalize-positions/5.1.1_postcss@8.4.12: + resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 @@ -33990,8 +33385,8 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-repeat-style/5.1.0_postcss@8.4.12: - resolution: {integrity: sha512-IR3uBjc+7mcWGL6CtniKNQ4Rr5fTxwkaDHwMBDGGs1x9IVRkYIT/M4NelZWkAOBdV6v3Z9S46zqaKGlyzHSchw==} + /postcss-normalize-repeat-style/5.1.1_postcss@8.4.12: + resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 @@ -34040,7 +33435,7 @@ packages: resolution: {integrity: sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.20.2 + browserslist: 4.20.4 postcss: 7.0.39 postcss-value-parser: 3.3.1 @@ -34100,8 +33495,8 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-ordered-values/5.1.2_postcss@8.4.12: - resolution: {integrity: sha512-wr2avRbW4HS2XE2ZCqpfp4N/tDC6GZKZ+SVP8UBTOVS8QWrc4TD8MYrebJrvVVlGPKszmiSCzue43NDiVtgDmg==} + /postcss-ordered-values/5.1.3_postcss@8.4.12: + resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 @@ -34115,7 +33510,7 @@ packages: resolution: {integrity: sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.20.2 + browserslist: 4.20.4 caniuse-api: 3.0.0 has: 1.0.3 postcss: 7.0.39 @@ -34235,12 +33630,31 @@ packages: svgo: 2.8.0 dev: true - /postcss-syntax/0.36.2_postcss@7.0.39: + /postcss-syntax/0.36.2_kei4jy7wdgbhc236h4oijypxom: resolution: {integrity: sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w==} peerDependencies: postcss: '>=5.0.0' + postcss-html: '*' + postcss-jsx: '*' + postcss-less: '*' + postcss-markdown: '*' + postcss-scss: '*' + peerDependenciesMeta: + postcss-html: + optional: true + postcss-jsx: + optional: true + postcss-less: + optional: true + postcss-markdown: + optional: true + postcss-scss: + optional: true dependencies: postcss: 7.0.39 + postcss-html: 0.36.0_j55xdkkcxc32kvnyvx3y7casfm + postcss-less: 3.1.4 + postcss-scss: 2.1.1 dev: true /postcss-unique-selectors/4.0.1: @@ -34312,20 +33726,20 @@ packages: source-map-js: 1.0.2 dev: true - /postman-collection/4.1.0: - resolution: {integrity: sha512-J9IpCMXpGDLN7MGhdMcUbZ0SIWLCcTVdrjTgKVYubkW1sn1KcDqJgsdTr/ItkO8dOXKLuhvnq2QnE5Vrzb3WMA==} + /postman-collection/4.1.5: + resolution: {integrity: sha512-BY3NfP7EYExZG5ER9P82r0ZRc17z88WZAzn121EpWC8FM3HYtFwWJpXOsZk+2MKFn3agCq4JPRhnWw3G6XBXgw==} engines: {node: '>=10'} dependencies: - faker: 5.5.3 + '@faker-js/faker': 5.5.3 file-type: 3.9.0 http-reasons: 0.1.0 iconv-lite: 0.6.3 liquid-json: 0.3.1 lodash: 4.17.21 mime-format: 2.0.1 - mime-types: 2.1.32 + mime-types: 2.1.35 postman-url-encoder: 3.0.5 - semver: 7.3.5 + semver: 7.3.7 uuid: 8.3.2 dev: false @@ -34353,7 +33767,6 @@ packages: /prelude-ls/1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - dev: true /prepend-http/1.0.4: resolution: {integrity: sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=} @@ -34427,16 +33840,6 @@ packages: ansi-styles: 4.3.0 react-is: 17.0.2 - /pretty-format/27.3.1: - resolution: {integrity: sha512-DR/c+pvFc52nLimLROYjnXPtolawm+uWDxr4FjuLDLUn+ktWnSN851KoHwHzzqq6rfCOjkzN8FLgDrSub6UDuA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': 27.5.1 - ansi-regex: 5.0.1 - ansi-styles: 5.2.0 - react-is: 17.0.2 - dev: true - /pretty-format/27.5.1: resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -34490,6 +33893,22 @@ packages: /promise-inflight/1.0.1: resolution: {integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=} + peerDependencies: + bluebird: '*' + peerDependenciesMeta: + bluebird: + optional: true + dev: true + + /promise-inflight/1.0.1_bluebird@3.7.2: + resolution: {integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=} + peerDependencies: + bluebird: '*' + peerDependenciesMeta: + bluebird: + optional: true + dependencies: + bluebird: 3.7.2 dev: true /promise-retry/2.0.1: @@ -34506,9 +33925,9 @@ packages: dependencies: array.prototype.map: 1.0.4 call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.19.1 - get-intrinsic: 1.1.1 + define-properties: 1.1.4 + es-abstract: 1.20.2 + get-intrinsic: 1.1.3 iterate-value: 1.0.2 dev: true @@ -34517,8 +33936,8 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.19.1 + define-properties: 1.1.4 + es-abstract: 1.20.2 dev: true /promise/7.3.1: @@ -34527,6 +33946,12 @@ packages: asap: 2.0.6 dev: true + /promise/8.2.0: + resolution: {integrity: sha512-+CMAlLHqwRYwBMXKCP+o8ns7DN+xHDUiI+0nArsiJ9y+kJVPLFxEaSw6Ha9s9H0tftxg2Yzl25wqj9G7m5wLZg==} + dependencies: + asap: 2.0.6 + dev: false + /promptly/3.2.0: resolution: {integrity: sha512-WnR9obtgW+rG4oUV3hSnNGl1pHm3V1H/qD9iJBumGSmVsSC5HpZOLuu8qdMb6yCItGfT7dcRszejr/5P3i9Pug==} dependencies: @@ -34561,7 +33986,7 @@ packages: react-is: 16.13.1 /properties/1.2.1: - resolution: {integrity: sha1-Dul6f8AgsaKlW4ZZ7aSqjYaQlL0=} + resolution: {integrity: sha512-qYNxyMj1JeW54i/EWEFsM1cVwxJbtgPp8+0Wg9XjNaK6VE/c4oRi6PNu5p7w1mNXEIQIjV5Wwn8v8Gz82/QzdQ==} engines: {node: '>=0.10'} dev: true @@ -34583,7 +34008,6 @@ packages: /prr/1.0.1: resolution: {integrity: sha1-0/wRS6BplaRexok/SEzrHXj19HY=} - dev: true /pseudomap/1.0.2: resolution: {integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM=} @@ -34625,7 +34049,7 @@ packages: dev: true /punycode/1.3.2: - resolution: {integrity: sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=} + resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==} dev: true /punycode/2.1.1: @@ -34640,13 +34064,15 @@ packages: debug: 4.3.4 extract-zip: 1.7.0 https-proxy-agent: 2.2.4 - mime: 2.5.2 + mime: 2.6.0 progress: 2.0.3 proxy-from-env: 1.1.0 rimraf: 2.7.1 ws: 6.2.2 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate dev: true /puppeteer-core/10.4.0: @@ -34679,8 +34105,8 @@ packages: debug: 4.3.4 extract-zip: 2.0.1 https-proxy-agent: 4.0.0 - mime: 2.5.2 - mime-types: 2.1.34 + mime: 2.6.0 + mime-types: 2.1.35 progress: 2.0.3 proxy-from-env: 1.1.0 rimraf: 3.0.2 @@ -34710,7 +34136,9 @@ packages: rimraf: 2.7.1 ws: 6.2.2 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate /q/1.5.1: resolution: {integrity: sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=} @@ -34726,7 +34154,7 @@ packages: fs-extra: 6.0.1 get-stream: 5.2.0 glob: 7.2.0 - globby: 10.0.1 + globby: 10.0.2 http-call: 5.3.0 load-json-file: 6.2.0 pkg-dir: 4.2.0 @@ -34737,13 +34165,6 @@ packages: - supports-color dev: true - /qs/6.10.1: - resolution: {integrity: sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==} - engines: {node: '>=0.6'} - dependencies: - side-channel: 1.0.4 - dev: false - /qs/6.10.3: resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==} engines: {node: '>=0.6'} @@ -34754,10 +34175,10 @@ packages: resolution: {integrity: sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==} engines: {node: '>=0.6'} - /qs/6.7.0: - resolution: {integrity: sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==} + /qs/6.9.3: + resolution: {integrity: sha512-EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw==} engines: {node: '>=0.6'} - dev: true + dev: false /query-string/4.3.4: resolution: {integrity: sha1-u7aTucqRXCMlFbIosaArYJBD2+s=} @@ -34822,7 +34243,6 @@ packages: resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} dependencies: safe-buffer: 5.2.1 - dev: true /randomfill/1.0.4: resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} @@ -34851,16 +34271,6 @@ packages: string_decoder: 0.10.31 dev: true - /raw-body/2.4.0: - resolution: {integrity: sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==} - engines: {node: '>= 0.8'} - dependencies: - bytes: 3.1.0 - http-errors: 1.7.2 - iconv-lite: 0.4.24 - unpipe: 1.0.0 - dev: true - /raw-body/2.5.1: resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} engines: {node: '>= 0.8'} @@ -34869,7 +34279,6 @@ packages: http-errors: 2.0.0 iconv-lite: 0.4.24 unpipe: 1.0.0 - dev: false /raw-loader/4.0.2_webpack@4.46.0: resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} @@ -34903,15 +34312,17 @@ packages: strip-json-comments: 2.0.1 dev: true - /re-resizable/6.9.5: + /re-resizable/6.9.5_react@17.0.2: resolution: {integrity: sha512-Q4+K8gOPbUBmbJCa0qfoVXBGnCwkAJrZ9KUca4GDn5FmxyV2HtLrBz7u43uUOb0y7xKbwcfuftweiOCIDEiCQA==} peerDependencies: react: ^16.13.1 || ^17.0.0 react-dom: ^16.13.1 || ^17.0.0 dependencies: fast-memoize: 2.5.2 + react: 17.0.2 + dev: false - /re-resizable/6.9.5_react-dom@17.0.2+react@17.0.2: + /re-resizable/6.9.5_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-Q4+K8gOPbUBmbJCa0qfoVXBGnCwkAJrZ9KUca4GDn5FmxyV2HtLrBz7u43uUOb0y7xKbwcfuftweiOCIDEiCQA==} peerDependencies: react: ^16.13.1 || ^17.0.0 @@ -34921,14 +34332,16 @@ packages: react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - /re-resizable/6.9.5_react@17.0.2: + /re-resizable/6.9.5_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-Q4+K8gOPbUBmbJCa0qfoVXBGnCwkAJrZ9KUca4GDn5FmxyV2HtLrBz7u43uUOb0y7xKbwcfuftweiOCIDEiCQA==} peerDependencies: react: ^16.13.1 || ^17.0.0 react-dom: ^16.13.1 || ^17.0.0 dependencies: fast-memoize: 2.5.2 - react: 17.0.2 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 + dev: false /react-addons-create-fragment/15.6.2: resolution: {integrity: sha1-o5TefCx77Na1R1uhuXrEcs58dPg=} @@ -34944,7 +34357,7 @@ packages: object-assign: 4.1.1 dev: false - /react-autosize-textarea/7.1.0_react@17.0.2: + /react-autosize-textarea/7.1.0_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-BHpjCDkuOlllZn3nLazY2F8oYO1tS2jHnWhcjTWQdcKiiMU6gHLNt/fzmqMSyerR0eTdKtfSIqtSeTtghNwS+g==} peerDependencies: react: ^0.14.0 || ^15.0.0 || ^16.0.0 @@ -34954,29 +34367,17 @@ packages: line-height: 0.3.1 prop-types: 15.8.1 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 dev: true - /react-colorful/4.4.4: + /react-colorful/4.4.4_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-01V2/6rr6sa1vaZntWZJXZxnU7ew02NG2rqq0eoVp4d3gFU5Ug9lDzNMbr+8ns0byXsJbBR8LbwQTlAjz6x7Kg==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' - dev: false - - /react-colorful/5.5.1: - resolution: {integrity: sha512-M1TJH2X3RXEt12sWkpa6hLc/bbYS0H6F4rIqjQZ+RxNBstpY67d9TrFXtqdZwhpmBXcCwEi7stKqFue3ZRkiOg==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' - - /react-colorful/5.5.1_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-M1TJH2X3RXEt12sWkpa6hLc/bbYS0H6F4rIqjQZ+RxNBstpY67d9TrFXtqdZwhpmBXcCwEi7stKqFue3ZRkiOg==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 dev: false /react-colorful/5.5.1_react@17.0.2: @@ -34986,8 +34387,18 @@ packages: react-dom: '>=16.8.0' dependencies: react: 17.0.2 + dev: false - /react-dates/17.2.0_d0804d3726ad84366bcc42e494508e1e: + /react-colorful/5.5.1_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-M1TJH2X3RXEt12sWkpa6hLc/bbYS0H6F4rIqjQZ+RxNBstpY67d9TrFXtqdZwhpmBXcCwEi7stKqFue3ZRkiOg==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + dependencies: + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + + /react-dates/17.2.0_2cae2nzgvwcdm26milsjiueody: resolution: {integrity: sha512-RDlerU8DdRRrlYS0MQ7Z9igPWABGLDwz6+ykBNff67RM3Sset2TDqeuOr+R5o00Ggn5U47GeLsGcSDxlZd9cHw==} peerDependencies: moment: ^2.18.1 @@ -35005,21 +34416,23 @@ packages: react: 17.0.2 react-addons-shallow-compare: 15.6.3 react-dom: 17.0.2_react@17.0.2 - react-moment-proptypes: 1.8.1 - react-outside-click-handler: 1.3.0_react-dom@17.0.2+react@17.0.2 - react-portal: 4.2.1_react@17.0.2 - react-with-styles: 3.2.3_react-dom@17.0.2+react@17.0.2 + react-moment-proptypes: 1.8.1_moment@2.29.1 + react-outside-click-handler: 1.3.0_sfoxds7t5ydpegc3knd667wn6m + react-portal: 4.2.1_sfoxds7t5ydpegc3knd667wn6m + react-with-styles: 3.2.3_react@17.0.2 react-with-styles-interface-css: 4.0.3_react-with-styles@3.2.3 + transitivePeerDependencies: + - react-with-direction dev: false - /react-dates/17.2.0_moment@2.29.1: + /react-dates/17.2.0_doem77jvh4k7pyuvpbnkip467u: resolution: {integrity: sha512-RDlerU8DdRRrlYS0MQ7Z9igPWABGLDwz6+ykBNff67RM3Sset2TDqeuOr+R5o00Ggn5U47GeLsGcSDxlZd9cHw==} peerDependencies: moment: ^2.18.1 react: ^0.14 || ^15.5.4 || ^16.1.1 react-dom: ^0.14 || ^15.5.4 || ^16.1.1 dependencies: - airbnb-prop-types: 2.16.0 + airbnb-prop-types: 2.16.0_react@17.0.2 consolidated-events: 2.0.2 is-touch-device: 1.0.1 lodash: 4.17.21 @@ -35027,12 +34440,43 @@ packages: object.assign: 4.1.2 object.values: 1.1.5 prop-types: 15.8.1 + react: 17.0.2 react-addons-shallow-compare: 15.6.3 - react-moment-proptypes: 1.8.1 - react-outside-click-handler: 1.3.0 - react-portal: 4.2.1 - react-with-styles: 3.2.3 + react-dom: 17.0.2_react@17.0.2 + react-moment-proptypes: 1.8.1_moment@2.29.1 + react-outside-click-handler: 1.3.0_sfoxds7t5ydpegc3knd667wn6m + react-portal: 4.2.1_sfoxds7t5ydpegc3knd667wn6m + react-with-styles: 3.2.3_f6ta4w4ch5ogxra4gx65xzrqki react-with-styles-interface-css: 4.0.3_react-with-styles@3.2.3 + transitivePeerDependencies: + - react-with-direction + dev: false + + /react-dates/17.2.0_lfyzzauoe5u4sh3sz3gzisy47a: + resolution: {integrity: sha512-RDlerU8DdRRrlYS0MQ7Z9igPWABGLDwz6+ykBNff67RM3Sset2TDqeuOr+R5o00Ggn5U47GeLsGcSDxlZd9cHw==} + peerDependencies: + moment: ^2.18.1 + react: ^0.14 || ^15.5.4 || ^16.1.1 + react-dom: ^0.14 || ^15.5.4 || ^16.1.1 + dependencies: + airbnb-prop-types: 2.16.0_react@16.14.0 + consolidated-events: 2.0.2 + is-touch-device: 1.0.1 + lodash: 4.17.21 + moment: 2.29.1 + object.assign: 4.1.2 + object.values: 1.1.5 + prop-types: 15.8.1 + react: 16.14.0 + react-addons-shallow-compare: 15.6.3 + react-dom: 16.14.0_react@16.14.0 + react-moment-proptypes: 1.8.1_moment@2.29.1 + react-outside-click-handler: 1.3.0_wcqkhtmu7mswc6yz4uyexck3ty + react-portal: 4.2.1_wcqkhtmu7mswc6yz4uyexck3ty + react-with-styles: 3.2.3_wunono5fri6mu4ojuug6cyhj7m + react-with-styles-interface-css: 4.0.3_react-with-styles@3.2.3 + transitivePeerDependencies: + - react-with-direction dev: false /react-dates/17.2.0_moment@2.29.1+react@17.0.2: @@ -35052,20 +34496,23 @@ packages: prop-types: 15.8.1 react: 17.0.2 react-addons-shallow-compare: 15.6.3 - react-moment-proptypes: 1.8.1 + react-moment-proptypes: 1.8.1_moment@2.29.1 react-outside-click-handler: 1.3.0_react@17.0.2 react-portal: 4.2.1_react@17.0.2 react-with-styles: 3.2.3_react@17.0.2 react-with-styles-interface-css: 4.0.3_react-with-styles@3.2.3 + transitivePeerDependencies: + - react-with-direction dev: false - /react-dates/21.8.0_33310dc40fed09c713f34ce185e0313d: + /react-dates/21.8.0_3e2zt6dsmku6uyxszuwububhzi: resolution: {integrity: sha512-PPriGqi30CtzZmoHiGdhlA++YPYPYGCZrhydYmXXQ6RAvAsaONcPtYgXRTLozIOrsQ5mSo40+DiA5eOFHnZ6xw==} peerDependencies: '@babel/runtime': ^7.0.0 moment: ^2.18.1 react: ^0.14 || ^15.5.4 || ^16.1.1 react-dom: ^0.14 || ^15.5.4 || ^16.1.1 + react-with-direction: ^1.3.1 dependencies: '@babel/runtime': 7.17.7 airbnb-prop-types: 2.16.0_react@17.0.2 @@ -35079,12 +34526,23 @@ packages: prop-types: 15.8.1 raf: 3.4.1 react: 17.0.2 - react-moment-proptypes: 1.8.1 - react-outside-click-handler: 1.3.0_react@17.0.2 - react-portal: 4.2.1_react@17.0.2 - react-with-direction: 1.4.0_react@17.0.2 - react-with-styles: 4.2.0_03b7398ce1646b55869f4c6ae93c0ed1 - react-with-styles-interface-css: 6.0.0_a74d5b4915426b01704b6ebc781be834 + react-dom: 17.0.2_react@17.0.2 + react-moment-proptypes: 1.8.1_moment@2.29.1 + react-outside-click-handler: 1.3.0_sfoxds7t5ydpegc3knd667wn6m + react-portal: 4.2.1_sfoxds7t5ydpegc3knd667wn6m + react-with-direction: 1.4.0_sfoxds7t5ydpegc3knd667wn6m + react-with-styles: 4.2.0_vnnik6nzwz6bu5mwl5zhriyd4i + react-with-styles-interface-css: 6.0.0_u5gvwsivijvqc4cln26hqg7igq + dev: false + + /react-devtools-core/4.24.0: + resolution: {integrity: sha512-Rw7FzYOOzcfyUPaAm9P3g0tFdGqGq2LLiAI+wjYcp6CsF3DeeMrRS3HZAho4s273C29G/DJhx0e8BpRE/QZNGg==} + dependencies: + shell-quote: 1.7.3 + ws: 7.5.5 + transitivePeerDependencies: + - bufferutil + - utf-8-validate dev: false /react-docgen-typescript/2.2.2_typescript@4.2.4: @@ -35143,17 +34601,7 @@ packages: react: 17.0.2 scheduler: 0.20.2 - /react-draggable/4.4.4: - resolution: {integrity: sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==} - peerDependencies: - react: '>= 16.3.0' - react-dom: '>= 16.3.0' - dependencies: - clsx: 1.1.1 - prop-types: 15.8.1 - dev: true - - /react-draggable/4.4.4_react@17.0.2: + /react-draggable/4.4.4_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==} peerDependencies: react: '>= 16.3.0' @@ -35162,20 +34610,10 @@ packages: clsx: 1.1.1 prop-types: 15.8.1 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 dev: true - /react-element-to-jsx-string/14.3.4: - resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} - peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 - dependencies: - '@base2/pretty-print-object': 1.0.1 - is-plain-object: 5.0.0 - react-is: 17.0.2 - dev: true - - /react-element-to-jsx-string/14.3.4_react@17.0.2: + /react-element-to-jsx-string/14.3.4_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} peerDependencies: react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 @@ -35184,18 +34622,10 @@ packages: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 react-is: 17.0.2 dev: true - /react-error-boundary/3.1.4: - resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==} - engines: {node: '>=10', npm: '>=6'} - peerDependencies: - react: '>=16.13.1' - dependencies: - '@babel/runtime': 7.17.7 - dev: true - /react-error-boundary/3.1.4_react@17.0.2: resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==} engines: {node: '>=10', npm: '>=6'} @@ -35209,20 +34639,7 @@ packages: /react-fast-compare/3.2.0: resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==} - /react-helmet-async/1.2.3: - resolution: {integrity: sha512-mCk2silF53Tq/YaYdkl2sB+/tDoPnaxN7dFS/6ZLJb/rhUY2EWGI5Xj2b4jHppScMqY45MbgPSwTxDchKpZ5Kw==} - peerDependencies: - react: ^16.6.0 || ^17.0.0 - react-dom: ^16.6.0 || ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - invariant: 2.2.4 - prop-types: 15.8.1 - react-fast-compare: 3.2.0 - shallowequal: 1.1.0 - dev: true - - /react-helmet-async/1.2.3_react@17.0.2: + /react-helmet-async/1.2.3_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-mCk2silF53Tq/YaYdkl2sB+/tDoPnaxN7dFS/6ZLJb/rhUY2EWGI5Xj2b4jHppScMqY45MbgPSwTxDchKpZ5Kw==} peerDependencies: react: ^16.6.0 || ^17.0.0 @@ -35232,18 +34649,11 @@ packages: invariant: 2.2.4 prop-types: 15.8.1 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 react-fast-compare: 3.2.0 shallowequal: 1.1.0 dev: true - /react-input-autosize/3.0.0: - resolution: {integrity: sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==} - peerDependencies: - react: ^16.3.0 || ^17.0.0 - dependencies: - prop-types: 15.8.1 - dev: true - /react-input-autosize/3.0.0_react@17.0.2: resolution: {integrity: sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==} peerDependencies: @@ -35253,16 +34663,6 @@ packages: react: 17.0.2 dev: true - /react-inspector/5.1.1: - resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} - peerDependencies: - react: ^16.8.4 || ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - is-dom: 1.1.0 - prop-types: 15.8.1 - dev: true - /react-inspector/5.1.1_react@17.0.2: resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} peerDependencies: @@ -35287,7 +34687,7 @@ packages: resolution: {integrity: sha512-alTKsjEL0dKH/ru1Iyn7vliS2QRcBp9zZPGoWxUOvRGWPUYgjo+V01is7p04It6KhgrzhJGnIj9GgX8W4bZoCQ==} dev: false - /react-modal/3.15.1_react@17.0.2: + /react-modal/3.15.1_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-duB9bxOaYg7Zt6TMFldIFxQRtSP+Dg3F1ZX3FXxSUn+3tZZ/9JCgeAQKDg7rhZSAqopq8TFRw3yIbnx77gyFTw==} engines: {node: '>=8'} peerDependencies: @@ -35297,16 +34697,35 @@ packages: exenv: 1.2.2 prop-types: 15.8.1 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 react-lifecycles-compat: 3.0.4 warning: 4.0.3 dev: false - /react-moment-proptypes/1.8.1: + /react-moment-proptypes/1.8.1_moment@2.29.1: resolution: {integrity: sha512-Er940DxWoObfIqPrZNfwXKugjxMIuk1LAuEzn23gytzV6hKS/sw108wibi9QubfMN4h+nrlje8eUCSbQRJo2fQ==} + peerDependencies: + moment: '>=1.6.0' dependencies: moment: 2.29.1 dev: false + /react-native-codegen/0.70.4_@babel+preset-env@7.16.11: + resolution: {integrity: sha512-bPyd5jm840omfx24VRyMP+KPzAefpRDwE18w5ywMWHCWZBSqLn1qI9WgBPnavlIrjTEuzxznWQNcaA26lw8AMQ==} + dependencies: + '@babel/parser': 7.17.8 + flow-parser: 0.121.0 + jscodeshift: 0.13.1_@babel+preset-env@7.16.11 + nullthrows: 1.1.1 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + dev: false + + /react-native-gradle-plugin/0.70.2: + resolution: {integrity: sha512-k7d+CVh0fs/VntA2WaKD58cFB2rtiSLBHYlciH18ncaT4N/B3A4qOGv9pSCEHfQikELm6vAf98KMbE3c8KnH1A==} + dev: false + /react-native-url-polyfill/1.3.0: resolution: {integrity: sha512-w9JfSkvpqqlix9UjDvJjm1EjSt652zVQ6iwCIj1cVVkwXf4jQhQgTNXY6EVTwuAmUjg6BC6k9RHCBynoLFo3IQ==} peerDependencies: @@ -35314,32 +34733,62 @@ packages: dependencies: whatwg-url-without-unicode: 8.0.0-3 - /react-outside-click-handler/1.3.0: - resolution: {integrity: sha512-Te/7zFU0oHpAnctl//pP3hEAeobfeHMyygHB8MnjP6sX5OR8KHT1G3jmLsV3U9RnIYo+Yn+peJYWu+D5tUS8qQ==} + /react-native-url-polyfill/1.3.0_react-native@0.70.0: + resolution: {integrity: sha512-w9JfSkvpqqlix9UjDvJjm1EjSt652zVQ6iwCIj1cVVkwXf4jQhQgTNXY6EVTwuAmUjg6BC6k9RHCBynoLFo3IQ==} peerDependencies: - react: ^0.14 || >=15 - react-dom: ^0.14 || >=15 + react-native: '*' dependencies: - airbnb-prop-types: 2.16.0 - consolidated-events: 2.0.2 - document.contains: 1.0.2 - object.values: 1.1.5 - prop-types: 15.8.1 + react-native: 0.70.0_wahjskecmqaqgpksn6xwa65wrm + whatwg-url-without-unicode: 8.0.0-3 dev: false - /react-outside-click-handler/1.3.0_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-Te/7zFU0oHpAnctl//pP3hEAeobfeHMyygHB8MnjP6sX5OR8KHT1G3jmLsV3U9RnIYo+Yn+peJYWu+D5tUS8qQ==} + /react-native/0.70.0_wahjskecmqaqgpksn6xwa65wrm: + resolution: {integrity: sha512-QjXLbrK9f+/B2eCzn6kAvglLV/8nwPuFGaFv7ggPpAzFRyx5bVN1dwQLHL3MrP7iXR/M7Jc6Nnid7tmRSic6vA==} + engines: {node: '>=14'} + hasBin: true peerDependencies: - react: ^0.14 || >=15 - react-dom: ^0.14 || >=15 + react: 18.1.0 dependencies: - airbnb-prop-types: 2.16.0_react@17.0.2 - consolidated-events: 2.0.2 - document.contains: 1.0.2 - object.values: 1.1.5 - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@jest/create-cache-key-function': 27.5.1 + '@react-native-community/cli': 9.1.1_@babel+core@7.17.8 + '@react-native-community/cli-platform-android': 9.1.0 + '@react-native-community/cli-platform-ios': 9.1.0 + '@react-native/assets': 1.0.0 + '@react-native/normalize-color': 2.0.0 + '@react-native/polyfills': 2.0.0 + abort-controller: 3.0.0 + anser: 1.4.10 + base64-js: 1.5.1 + event-target-shim: 5.0.1 + invariant: 2.2.4 + jsc-android: 250230.2.1 + memoize-one: 5.2.1 + metro-react-native-babel-transformer: 0.72.1_@babel+core@7.17.8 + metro-runtime: 0.72.1 + metro-source-map: 0.72.1 + mkdirp: 0.5.5 + nullthrows: 1.1.1 + pretty-format: 26.6.2 + promise: 8.2.0 + react: 16.14.0 + react-devtools-core: 4.24.0 + react-native-codegen: 0.70.4_@babel+preset-env@7.16.11 + react-native-gradle-plugin: 0.70.2 + react-refresh: 0.4.3 + react-shallow-renderer: 16.15.0_react@16.14.0 + regenerator-runtime: 0.13.9 + scheduler: 0.22.0 + stacktrace-parser: 0.1.10 + use-sync-external-store: 1.2.0_react@16.14.0 + whatwg-fetch: 3.6.2 + ws: 6.2.2 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - bufferutil + - encoding + - supports-color + - utf-8-validate dev: false /react-outside-click-handler/1.3.0_react@17.0.2: @@ -35356,69 +34805,93 @@ packages: react: 17.0.2 dev: false - /react-popper-tooltip/3.1.1: - resolution: {integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==} + /react-outside-click-handler/1.3.0_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-Te/7zFU0oHpAnctl//pP3hEAeobfeHMyygHB8MnjP6sX5OR8KHT1G3jmLsV3U9RnIYo+Yn+peJYWu+D5tUS8qQ==} peerDependencies: - react: ^16.6.0 || ^17.0.0 - react-dom: ^16.6.0 || ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@popperjs/core': 2.11.4 - react-popper: 2.2.5_@popperjs+core@2.11.4 - dev: true - - /react-popper-tooltip/3.1.1_react@17.0.2: - resolution: {integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==} - peerDependencies: - react: ^16.6.0 || ^17.0.0 - react-dom: ^16.6.0 || ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@popperjs/core': 2.11.4 - react: 17.0.2 - react-popper: 2.2.5_2e9dd80dbd4df675244d857293d4c5b0 - dev: true - - /react-popper/2.2.5_2e9dd80dbd4df675244d857293d4c5b0: - resolution: {integrity: sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==} - peerDependencies: - '@popperjs/core': ^2.0.0 - react: ^16.8.0 || ^17 - dependencies: - '@popperjs/core': 2.11.4 - react: 17.0.2 - react-fast-compare: 3.2.0 - warning: 4.0.3 - - /react-popper/2.2.5_@popperjs+core@2.11.4: - resolution: {integrity: sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==} - peerDependencies: - '@popperjs/core': ^2.0.0 - react: ^16.8.0 || ^17 - dependencies: - '@popperjs/core': 2.11.4 - react-fast-compare: 3.2.0 - warning: 4.0.3 - dev: true - - /react-portal/4.2.1: - resolution: {integrity: sha512-fE9kOBagwmTXZ3YGRYb4gcMy+kSA+yLO0xnPankjRlfBv4uCpFXqKPfkpsGQQR15wkZ9EssnvTOl1yMzbkxhPQ==} - peerDependencies: - react: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0 + react: ^0.14 || >=15 + react-dom: ^0.14 || >=15 dependencies: + airbnb-prop-types: 2.16.0_react@17.0.2 + consolidated-events: 2.0.2 + document.contains: 1.0.2 + object.values: 1.1.5 prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 dev: false + /react-outside-click-handler/1.3.0_wcqkhtmu7mswc6yz4uyexck3ty: + resolution: {integrity: sha512-Te/7zFU0oHpAnctl//pP3hEAeobfeHMyygHB8MnjP6sX5OR8KHT1G3jmLsV3U9RnIYo+Yn+peJYWu+D5tUS8qQ==} + peerDependencies: + react: ^0.14 || >=15 + react-dom: ^0.14 || >=15 + dependencies: + airbnb-prop-types: 2.16.0_react@16.14.0 + consolidated-events: 2.0.2 + document.contains: 1.0.2 + object.values: 1.1.5 + prop-types: 15.8.1 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 + dev: false + + /react-popper-tooltip/3.1.1_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==} + peerDependencies: + react: ^16.6.0 || ^17.0.0 + react-dom: ^16.6.0 || ^17.0.0 + dependencies: + '@babel/runtime': 7.17.7 + '@popperjs/core': 2.11.4 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + react-popper: 2.2.5_f2o5qdn5jx3hkjcnqvzjhvgfwa + dev: true + + /react-popper/2.2.5_f2o5qdn5jx3hkjcnqvzjhvgfwa: + resolution: {integrity: sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==} + peerDependencies: + '@popperjs/core': ^2.0.0 + react: ^16.8.0 || ^17 + dependencies: + '@popperjs/core': 2.11.4 + react: 17.0.2 + react-fast-compare: 3.2.0 + warning: 4.0.3 + /react-portal/4.2.1_react@17.0.2: resolution: {integrity: sha512-fE9kOBagwmTXZ3YGRYb4gcMy+kSA+yLO0xnPankjRlfBv4uCpFXqKPfkpsGQQR15wkZ9EssnvTOl1yMzbkxhPQ==} peerDependencies: react: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0 + react-dom: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0 dependencies: prop-types: 15.8.1 react: 17.0.2 dev: false - /react-query/3.39.1_react@17.0.2: + /react-portal/4.2.1_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-fE9kOBagwmTXZ3YGRYb4gcMy+kSA+yLO0xnPankjRlfBv4uCpFXqKPfkpsGQQR15wkZ9EssnvTOl1yMzbkxhPQ==} + peerDependencies: + react: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0 + react-dom: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0 + dependencies: + prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + dev: false + + /react-portal/4.2.1_wcqkhtmu7mswc6yz4uyexck3ty: + resolution: {integrity: sha512-fE9kOBagwmTXZ3YGRYb4gcMy+kSA+yLO0xnPankjRlfBv4uCpFXqKPfkpsGQQR15wkZ9EssnvTOl1yMzbkxhPQ==} + peerDependencies: + react: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0 + react-dom: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0 + dependencies: + prop-types: 15.8.1 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 + dev: false + + /react-query/3.39.1_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-qYKT1bavdDiQZbngWZyPotlBVzcBjDYEJg5RQLBa++5Ix5jjfbEYJmHSZRZD+USVHUSvl/ey9Hu+QfF1QAK80A==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -35434,6 +34907,7 @@ packages: broadcast-channel: 3.7.0 match-sorter: 6.3.1 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 dev: false /react-refresh/0.11.0: @@ -35441,10 +34915,10 @@ packages: engines: {node: '>=0.10.0'} dev: true - /react-resize-aware/3.1.1: - resolution: {integrity: sha512-M8IyVLBN8D6tEUss+bxQlWte3ZYtNEGhg7rBxtCVG8yEBjUlZwUo5EFLq6tnvTZXcgAbCLjsQn+NCoTJKumRYg==} - peerDependencies: - react: ^16.8.0 || 17.x + /react-refresh/0.4.3: + resolution: {integrity: sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==} + engines: {node: '>=0.10.0'} + dev: false /react-resize-aware/3.1.1_react@16.14.0: resolution: {integrity: sha512-M8IyVLBN8D6tEUss+bxQlWte3ZYtNEGhg7rBxtCVG8yEBjUlZwUo5EFLq6tnvTZXcgAbCLjsQn+NCoTJKumRYg==} @@ -35452,7 +34926,6 @@ packages: react: ^16.8.0 || 17.x dependencies: react: 16.14.0 - dev: true /react-resize-aware/3.1.1_react@17.0.2: resolution: {integrity: sha512-M8IyVLBN8D6tEUss+bxQlWte3ZYtNEGhg7rBxtCVG8yEBjUlZwUo5EFLq6tnvTZXcgAbCLjsQn+NCoTJKumRYg==} @@ -35460,19 +34933,8 @@ packages: react: ^16.8.0 || 17.x dependencies: react: 17.0.2 - dev: false - /react-router-dom/6.2.2: - resolution: {integrity: sha512-AtYEsAST7bDD4dLSQHDnk/qxWLJdad5t1HFa1qJyUrCeGgEuCSw0VB/27ARbF9Fi/W5598ujvJOm3ujUCVzuYQ==} - peerDependencies: - react: '>=16.8' - react-dom: '>=16.8' - dependencies: - history: 5.3.0 - react-router: 6.2.2 - dev: true - - /react-router-dom/6.2.2_react@17.0.2: + /react-router-dom/6.2.2_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-AtYEsAST7bDD4dLSQHDnk/qxWLJdad5t1HFa1qJyUrCeGgEuCSw0VB/27ARbF9Fi/W5598ujvJOm3ujUCVzuYQ==} peerDependencies: react: '>=16.8' @@ -35480,20 +34942,22 @@ packages: dependencies: history: 5.3.0 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 react-router: 6.2.2_react@17.0.2 dev: true - /react-router-dom/6.3.0: + /react-router-dom/6.3.0_react@17.0.2: resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==} peerDependencies: react: '>=16.8' react-dom: '>=16.8' dependencies: history: 5.3.0 - react-router: 6.3.0 + react: 17.0.2 + react-router: 6.3.0_react@17.0.2 dev: false - /react-router-dom/6.3.0_react-dom@17.0.2+react@17.0.2: + /react-router-dom/6.3.0_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==} peerDependencies: react: '>=16.8' @@ -35505,14 +34969,6 @@ packages: react-router: 6.3.0_react@17.0.2 dev: false - /react-router/6.2.2: - resolution: {integrity: sha512-/MbxyLzd7Q7amp4gDOGaYvXwhEojkJD5BtExkuKmj39VEE0m3l/zipf6h2WIB2jyAO0lI6NGETh4RDcktRm4AQ==} - peerDependencies: - react: '>=16.8' - dependencies: - history: 5.3.0 - dev: true - /react-router/6.2.2_react@17.0.2: resolution: {integrity: sha512-/MbxyLzd7Q7amp4gDOGaYvXwhEojkJD5BtExkuKmj39VEE0m3l/zipf6h2WIB2jyAO0lI6NGETh4RDcktRm4AQ==} peerDependencies: @@ -35522,14 +34978,6 @@ packages: react: 17.0.2 dev: true - /react-router/6.3.0: - resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==} - peerDependencies: - react: '>=16.8' - dependencies: - history: 5.3.0 - dev: false - /react-router/6.3.0_react@17.0.2: resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==} peerDependencies: @@ -35539,23 +34987,7 @@ packages: react: 17.0.2 dev: false - /react-select/3.2.0: - resolution: {integrity: sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@emotion/cache': 10.0.29 - '@emotion/core': 10.3.1 - '@emotion/css': 10.0.27 - memoize-one: 5.2.1 - prop-types: 15.8.1 - react-input-autosize: 3.0.0 - react-transition-group: 4.4.2 - dev: true - - /react-select/3.2.0_react@17.0.2: + /react-select/3.2.0_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -35568,17 +35000,20 @@ packages: memoize-one: 5.2.1 prop-types: 15.8.1 react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 react-input-autosize: 3.0.0_react@17.0.2 - react-transition-group: 4.4.2_react@17.0.2 + react-transition-group: 4.4.2_sfoxds7t5ydpegc3knd667wn6m dev: true - /react-shallow-renderer/16.14.1: + /react-shallow-renderer/16.14.1_react@16.14.0: resolution: {integrity: sha512-rkIMcQi01/+kxiTE9D3fdS959U1g7gs+/rborw++42m1O9FAQiNI/UNRZExVUoAOprn4umcXf+pFRou8i4zuBg==} peerDependencies: react: ^16.0.0 || ^17.0.0 dependencies: object-assign: 4.1.1 + react: 16.14.0 react-is: 17.0.2 + dev: true /react-shallow-renderer/16.14.1_react@17.0.2: resolution: {integrity: sha512-rkIMcQi01/+kxiTE9D3fdS959U1g7gs+/rborw++42m1O9FAQiNI/UNRZExVUoAOprn4umcXf+pFRou8i4zuBg==} @@ -35588,7 +35023,16 @@ packages: object-assign: 4.1.1 react: 17.0.2 react-is: 17.0.2 - dev: true + + /react-shallow-renderer/16.15.0_react@16.14.0: + resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} + peerDependencies: + react: ^16.0.0 || ^17.0.0 || ^18.0.0 + dependencies: + object-assign: 4.1.1 + react: 16.14.0 + react-is: 17.0.2 + dev: false /react-sizeme/3.0.2: resolution: {integrity: sha512-xOIAOqqSSmKlKFJLO3inBQBdymzDuXx4iuwkNcJmC96jeiOg5ojByvL+g3MW9LPEsojLbC6pf68zOfobK8IPlw==} @@ -35599,7 +35043,7 @@ packages: throttle-debounce: 3.0.1 dev: true - /react-spring/8.0.27: + /react-spring/8.0.27_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-nDpWBe3ZVezukNRandTeLSPcwwTMjNVu1IDq9qA/AMiUqHuRN4BeSWvKr3eIxxg1vtiYiOLy4FqdfCP5IoP77g==} peerDependencies: react: '>= 16.8.0' @@ -35607,20 +35051,10 @@ packages: dependencies: '@babel/runtime': 7.17.7 prop-types: 15.8.1 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 dev: false - /react-syntax-highlighter/13.5.3: - resolution: {integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==} - peerDependencies: - react: '>= 0.14.0' - dependencies: - '@babel/runtime': 7.17.7 - highlight.js: 10.7.3 - lowlight: 1.20.0 - prismjs: 1.27.0 - refractor: 3.6.0 - dev: true - /react-syntax-highlighter/13.5.3_react@17.0.2: resolution: {integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==} peerDependencies: @@ -35646,15 +35080,17 @@ packages: scheduler: 0.19.1 dev: true - /react-test-renderer/17.0.2: + /react-test-renderer/17.0.2_react@16.14.0: resolution: {integrity: sha512-yaQ9cB89c17PUb0x6UfWRs7kQCorVdHlutU1boVPEsB8IDZH6n9tHxMacc3y0JoXOJUsZb/t/Mb8FUWMKaM7iQ==} peerDependencies: react: 17.0.2 dependencies: object-assign: 4.1.1 + react: 16.14.0 react-is: 17.0.2 - react-shallow-renderer: 16.14.1 + react-shallow-renderer: 16.14.1_react@16.14.0 scheduler: 0.20.2 + dev: true /react-test-renderer/17.0.2_react@17.0.2: resolution: {integrity: sha512-yaQ9cB89c17PUb0x6UfWRs7kQCorVdHlutU1boVPEsB8IDZH6n9tHxMacc3y0JoXOJUsZb/t/Mb8FUWMKaM7iQ==} @@ -35666,21 +35102,8 @@ packages: react-is: 17.0.2 react-shallow-renderer: 16.14.1_react@17.0.2 scheduler: 0.20.2 - dev: true - /react-textarea-autosize/8.3.3: - resolution: {integrity: sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==} - engines: {node: '>=10'} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - use-composed-ref: 1.2.1 - use-latest: 1.2.0 - transitivePeerDependencies: - - '@types/react' - - /react-textarea-autosize/8.3.3_00d6772dea80510e818fd171caaa025a: + /react-textarea-autosize/8.3.3_adlholpkqbiq5amp2fy4vkqcli: resolution: {integrity: sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==} engines: {node: '>=10'} peerDependencies: @@ -35689,23 +35112,40 @@ packages: '@babel/runtime': 7.17.7 react: 17.0.2 use-composed-ref: 1.2.1_react@17.0.2 - use-latest: 1.2.0_00d6772dea80510e818fd171caaa025a + use-latest: 1.2.0_adlholpkqbiq5amp2fy4vkqcli transitivePeerDependencies: - '@types/react' dev: true - /react-transition-group/4.4.2: - resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==} + /react-textarea-autosize/8.3.3_react@16.14.0: + resolution: {integrity: sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==} + engines: {node: '>=10'} peerDependencies: - react: '>=16.6.0' - react-dom: '>=16.6.0' + react: ^16.8.0 || ^17.0.0 dependencies: '@babel/runtime': 7.17.7 - dom-helpers: 5.2.1 - loose-envify: 1.4.0 - prop-types: 15.8.1 + react: 16.14.0 + use-composed-ref: 1.2.1_react@16.14.0 + use-latest: 1.2.0_react@16.14.0 + transitivePeerDependencies: + - '@types/react' + dev: false - /react-transition-group/4.4.2_react-dom@17.0.2+react@17.0.2: + /react-textarea-autosize/8.3.3_react@17.0.2: + resolution: {integrity: sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==} + engines: {node: '>=10'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + dependencies: + '@babel/runtime': 7.17.7 + react: 17.0.2 + use-composed-ref: 1.2.1_react@17.0.2 + use-latest: 1.2.0_react@17.0.2 + transitivePeerDependencies: + - '@types/react' + dev: true + + /react-transition-group/4.4.2_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==} peerDependencies: react: '>=16.6.0' @@ -35717,77 +35157,23 @@ packages: prop-types: 15.8.1 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - dev: false - /react-transition-group/4.4.2_react@17.0.2: - resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==} - peerDependencies: - react: '>=16.6.0' - react-dom: '>=16.6.0' - dependencies: - '@babel/runtime': 7.17.7 - dom-helpers: 5.2.1 - loose-envify: 1.4.0 - prop-types: 15.8.1 - react: 17.0.2 - - /react-use-gesture/9.1.3: + /react-use-gesture/9.1.3_react@16.14.0: resolution: {integrity: sha512-CdqA2SmS/fj3kkS2W8ZU8wjTbVBAIwDWaRprX7OKaj7HlGwBasGEFggmk5qNklknqk9zK/h8D355bEJFTpqEMg==} deprecated: This package is no longer maintained. Please use @use-gesture/react instead peerDependencies: react: '>= 16.8.0' + dependencies: + react: 16.14.0 dev: false - /react-visibility-sensor/5.1.1: + /react-visibility-sensor/5.1.1_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-cTUHqIK+zDYpeK19rzW6zF9YfT4486TIgizZW53wEZ+/GPBbK7cNS0EHyJVyHYacwFEvvHLEKfgJndbemWhB/w==} peerDependencies: react: '>=16.0.0' react-dom: '>=16.0.0' dependencies: prop-types: 15.8.1 - dev: false - - /react-visibility-sensor/5.1.1_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-cTUHqIK+zDYpeK19rzW6zF9YfT4486TIgizZW53wEZ+/GPBbK7cNS0EHyJVyHYacwFEvvHLEKfgJndbemWhB/w==} - peerDependencies: - react: '>=16.0.0' - react-dom: '>=16.0.0' - dependencies: - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - dev: false - - /react-with-direction/1.4.0: - resolution: {integrity: sha512-ybHNPiAmaJpoWwugwqry9Hd1Irl2hnNXlo/2SXQBwbLn/jGMauMS2y9jw+ydyX5V9ICryCqObNSthNt5R94xpg==} - peerDependencies: - react: ^0.14 || ^15 || ^16 - react-dom: ^0.14 || ^15 || ^16 - dependencies: - airbnb-prop-types: 2.16.0 - brcast: 2.0.2 - deepmerge: 1.5.2 - direction: 1.0.4 - hoist-non-react-statics: 3.3.2 - object.assign: 4.1.2 - object.values: 1.1.5 - prop-types: 15.8.1 - dev: false - - /react-with-direction/1.4.0_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-ybHNPiAmaJpoWwugwqry9Hd1Irl2hnNXlo/2SXQBwbLn/jGMauMS2y9jw+ydyX5V9ICryCqObNSthNt5R94xpg==} - peerDependencies: - react: ^0.14 || ^15 || ^16 - react-dom: ^0.14 || ^15 || ^16 - dependencies: - airbnb-prop-types: 2.16.0_react@17.0.2 - brcast: 2.0.2 - deepmerge: 1.5.2 - direction: 1.0.4 - hoist-non-react-statics: 3.3.2 - object.assign: 4.1.2 - object.values: 1.1.5 - prop-types: 15.8.1 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 dev: false @@ -35809,6 +35195,42 @@ packages: react: 17.0.2 dev: false + /react-with-direction/1.4.0_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-ybHNPiAmaJpoWwugwqry9Hd1Irl2hnNXlo/2SXQBwbLn/jGMauMS2y9jw+ydyX5V9ICryCqObNSthNt5R94xpg==} + peerDependencies: + react: ^0.14 || ^15 || ^16 + react-dom: ^0.14 || ^15 || ^16 + dependencies: + airbnb-prop-types: 2.16.0_react@17.0.2 + brcast: 2.0.2 + deepmerge: 1.5.2 + direction: 1.0.4 + hoist-non-react-statics: 3.3.2 + object.assign: 4.1.4 + object.values: 1.1.5 + prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + dev: false + + /react-with-direction/1.4.0_wcqkhtmu7mswc6yz4uyexck3ty: + resolution: {integrity: sha512-ybHNPiAmaJpoWwugwqry9Hd1Irl2hnNXlo/2SXQBwbLn/jGMauMS2y9jw+ydyX5V9ICryCqObNSthNt5R94xpg==} + peerDependencies: + react: ^0.14 || ^15 || ^16 + react-dom: ^0.14 || ^15 || ^16 + dependencies: + airbnb-prop-types: 2.16.0_react@16.14.0 + brcast: 2.0.2 + deepmerge: 1.5.2 + direction: 1.0.4 + hoist-non-react-statics: 3.3.2 + object.assign: 4.1.4 + object.values: 1.1.5 + prop-types: 15.8.1 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 + dev: false + /react-with-styles-interface-css/4.0.3_react-with-styles@3.2.3: resolution: {integrity: sha512-wE43PIyjal2dexxyyx4Lhbcb+E42amoYPnkunRZkb9WTA+Z+9LagbyxwsI352NqMdFmghR0opg29dzDO4/YXbw==} peerDependencies: @@ -35816,10 +35238,10 @@ packages: dependencies: array.prototype.flat: 1.2.5 global-cache: 1.2.1 - react-with-styles: 3.2.3 + react-with-styles: 3.2.3_wunono5fri6mu4ojuug6cyhj7m dev: false - /react-with-styles-interface-css/6.0.0_a74d5b4915426b01704b6ebc781be834: + /react-with-styles-interface-css/6.0.0_u5gvwsivijvqc4cln26hqg7igq: resolution: {integrity: sha512-6khSG1Trf4L/uXOge/ZAlBnq2O2PEXlQEqAhCRbvzaQU4sksIkdwpCPEl6d+DtP3+IdhyffTWuHDO9lhe1iYvA==} peerDependencies: '@babel/runtime': ^7.0.0 @@ -35828,55 +35250,54 @@ packages: '@babel/runtime': 7.17.7 array.prototype.flat: 1.2.5 global-cache: 1.2.1 - react-with-styles: 4.2.0_03b7398ce1646b55869f4c6ae93c0ed1 + react-with-styles: 4.2.0_vnnik6nzwz6bu5mwl5zhriyd4i dev: false - /react-with-styles/3.2.3: - resolution: {integrity: sha512-MTI1UOvMHABRLj5M4WpODfwnveHaip6X7QUMI2x6zovinJiBXxzhA9AJP7MZNaKqg1JRFtHPXZdroUC8KcXwlQ==} - peerDependencies: - react: '>=0.14' - dependencies: - hoist-non-react-statics: 3.3.2 - object.assign: 4.1.2 - prop-types: 15.8.1 - react-with-direction: 1.4.0 - transitivePeerDependencies: - - react-dom - dev: false - - /react-with-styles/3.2.3_react-dom@17.0.2+react@17.0.2: + /react-with-styles/3.2.3_f6ta4w4ch5ogxra4gx65xzrqki: resolution: {integrity: sha512-MTI1UOvMHABRLj5M4WpODfwnveHaip6X7QUMI2x6zovinJiBXxzhA9AJP7MZNaKqg1JRFtHPXZdroUC8KcXwlQ==} peerDependencies: react: '>=0.14' + react-with-direction: ^1.1.0 dependencies: hoist-non-react-statics: 3.3.2 object.assign: 4.1.2 prop-types: 15.8.1 react: 17.0.2 - react-with-direction: 1.4.0_react-dom@17.0.2+react@17.0.2 - transitivePeerDependencies: - - react-dom + react-with-direction: 1.4.0_sfoxds7t5ydpegc3knd667wn6m dev: false /react-with-styles/3.2.3_react@17.0.2: resolution: {integrity: sha512-MTI1UOvMHABRLj5M4WpODfwnveHaip6X7QUMI2x6zovinJiBXxzhA9AJP7MZNaKqg1JRFtHPXZdroUC8KcXwlQ==} peerDependencies: react: '>=0.14' + react-with-direction: ^1.1.0 dependencies: hoist-non-react-statics: 3.3.2 object.assign: 4.1.2 prop-types: 15.8.1 react: 17.0.2 react-with-direction: 1.4.0_react@17.0.2 - transitivePeerDependencies: - - react-dom dev: false - /react-with-styles/4.2.0_03b7398ce1646b55869f4c6ae93c0ed1: + /react-with-styles/3.2.3_wunono5fri6mu4ojuug6cyhj7m: + resolution: {integrity: sha512-MTI1UOvMHABRLj5M4WpODfwnveHaip6X7QUMI2x6zovinJiBXxzhA9AJP7MZNaKqg1JRFtHPXZdroUC8KcXwlQ==} + peerDependencies: + react: '>=0.14' + react-with-direction: ^1.1.0 + dependencies: + hoist-non-react-statics: 3.3.2 + object.assign: 4.1.2 + prop-types: 15.8.1 + react: 16.14.0 + react-with-direction: 1.4.0_wcqkhtmu7mswc6yz4uyexck3ty + dev: false + + /react-with-styles/4.2.0_vnnik6nzwz6bu5mwl5zhriyd4i: resolution: {integrity: sha512-tZCTY27KriRNhwHIbg1NkSdTTOSfXDg6Z7s+Q37mtz0Ym7Sc7IOr3PzVt4qJhJMW6Nkvfi3g34FuhtiGAJCBQA==} peerDependencies: '@babel/runtime': ^7.0.0 react: '>=0.14' + react-with-direction: ^1.3.1 dependencies: '@babel/runtime': 7.17.7 airbnb-prop-types: 2.16.0_react@17.0.2 @@ -35884,9 +35305,7 @@ packages: object.assign: 4.1.2 prop-types: 15.8.1 react: 17.0.2 - react-with-direction: 1.4.0_react@17.0.2 - transitivePeerDependencies: - - react-dom + react-with-direction: 1.4.0_sfoxds7t5ydpegc3knd667wn6m dev: false /react/16.14.0: @@ -35904,8 +35323,9 @@ packages: loose-envify: 1.4.0 object-assign: 4.1.1 - /read-cmd-shim/2.0.0: - resolution: {integrity: sha512-HJpV9bQpkl6KwjxlJcBoqu9Ba0PQg8TqSNIOrulGt54a0uup0HtevreFHzYzkm0lpnleRdNBzXznKrgxglEHQw==} + /read-cmd-shim/3.0.1: + resolution: {integrity: sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dev: true /read-package-json-fast/2.0.3: @@ -36006,7 +35426,7 @@ packages: resolution: {integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==} dependencies: debuglog: 1.0.1 - dezalgo: 1.0.3 + dezalgo: 1.0.4 graceful-fs: 4.2.9 once: 1.4.0 dev: true @@ -36018,6 +35438,8 @@ packages: graceful-fs: 4.2.9 micromatch: 3.1.10 readable-stream: 2.3.7 + transitivePeerDependencies: + - supports-color dev: true optional: true @@ -36038,33 +35460,19 @@ packages: resolution: {integrity: sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==} engines: {node: '>= 0.8.0'} - /reakit-system/0.13.1: + /readline/1.3.0: + resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} + dev: false + + /reakit-system/0.13.1_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-qglfQ53FsJh5+VSkjMtBg7eZiowj9zXOyfJJxfaXh/XYTVe/5ibzWg6rvGHyvSm6C3D7Q2sg/NPCLmCtYGGvQA==} peerDependencies: react: ^16.8.0 react-dom: ^16.8.0 dependencies: - reakit-utils: 0.13.1 - dev: false - - /reakit-system/0.15.2: - resolution: {integrity: sha512-TvRthEz0DmD0rcJkGamMYx+bATwnGNWJpe/lc8UV2Js8nnPvkaxrHk5fX9cVASFrWbaIyegZHCWUBfxr30bmmA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - reakit-utils: 0.15.2 - dev: false - - /reakit-system/0.15.2_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-TvRthEz0DmD0rcJkGamMYx+bATwnGNWJpe/lc8UV2Js8nnPvkaxrHk5fX9cVASFrWbaIyegZHCWUBfxr30bmmA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - reakit-utils: 0.15.2_react-dom@17.0.2+react@17.0.2 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 + reakit-utils: 0.13.1_wcqkhtmu7mswc6yz4uyexck3ty dev: false /reakit-system/0.15.2_react@17.0.2: @@ -36077,35 +35485,46 @@ packages: reakit-utils: 0.15.2_react@17.0.2 dev: false - /reakit-utils/0.13.1: - resolution: {integrity: sha512-NBKgsot3tU91gZgK5MTInI/PR0T3kIsTmbU5MbGggSOcwU2dG/kbE8IrM2lC6ayCSL2W2QWkijT6kewdrIX7Gw==} - peerDependencies: - react: ^16.8.0 - react-dom: ^16.8.0 - dev: false - - /reakit-utils/0.14.4: - resolution: {integrity: sha512-jDEf/NmZVJ6fs10G16ifD+RFhQikSLN7VfjRHu0CPoUj4g6lFXd5PPcRXCY81qiqc9FVHjr2d2fmsw1hs6xUxA==} - peerDependencies: - react: ^16.8.0 - react-dom: ^16.8.0 - dev: false - - /reakit-utils/0.15.2: - resolution: {integrity: sha512-i/RYkq+W6hvfFmXw5QW7zvfJJT/K8a4qZ0hjA79T61JAFPGt23DsfxwyBbyK91GZrJ9HMrXFVXWMovsKBc1qEQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dev: false - - /reakit-utils/0.15.2_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-i/RYkq+W6hvfFmXw5QW7zvfJJT/K8a4qZ0hjA79T61JAFPGt23DsfxwyBbyK91GZrJ9HMrXFVXWMovsKBc1qEQ==} + /reakit-system/0.15.2_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-TvRthEz0DmD0rcJkGamMYx+bATwnGNWJpe/lc8UV2Js8nnPvkaxrHk5fX9cVASFrWbaIyegZHCWUBfxr30bmmA==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: react: 17.0.2 react-dom: 17.0.2_react@17.0.2 + reakit-utils: 0.15.2_sfoxds7t5ydpegc3knd667wn6m + dev: false + + /reakit-system/0.15.2_wcqkhtmu7mswc6yz4uyexck3ty: + resolution: {integrity: sha512-TvRthEz0DmD0rcJkGamMYx+bATwnGNWJpe/lc8UV2Js8nnPvkaxrHk5fX9cVASFrWbaIyegZHCWUBfxr30bmmA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 + reakit-utils: 0.15.2_wcqkhtmu7mswc6yz4uyexck3ty + dev: false + + /reakit-utils/0.13.1_wcqkhtmu7mswc6yz4uyexck3ty: + resolution: {integrity: sha512-NBKgsot3tU91gZgK5MTInI/PR0T3kIsTmbU5MbGggSOcwU2dG/kbE8IrM2lC6ayCSL2W2QWkijT6kewdrIX7Gw==} + peerDependencies: + react: ^16.8.0 + react-dom: ^16.8.0 + dependencies: + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 + dev: false + + /reakit-utils/0.14.4_wcqkhtmu7mswc6yz4uyexck3ty: + resolution: {integrity: sha512-jDEf/NmZVJ6fs10G16ifD+RFhQikSLN7VfjRHu0CPoUj4g6lFXd5PPcRXCY81qiqc9FVHjr2d2fmsw1hs6xUxA==} + peerDependencies: + react: ^16.8.0 + react-dom: ^16.8.0 + dependencies: + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 dev: false /reakit-utils/0.15.2_react@17.0.2: @@ -36117,43 +35536,44 @@ packages: react: 17.0.2 dev: false - /reakit-warning/0.4.1: + /reakit-utils/0.15.2_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-i/RYkq+W6hvfFmXw5QW7zvfJJT/K8a4qZ0hjA79T61JAFPGt23DsfxwyBbyK91GZrJ9HMrXFVXWMovsKBc1qEQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + dev: false + + /reakit-utils/0.15.2_wcqkhtmu7mswc6yz4uyexck3ty: + resolution: {integrity: sha512-i/RYkq+W6hvfFmXw5QW7zvfJJT/K8a4qZ0hjA79T61JAFPGt23DsfxwyBbyK91GZrJ9HMrXFVXWMovsKBc1qEQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 + dev: false + + /reakit-warning/0.4.1_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-AgnRN6cf8DYBF/mK2JEMFVL67Sbon8fDbFy1kfm0EDibtGsMOQtsFYfozZL7TwmJ4yg68VMhg8tmPHchVQRrlg==} peerDependencies: react: ^16.8.0 dependencies: - reakit-utils: 0.13.1 + react: 16.14.0 + reakit-utils: 0.13.1_wcqkhtmu7mswc6yz4uyexck3ty transitivePeerDependencies: - react-dom dev: false - /reakit-warning/0.5.5: + /reakit-warning/0.5.5_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-OuP1r7rlSSJZsoLuc0CPA2ACPKnWO8HDbFktiiidbT67UjuX6udYV1AUsIgMJ8ado9K5gZGjPj7IB/GDYo9Yjg==} peerDependencies: react: ^16.8.0 dependencies: - reakit-utils: 0.14.4 - transitivePeerDependencies: - - react-dom - dev: false - - /reakit-warning/0.6.2: - resolution: {integrity: sha512-z/3fvuc46DJyD3nJAUOto6inz2EbSQTjvI/KBQDqxwB0y02HDyeP8IWOJxvkuAUGkWpeSx+H3QWQFSNiPcHtmw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - dependencies: - reakit-utils: 0.15.2 - transitivePeerDependencies: - - react-dom - dev: false - - /reakit-warning/0.6.2_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-z/3fvuc46DJyD3nJAUOto6inz2EbSQTjvI/KBQDqxwB0y02HDyeP8IWOJxvkuAUGkWpeSx+H3QWQFSNiPcHtmw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - dependencies: - react: 17.0.2 - reakit-utils: 0.15.2_react-dom@17.0.2+react@17.0.2 + react: 16.14.0 + reakit-utils: 0.14.4_wcqkhtmu7mswc6yz4uyexck3ty transitivePeerDependencies: - react-dom dev: false @@ -36169,7 +35589,29 @@ packages: - react-dom dev: false - /reakit/1.1.0: + /reakit-warning/0.6.2_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-z/3fvuc46DJyD3nJAUOto6inz2EbSQTjvI/KBQDqxwB0y02HDyeP8IWOJxvkuAUGkWpeSx+H3QWQFSNiPcHtmw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + dependencies: + react: 17.0.2 + reakit-utils: 0.15.2_sfoxds7t5ydpegc3knd667wn6m + transitivePeerDependencies: + - react-dom + dev: false + + /reakit-warning/0.6.2_wcqkhtmu7mswc6yz4uyexck3ty: + resolution: {integrity: sha512-z/3fvuc46DJyD3nJAUOto6inz2EbSQTjvI/KBQDqxwB0y02HDyeP8IWOJxvkuAUGkWpeSx+H3QWQFSNiPcHtmw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + dependencies: + react: 16.14.0 + reakit-utils: 0.15.2_wcqkhtmu7mswc6yz4uyexck3ty + transitivePeerDependencies: + - react-dom + dev: false + + /reakit/1.1.0_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-d/ERtwgBndBPsyPBPUl5jueyfFgsglIfQCnLMKuxM0PaWiIZ6Ys3XsYaNy/AaG8k46Ee5cQPMdRrR30nVcSToQ==} peerDependencies: react: ^16.8.0 @@ -36177,37 +35619,11 @@ packages: dependencies: '@popperjs/core': 2.11.4 body-scroll-lock: 3.1.5 - reakit-system: 0.13.1 - reakit-utils: 0.13.1 - reakit-warning: 0.4.1 - dev: false - - /reakit/1.3.11: - resolution: {integrity: sha512-mYxw2z0fsJNOQKAEn5FJCPTU3rcrY33YZ/HzoWqZX0G7FwySp1wkCYW79WhuYMNIUFQ8s3Baob1RtsEywmZSig==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@popperjs/core': 2.11.4 - body-scroll-lock: 3.1.5 - reakit-system: 0.15.2 - reakit-utils: 0.15.2 - reakit-warning: 0.6.2 - dev: false - - /reakit/1.3.11_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-mYxw2z0fsJNOQKAEn5FJCPTU3rcrY33YZ/HzoWqZX0G7FwySp1wkCYW79WhuYMNIUFQ8s3Baob1RtsEywmZSig==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@popperjs/core': 2.11.4 - body-scroll-lock: 3.1.5 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - reakit-system: 0.15.2_react-dom@17.0.2+react@17.0.2 - reakit-utils: 0.15.2_react-dom@17.0.2+react@17.0.2 - reakit-warning: 0.6.2_react-dom@17.0.2+react@17.0.2 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 + reakit-system: 0.13.1_wcqkhtmu7mswc6yz4uyexck3ty + reakit-utils: 0.13.1_wcqkhtmu7mswc6yz4uyexck3ty + reakit-warning: 0.4.1_wcqkhtmu7mswc6yz4uyexck3ty dev: false /reakit/1.3.11_react@17.0.2: @@ -36224,6 +35640,36 @@ packages: reakit-warning: 0.6.2_react@17.0.2 dev: false + /reakit/1.3.11_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-mYxw2z0fsJNOQKAEn5FJCPTU3rcrY33YZ/HzoWqZX0G7FwySp1wkCYW79WhuYMNIUFQ8s3Baob1RtsEywmZSig==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@popperjs/core': 2.11.4 + body-scroll-lock: 3.1.5 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + reakit-system: 0.15.2_sfoxds7t5ydpegc3knd667wn6m + reakit-utils: 0.15.2_sfoxds7t5ydpegc3knd667wn6m + reakit-warning: 0.6.2_sfoxds7t5ydpegc3knd667wn6m + dev: false + + /reakit/1.3.11_wcqkhtmu7mswc6yz4uyexck3ty: + resolution: {integrity: sha512-mYxw2z0fsJNOQKAEn5FJCPTU3rcrY33YZ/HzoWqZX0G7FwySp1wkCYW79WhuYMNIUFQ8s3Baob1RtsEywmZSig==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@popperjs/core': 2.11.4 + body-scroll-lock: 3.1.5 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 + reakit-system: 0.15.2_wcqkhtmu7mswc6yz4uyexck3ty + reakit-utils: 0.15.2_wcqkhtmu7mswc6yz4uyexck3ty + reakit-warning: 0.6.2_wcqkhtmu7mswc6yz4uyexck3ty + dev: false + /realpath-native/1.1.0: resolution: {integrity: sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==} engines: {node: '>=4'} @@ -36244,7 +35690,6 @@ packages: esprima: 4.0.1 source-map: 0.6.1 tslib: 2.3.1 - dev: true /rechoir/0.6.2: resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} @@ -36318,7 +35763,7 @@ packages: /regenerator-transform/0.14.5: resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==} dependencies: - '@babel/runtime': 7.16.3 + '@babel/runtime': 7.17.7 /regex-not/1.0.2: resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} @@ -36332,7 +35777,15 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.1.3 + define-properties: 1.1.4 + + /regexp.prototype.flags/1.4.3: + resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + functions-have-names: 1.2.2 /regexpp/2.0.1: resolution: {integrity: sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==} @@ -36528,7 +35981,6 @@ packages: /remove-accents/0.4.2: resolution: {integrity: sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==} - dev: false /remove-trailing-separator/1.1.0: resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} @@ -36562,7 +36014,7 @@ packages: engines: {node: '>=0.10'} /repeating/2.0.1: - resolution: {integrity: sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=} + resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==} engines: {node: '>=0.10.0'} dependencies: is-finite: 1.1.0 @@ -36573,11 +36025,6 @@ packages: engines: {node: '>= 0.10'} dev: true - /replace-ext/1.0.1: - resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==} - engines: {node: '>= 0.10'} - dev: true - /replace/1.2.1: resolution: {integrity: sha512-KZCBe/tPanwBlbjSMQby4l+zjSiFi3CLEP/6VLClnRYgJ46DZ5u9tmA6ceWeFS8coaUnU4ZdGNb/puUGMHNSRg==} engines: {node: '>= 6'} @@ -36655,7 +36102,7 @@ packages: engines: {node: '>=0.10.5'} /requires-port/1.0.0: - resolution: {integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=} + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} dev: true /resolve-alpn/1.2.1: @@ -36693,7 +36140,6 @@ packages: dependencies: expand-tilde: 2.0.2 global-modules: 1.0.0 - dev: true /resolve-from/3.0.0: resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} @@ -36712,7 +36158,7 @@ packages: dev: false /resolve-url/0.2.1: - resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=} + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} deprecated: https://github.com/lydell/resolve-url#deprecated /resolve.exports/1.1.0: @@ -36767,7 +36213,7 @@ packages: engines: {node: '>=0.12'} /retry/0.12.0: - resolution: {integrity: sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=} + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} engines: {node: '>= 4'} dev: true @@ -36795,6 +36241,11 @@ packages: /rgba-regex/1.0.0: resolution: {integrity: sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=} + /rimraf/2.2.8: + resolution: {integrity: sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==} + hasBin: true + dev: false + /rimraf/2.6.3: resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} hasBin: true @@ -36898,7 +36349,7 @@ packages: dev: true /safe-regex/1.1.0: - resolution: {integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=} + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} dependencies: ret: 0.1.15 @@ -36920,6 +36371,8 @@ packages: micromatch: 3.1.10 minimist: 1.2.5 walker: 1.0.8 + transitivePeerDependencies: + - supports-color /sass-loader/10.2.1_sass@1.49.9+webpack@5.70.0: resolution: {integrity: sha512-RRvWl+3K2LSMezIsd008ErK4rk6CulIMSwrcc2aZvjymUgKo/vjXGp1rSWmfTUX7bblEOz8tst4wBwWtCGBqKA==} @@ -36944,6 +36397,30 @@ packages: schema-utils: 3.1.1 semver: 7.3.5 webpack: 5.70.0 + dev: true + + /sass-loader/10.2.1_webpack@5.70.0: + resolution: {integrity: sha512-RRvWl+3K2LSMezIsd008ErK4rk6CulIMSwrcc2aZvjymUgKo/vjXGp1rSWmfTUX7bblEOz8tst4wBwWtCGBqKA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 + sass: ^1.3.0 + webpack: ^4.36.0 || ^5.0.0 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + dependencies: + klona: 2.0.5 + loader-utils: 2.0.2 + neo-async: 2.6.2 + schema-utils: 3.1.1 + semver: 7.3.5 + webpack: 5.70.0 /sass-loader/12.6.0_sass@1.49.9+webpack@5.70.0: resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} @@ -36967,7 +36444,7 @@ packages: klona: 2.0.5 neo-async: 2.6.2 sass: 1.49.9 - webpack: 5.70.0_09a0288cc3aa3015774a489e904fdd90 + webpack: 5.70.0_bgqcrdgdviybk52kjcpjat65sa dev: true /sass-loader/8.0.2_sass@1.49.9+webpack@4.46.0: @@ -37006,7 +36483,7 @@ packages: dev: true /sax/1.2.1: - resolution: {integrity: sha1-e45lYZCyKOgaZq6nSEgNgozS03o=} + resolution: {integrity: sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==} dev: true /sax/1.2.4: @@ -37037,6 +36514,12 @@ packages: loose-envify: 1.4.0 object-assign: 4.1.1 + /scheduler/0.22.0: + resolution: {integrity: sha512-6QAm1BgQI88NPYymgGQLCZgvep4FyePDWFpXVK+zNSUgHwlqpJy8VEh8Et0KxTACS4VWwMousBElAZOH9nkkoQ==} + dependencies: + loose-envify: 1.4.0 + dev: false + /schema-utils/1.0.0: resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} engines: {node: '>= 4'} @@ -37076,7 +36559,7 @@ packages: dependencies: '@types/json-schema': 7.0.9 ajv: 8.8.1 - ajv-formats: 2.1.1 + ajv-formats: 2.1.1_ajv@8.8.1 ajv-keywords: 5.1.0_ajv@8.8.1 /scoped-regex/2.1.0: @@ -37124,25 +36607,6 @@ packages: dependencies: lru-cache: 6.0.0 - /send/0.17.1: - resolution: {integrity: sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==} - engines: {node: '>= 0.8.0'} - dependencies: - debug: 2.6.9 - depd: 1.1.2 - destroy: 1.0.4 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - fresh: 0.5.2 - http-errors: 1.7.3 - mime: 1.6.0 - ms: 2.1.1 - on-finished: 2.3.0 - range-parser: 1.2.1 - statuses: 1.5.0 - dev: true - /send/0.18.0: resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} engines: {node: '>= 0.8.0'} @@ -37160,7 +36624,8 @@ packages: on-finished: 2.4.1 range-parser: 1.2.1 statuses: 2.0.1 - dev: false + transitivePeerDependencies: + - supports-color /sentence-case/1.1.3: resolution: {integrity: sha1-gDSq/CFFdy06vhUJqkLJ4QQtwTk=} @@ -37175,6 +36640,11 @@ packages: tslib: 2.3.1 upper-case-first: 2.0.2 + /serialize-error/2.1.0: + resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==} + engines: {node: '>=0.10.0'} + dev: false + /serialize-javascript/3.1.0: resolution: {integrity: sha512-JIJT1DGiWmIKhzRsG91aS6Ze4sFUrYbltlkg2onR5OrnNM02Kl/hnY/T4FN2omvyeBbQmMJv+K4cPOpGzOTFBg==} dependencies: @@ -37197,7 +36667,6 @@ packages: resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==} dependencies: randombytes: 2.1.0 - dev: true /serve-favicon/2.5.0: resolution: {integrity: sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=} @@ -37210,16 +36679,6 @@ packages: safe-buffer: 5.1.1 dev: true - /serve-static/1.14.1: - resolution: {integrity: sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==} - engines: {node: '>= 0.8.0'} - dependencies: - encodeurl: 1.0.2 - escape-html: 1.0.3 - parseurl: 1.3.3 - send: 0.17.1 - dev: true - /serve-static/1.15.0: resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} engines: {node: '>= 0.8.0'} @@ -37228,7 +36687,8 @@ packages: escape-html: 1.0.3 parseurl: 1.3.3 send: 0.18.0 - dev: false + transitivePeerDependencies: + - supports-color /set-blocking/2.0.0: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} @@ -37246,13 +36706,8 @@ packages: resolution: {integrity: sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=} dev: true - /setprototypeof/1.1.1: - resolution: {integrity: sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==} - dev: true - /setprototypeof/1.2.0: resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - dev: false /sha.js/2.4.11: resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} @@ -37275,7 +36730,6 @@ packages: engines: {node: '>=8'} dependencies: kind-of: 6.0.3 - dev: true /shallowequal/1.1.0: resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} @@ -37301,6 +36755,10 @@ packages: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} + /shell-quote/1.7.3: + resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==} + dev: false + /shelljs/0.8.5: resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} engines: {node: '>=4'} @@ -37340,25 +36798,14 @@ packages: /signal-exit/3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - /simple-git/3.10.0: - resolution: {integrity: sha512-2w35xrS5rVtAW0g67LqtxCZN5cdddz/woQRfS0OJXaljXEoTychZ4jnE+CQgra/wX4ZvHeiChTUMenCwfIYEYw==} + /simple-git/3.14.0: + resolution: {integrity: sha512-Paad1BkrI7vWhImLybDRYOHnh3WPsHSKXJpmKM+iGjjKNV91XaOdd+yIdZ/gqdzncHDEKYff4k+74oNo1R+U8Q==} dependencies: '@kwsites/file-exists': 1.1.1 '@kwsites/promise-deferred': 1.1.1 debug: 4.3.4 transitivePeerDependencies: - supports-color - dev: false - - /simple-git/3.7.1: - resolution: {integrity: sha512-+Osjtsumbtew2y9to0pOYjNzSIr4NkKGBg7Po5SUtjQhaJf2QBmiTX/9E9cv9rmc7oUiSGFIB9e7ys5ibnT9+A==} - dependencies: - '@kwsites/file-exists': 1.1.1 - '@kwsites/promise-deferred': 1.1.1 - debug: 4.3.4 - transitivePeerDependencies: - - supports-color - dev: true /simple-html-tokenizer/0.5.11: resolution: {integrity: sha512-C2WEK/Z3HoSFbYq8tI7ni3eOo/NneSPRoPpcM7WdLjFOArFuyXEjAoCdOC3DgMfRyziZQ1hCNR4mrNdWEvD0og==} @@ -37471,6 +36918,23 @@ packages: source-map: 0.5.7 source-map-resolve: 0.5.3 use: 3.1.1 + transitivePeerDependencies: + - supports-color + + /snapdragon/0.8.2_supports-color@6.1.0: + resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} + engines: {node: '>=0.10.0'} + dependencies: + base: 0.11.2 + debug: 2.6.9_supports-color@6.1.0 + define-property: 0.2.5 + extend-shallow: 2.0.1 + map-cache: 0.2.2 + source-map: 0.5.7 + source-map-resolve: 0.5.3 + use: 3.1.1 + transitivePeerDependencies: + - supports-color /socket.io-client/2.3.0: resolution: {integrity: sha512-cEQQf24gET3rfhxZ2jJ5xzAOo/xhZwK+mOqtGRg5IowZsMgwvHwnf/mCRapAAkadhM26y+iydgwsXGObBB5ZdA==} @@ -37489,6 +36953,10 @@ packages: parseuri: 0.0.5 socket.io-parser: 3.3.2 to-array: 0.1.4 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate dev: false /socket.io-parser/3.3.2: @@ -37497,24 +36965,37 @@ packages: component-emitter: 1.3.0 debug: 3.1.0 isarray: 2.0.1 + transitivePeerDependencies: + - supports-color dev: false - /socks-proxy-agent/6.1.1: - resolution: {integrity: sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==} + /socks-proxy-agent/6.2.1: + resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==} engines: {node: '>= 10'} dependencies: agent-base: 6.0.2 debug: 4.3.4 - socks: 2.6.2 + socks: 2.7.0 transitivePeerDependencies: - supports-color dev: true - /socks/2.6.2: - resolution: {integrity: sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==} + /socks-proxy-agent/7.0.0: + resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} + engines: {node: '>= 10'} + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + socks: 2.7.0 + transitivePeerDependencies: + - supports-color + dev: true + + /socks/2.7.0: + resolution: {integrity: sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA==} engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} dependencies: - ip: 1.1.5 + ip: 2.0.0 smart-buffer: 4.2.0 dev: true @@ -37557,7 +37038,7 @@ packages: abab: 2.0.5 iconv-lite: 0.6.3 source-map-js: 1.0.2 - webpack: 5.70.0_09a0288cc3aa3015774a489e904fdd90 + webpack: 5.70.0_bgqcrdgdviybk52kjcpjat65sa dev: true /source-map-resolve/0.5.3: @@ -37690,6 +37171,13 @@ packages: minipass: 3.1.6 dev: true + /ssri/9.0.1: + resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + minipass: 3.1.6 + dev: true + /stable/0.1.8: resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} @@ -37707,28 +37195,33 @@ packages: /stackframe/1.2.0: resolution: {integrity: sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==} - dev: true + + /stacktrace-parser/0.1.10: + resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==} + engines: {node: '>=6'} + dependencies: + type-fest: 0.7.1 + dev: false /state-toggle/1.0.3: resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} dev: true /static-extend/0.1.2: - resolution: {integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=} + resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} engines: {node: '>=0.10.0'} dependencies: define-property: 0.2.5 object-copy: 0.1.0 /statuses/1.5.0: - resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=} + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} engines: {node: '>= 0.6'} - dev: true + dev: false /statuses/2.0.1: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} - dev: false /stealthy-require/1.1.1: resolution: {integrity: sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==} @@ -37866,8 +37359,8 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.19.1 + define-properties: 1.1.4 + es-abstract: 1.20.2 dev: true /string.prototype.padstart/3.1.3: @@ -37875,8 +37368,8 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.19.1 + define-properties: 1.1.4 + es-abstract: 1.20.2 dev: true /string.prototype.trim/1.2.5: @@ -37884,20 +37377,34 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.19.1 + define-properties: 1.1.4 + es-abstract: 1.20.2 /string.prototype.trimend/1.0.4: resolution: {integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==} dependencies: call-bind: 1.0.2 - define-properties: 1.1.3 + define-properties: 1.1.4 + + /string.prototype.trimend/1.0.5: + resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.2 /string.prototype.trimstart/1.0.4: resolution: {integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==} dependencies: call-bind: 1.0.2 - define-properties: 1.1.3 + define-properties: 1.1.4 + + /string.prototype.trimstart/1.0.5: + resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.2 /string_decoder/0.10.31: resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} @@ -37914,7 +37421,7 @@ packages: safe-buffer: 5.2.1 /strip-ansi/2.0.1: - resolution: {integrity: sha1-32LBqpTtLxFOHQ8h/R1QSCt5pg4=} + resolution: {integrity: sha512-2h8q2CP3EeOhDJ+jd932PRMpa3/pOJFGoF22J1U/DNbEK2gSW2DqeF46VjCXsSQXhC+k/l8/gaaRBQKL6hUPfQ==} engines: {node: '>=0.10.0'} hasBin: true dependencies: @@ -37952,14 +37459,14 @@ packages: ansi-regex: 6.0.1 /strip-bom-buf/1.0.0: - resolution: {integrity: sha1-HLRar1dTD0yvhsf3UXnSyaUd1XI=} + resolution: {integrity: sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ==} engines: {node: '>=4'} dependencies: is-utf8: 0.2.1 dev: true /strip-bom-stream/2.0.0: - resolution: {integrity: sha1-+H217yYT9paKpUWr/h7HKLaoKco=} + resolution: {integrity: sha512-yH0+mD8oahBZWnY43vxs4pSinn8SMKAdml/EOGBewoe1Y0Eitd0h2Mg3ZRiXruUW6L4P+lvZiEgbh0NgUGia1w==} engines: {node: '>=0.10.0'} dependencies: first-chunk-stream: 2.0.0 @@ -37967,7 +37474,7 @@ packages: dev: true /strip-bom/2.0.0: - resolution: {integrity: sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=} + resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} engines: {node: '>=0.10.0'} dependencies: is-utf8: 0.2.1 @@ -38073,7 +37580,7 @@ packages: resolution: {integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.20.2 + browserslist: 4.20.4 postcss: 7.0.39 postcss-selector-parser: 3.1.2 @@ -38088,18 +37595,7 @@ packages: postcss-selector-parser: 6.0.9 dev: true - /stylelint-config-recommended-scss/4.3.0_748c5b2cfae76328890a14c0b5cd0d73: - resolution: {integrity: sha512-/noGjXlO8pJTr/Z3qGMoaRFK8n1BFfOqmAbX1RjTIcl4Yalr+LUb1zb9iQ7pRx1GsEBXOAm4g2z5/jou/pfMPg==} - peerDependencies: - stylelint: ^10.1.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 - stylelint-scss: ^3.0.0 - dependencies: - stylelint: 13.8.0 - stylelint-config-recommended: 5.0.0_stylelint@13.8.0 - stylelint-scss: 3.21.0_stylelint@13.8.0 - dev: true - - /stylelint-config-recommended-scss/4.3.0_d55469ff7b1b68c43b61270d19a60ab6: + /stylelint-config-recommended-scss/4.3.0_2vkgt733dnumio3be4grtjqkwy: resolution: {integrity: sha512-/noGjXlO8pJTr/Z3qGMoaRFK8n1BFfOqmAbX1RjTIcl4Yalr+LUb1zb9iQ7pRx1GsEBXOAm4g2z5/jou/pfMPg==} peerDependencies: stylelint: ^10.1.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 @@ -38110,7 +37606,18 @@ packages: stylelint-scss: 3.21.0_stylelint@13.13.1 dev: true - /stylelint-config-recommended-scss/5.0.2_postcss@8.4.12+stylelint@14.6.0: + /stylelint-config-recommended-scss/4.3.0_osgfwlh245rsrcikctalltinom: + resolution: {integrity: sha512-/noGjXlO8pJTr/Z3qGMoaRFK8n1BFfOqmAbX1RjTIcl4Yalr+LUb1zb9iQ7pRx1GsEBXOAm4g2z5/jou/pfMPg==} + peerDependencies: + stylelint: ^10.1.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 + stylelint-scss: ^3.0.0 + dependencies: + stylelint: 13.8.0 + stylelint-config-recommended: 5.0.0_stylelint@13.8.0 + stylelint-scss: 3.21.0_stylelint@13.8.0 + dev: true + + /stylelint-config-recommended-scss/5.0.2_gnuvbpze6hr4gjidcj2xbzgequ: resolution: {integrity: sha512-b14BSZjcwW0hqbzm9b0S/ScN2+3CO3O4vcMNOw2KGf8lfVSwJ4p5TbNEXKwKl1+0FMtgRXZj6DqVUe/7nGnuBg==} peerDependencies: stylelint: ^14.0.0 @@ -38172,7 +37679,7 @@ packages: dependencies: stylelint: 13.13.1 stylelint-config-recommended: 3.0.0_stylelint@13.13.1 - stylelint-config-recommended-scss: 4.3.0_d55469ff7b1b68c43b61270d19a60ab6 + stylelint-config-recommended-scss: 4.3.0_2vkgt733dnumio3be4grtjqkwy stylelint-scss: 3.21.0_stylelint@13.13.1 dev: true @@ -38222,8 +37729,8 @@ packages: engines: {node: '>=10.13.0'} hasBin: true dependencies: - '@stylelint/postcss-css-in-js': 0.37.2_4f7b71a942b8b7a555b8adf78f88122b - '@stylelint/postcss-markdown': 0.36.2_4f7b71a942b8b7a555b8adf78f88122b + '@stylelint/postcss-css-in-js': 0.37.2_j55xdkkcxc32kvnyvx3y7casfm + '@stylelint/postcss-markdown': 0.36.2_j55xdkkcxc32kvnyvx3y7casfm autoprefixer: 9.8.6 balanced-match: 2.0.0 chalk: 4.1.2 @@ -38249,7 +37756,7 @@ packages: micromatch: 4.0.4 normalize-selector: 0.2.0 postcss: 7.0.39 - postcss-html: 0.36.0_4f7b71a942b8b7a555b8adf78f88122b + postcss-html: 0.36.0_j55xdkkcxc32kvnyvx3y7casfm postcss-less: 3.1.4 postcss-media-query-parser: 0.2.3 postcss-resolve-nested-selector: 0.1.1 @@ -38257,7 +37764,7 @@ packages: postcss-sass: 0.4.4 postcss-scss: 2.1.1 postcss-selector-parser: 6.0.6 - postcss-syntax: 0.36.2_postcss@7.0.39 + postcss-syntax: 0.36.2_kei4jy7wdgbhc236h4oijypxom postcss-value-parser: 4.1.0 resolve-from: 5.0.0 slash: 3.0.0 @@ -38271,6 +37778,8 @@ packages: v8-compile-cache: 2.3.0 write-file-atomic: 3.0.3 transitivePeerDependencies: + - postcss-jsx + - postcss-markdown - supports-color dev: true @@ -38279,8 +37788,8 @@ packages: engines: {node: '>=10.13.0'} hasBin: true dependencies: - '@stylelint/postcss-css-in-js': 0.37.2_4f7b71a942b8b7a555b8adf78f88122b - '@stylelint/postcss-markdown': 0.36.2_4f7b71a942b8b7a555b8adf78f88122b + '@stylelint/postcss-css-in-js': 0.37.2_j55xdkkcxc32kvnyvx3y7casfm + '@stylelint/postcss-markdown': 0.36.2_j55xdkkcxc32kvnyvx3y7casfm autoprefixer: 9.8.6 balanced-match: 1.0.2 chalk: 4.1.2 @@ -38306,7 +37815,7 @@ packages: micromatch: 4.0.4 normalize-selector: 0.2.0 postcss: 7.0.39 - postcss-html: 0.36.0_4f7b71a942b8b7a555b8adf78f88122b + postcss-html: 0.36.0_j55xdkkcxc32kvnyvx3y7casfm postcss-less: 3.1.4 postcss-media-query-parser: 0.2.3 postcss-resolve-nested-selector: 0.1.1 @@ -38314,7 +37823,7 @@ packages: postcss-sass: 0.4.4 postcss-scss: 2.1.1 postcss-selector-parser: 6.0.9 - postcss-syntax: 0.36.2_postcss@7.0.39 + postcss-syntax: 0.36.2_kei4jy7wdgbhc236h4oijypxom postcss-value-parser: 4.2.0 resolve-from: 5.0.0 slash: 3.0.0 @@ -38328,6 +37837,8 @@ packages: v8-compile-cache: 2.3.0 write-file-atomic: 3.0.3 transitivePeerDependencies: + - postcss-jsx + - postcss-markdown - supports-color dev: true @@ -38385,37 +37896,41 @@ packages: resolution: {integrity: sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==} dev: false + /sudo-prompt/9.2.1: + resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==} + dev: false + /sugarss/2.0.0: resolution: {integrity: sha512-WfxjozUk0UVA4jm+U1d736AUpzSrNsQcIbyOkoE364GrtWmIrFdk5lksEupgWMD4VaT/0kVx1dobpiDumSgmJQ==} dependencies: postcss: 7.0.39 dev: true - /superagent/6.1.0: - resolution: {integrity: sha512-OUDHEssirmplo3F+1HWKUrUjvnQuA+nZI6i/JJBdXb5eq9IyEQwPyPpqND+SSsxf6TygpBEkUjISVRN4/VOpeg==} - engines: {node: '>= 7.0.0'} + /superagent/8.0.0: + resolution: {integrity: sha512-iudipXEel+SzlP9y29UBWGDjB+Zzag+eeA1iLosaR2YHBRr1Q1kC29iBrF2zIVD9fqVbpZnXkN/VJmwFMVyNWg==} + engines: {node: '>=6.4.0 <13 || >=14'} dependencies: component-emitter: 1.3.0 cookiejar: 2.1.3 debug: 4.3.4 fast-safe-stringify: 2.1.1 - form-data: 3.0.1 - formidable: 1.2.2 + form-data: 4.0.0 + formidable: 2.0.1 methods: 1.1.2 - mime: 2.5.2 - qs: 6.10.1 + mime: 2.6.0 + qs: 6.10.3 readable-stream: 3.6.0 - semver: 7.3.5 + semver: 7.3.7 transitivePeerDependencies: - supports-color dev: false - /supertest/6.1.6: - resolution: {integrity: sha512-0hACYGNJ8OHRg8CRITeZOdbjur7NLuNs0mBjVhdpxi7hP6t3QIbOzLON5RTUmZcy2I9riuII3+Pr2C7yztrIIg==} - engines: {node: '>=6.0.0'} + /supertest/6.2.4: + resolution: {integrity: sha512-M8xVnCNv+q2T2WXVzxDECvL2695Uv2uUj2O0utxsld/HRyJvOU8W9f1gvsYxSNU4wmIe0/L/ItnpU4iKq0emDA==} + engines: {node: '>=6.4.0'} dependencies: methods: 1.1.2 - superagent: 6.1.0 + superagent: 8.0.0 transitivePeerDependencies: - supports-color dev: false @@ -38531,7 +38046,7 @@ packages: dependencies: call-bind: 1.0.2 get-symbol-description: 1.0.0 - has-symbols: 1.0.2 + has-symbols: 1.0.3 object.getownpropertydescriptors: 2.1.3 dev: true @@ -38588,7 +38103,7 @@ packages: dev: true /taketalk/1.0.0: - resolution: {integrity: sha1-tNTw3u0gauffd1sSnqLKbeUvJt0=} + resolution: {integrity: sha512-kS7E53It6HA8S1FVFBWP7HDwgTiJtkmYk7TsowGlizzVrivR1Mf9mgjXHY1k7rOfozRVMZSfwjB3bevO4QEqpg==} dependencies: get-stdin: 4.0.1 minimist: 1.2.5 @@ -38607,12 +38122,10 @@ packages: /tapable/1.1.3: resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} engines: {node: '>=6'} - dev: true /tapable/2.2.1: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} - dev: true /tar-fs/2.0.0: resolution: {integrity: sha512-vaY0obB6Om/fso8a8vakQBzwholQ7v5+uy+tF3Ozvxv1KNezmVQAiWtcNmMHFSFPqL3dJA8ha6gdtFbfX9mcxA==} @@ -38668,12 +38181,19 @@ packages: memoizerific: 1.11.3 dev: true + /temp/0.8.3: + resolution: {integrity: sha512-jtnWJs6B1cZlHs9wPG7BrowKxZw/rf6+UpGAkr8AaYmiTyTO7zQlLoST8zx/8TcUPnZmeBoB+H8ARuHZaSijVw==} + engines: {'0': node >=0.8.0} + dependencies: + os-tmpdir: 1.0.2 + rimraf: 2.2.8 + dev: false + /temp/0.8.4: resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} engines: {node: '>=6.0.0'} dependencies: rimraf: 2.6.3 - dev: true /term-size/1.2.0: resolution: {integrity: sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=} @@ -38723,6 +38243,8 @@ packages: terser: 4.8.0 webpack: 4.46.0_webpack-cli@3.3.12 webpack-sources: 1.4.3 + transitivePeerDependencies: + - bluebird dev: true /terser-webpack-plugin/4.2.3_acorn@7.4.1+webpack@4.46.0: @@ -38743,6 +38265,28 @@ packages: webpack-sources: 1.4.3 transitivePeerDependencies: - acorn + - bluebird + dev: true + + /terser-webpack-plugin/4.2.3_acorn@8.7.0+webpack@4.46.0: + resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + cacache: 15.3.0 + find-cache-dir: 3.3.2 + jest-worker: 26.6.2 + p-limit: 3.1.0 + schema-utils: 3.1.1 + serialize-javascript: 5.0.1 + source-map: 0.6.1 + terser: 5.10.0_acorn@8.7.0 + webpack: 4.46.0 + webpack-sources: 1.4.3 + transitivePeerDependencies: + - acorn + - bluebird dev: true /terser-webpack-plugin/4.2.3_webpack@4.46.0: @@ -38759,37 +38303,11 @@ packages: serialize-javascript: 5.0.1 source-map: 0.6.1 terser: 5.10.0 - webpack: 4.46.0 + webpack: 4.46.0_webpack-cli@3.3.12 webpack-sources: 1.4.3 transitivePeerDependencies: - acorn - dev: true - - /terser-webpack-plugin/5.2.5_68452f6bf2e2b0e9a0f38b0711e456e0: - resolution: {integrity: sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - dependencies: - jest-worker: 27.5.1 - schema-utils: 3.1.1 - serialize-javascript: 6.0.0 - source-map: 0.6.1 - terser: 5.10.0_acorn@8.7.0 - uglify-js: 3.14.5 - webpack: 5.70.0_09a0288cc3aa3015774a489e904fdd90 - transitivePeerDependencies: - - acorn + - bluebird dev: true /terser-webpack-plugin/5.2.5_acorn@8.7.0+webpack@5.70.0: @@ -38816,9 +38334,8 @@ packages: webpack: 5.70.0_webpack-cli@3.3.12 transitivePeerDependencies: - acorn - dev: true - /terser-webpack-plugin/5.2.5_uglify-js@3.14.5+webpack@5.70.0: + /terser-webpack-plugin/5.2.5_nbcs627s4kyotihtrmdrdzcw4a: resolution: {integrity: sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -38838,35 +38355,9 @@ packages: schema-utils: 3.1.1 serialize-javascript: 6.0.0 source-map: 0.6.1 - terser: 5.10.0 + terser: 5.10.0_acorn@8.7.0 uglify-js: 3.14.5 - webpack: 5.70.0_09a0288cc3aa3015774a489e904fdd90 - transitivePeerDependencies: - - acorn - dev: true - - /terser-webpack-plugin/5.2.5_webpack@5.70.0: - resolution: {integrity: sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - dependencies: - jest-worker: 27.5.1 - schema-utils: 3.1.1 - serialize-javascript: 6.0.0 - source-map: 0.6.1 - terser: 5.10.0 - webpack: 5.70.0 + webpack: 5.70.0_bgqcrdgdviybk52kjcpjat65sa transitivePeerDependencies: - acorn dev: true @@ -38928,7 +38419,6 @@ packages: commander: 2.20.3 source-map: 0.7.3 source-map-support: 0.5.20 - dev: true /test-exclude/5.2.3: resolution: {integrity: sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==} @@ -38949,10 +38439,10 @@ packages: minimatch: 3.1.2 /text-table/0.2.0: - resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - /textextensions/5.14.0: - resolution: {integrity: sha512-4cAYwNFNYlIAHBUo7p6zw8POUvWbZor+/R0Tanv+rIhsauEyV9QSrEXL40pI+GfTQxKX8k6Tyw6CmdSDSmASrg==} + /textextensions/5.15.0: + resolution: {integrity: sha512-MeqZRHLuaGamUXGuVn2ivtU3LA3mLCCIO5kUGoohTCoGmCBg/+8yPhWVX9WSl9telvVd8erftjFk9Fwb2dD6rw==} engines: {node: '>=0.8'} dev: true @@ -38979,7 +38469,6 @@ packages: /throat/5.0.0: resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} - dev: true /throat/6.0.1: resolution: {integrity: sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==} @@ -38997,7 +38486,6 @@ packages: dependencies: readable-stream: 2.3.7 xtend: 4.0.2 - dev: true /timed-out/4.0.1: resolution: {integrity: sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=} @@ -39030,6 +38518,8 @@ packages: livereload-js: 2.4.0 object-assign: 4.1.1 qs: 6.10.3 + transitivePeerDependencies: + - supports-color dev: true /tiny-warning/1.0.3: @@ -39081,7 +38571,7 @@ packages: engines: {node: '>=4'} /to-object-path/0.3.0: - resolution: {integrity: sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=} + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 @@ -39092,7 +38582,7 @@ packages: dev: true /to-regex-range/2.1.1: - resolution: {integrity: sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=} + resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} engines: {node: '>=0.10.0'} dependencies: is-number: 3.0.0 @@ -39116,15 +38606,9 @@ packages: /toggle-selection/1.0.6: resolution: {integrity: sha1-bkWxJj8gF/oKzH2J14sVuL932jI=} - /toidentifier/1.0.0: - resolution: {integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==} - engines: {node: '>=0.6'} - dev: true - /toidentifier/1.0.1: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} - dev: false /totalist/1.1.0: resolution: {integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==} @@ -39183,14 +38667,14 @@ packages: dev: true /trim-repeated/1.0.0: - resolution: {integrity: sha1-42RqLqTokTEr9+rObPsFOAvAHCE=} + resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==} engines: {node: '>=0.10.0'} dependencies: escape-string-regexp: 1.0.5 dev: true /trim-right/1.0.1: - resolution: {integrity: sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=} + resolution: {integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==} engines: {node: '>=0.10.0'} dev: true @@ -39223,42 +38707,7 @@ packages: typescript: 4.6.2 dev: true - /ts-jest/27.1.3_0eb10bc09e4650da5373ef2f7969f30b: - resolution: {integrity: sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - esbuild: ~0.14.0 - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@babel/core': 7.12.9 - '@types/jest': 27.4.1 - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.5.1 - jest-util: 27.5.1 - json5: 2.2.0 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.7 - typescript: 4.4.4 - yargs-parser: 20.2.9 - dev: true - - /ts-jest/27.1.3_11a8855f2c116be91eccf3d0af60dd3e: + /ts-jest/27.1.3_cguikxzmcfv6shwm6pik6yg5hy: resolution: {integrity: sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -39294,7 +38743,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.3_23bc83dd0471d6d2a42908007c85fd69: + /ts-jest/27.1.3_eo6ihxieohlnfjbjbaahzbp5ne: resolution: {integrity: sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -39329,7 +38778,41 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.3_b64eba0a9f1c7068f7f3a75addda5ccd: + /ts-jest/27.1.3_phamqywff5isveidhb4mf5xekm: + resolution: {integrity: sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@types/jest': ^27.0.0 + babel-jest: '>=27.0.0 <28' + esbuild: ~0.14.0 + jest: ^27.0.0 + typescript: '>=3.8 <5.0' + peerDependenciesMeta: + '@babel/core': + optional: true + '@types/jest': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + dependencies: + '@types/jest': 27.4.1 + bs-logger: 0.2.6 + fast-json-stable-stringify: 2.1.0 + jest: 27.5.1 + jest-util: 27.5.1 + json5: 2.2.0 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.3.7 + typescript: 4.4.4 + yargs-parser: 20.2.9 + dev: true + + /ts-jest/27.1.3_wzhlucu7drygr57tu5nn3ws4zu: resolution: {integrity: sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -39363,69 +38846,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-node/10.5.0_506ca6ef959d35afcce359030b1bc9ff: - resolution: {integrity: sha512-6kEJKwVxAJ35W4akuiysfKwKmjkbYxwQMTBaAxo9KKAx/Yd26mPUyhGz3ji+EsJoAgrLqVsYHNuuYwQe22lbtw==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - dependencies: - '@cspotcode/source-map-support': 0.7.0 - '@tsconfig/node10': 1.0.8 - '@tsconfig/node12': 1.0.9 - '@tsconfig/node14': 1.0.1 - '@tsconfig/node16': 1.0.2 - '@types/node': 16.10.3 - acorn: 8.7.0 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 4.6.2 - v8-compile-cache-lib: 3.0.0 - yn: 3.1.1 - dev: true - - /ts-node/10.5.0_e0d88945dfc7787883e9c330c9196a96: - resolution: {integrity: sha512-6kEJKwVxAJ35W4akuiysfKwKmjkbYxwQMTBaAxo9KKAx/Yd26mPUyhGz3ji+EsJoAgrLqVsYHNuuYwQe22lbtw==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - dependencies: - '@cspotcode/source-map-support': 0.7.0 - '@tsconfig/node10': 1.0.8 - '@tsconfig/node12': 1.0.9 - '@tsconfig/node14': 1.0.1 - '@tsconfig/node16': 1.0.2 - '@types/node': 16.10.3 - acorn: 8.7.0 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 4.4.4 - v8-compile-cache-lib: 3.0.0 - yn: 3.1.1 - dev: true - - /ts-node/10.9.1_4f8903243bef6ed5275cb8992723c1d6: + /ts-node/10.9.1_435elrtdaw7tspfnscimedxmsi: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -39440,11 +38861,11 @@ packages: optional: true dependencies: '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.8 - '@tsconfig/node12': 1.0.9 - '@tsconfig/node14': 1.0.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 14.14.33 + '@types/node': 17.0.21 acorn: 8.7.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -39456,6 +38877,68 @@ packages: yn: 3.1.1 dev: false + /ts-node/10.9.1_4dmisro7y54hra7jymymsglksy: + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.3 + '@types/node': 16.10.3 + acorn: 8.7.0 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.4.4 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: true + + /ts-node/10.9.1_kbwkn34vtu227thdlebqwg6j74: + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.3 + '@types/node': 16.10.3 + acorn: 8.7.0 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.6.2 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: true + /ts-pnp/1.2.0_typescript@4.2.4: resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} engines: {node: '>=6'} @@ -39533,6 +39016,16 @@ packages: tslib: 1.14.1 typescript: 4.6.2 + /tsutils/3.21.0_typescript@4.7.4: + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + dependencies: + tslib: 1.14.1 + typescript: 4.7.4 + dev: true + /tty-browserify/0.0.0: resolution: {integrity: sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=} dev: true @@ -39692,7 +39185,6 @@ packages: engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 - dev: true /type-detect/4.0.8: resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} @@ -39731,6 +39223,11 @@ packages: engines: {node: '>=8'} dev: true + /type-fest/0.7.1: + resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==} + engines: {node: '>=8'} + dev: false + /type-fest/0.8.1: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} engines: {node: '>=8'} @@ -39740,7 +39237,7 @@ packages: engines: {node: '>= 0.6'} dependencies: media-typer: 0.3.0 - mime-types: 2.1.34 + mime-types: 2.1.35 /typedarray-to-buffer/3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} @@ -39772,13 +39269,11 @@ packages: resolution: {integrity: sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==} engines: {node: '>=4.2.0'} hasBin: true - dev: true /typescript/4.7.4: resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==} engines: {node: '>=4.2.0'} hasBin: true - dev: true /ua-parser-js/0.7.31: resolution: {integrity: sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==} @@ -39788,6 +39283,16 @@ packages: resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} dev: true + /uglify-es/3.3.9: + resolution: {integrity: sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==} + engines: {node: '>=0.8.0'} + deprecated: support for ECMAScript is superseded by `uglify-js` as of v3.13.0 + hasBin: true + dependencies: + commander: 2.13.0 + source-map: 0.6.1 + dev: false + /uglify-js/3.14.5: resolution: {integrity: sha512-qZukoSxOG0urUTvjc2ERMTcAy+BiFh3weWAkeurLwjrCba73poHmG3E36XEjd/JGukMzwTL7uCxZiAexj8ppvQ==} engines: {node: '>=0.8.0'} @@ -39795,27 +39300,27 @@ packages: requiresBuild: true dev: true - /uglify-js/3.16.0: - resolution: {integrity: sha512-FEikl6bR30n0T3amyBh3LoiBdqHRy/f4H80+My34HOesOKyHfOsxAPAxOoqC0JUnC1amnO0IwkYC3sko51caSw==} - engines: {node: '>=0.8.0'} - hasBin: true - requiresBuild: true - dev: true - /uglify-js/3.17.0: resolution: {integrity: sha512-aTeNPVmgIMPpm1cxXr2Q/nEbvkmV8yq66F3om7X3P/cvOXQ0TMQ64Wk63iyT1gPlmdmGzjGpyLh1f3y8MZWXGg==} engines: {node: '>=0.8.0'} hasBin: true requiresBuild: true dev: true - optional: true /unbox-primitive/1.0.1: resolution: {integrity: sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==} dependencies: function-bind: 1.1.1 - has-bigints: 1.0.1 - has-symbols: 1.0.2 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + + /unbox-primitive/1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + dependencies: + call-bind: 1.0.2 + has-bigints: 1.0.2 + has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 /unbzip2-stream/1.3.3: @@ -39877,6 +39382,7 @@ packages: /unified/6.2.0: resolution: {integrity: sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==} dependencies: + '@types/unist': 2.0.6 bail: 1.0.5 extend: 3.0.2 is-plain-obj: 1.1.0 @@ -39888,6 +39394,7 @@ packages: /unified/9.2.0: resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} dependencies: + '@types/unist': 2.0.6 bail: 1.0.5 extend: 3.0.2 is-buffer: 2.0.5 @@ -39899,6 +39406,7 @@ packages: /unified/9.2.2: resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==} dependencies: + '@types/unist': 2.0.6 bail: 1.0.5 extend: 3.0.2 is-buffer: 2.0.5 @@ -39928,12 +39436,26 @@ packages: unique-slug: 2.0.2 dev: true + /unique-filename/2.0.1: + resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + unique-slug: 3.0.0 + dev: true + /unique-slug/2.0.2: resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} dependencies: imurmurhash: 0.1.4 dev: true + /unique-slug/3.0.0: + resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + imurmurhash: 0.1.4 + dev: true + /unique-string/1.0.0: resolution: {integrity: sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=} engines: {node: '>=4'} @@ -40048,7 +39570,7 @@ packages: resolution: {integrity: sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=} /unset-value/1.0.0: - resolution: {integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=} + resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} engines: {node: '>=0.10.0'} dependencies: has-value: 0.3.1 @@ -40123,7 +39645,7 @@ packages: dev: true /urix/0.1.0: - resolution: {integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=} + resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} deprecated: Please see https://github.com/lydell/urix#deprecated /url-loader/1.1.2_webpack@5.70.0: @@ -40154,7 +39676,7 @@ packages: webpack: 4.46.0_webpack-cli@3.3.12 dev: true - /url-loader/4.1.1_file-loader@6.2.0+webpack@4.46.0: + /url-loader/4.1.1_lit45vopotvaqup7lrvlnvtxwy: resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -40166,7 +39688,7 @@ packages: dependencies: file-loader: 6.2.0_webpack@4.46.0 loader-utils: 2.0.2 - mime-types: 2.1.34 + mime-types: 2.1.35 schema-utils: 3.1.1 webpack: 4.46.0 dev: true @@ -40182,9 +39704,9 @@ packages: optional: true dependencies: loader-utils: 2.0.2 - mime-types: 2.1.34 + mime-types: 2.1.35 schema-utils: 3.1.1 - webpack: 5.70.0_09a0288cc3aa3015774a489e904fdd90 + webpack: 5.70.0_bgqcrdgdviybk52kjcpjat65sa dev: true /url-parse-lax/1.0.0: @@ -40202,7 +39724,7 @@ packages: dev: true /url/0.10.3: - resolution: {integrity: sha1-Ah5NnHcF8hu/N9A861h2dAJ3TGQ=} + resolution: {integrity: sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ==} dependencies: punycode: 1.3.2 querystring: 0.2.0 @@ -40215,10 +39737,13 @@ packages: querystring: 0.2.0 dev: true - /use-composed-ref/1.2.1: + /use-composed-ref/1.2.1_react@16.14.0: resolution: {integrity: sha512-6+X1FLlIcjvFMAeAD/hcxDT8tmyrWnbSPMU0EnxQuDLIxokuFzWliXBiYZuGIx+mrAMLBw0WFfCkaPw8ebzAhw==} peerDependencies: react: ^16.8.0 || ^17.0.0 + dependencies: + react: 16.14.0 + dev: false /use-composed-ref/1.2.1_react@17.0.2: resolution: {integrity: sha512-6+X1FLlIcjvFMAeAD/hcxDT8tmyrWnbSPMU0EnxQuDLIxokuFzWliXBiYZuGIx+mrAMLBw0WFfCkaPw8ebzAhw==} @@ -40236,25 +39761,17 @@ packages: react: 17.0.2 dev: false - /use-enhanced-state/0.0.13: + /use-enhanced-state/0.0.13_react@16.14.0: resolution: {integrity: sha512-RCtUQdhfUXu/0GAQqLnKPetUt3BheYFpOTogppHe9x1XGwluiu6DQLKVNnc3yMfj0HM3IOVBgw5nVJJuZS5TWQ==} peerDependencies: react: ^16.8.0 dependencies: '@itsjonq/is': 0.0.2 + react: 16.14.0 tiny-warning: 1.0.3 dev: false - /use-isomorphic-layout-effect/1.1.1: - resolution: {integrity: sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==} - peerDependencies: - '@types/react': '*' - react: ^16.8.0 || ^17.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - /use-isomorphic-layout-effect/1.1.1_00d6772dea80510e818fd171caaa025a: + /use-isomorphic-layout-effect/1.1.1_adlholpkqbiq5amp2fy4vkqcli: resolution: {integrity: sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==} peerDependencies: '@types/react': '*' @@ -40266,8 +39783,8 @@ packages: '@types/react': 17.0.40 react: 17.0.2 - /use-latest/1.2.0: - resolution: {integrity: sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==} + /use-isomorphic-layout-effect/1.1.1_react@16.14.0: + resolution: {integrity: sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==} peerDependencies: '@types/react': '*' react: ^16.8.0 || ^17.0.0 @@ -40275,10 +39792,11 @@ packages: '@types/react': optional: true dependencies: - use-isomorphic-layout-effect: 1.1.1 + react: 16.14.0 + dev: false - /use-latest/1.2.0_00d6772dea80510e818fd171caaa025a: - resolution: {integrity: sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==} + /use-isomorphic-layout-effect/1.1.1_react@17.0.2: + resolution: {integrity: sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==} peerDependencies: '@types/react': '*' react: ^16.8.0 || ^17.0.0 @@ -40286,15 +39804,48 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 17.0.40 react: 17.0.2 - use-isomorphic-layout-effect: 1.1.1_00d6772dea80510e818fd171caaa025a dev: true - /use-memo-one/1.1.2: - resolution: {integrity: sha512-u2qFKtxLsia/r8qG0ZKkbytbztzRb317XCkT7yP8wxL0tZ/CzK2G+WWie5vWvpyeP7+YoPIwbJoIHJ4Ba4k0oQ==} + /use-latest/1.2.0_adlholpkqbiq5amp2fy4vkqcli: + resolution: {integrity: sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==} peerDependencies: + '@types/react': '*' react: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 17.0.40 + react: 17.0.2 + use-isomorphic-layout-effect: 1.1.1_adlholpkqbiq5amp2fy4vkqcli + dev: true + + /use-latest/1.2.0_react@16.14.0: + resolution: {integrity: sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + react: 16.14.0 + use-isomorphic-layout-effect: 1.1.1_react@16.14.0 + dev: false + + /use-latest/1.2.0_react@17.0.2: + resolution: {integrity: sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + react: 17.0.2 + use-isomorphic-layout-effect: 1.1.1_react@17.0.2 + dev: true /use-memo-one/1.1.2_react@16.14.0: resolution: {integrity: sha512-u2qFKtxLsia/r8qG0ZKkbytbztzRb317XCkT7yP8wxL0tZ/CzK2G+WWie5vWvpyeP7+YoPIwbJoIHJ4Ba4k0oQ==} @@ -40302,7 +39853,6 @@ packages: react: ^16.8.0 || ^17.0.0 dependencies: react: 16.14.0 - dev: true /use-memo-one/1.1.2_react@17.0.2: resolution: {integrity: sha512-u2qFKtxLsia/r8qG0ZKkbytbztzRb317XCkT7yP8wxL0tZ/CzK2G+WWie5vWvpyeP7+YoPIwbJoIHJ4Ba4k0oQ==} @@ -40310,13 +39860,6 @@ packages: react: ^16.8.0 || ^17.0.0 dependencies: react: 17.0.2 - dev: false - - /use-subscription/1.6.0: - resolution: {integrity: sha512-0Y/cTLlZfw547tJhJMoRA16OUbVqRm6DmvGpiGbmLST6BIA5KU5cKlvlz8DVMrACnWpyEjCkgmhLatthP4jUbA==} - peerDependencies: - react: ^18.0.0 - dev: true /use-subscription/1.6.0_react@16.14.0: resolution: {integrity: sha512-0Y/cTLlZfw547tJhJMoRA16OUbVqRm6DmvGpiGbmLST6BIA5KU5cKlvlz8DVMrACnWpyEjCkgmhLatthP4jUbA==} @@ -40332,6 +39875,13 @@ packages: react: ^18.0.0 dependencies: react: 17.0.2 + + /use-sync-external-store/1.2.0_react@16.14.0: + resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + react: 16.14.0 dev: false /use/3.1.1: @@ -40344,16 +39894,16 @@ packages: /util.promisify/1.0.0: resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} dependencies: - define-properties: 1.1.3 + define-properties: 1.1.4 object.getownpropertydescriptors: 2.1.3 /util.promisify/1.1.1: resolution: {integrity: sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw==} dependencies: call-bind: 1.0.2 - define-properties: 1.1.3 + define-properties: 1.1.4 for-each: 0.3.3 - has-symbols: 1.0.2 + has-symbols: 1.0.3 object.getownpropertydescriptors: 2.1.3 dev: false @@ -40369,6 +39919,17 @@ packages: inherits: 2.0.3 dev: true + /util/0.12.4: + resolution: {integrity: sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==} + dependencies: + inherits: 2.0.4 + is-arguments: 1.1.1 + is-generator-function: 1.0.10 + is-typed-array: 1.1.9 + safe-buffer: 5.2.1 + which-typed-array: 1.1.8 + dev: true + /utila/0.4.0: resolution: {integrity: sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=} dev: true @@ -40385,12 +39946,6 @@ packages: resolution: {integrity: sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=} dev: true - /uuid/3.3.2: - resolution: {integrity: sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==} - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true - dev: true - /uuid/3.4.0: resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. @@ -40401,17 +39956,17 @@ packages: hasBin: true dev: false + /uuid/8.0.0: + resolution: {integrity: sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==} + hasBin: true + dev: true + /uuid/8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true - /v8-compile-cache-lib/3.0.0: - resolution: {integrity: sha512-mpSYqfsFvASnSn5qMiwrr4VKfumbPyONLCOPmsR3A6pTY/r0+tSaVbgPWSAIuzbk3lCTa+FForeTiO+wBQGkjA==} - dev: true - /v8-compile-cache-lib/3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - dev: false /v8-compile-cache/2.3.0: resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} @@ -40456,7 +40011,7 @@ packages: spdx-expression-parse: 3.0.1 /validate-npm-package-name/3.0.0: - resolution: {integrity: sha1-X6kS2B630MdK/BQN5zF/DKffQ34=} + resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} dependencies: builtins: 1.0.3 dev: true @@ -40524,7 +40079,7 @@ packages: dev: true /vinyl-file/3.0.0: - resolution: {integrity: sha1-sQTZ5ECf+jJfqt1SBkLQo7SIs2U=} + resolution: {integrity: sha512-BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg==} engines: {node: '>=4'} dependencies: graceful-fs: 4.2.9 @@ -40543,9 +40098,13 @@ packages: clone-stats: 1.0.0 cloneable-readable: 1.1.3 remove-trailing-separator: 1.1.0 - replace-ext: 1.0.1 + replace-ext: 1.0.0 dev: true + /vlq/1.0.1: + resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} + dev: false + /vm-browserify/1.1.2: resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} dev: true @@ -40624,6 +40183,8 @@ packages: requiresBuild: true dependencies: chokidar: 2.1.8 + transitivePeerDependencies: + - supports-color dev: true optional: true @@ -40635,6 +40196,8 @@ packages: optionalDependencies: chokidar: 3.5.3 watchpack-chokidar2: 2.0.1 + transitivePeerDependencies: + - supports-color dev: true /watchpack/2.2.0: @@ -40651,7 +40214,6 @@ packages: dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.9 - dev: true /wcwidth/1.0.1: resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} @@ -40692,17 +40254,21 @@ packages: chalk: 2.4.2 commander: 2.20.3 ejs: 2.7.4 - express: 4.17.1 + express: 4.18.1 filesize: 3.6.1 gzip-size: 5.1.1 lodash: 4.17.21 mkdirp: 0.5.5 opener: 1.5.2 ws: 6.2.2 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate dev: true - /webpack-bundle-analyzer/4.5.0: - resolution: {integrity: sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==} + /webpack-bundle-analyzer/4.6.1: + resolution: {integrity: sha512-oKz9Oz9j3rUciLNfpGFjOb49/jEpXNmWdVH8Ls//zNcnLlQdTGXQQMsBbb/gR7Zl8WNLxVCq+0Hqbx3zv6twBw==} engines: {node: '>= 10.13.0'} hasBin: true dependencies: @@ -40730,7 +40296,7 @@ packages: chalk: 2.4.2 cross-spawn: 6.0.5 enhanced-resolve: 4.5.0 - findup-sync: 3.0.0 + findup-sync: 3.0.0_supports-color@6.1.0 global-modules: 2.0.0 import-local: 2.0.0 interpret: 1.4.0 @@ -40751,7 +40317,7 @@ packages: chalk: 2.4.2 cross-spawn: 6.0.5 enhanced-resolve: 4.5.0 - findup-sync: 3.0.0 + findup-sync: 3.0.0_supports-color@6.1.0 global-modules: 2.0.0 import-local: 2.0.0 interpret: 1.4.0 @@ -40760,9 +40326,8 @@ packages: v8-compile-cache: 2.3.0 webpack: 5.70.0_webpack-cli@3.3.12 yargs: 13.3.2 - dev: true - /webpack-cli/4.9.2_b04de8011015a40c567469bf79798750: + /webpack-cli/4.9.2_l6uyfs2pwihmnqphljbiozjymm: resolution: {integrity: sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -40783,7 +40348,43 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 1.1.1_webpack-cli@4.9.2+webpack@5.70.0 + '@webpack-cli/configtest': 1.1.1_spmstbzrmxjdafr7ccogoqrx6e + '@webpack-cli/info': 1.4.1_webpack-cli@4.9.2 + '@webpack-cli/serve': 1.6.1_webpack-cli@4.9.2 + colorette: 2.0.16 + commander: 7.2.0 + execa: 5.1.1 + fastest-levenshtein: 1.0.12 + import-local: 3.0.3 + interpret: 2.2.0 + rechoir: 0.7.1 + webpack: 5.70.0_bgqcrdgdviybk52kjcpjat65sa + webpack-bundle-analyzer: 4.6.1 + webpack-merge: 5.8.0 + dev: true + + /webpack-cli/4.9.2_wbg6qaiqcwsayvtung7xs6mhka: + resolution: {integrity: sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + '@webpack-cli/generators': '*' + '@webpack-cli/migrate': '*' + webpack: 4.x.x || 5.x.x + webpack-bundle-analyzer: '*' + webpack-dev-server: '*' + peerDependenciesMeta: + '@webpack-cli/generators': + optional: true + '@webpack-cli/migrate': + optional: true + webpack-bundle-analyzer: + optional: true + webpack-dev-server: + optional: true + dependencies: + '@discoveryjs/json-ext': 0.5.7 + '@webpack-cli/configtest': 1.1.1_spmstbzrmxjdafr7ccogoqrx6e '@webpack-cli/info': 1.4.1_webpack-cli@4.9.2 '@webpack-cli/serve': 1.6.1_webpack-cli@4.9.2 colorette: 2.0.16 @@ -40798,42 +40399,6 @@ packages: webpack-merge: 5.8.0 dev: true - /webpack-cli/4.9.2_ef5a9a6d45a146bbab2769a98537c0d5: - resolution: {integrity: sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - '@webpack-cli/generators': '*' - '@webpack-cli/migrate': '*' - webpack: 4.x.x || 5.x.x - webpack-bundle-analyzer: '*' - webpack-dev-server: '*' - peerDependenciesMeta: - '@webpack-cli/generators': - optional: true - '@webpack-cli/migrate': - optional: true - webpack-bundle-analyzer: - optional: true - webpack-dev-server: - optional: true - dependencies: - '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 1.1.1_webpack-cli@4.9.2+webpack@5.70.0 - '@webpack-cli/info': 1.4.1_webpack-cli@4.9.2 - '@webpack-cli/serve': 1.6.1_webpack-cli@4.9.2 - colorette: 2.0.16 - commander: 7.2.0 - execa: 5.1.1 - fastest-levenshtein: 1.0.12 - import-local: 3.0.3 - interpret: 2.2.0 - rechoir: 0.7.1 - webpack: 5.70.0_09a0288cc3aa3015774a489e904fdd90 - webpack-bundle-analyzer: 4.5.0 - webpack-merge: 5.8.0 - dev: true - /webpack-dev-middleware/3.7.3_webpack@4.46.0: resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==} engines: {node: '>= 6'} @@ -40841,7 +40406,7 @@ packages: webpack: ^4.0.0 || ^5.0.0 dependencies: memory-fs: 0.4.1 - mime: 2.5.2 + mime: 2.6.0 mkdirp: 0.5.5 range-parser: 1.2.1 webpack: 4.46.0 @@ -40857,7 +40422,7 @@ packages: colorette: 1.4.0 mem: 8.1.1 memfs: 3.3.0 - mime-types: 2.1.34 + mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 3.1.1 webpack: 5.70.0 @@ -40891,6 +40456,8 @@ packages: anymatch: 3.1.2 portfinder: 1.0.28 tiny-lr: 1.1.1 + transitivePeerDependencies: + - supports-color dev: true /webpack-livereload-plugin/3.0.2_webpack@5.70.0: @@ -40903,7 +40470,9 @@ packages: portfinder: 1.0.28 schema-utils: 4.0.0 tiny-lr: 1.1.1 - webpack: 5.70.0_09a0288cc3aa3015774a489e904fdd90 + webpack: 5.70.0_bgqcrdgdviybk52kjcpjat65sa + transitivePeerDependencies: + - supports-color dev: true /webpack-log/2.0.0: @@ -40962,6 +40531,8 @@ packages: resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==} dependencies: debug: 3.2.7 + transitivePeerDependencies: + - supports-color dev: true /webpack-virtual-modules/0.4.3: @@ -41004,6 +40575,8 @@ packages: terser-webpack-plugin: 1.4.5_webpack@4.46.0 watchpack: 1.7.5 webpack-sources: 1.4.3 + transitivePeerDependencies: + - supports-color dev: true /webpack/4.46.0_webpack-cli@3.3.12: @@ -41043,6 +40616,8 @@ packages: watchpack: 1.7.5 webpack-cli: 3.3.12_webpack@5.70.0 webpack-sources: 1.4.3 + transitivePeerDependencies: + - supports-color dev: true /webpack/5.70.0: @@ -41083,9 +40658,8 @@ packages: - '@swc/core' - esbuild - uglify-js - dev: true - /webpack/5.70.0_09a0288cc3aa3015774a489e904fdd90: + /webpack/5.70.0_bgqcrdgdviybk52kjcpjat65sa: resolution: {integrity: sha512-ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw==} engines: {node: '>=10.13.0'} hasBin: true @@ -41116,9 +40690,9 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.2.5_68452f6bf2e2b0e9a0f38b0711e456e0 + terser-webpack-plugin: 5.2.5_nbcs627s4kyotihtrmdrdzcw4a watchpack: 2.3.1 - webpack-cli: 4.9.2_ef5a9a6d45a146bbab2769a98537c0d5 + webpack-cli: 4.9.2_l6uyfs2pwihmnqphljbiozjymm webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' @@ -41165,7 +40739,6 @@ packages: - '@swc/core' - esbuild - uglify-js - dev: true /webpack/5.70.0_webpack-cli@4.9.2: resolution: {integrity: sha512-ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw==} @@ -41200,7 +40773,7 @@ packages: tapable: 2.2.1 terser-webpack-plugin: 5.2.5_acorn@8.7.0+webpack@5.70.0 watchpack: 2.3.1 - webpack-cli: 4.9.2_b04de8011015a40c567469bf79798750 + webpack-cli: 4.9.2_wbg6qaiqcwsayvtung7xs6mhka webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' @@ -41229,7 +40802,6 @@ packages: /whatwg-fetch/3.6.2: resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==} - dev: true /whatwg-mimetype/2.3.0: resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} @@ -41295,6 +40867,18 @@ packages: path-exists: 4.0.0 dev: true + /which-typed-array/1.1.8: + resolution: {integrity: sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + es-abstract: 1.20.2 + for-each: 0.3.3 + has-tostringtag: 1.0.0 + is-typed-array: 1.1.9 + dev: true + /which/1.3.1: resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} hasBin: true @@ -41314,6 +40898,12 @@ packages: string-width: 2.1.1 dev: true + /wide-align/1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + dependencies: + string-width: 4.2.3 + dev: true + /widest-line/2.0.1: resolution: {integrity: sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==} engines: {node: '>=4'} @@ -41342,7 +40932,7 @@ packages: engines: {node: '>=0.10.0'} /wordwrap/1.0.0: - resolution: {integrity: sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=} + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} dev: true /worker-farm/1.7.0: @@ -41432,7 +41022,6 @@ packages: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - dev: true /wrap-ansi/7.0.0: resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} @@ -41488,18 +41077,42 @@ packages: /ws/5.2.3: resolution: {integrity: sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA==} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true dependencies: async-limiter: 1.0.1 dev: false /ws/6.1.4: resolution: {integrity: sha512-eqZfL+NE/YQc1/ZynhojeV8q+H050oR8AZ2uIev7RU10svA9ZnJUddHcOUZTJLinZ9yEfdA2kSATS2qZK5fhJA==} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true dependencies: async-limiter: 1.0.1 dev: false /ws/6.2.2: resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true dependencies: async-limiter: 1.0.1 @@ -41561,7 +41174,7 @@ packages: dev: true /xmlbuilder/9.0.7: - resolution: {integrity: sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=} + resolution: {integrity: sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==} engines: {node: '>=4.0'} dev: true @@ -41569,7 +41182,7 @@ packages: resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} /xmlcreate/1.0.2: - resolution: {integrity: sha1-+mv3YqYKQT+z3Y9LA8WyaSONMI8=} + resolution: {integrity: sha512-Mbe56Dvj00onbnSo9J0qj/XlY5bfN9KidsOnpd5tRCsR3ekB3hyyNU9fGrTdqNT5ZNvv4BsA2TcQlignsZyVcw==} dev: false /xmlhttprequest-ssl/1.5.5: @@ -41580,7 +41193,6 @@ packages: /xtend/4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} - dev: true /xterm/3.14.5: resolution: {integrity: sha512-DVmQ8jlEtL+WbBKUZuMxHMBgK/yeIZwkXB81bH+MGaKKnJGYwA+770hzhXPfwEIokK9On9YIFPRleVp/5G7z9g==} @@ -41631,7 +41243,6 @@ packages: dependencies: camelcase: 5.3.1 decamelize: 1.2.0 - dev: true /yargs-parser/2.4.1: resolution: {integrity: sha1-hVaN488VD/SfpRgl8DqMiA3cxcQ=} @@ -41644,8 +41255,8 @@ packages: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} engines: {node: '>=10'} - /yargs-parser/21.0.1: - resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==} + /yargs-parser/21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} dev: true @@ -41703,7 +41314,6 @@ packages: which-module: 2.0.0 y18n: 4.0.3 yargs-parser: 18.1.3 - dev: true /yargs/16.2.0: resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} @@ -41727,7 +41337,7 @@ packages: require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 - yargs-parser: 21.0.1 + yargs-parser: 21.1.1 dev: true /yargs/4.8.1: @@ -41749,8 +41359,8 @@ packages: yargs-parser: 2.4.1 dev: true - /yarn/1.22.17: - resolution: {integrity: sha512-H0p241BXaH0UN9IeH//RT82tl5PfNraVpSpEoW+ET7lmopNC61eZ+A+IDvU8FM6Go5vx162SncDL8J1ZjRBriQ==} + /yarn/1.22.19: + resolution: {integrity: sha512-/0V5q0WbslqnwP91tirOvldvYISzaqhClxzyUKXYxs07yUILIs5jx/k6CFe8bvKSkds5w+eiOqta39Wk3WxdcQ==} engines: {node: '>=4.0.0'} hasBin: true requiresBuild: true @@ -41766,10 +41376,13 @@ packages: resolution: {integrity: sha1-AI4G2AlDIMNy28L47XagymyKxBk=} dev: false - /yeoman-environment/3.9.1: - resolution: {integrity: sha512-IdRnbQt/DSOSnao0oD9c+or1X2UrL+fx9eC0O7Lq/MGZV68nhv9k77MqG+hEAySPSlyCpocVlhfQwV62hczk5Q==} + /yeoman-environment/3.10.0: + resolution: {integrity: sha512-sYtSxBK9daq21QjoskJTHKLQ1xEsRPURkmFV/aM8HS8ZlQVzwx57Rz1zCs8EGPhK4vqsmTE8H92Gp1jg1fT3EA==} engines: {node: '>=12.10.0'} hasBin: true + peerDependencies: + mem-fs: ^1.2.0 || ^2.0.0 + mem-fs-editor: ^8.1.2 || ^9.0.0 dependencies: '@npmcli/arborist': 4.3.1 are-we-there-yet: 2.0.0 @@ -41780,19 +41393,18 @@ packages: commander: 7.1.0 dateformat: 4.6.3 debug: 4.3.4 - diff: 5.0.0 + diff: 5.1.0 error: 10.4.0 escape-string-regexp: 4.0.0 execa: 5.1.1 find-up: 5.0.0 globby: 11.1.0 grouped-queue: 2.0.0 - inquirer: 8.2.0 + inquirer: 8.2.4 is-scoped: 2.1.0 + isbinaryfile: 4.0.10 lodash: 4.17.21 log-symbols: 4.1.0 - mem-fs: 2.2.1 - mem-fs-editor: 9.4.0_mem-fs@2.2.1 minimatch: 3.1.2 npmlog: 5.0.1 p-queue: 6.6.2 @@ -41800,18 +41412,68 @@ packages: pacote: 12.0.3 preferred-pm: 3.0.3 pretty-bytes: 5.6.0 - semver: 7.3.5 + semver: 7.3.7 slash: 3.0.0 strip-ansi: 6.0.1 text-table: 0.2.0 - textextensions: 5.14.0 + textextensions: 5.15.0 untildify: 4.0.0 transitivePeerDependencies: + - bluebird - supports-color dev: true - /yeoman-generator/5.6.1_yeoman-environment@3.9.1: - resolution: {integrity: sha512-XllgFvmDEwoPMq2rKtL4/N52WlINJW6a3I3XtlCrMb3/dqO5dW0nPNgR0L3IIUIdf9y1EHb1ZFMs2Qp3ZEEFxg==} + /yeoman-environment/3.10.0_7yoz4vugw4qcykie6sit5r22dm: + resolution: {integrity: sha512-sYtSxBK9daq21QjoskJTHKLQ1xEsRPURkmFV/aM8HS8ZlQVzwx57Rz1zCs8EGPhK4vqsmTE8H92Gp1jg1fT3EA==} + engines: {node: '>=12.10.0'} + hasBin: true + peerDependencies: + mem-fs: ^1.2.0 || ^2.0.0 + mem-fs-editor: ^8.1.2 || ^9.0.0 + dependencies: + '@npmcli/arborist': 4.3.1 + are-we-there-yet: 2.0.0 + arrify: 2.0.1 + binaryextensions: 4.18.0 + chalk: 4.1.2 + cli-table: 0.3.11 + commander: 7.1.0 + dateformat: 4.6.3 + debug: 4.3.4 + diff: 5.1.0 + error: 10.4.0 + escape-string-regexp: 4.0.0 + execa: 5.1.1 + find-up: 5.0.0 + globby: 11.1.0 + grouped-queue: 2.0.0 + inquirer: 8.2.4 + is-scoped: 2.1.0 + isbinaryfile: 4.0.10 + lodash: 4.17.21 + log-symbols: 4.1.0 + mem-fs: 2.2.1 + mem-fs-editor: 9.5.0_mem-fs@2.2.1 + minimatch: 3.1.2 + npmlog: 5.0.1 + p-queue: 6.6.2 + p-transform: 1.3.0 + pacote: 12.0.3 + preferred-pm: 3.0.3 + pretty-bytes: 5.6.0 + semver: 7.3.7 + slash: 3.0.0 + strip-ansi: 6.0.1 + text-table: 0.2.0 + textextensions: 5.15.0 + untildify: 4.0.0 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /yeoman-generator/5.7.0_yeoman-environment@3.10.0: + resolution: {integrity: sha512-z9ZwgKoDOd+llPDCwn8Ax2l4In5FMhlslxdeByW4AMxhT+HbTExXKEAahsClHSbwZz1i5OzRwLwRIUdOJBr5Bw==} engines: {node: '>=12.10.0'} peerDependencies: yeoman-environment: ^3.2.0 @@ -41822,17 +41484,17 @@ packages: chalk: 4.1.2 dargs: 7.0.0 debug: 4.3.4 - execa: 4.1.0 + execa: 5.1.1 github-username: 6.0.0 lodash: 4.17.21 minimist: 1.2.5 read-pkg-up: 7.0.1 run-async: 2.4.1 - semver: 7.3.5 + semver: 7.3.7 shelljs: 0.8.5 sort-keys: 4.2.0 text-table: 0.2.0 - yeoman-environment: 3.9.1 + yeoman-environment: 3.10.0_7yoz4vugw4qcykie6sit5r22dm transitivePeerDependencies: - encoding - supports-color @@ -41845,7 +41507,6 @@ packages: /yocto-queue/0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} - dev: true /yosay/2.0.2: resolution: {integrity: sha512-avX6nz2esp7IMXGag4gu6OyQBsMh/SEn+ZybGu3yKPlOTE6z9qJrzG/0X5vCq/e0rPFy0CUYCze0G5hL310ibA==} @@ -41877,14 +41538,16 @@ packages: '@babel/core': 7.17.8 '@babel/preset-env': 7.16.11_@babel+core@7.17.8 '@slack/web-api': 5.15.0 - '@wordpress/e2e-test-utils': 3.0.0_jest@24.9.0+puppeteer@2.1.1 + '@wordpress/e2e-test-utils': 3.0.0_lawbsmxtcxar2rt6ez6hclrarm config: 3.3.7 eslint: 6.7.2 jest: 24.9.0 prettier: /wp-prettier/1.19.1 puppeteer: 2.1.1 transitivePeerDependencies: + - bufferutil - debug - react-native - supports-color + - utf-8-validate dev: false diff --git a/tools/cherry-pick/package.json b/tools/cherry-pick/package.json index be637957c11..6bfc360cdc1 100644 --- a/tools/cherry-pick/package.json +++ b/tools/cherry-pick/package.json @@ -11,8 +11,7 @@ "license": "GPLv3", "repository": "woocommerce/woocommerce", "engines": { - "node": "^16.13.1", - "pnpm": "^6.24.2" + "node": "^16.13.1" }, "dependencies": { "node-fetch": "^3.2.6", diff --git a/tools/code-analyzer/README.md b/tools/code-analyzer/README.md index 3f0f1a7df54..340da2d4f4e 100644 --- a/tools/code-analyzer/README.md +++ b/tools/code-analyzer/README.md @@ -10,7 +10,7 @@ Currently there are just 2 commands: 1. `lint`. Analyzer is used as a linter for PRs to check if hook/template/db changes were introduced. It produces output either directly on CI or via GH actions `set-output`. -Here is an example `analyzer` command: +Here is an example `analyzer` command, run from this directory: `pnpm run analyzer -- lint "release/6.8" "6.8.0" -b release/6.7` @@ -20,7 +20,7 @@ To find out more about the other arguments to the command you can run `pnpm run 2. `major-minor`. This simple CLI tool gives you the latest `.0` major/minor released version of a plugin's mainfile based on Woo release conventions. -Here is an example `major-minor` command: +Here is an example `major-minor` command, run from this directory: `pnpm run analyzer major-minor -- "release/6.8" "plugins/woocommerce/woocommerce.php"` diff --git a/tools/code-analyzer/src/lib/scan-changes.ts b/tools/code-analyzer/src/lib/scan-changes.ts index 78157cf9d24..a6f36514128 100644 --- a/tools/code-analyzer/src/lib/scan-changes.ts +++ b/tools/code-analyzer/src/lib/scan-changes.ts @@ -13,6 +13,7 @@ import { scanForDBChanges } from './db-changes'; import { scanForHookChanges } from './hook-changes'; import { scanForTemplateChanges } from './template-changes'; import { SchemaDiff, generateSchemaDiff } from '../git'; +import { readFile } from 'fs/promises'; export const scanForChanges = async ( compareVersion: string, @@ -54,6 +55,19 @@ export const scanForChanges = async ( if ( ! skipSchemaCheck ) { const build = async () => { + const fileStr = await readFile( + join( pluginPath, 'package.json' ), + 'utf-8' + ); + const packageJSON = JSON.parse( fileStr ); + + if ( packageJSON.engines && packageJSON.engines.pnpm ) { + await execAsync( + `npm i -g pnpm@${ packageJSON.engines.pnpm }`, + { cwd: pluginPath } + ); + } + // Note doing the minimal work to get a DB scan to work, avoiding full build for speed. await execAsync( 'composer install', { cwd: pluginPath } ); await execAsync( diff --git a/tools/monorepo-merge/package.json b/tools/monorepo-merge/package.json index 5ddb93d031b..c273aa48adb 100644 --- a/tools/monorepo-merge/package.json +++ b/tools/monorepo-merge/package.json @@ -53,7 +53,7 @@ }, "scripts": { "turbo:build": "shx rm -rf dist && tsc -b", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", "lint": "eslint . --ext .ts --config .eslintrc", "postpack": "shx rm -f oclif.manifest.json", "posttest": "pnpm lint", diff --git a/tools/package-release/package.json b/tools/package-release/package.json index e1aefe95c32..84cdab461ee 100644 --- a/tools/package-release/package.json +++ b/tools/package-release/package.json @@ -50,7 +50,7 @@ }, "scripts": { "turbo:build": "shx rm -rf dist && tsc -b", - "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", "lint": "eslint . --ext .ts --config .eslintrc", "postpack": "shx rm -f oclif.manifest.json", "posttest": "pnpm lint",