diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index f765b0916f..52f53702a7 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -25,12 +25,6 @@ inputs: runs: using: "composite" steps: - - name: Get pnpm-version - shell: bash - id: pnpm-version - run: | - echo "::set-output name=val::$(cat .pnpm-version)" - # setup docker buildx - name: setup docker buildx uses: docker/setup-buildx-action@v1 @@ -67,8 +61,6 @@ runs: tags: ${{ steps.metadata_staging.outputs.tags }} labels: ${{ steps.metadata_staging.outputs.labels }} push: true - build-args: | - PNPM_VERSION=${{ steps.pnpm-version.outputs.val }} # for production # gather metadata from git & github actions to reference in docker @@ -94,5 +86,3 @@ runs: tags: ${{ steps.metadata_production.outputs.tags }} labels: ${{ steps.metadata_production.outputs.labels }} push: true - build-args: | - PNPM_VERSION=${{ steps.pnpm-version.outputs.val }} diff --git a/.github/actions/setup-node-env/action.yml b/.github/actions/setup-node-env/action.yml index 2dbc5ed8ae..9578bb0f9b 100644 --- a/.github/actions/setup-node-env/action.yml +++ b/.github/actions/setup-node-env/action.yml @@ -9,14 +9,12 @@ inputs: runs: using: "composite" steps: - - uses: pnpm/action-setup@v2.0.1 - with: - version: 6.30.1 + - uses: pnpm/action-setup@v2.2.1 - name: Cache pnpm modules uses: actions/cache@v2 with: - path: ~/.pnpm-store + path: ~/.local/share/pnpm/store key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}- diff --git a/.github/workflows/ghcr.yml b/.github/workflows/ghcr.yml index b4e58f4ed1..caea805c79 100644 --- a/.github/workflows/ghcr.yml +++ b/.github/workflows/ghcr.yml @@ -35,16 +35,9 @@ jobs: type=sha type=ref,event=tag - - name: Get pnpm-version - id: pnpm-version - run: | - echo "::set-output name=val::$(cat .pnpm-version)" - - uses: docker/build-push-action@v2 with: context: . tags: ${{ steps.metadata.outputs.tags }} labels: ${{ steps.metadata.outputs.labels }} push: true - build-args: | - PNPM_VERSION=${{ steps.pnpm-version.outputs.val }} diff --git a/.pnpm-version b/.pnpm-version deleted file mode 100644 index 8a00ab7df5..0000000000 --- a/.pnpm-version +++ /dev/null @@ -1 +0,0 @@ -6.32.11 diff --git a/Dockerfile b/Dockerfile index 935763078d..2e368f773c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,6 @@ FROM node:16-alpine -ARG PNPM_VERSION - -RUN npm install -g pnpm@${PNPM_VERSION} pm2@5.2.0 +RUN npm install -g pnpm pm2@5.2.0 USER node diff --git a/Dockerfile.playwright b/Dockerfile.playwright index 7dc22c195c..b2056dfc94 100644 --- a/Dockerfile.playwright +++ b/Dockerfile.playwright @@ -1,6 +1,5 @@ ARG PLAYWRIGHT_VERSION -ARG PNPM_VERSION FROM mcr.microsoft.com/playwright:v${PLAYWRIGHT_VERSION}-focal -RUN npm install -g pnpm@${PNPM_VERSION} +RUN npm install -g pnpm diff --git a/README.md b/README.md index 5a249ba7fa..442c949deb 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ We use [Volta](https://volta.sh/) to manage our local environment tools. Please Once you have volta installed, manually install `pnpm` using volta. [Volta does not currently officially support `pnpm`](https://github.com/volta-cli/volta/issues/737) so this is a stop gap solution until that support is implemented: ```bash -volta install pnpm@$(cat .pnpm-version) +volta install pnpm ``` Run the following commands in order to have the code up and running on your machine: @@ -115,7 +115,7 @@ We do not currently support local development using Docker or `docker-compose`. However, we do build and actively deploy the frontend using Docker images. If you wish to build the production image for yourself, run the following: ```shell -docker build . --build-arg PNPM_VERSION=$(cat .pnpm-version) -t openverse-frontend:latest +docker build . -t openverse-frontend:latest ``` You can also find the latest `openverse-frontend` images on our [GitHub packages page](https://github.com/WordPress/openverse-frontend/pkgs/container/openverse-frontend). diff --git a/bin/playwright.sh b/bin/playwright.sh index 5aa1a6264c..275e425ef3 100755 --- a/bin/playwright.sh +++ b/bin/playwright.sh @@ -8,7 +8,6 @@ export USER_ID=${USER_ID:-$(id -u)} export PLAYWRIGHT_ARGS=$@ export PLAYWRIGHT_VERSION=$(version) export TEST_COMMAND=${TEST_COMMAND:-test:playwright:local} -export PNPM_VERSION=$(cat .pnpm-version) echo Running Playwright v$PLAYWRIGHT_VERSION as $USER_ID with Playwright arguments $PLAYWRIGHT_ARGS diff --git a/docker-compose.playwright.yml b/docker-compose.playwright.yml index ae53bfbf72..d768d9d4f1 100644 --- a/docker-compose.playwright.yml +++ b/docker-compose.playwright.yml @@ -6,7 +6,6 @@ services: dockerfile: Dockerfile.playwright args: - PLAYWRIGHT_VERSION=${PLAYWRIGHT_VERSION} - - PNPM_VERSION=${PNPM_VERSION} volumes: - .:/app user: ${USER_ID} diff --git a/package.json b/package.json index 7d72423ff3..aafc7f3f9a 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,7 @@ "name": "openverse-frontend", "version": "2.2.1", "description": "Openverse", + "packageManager": "pnpm@7.1.0", "repository": { "type": "git", "url": "git+https://github.com/wordpress/openverse-frontend.git" @@ -58,6 +59,7 @@ "dependencies": { "@nuxt/components": "^2.1.6", "@nuxt/postcss8": "^1.1.3", + "@nuxt/vue-app": "^2.15.8", "@nuxtjs/composition-api": "^0.32.0", "@nuxtjs/i18n": "^7.0.3", "@nuxtjs/redirect-module": "^0.3.1", @@ -91,9 +93,11 @@ "seeded-rand": "^2.0.1", "throttle-debounce": "^4.0.1", "uuid": "^8.3.2", + "vue": "^2.6.14", "vue-i18n": "^8.26.7" }, "devDependencies": { + "@babel/core": "^7.17.10", "@babel/eslint-parser": "^7.17.0", "@babel/preset-typescript": "^7.16.7", "@babel/runtime-corejs3": "^7.17.9", @@ -105,6 +109,7 @@ "@nuxtjs/style-resources": "^1.0.0", "@pinia/testing": "^0.0.11", "@playwright/test": "^1.20.2", + "@testing-library/dom": "^8.13.0", "@testing-library/jest-dom": "^5.16.1", "@testing-library/user-event": "^13.5.0", "@testing-library/vue": "^5.8.2", @@ -112,6 +117,7 @@ "@types/jest": "^26.0.22", "@types/lodash.sortby": "^4.7.7", "@types/module-alias": "^2.0.1", + "@types/node": "^17.0.32", "@types/uuid": "^8.3.4", "@typescript-eslint/eslint-plugin": "^5.20.0", "@typescript-eslint/parser": "^5.20.0", @@ -119,6 +125,7 @@ "@vue/test-utils": "^1.1.3", "autoprefixer": "^10.4.0", "babel-jest": "^26.6.3", + "babel-loader": "8.2.5", "eslint": "^8.13.0", "eslint-config-prettier": "^8.5.0", "eslint-import-resolver-custom-alias": "^1.3.0", @@ -147,11 +154,26 @@ "typescript": "^4.6.2", "vue-i18n-extract": "^2.0.0", "vue-jest": "^3.0.7", - "vue-tsc": "^0.34.7" + "vue-template-compiler": "^2.6.14", + "vue-tsc": "^0.34.7", + "webpack": "^4.46.0" + }, + "pnpm": { + "peerDependencyRules": { + "ignoreMissing": [ + "react", + "react-dom", + "consola" + ], + "allowedVersions": { + "babel-core": "7.0.0-bridge.0", + "postcss": "5.2.18" + } + } }, "engines": { - "node": ">= 16.0.0", - "pnpm": ">= 6.24.0" + "node": ">= 16.0.0 <17", + "pnpm": ">= 7.1.0" }, "browserslist": [ "> 1%", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 775e1d2ee9..dbed4bd6bb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,6 +1,7 @@ -lockfileVersion: 5.3 +lockfileVersion: 5.4 specifiers: + '@babel/core': ^7.17.10 '@babel/eslint-parser': ^7.17.0 '@babel/preset-typescript': ^7.16.7 '@babel/runtime-corejs3': ^7.17.9 @@ -9,6 +10,7 @@ specifiers: '@nuxt/postcss8': ^1.1.3 '@nuxt/types': ^2.15.4 '@nuxt/typescript-build': ^2.1.0 + '@nuxt/vue-app': ^2.15.8 '@nuxtjs/composition-api': ^0.32.0 '@nuxtjs/eslint-module': ^3.0.2 '@nuxtjs/i18n': ^7.0.3 @@ -24,6 +26,7 @@ specifiers: '@popperjs/core': ^2.11.2 '@tailwindcss/line-clamp': ^0.3.1 '@tailwindcss/typography': ^0.5.2 + '@testing-library/dom': ^8.13.0 '@testing-library/jest-dom': ^5.16.1 '@testing-library/user-event': ^13.5.0 '@testing-library/vue': ^5.8.2 @@ -31,6 +34,7 @@ specifiers: '@types/jest': ^26.0.22 '@types/lodash.sortby': ^4.7.7 '@types/module-alias': ^2.0.1 + '@types/node': ^17.0.32 '@types/uuid': ^8.3.4 '@typescript-eslint/eslint-plugin': ^5.20.0 '@typescript-eslint/parser': ^5.20.0 @@ -42,6 +46,7 @@ specifiers: axios-mock-adapter: ^1.20.0 babel-core: ^7.0.0-bridge.0 babel-jest: ^26.6.3 + babel-loader: 8.2.5 build-url: ^6.0.1 case: ^1.6.3 clipboard: ^2.0.8 @@ -86,28 +91,32 @@ specifiers: ts-node: ^10.7.0 typescript: ^4.6.2 uuid: ^8.3.2 + vue: ^2.6.14 vue-i18n: ^8.26.7 vue-i18n-extract: ^2.0.0 vue-jest: ^3.0.7 + vue-template-compiler: ^2.6.14 vue-tsc: ^0.34.7 + webpack: ^4.46.0 dependencies: '@nuxt/components': 2.2.1 - '@nuxt/postcss8': 1.1.3 - '@nuxtjs/composition-api': 0.32.0_f76cbbf5da9c2936d5fdbb58483aa887 + '@nuxt/postcss8': 1.1.3_webpack@4.46.0 + '@nuxt/vue-app': 2.15.8 + '@nuxtjs/composition-api': 0.32.0_efpv4fxq5hpknftnxyzfo2vyxy '@nuxtjs/i18n': 7.2.0 '@nuxtjs/redirect-module': 0.3.1 '@nuxtjs/sentry': 5.1.6 '@nuxtjs/sitemap': 2.4.0 - '@nuxtjs/svg': 0.4.0 - '@pinia/nuxt': 0.1.8_pinia@2.0.13 + '@nuxtjs/svg': 0.4.0_6s5yfuw2cucs6uldabpyypzlau + '@pinia/nuxt': 0.1.8_pinia@2.0.13+vue@2.6.14 '@popperjs/core': 2.11.2 '@tailwindcss/line-clamp': 0.3.1_tailwindcss@3.0.23 '@tailwindcss/typography': 0.5.2_tailwindcss@3.0.23 '@wordpress/is-shallow-equal': 4.8.0 axios: 0.26.1 axios-mock-adapter: 1.20.0_axios@0.26.1 - babel-core: 7.0.0-bridge.0 + babel-core: 7.0.0-bridge.0_@babel+core@7.17.10 build-url: 6.0.1 case: 1.6.3 clipboard: 2.0.8 @@ -115,52 +124,57 @@ dependencies: core-js: 3.22.5 express-useragent: 1.0.15 focus-trap: 6.7.1 - focus-trap-vue: 1.1.1_focus-trap@6.7.1 + focus-trap-vue: 1.1.1_ww4o2appb4ncfu23ooisleyiie focus-visible: 5.2.0 glob: 8.0.1 node-html-parser: 5.3.3 - nuxt: 2.15.8_typescript@4.6.2 - pinia: 2.0.13_typescript@4.6.2 + nuxt: 2.15.8_wl2mvxm2ma5s7sz3dfofdm4k7q + pinia: 2.0.13_k3kegkzgmpj55t3l5d75ppieg4 postcss-focus-visible: 6.0.4_postcss@8.4.12 reakit-utils: 0.15.2 rfdc: 1.3.0 seeded-rand: 2.0.1 throttle-debounce: 4.0.1 uuid: 8.3.2 + vue: 2.6.14 vue-i18n: 8.26.7 devDependencies: - '@babel/eslint-parser': 7.17.0_eslint@8.15.0 - '@babel/preset-typescript': 7.16.7 + '@babel/core': 7.17.10 + '@babel/eslint-parser': 7.17.0_annt2i75qyqp7sfsklqkwkfeaa + '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 '@babel/runtime-corejs3': 7.17.9 '@intlify/eslint-plugin-vue-i18n': 1.4.0_eslint@8.15.0 - '@nuxt/types': 2.15.8 - '@nuxt/typescript-build': 2.1.0_@nuxt+types@2.15.8+eslint@8.15.0 - '@nuxtjs/eslint-module': 3.0.2_eslint@8.15.0 - '@nuxtjs/storybook': 4.3.0_eslint@8.15.0+typescript@4.6.2 + '@nuxt/types': 2.15.8_webpack@4.46.0 + '@nuxt/typescript-build': 2.1.0_wleosmb2b277pdfnwfuy3rhafi + '@nuxtjs/eslint-module': 3.0.2_nufgqnzswjkgegnrzqvmbqhove + '@nuxtjs/storybook': 4.3.0_li6sx5er3n6ni6nfyx7d3q67pi '@nuxtjs/style-resources': 1.2.1 - '@pinia/testing': 0.0.11_pinia@2.0.13 + '@pinia/testing': 0.0.11_pinia@2.0.13+vue@2.6.14 '@playwright/test': 1.20.2 + '@testing-library/dom': 8.13.0 '@testing-library/jest-dom': 5.16.1 - '@testing-library/user-event': 13.5.0 - '@testing-library/vue': 5.8.2 + '@testing-library/user-event': 13.5.0_tlwynutqiyp5mns3woioasuxnq + '@testing-library/vue': 5.8.2_sbs6or2oam5i4s4vmfp4rzwdnq '@types/express-useragent': 1.0.2 '@types/jest': 26.0.24 '@types/lodash.sortby': 4.7.7 '@types/module-alias': 2.0.1 + '@types/node': 17.0.32 '@types/uuid': 8.3.4 - '@typescript-eslint/eslint-plugin': 5.23.0_dd2e9c733d57b00345e0b8fe5856baba - '@typescript-eslint/parser': 5.23.0_eslint@8.15.0+typescript@4.6.2 + '@typescript-eslint/eslint-plugin': 5.23.0_3uxjy4z5k6yagrpaxd7fqvv2xi + '@typescript-eslint/parser': 5.23.0_2qyr5yzk6bquedgydwits76m2m '@vue/runtime-dom': 3.2.31 - '@vue/test-utils': 1.1.3 + '@vue/test-utils': 1.1.3_sbs6or2oam5i4s4vmfp4rzwdnq autoprefixer: 10.4.0_postcss@8.4.12 - babel-jest: 26.6.3 + babel-jest: 26.6.3_@babel+core@7.17.10 + babel-loader: 8.2.5_usdhdj5awexcm2e5jtwd44bofa eslint: 8.15.0 eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-import-resolver-custom-alias: 1.3.0_eslint-plugin-import@2.26.0 + eslint-import-resolver-custom-alias: 1.3.0_fkfqfehjtk7sk2efaqbgxsuasa eslint-plugin-eslint-comments: 3.2.0_eslint@8.15.0 - eslint-plugin-import: 2.26.0_eslint@8.15.0 - eslint-plugin-prettier: 4.0.0_add53f7086c12b51d2c31c9d18258ca8 + eslint-plugin-import: 2.26.0_doddzorl55y6dbr5ij3nshfl64 + eslint-plugin-prettier: 4.0.0_vxkt64egyevvduwddsorqjmmva eslint-plugin-tsdoc: 0.2.16 eslint-plugin-unicorn: 42.0.0_eslint@8.15.0 eslint-plugin-vue: 8.6.0_eslint@8.15.0 @@ -175,14 +189,16 @@ devDependencies: prettier: 2.6.0 rimraf: 3.0.2 tailwind-config-viewer: 1.6.3_tailwindcss@3.0.23 - tailwindcss: 3.0.23_cf30258013438338cbfd2cf01b956a45 + tailwindcss: 3.0.23_z4yclaatiobtrs75ftybxflkiu tailwindcss-rtl: 0.9.0 talkback: 3.0.1 - ts-node: 10.7.0_typescript@4.6.2 + ts-node: 10.7.0_cbygeln5s5sjlseyk3kbidkfny typescript: 4.6.2 vue-i18n-extract: 2.0.4 - vue-jest: 3.0.7_babel-core@7.0.0-bridge.0 + vue-jest: 3.0.7_emdz5kfrc5cn55r4a24jgpa35q + vue-template-compiler: 2.6.14 vue-tsc: 0.34.12_typescript@4.6.2 + webpack: 4.46.0 packages: @@ -202,7 +218,7 @@ packages: resolution: {integrity: sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.16.0 + '@babel/highlight': 7.16.10 dev: true /@babel/code-frame/7.16.7: @@ -214,23 +230,28 @@ packages: /@babel/compat-data/7.17.0: resolution: {integrity: sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng==} engines: {node: '>=6.9.0'} + dev: false + + /@babel/compat-data/7.17.10: + resolution: {integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==} + engines: {node: '>=6.9.0'} /@babel/core/7.12.9: resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/generator': 7.17.3 - '@babel/helper-module-transforms': 7.17.6 - '@babel/helpers': 7.17.2 - '@babel/parser': 7.17.3 + '@babel/generator': 7.17.10 + '@babel/helper-module-transforms': 7.17.7 + '@babel/helpers': 7.17.9 + '@babel/parser': 7.17.10 '@babel/template': 7.16.7 - '@babel/traverse': 7.17.3 - '@babel/types': 7.17.0 + '@babel/traverse': 7.17.10 + '@babel/types': 7.17.10 convert-source-map: 1.8.0 debug: 4.3.3 gensync: 1.0.0-beta.2 - json5: 2.2.0 + json5: 2.2.1 lodash: 4.17.21 resolve: 1.22.0 semver: 5.7.1 @@ -262,46 +283,55 @@ packages: - supports-color dev: true - /@babel/core/7.17.5: - resolution: {integrity: sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA==} + /@babel/core/7.17.10: + resolution: {integrity: sha512-liKoppandF3ZcBnIYFjfSDHZLKdLHGJRkoWtG8zQyGJBQfIYobpnVGI5+pLBNtS6psFLDzyq8+h5HiVljW9PNA==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.1.2 '@babel/code-frame': 7.16.7 - '@babel/generator': 7.17.3 - '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.5 - '@babel/helper-module-transforms': 7.17.6 - '@babel/helpers': 7.17.2 - '@babel/parser': 7.17.3 + '@babel/generator': 7.17.10 + '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.17.10 + '@babel/helper-module-transforms': 7.17.7 + '@babel/helpers': 7.17.9 + '@babel/parser': 7.17.10 '@babel/template': 7.16.7 - '@babel/traverse': 7.17.3 - '@babel/types': 7.17.0 + '@babel/traverse': 7.17.10 + '@babel/types': 7.17.10 convert-source-map: 1.8.0 debug: 4.3.3 gensync: 1.0.0-beta.2 - json5: 2.2.0 + json5: 2.2.1 semver: 6.3.0 transitivePeerDependencies: - supports-color - /@babel/eslint-parser/7.17.0_eslint@8.15.0: + /@babel/eslint-parser/7.17.0_annt2i75qyqp7sfsklqkwkfeaa: 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.10 eslint: 8.15.0 eslint-scope: 5.1.1 eslint-visitor-keys: 2.1.0 semver: 6.3.0 dev: true + /@babel/generator/7.17.10: + resolution: {integrity: sha512-46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.17.10 + '@jridgewell/gen-mapping': 0.1.1 + jsesc: 2.5.2 + /@babel/generator/7.17.3: resolution: {integrity: sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 jsesc: 2.5.2 source-map: 0.5.7 @@ -309,14 +339,14 @@ packages: resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 /@babel/helper-builder-binary-assignment-operator-visitor/7.16.7: resolution: {integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.16.7 - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 /@babel/helper-compilation-targets/7.16.7_@babel+core@7.16.12: resolution: {integrity: sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==} @@ -324,41 +354,37 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.17.0 + '@babel/compat-data': 7.17.10 '@babel/core': 7.16.12 '@babel/helper-validator-option': 7.16.7 - browserslist: 4.20.0 + browserslist: 4.20.3 semver: 6.3.0 dev: true - /@babel/helper-compilation-targets/7.16.7_@babel+core@7.17.5: + /@babel/helper-compilation-targets/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.17.0 - '@babel/core': 7.17.5 + '@babel/compat-data': 7.17.10 + '@babel/core': 7.17.10 '@babel/helper-validator-option': 7.16.7 - browserslist: 4.20.0 + browserslist: 4.20.3 semver: 6.3.0 + dev: false - /@babel/helper-create-class-features-plugin/7.17.1: - resolution: {integrity: sha512-JBdSr/LtyYIno/pNnJ75lBcqc3Z1XXujzPanHqjvvrhOA+DTceTFuJi8XjmWTZh4r3fsdfqaCMN0iZemdkxZHQ==} + /@babel/helper-compilation-targets/7.17.10_@babel+core@7.17.10: + resolution: {integrity: sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@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.16.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/compat-data': 7.17.10 + '@babel/core': 7.17.10 + '@babel/helper-validator-option': 7.16.7 + browserslist: 4.20.3 + semver: 6.3.0 /@babel/helper-create-class-features-plugin/7.17.1_@babel+core@7.16.12: resolution: {integrity: sha512-JBdSr/LtyYIno/pNnJ75lBcqc3Z1XXujzPanHqjvvrhOA+DTceTFuJi8XjmWTZh4r3fsdfqaCMN0iZemdkxZHQ==} @@ -378,13 +404,13 @@ packages: - supports-color dev: true - /@babel/helper-create-class-features-plugin/7.17.1_@babel+core@7.17.5: + /@babel/helper-create-class-features-plugin/7.17.1_@babel+core@7.17.10: resolution: {integrity: sha512-JBdSr/LtyYIno/pNnJ75lBcqc3Z1XXujzPanHqjvvrhOA+DTceTFuJi8XjmWTZh4r3fsdfqaCMN0iZemdkxZHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-environment-visitor': 7.16.7 '@babel/helper-function-name': 7.16.7 @@ -405,7 +431,7 @@ packages: '@babel/core': 7.16.12 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-environment-visitor': 7.16.7 - '@babel/helper-function-name': 7.16.7 + '@babel/helper-function-name': 7.17.9 '@babel/helper-member-expression-to-functions': 7.16.7 '@babel/helper-optimise-call-expression': 7.16.7 '@babel/helper-replace-supers': 7.16.7 @@ -414,16 +440,16 @@ packages: - supports-color dev: true - /@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.17.5: + /@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.17.10: resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-environment-visitor': 7.16.7 - '@babel/helper-function-name': 7.16.7 + '@babel/helper-function-name': 7.17.9 '@babel/helper-member-expression-to-functions': 7.16.7 '@babel/helper-optimise-call-expression': 7.16.7 '@babel/helper-replace-supers': 7.16.7 @@ -431,36 +457,36 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.17.5: + /@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.17.10: resolution: {integrity: sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-annotate-as-pure': 7.16.7 regexpu-core: 4.8.0 - /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.17.5: + /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.17.10: resolution: {integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-annotate-as-pure': 7.16.7 regexpu-core: 5.0.1 - /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.17.5: + /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.17.10: resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.17.10 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.16.7 - '@babel/traverse': 7.17.3 + '@babel/traverse': 7.17.10 debug: 4.3.3 lodash.debounce: 4.0.8 resolve: 1.22.0 @@ -469,16 +495,16 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.17.5: + /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.17.10: resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.17.10 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.16.7 - '@babel/traverse': 7.17.3 + '@babel/traverse': 7.17.10 debug: 4.3.3 lodash.debounce: 4.0.8 resolve: 1.22.0 @@ -490,13 +516,13 @@ packages: resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 /@babel/helper-explode-assignable-expression/7.16.7: resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 /@babel/helper-function-name/7.16.7: resolution: {integrity: sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==} @@ -504,31 +530,38 @@ packages: dependencies: '@babel/helper-get-function-arity': 7.16.7 '@babel/template': 7.16.7 - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 + + /@babel/helper-function-name/7.17.9: + resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.16.7 + '@babel/types': 7.17.10 /@babel/helper-get-function-arity/7.16.7: resolution: {integrity: sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 /@babel/helper-hoist-variables/7.16.7: resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 /@babel/helper-member-expression-to-functions/7.16.7: resolution: {integrity: sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 /@babel/helper-module-imports/7.16.7: resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 /@babel/helper-module-transforms/7.17.6: resolution: {integrity: sha512-2ULmRdqoOMpdvkbT8jONrZML/XALfzxlb052bldftkicAUy8AxSCkD5trDPQcwHNmolcl7wP6ehNqMlyUw6AaA==} @@ -536,12 +569,27 @@ packages: dependencies: '@babel/helper-environment-visitor': 7.16.7 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-simple-access': 7.16.7 + '@babel/helper-simple-access': 7.17.7 '@babel/helper-split-export-declaration': 7.16.7 '@babel/helper-validator-identifier': 7.16.7 '@babel/template': 7.16.7 - '@babel/traverse': 7.17.3 - '@babel/types': 7.17.0 + '@babel/traverse': 7.17.10 + '@babel/types': 7.17.10 + transitivePeerDependencies: + - supports-color + + /@babel/helper-module-transforms/7.17.7: + resolution: {integrity: sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-module-imports': 7.16.7 + '@babel/helper-simple-access': 7.17.7 + '@babel/helper-split-export-declaration': 7.16.7 + '@babel/helper-validator-identifier': 7.16.7 + '@babel/template': 7.16.7 + '@babel/traverse': 7.17.10 + '@babel/types': 7.17.10 transitivePeerDependencies: - supports-color @@ -549,7 +597,7 @@ packages: resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 /@babel/helper-plugin-utils/7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} @@ -565,7 +613,7 @@ packages: dependencies: '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-wrap-function': 7.16.8 - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 transitivePeerDependencies: - supports-color @@ -576,8 +624,8 @@ packages: '@babel/helper-environment-visitor': 7.16.7 '@babel/helper-member-expression-to-functions': 7.16.7 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/traverse': 7.17.3 - '@babel/types': 7.17.0 + '@babel/traverse': 7.17.10 + '@babel/types': 7.17.10 transitivePeerDependencies: - supports-color @@ -585,19 +633,25 @@ packages: resolution: {integrity: sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 + + /@babel/helper-simple-access/7.17.7: + resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.17.10 /@babel/helper-skip-transparent-expression-wrappers/7.16.0: resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 /@babel/helper-split-export-declaration/7.16.7: resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 /@babel/helper-validator-identifier/7.16.7: resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} @@ -611,10 +665,10 @@ packages: resolution: {integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-function-name': 7.16.7 + '@babel/helper-function-name': 7.17.9 '@babel/template': 7.16.7 - '@babel/traverse': 7.17.3 - '@babel/types': 7.17.0 + '@babel/traverse': 7.17.10 + '@babel/types': 7.17.10 transitivePeerDependencies: - supports-color @@ -623,19 +677,21 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.16.7 - '@babel/traverse': 7.17.3 - '@babel/types': 7.17.0 + '@babel/traverse': 7.17.10 + '@babel/types': 7.17.10 transitivePeerDependencies: - supports-color + dev: true - /@babel/highlight/7.16.0: - resolution: {integrity: sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==} + /@babel/helpers/7.17.9: + resolution: {integrity: sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.16.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - dev: true + '@babel/template': 7.16.7 + '@babel/traverse': 7.17.10 + '@babel/types': 7.17.10 + transitivePeerDependencies: + - supports-color /@babel/highlight/7.16.10: resolution: {integrity: sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==} @@ -645,47 +701,50 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser/7.16.5: - resolution: {integrity: sha512-+Ce7T5iPNWzfu9C1aB5tN3Lyafs5xb3Ic7vBWyZL2KXT3QSdD1dD3CvgOzPmQKoNNRt6uauc0XwNJTQtXC2/Mw==} + /@babel/parser/7.17.10: + resolution: {integrity: sha512-n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ==} engines: {node: '>=6.0.0'} hasBin: true - dev: true + dependencies: + '@babel/types': 7.17.10 /@babel/parser/7.17.3: resolution: {integrity: sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA==} engines: {node: '>=6.0.0'} hasBin: true + dependencies: + '@babel/types': 7.17.0 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.17.5: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.17.5: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.10 - /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.17.5: + /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.17.10: resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-remap-async-to-generator': 7.16.8 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.5 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.10 transitivePeerDependencies: - supports-color @@ -702,42 +761,42 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.17.5: + /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.10 '@babel/helper-plugin-utils': 7.16.7 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.17.5: + /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.17.10: resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.10 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.5 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.10 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-decorators/7.17.2_@babel+core@7.17.5: + /@babel/plugin-proposal-decorators/7.17.2_@babel+core@7.17.10: resolution: {integrity: sha512-WH8Z95CwTq/W8rFbMqb9p3hicpt4RX4f0K659ax2VHxgOyT6qQmUaEVEjIh4WR9Eh9NymkVn5vwsrE68fAQNUw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.10 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-replace-supers': 7.16.7 - '@babel/plugin-syntax-decorators': 7.17.0_@babel+core@7.17.5 + '@babel/plugin-syntax-decorators': 7.17.0_@babel+core@7.17.10 charcodes: 0.2.0 transitivePeerDependencies: - supports-color @@ -753,25 +812,25 @@ packages: '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.12 dev: true - /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.17.5: + /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.10 - /@babel/plugin-proposal-export-default-from/7.16.7_@babel+core@7.17.5: + /@babel/plugin-proposal-export-default-from/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.17.5 + '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.17.10 dev: true /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.16.12: @@ -785,25 +844,25 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.12 dev: true - /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.17.5: + /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.10 - /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.17.5: + /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.5 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.10 /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.16.12: resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==} @@ -816,15 +875,15 @@ packages: '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.12 dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.17.5: + /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.10 /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.16.12: resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==} @@ -837,15 +896,15 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.12 dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.17.5: + /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.10 /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.16.12: resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==} @@ -858,15 +917,15 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.12 dev: true - /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.17.5: + /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.10 /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9: resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==} @@ -879,28 +938,28 @@ packages: '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.17.5: + /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.17.10: resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.17.0 - '@babel/core': 7.17.5 - '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.5 + '@babel/compat-data': 7.17.10 + '@babel/core': 7.17.10 + '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.17.10 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.10 - /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.17.5: + /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.10 /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.16.12: resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==} @@ -914,16 +973,16 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.12 dev: true - /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.17.5: + /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.10 /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.16.12: resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==} @@ -938,14 +997,14 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.17.5: + /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.17.10: resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.10 '@babel/helper-plugin-utils': 7.16.7 transitivePeerDependencies: - supports-color @@ -965,48 +1024,40 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.17.5: + /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.5 + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.10 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.10 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-unicode-property-regex/7.16.5_@babel+core@7.17.5: + /@babel/plugin-proposal-unicode-property-regex/7.16.5_@babel+core@7.17.10: resolution: {integrity: sha512-s5sKtlKQyFSatt781HQwv1hoM5BQ9qRH30r+dK56OLDsHmV74mzwJNX7R1yMuE7VZKG5O6q/gmOGSAO6ikTudg==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.17.5: + /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-syntax-async-generators/7.8.4: - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.16.7 - dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.12: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: @@ -1016,63 +1067,47 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.17.5: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.17.10: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-plugin-utils': 7.16.7 - - /@babel/plugin-syntax-bigint/7.8.3: - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.17.5: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.17.10: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-class-properties/7.12.13: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.17.10: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.17.5: - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.5 - '@babel/helper-plugin-utils': 7.16.7 - - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.17.5: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.17.10: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-syntax-decorators/7.17.0_@babel+core@7.17.5: + /@babel/plugin-syntax-decorators/7.17.0_@babel+core@7.17.10: resolution: {integrity: sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.12: @@ -1084,21 +1119,21 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.17.5: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.17.10: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-syntax-export-default-from/7.16.7_@babel+core@7.17.5: + /@babel/plugin-syntax-export-default-from/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -1111,46 +1146,30 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.17.5: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.17.10: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-syntax-flow/7.16.7_@babel+core@7.17.5: + /@babel/plugin-syntax-flow/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-import-meta/7.10.4: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.17.10: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.16.7 - dev: true - - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.17.5: - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.5 - '@babel/helper-plugin-utils': 7.16.7 - dev: true - - /@babel/plugin-syntax-json-strings/7.8.3: - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -1163,12 +1182,12 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.5: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.10: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9: @@ -1180,23 +1199,15 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.17.5: + /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4: - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.16.7 - dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.12: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -1206,22 +1217,14 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.5: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.10: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3: - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.16.7 - 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: @@ -1231,21 +1234,13 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.17.5: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.17.10: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-plugin-utils': 7.16.7 - - /@babel/plugin-syntax-numeric-separator/7.10.4: - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - dev: true /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.12: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} @@ -1256,22 +1251,14 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.17.5: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.17.10: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-syntax-object-rest-spread/7.8.3: - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.16.7 - dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: @@ -1290,22 +1277,14 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.17.5: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.17.10: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-syntax-optional-catch-binding/7.8.3: - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.16.7 - dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.12: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: @@ -1315,22 +1294,14 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.17.5: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.17.10: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-syntax-optional-chaining/7.8.3: - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.16.7 - dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.12: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: @@ -1340,12 +1311,12 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.17.5: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.17.10: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.16.12: @@ -1358,41 +1329,23 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.17.5: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.17.10: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-syntax-top-level-await/7.14.5: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.10: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - dev: true - - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.5: - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.5 - '@babel/helper-plugin-utils': 7.16.7 - - /@babel/plugin-syntax-typescript/7.16.7: - resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.16.7 - dev: true /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.16.12: resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==} @@ -1404,66 +1357,66 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.17.5: + /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.17.5: + /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.17.10: resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-remap-async-to-generator': 7.16.8 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-classes/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-classes/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-environment-visitor': 7.16.7 - '@babel/helper-function-name': 7.16.7 + '@babel/helper-function-name': 7.17.9 '@babel/helper-optimise-call-expression': 7.16.7 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-replace-supers': 7.16.7 @@ -1472,120 +1425,120 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-destructuring/7.17.3_@babel+core@7.17.5: + /@babel/plugin-transform-destructuring/7.17.3_@babel+core@7.17.10: resolution: {integrity: sha512-dDFzegDYKlPqa72xIlbmSkly5MluLoaC1JswABGktyt6NTXSBcUuse/kWE/wvKFWJHPETpi158qJZFS3JmykJg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-dotall-regex/7.16.5_@babel+core@7.17.5: + /@babel/plugin-transform-dotall-regex/7.16.5_@babel+core@7.17.10: resolution: {integrity: sha512-iQiEMt8Q4/5aRGHpGVK2Zc7a6mx7qEAO7qehgSug3SDImnuMzgmm/wtJALXaz25zUj1PmnNHtShjFgk4PDx4nw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-flow-strip-types/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-flow-strip-types/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.5 + '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.10 dev: true - /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.5 - '@babel/helper-function-name': 7.16.7 + '@babel/core': 7.17.10 + '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.17.10 + '@babel/helper-function-name': 7.17.9 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-literals/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-literals/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-module-transforms': 7.17.6 + '@babel/core': 7.17.10 + '@babel/helper-module-transforms': 7.17.7 '@babel/helper-plugin-utils': 7.16.7 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: @@ -1606,13 +1559,13 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.16.8_@babel+core@7.17.5: + /@babel/plugin-transform-modules-commonjs/7.16.8_@babel+core@7.17.10: resolution: {integrity: sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-module-transforms': 7.17.6 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-simple-access': 7.16.7 @@ -1620,58 +1573,58 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-systemjs/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-modules-systemjs/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-hoist-variables': 7.16.7 - '@babel/helper-module-transforms': 7.17.6 + '@babel/helper-module-transforms': 7.17.7 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-validator-identifier': 7.16.7 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-module-transforms': 7.17.6 + '@babel/core': 7.17.10 + '@babel/helper-module-transforms': 7.17.7 '@babel/helper-plugin-utils': 7.16.7 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.17.5: + /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.17.10: resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.10 - /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-replace-supers': 7.16.7 transitivePeerDependencies: @@ -1687,163 +1640,150 @@ packages: '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.10 dev: true - /@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.17.5: + /@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.17.10: resolution: {integrity: sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.5 - '@babel/types': 7.17.0 + '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.10 + '@babel/types': 7.17.10 dev: true - /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 regenerator-transform: 0.14.5 - /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-runtime/7.16.5_@babel+core@7.17.5: + /@babel/plugin-transform-runtime/7.16.5_@babel+core@7.17.10: resolution: {integrity: sha512-gxpfS8XQWDbQ8oP5NcmpXxtEgCJkbO+W9VhZlOhr0xPyVaRjAQPOv7ZDj9fg0d5s9+NiVvMCE6gbkEkcsxwGRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.16.7 - babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.5 - babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.17.5 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.5 + babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.10 + babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.17.10 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.10 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-spread/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-spread/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-typescript/7.16.8: - resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-create-class-features-plugin': 7.17.1 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-typescript': 7.16.7 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.16.12: resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} engines: {node: '>=6.9.0'} @@ -1858,173 +1798,160 @@ packages: - supports-color dev: true - /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.17.5: + /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.17.10: resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-create-class-features-plugin': 7.17.1_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-create-class-features-plugin': 7.17.1_@babel+core@7.17.10 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.17.5 + '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.17.10 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.17.5: + /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/preset-env/7.16.11_@babel+core@7.17.5: + /@babel/preset-env/7.16.11_@babel+core@7.17.10: resolution: {integrity: sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.17.0 - '@babel/core': 7.17.5 - '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.5 + '@babel/compat-data': 7.17.10 + '@babel/core': 7.17.10 + '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.17.10 '@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.7_@babel+core@7.17.5 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.17.5 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.17.5 - '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.5 - '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.5 - '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.5 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.5 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.5 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.5 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.17.5 - '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-destructuring': 7.17.3_@babel+core@7.17.5 - '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-modules-commonjs': 7.16.8_@babel+core@7.17.5 - '@babel/plugin-transform-modules-systemjs': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.17.5 - '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-regenerator': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.17.5 - '@babel/preset-modules': 0.1.5_@babel+core@7.17.5 - '@babel/types': 7.17.0 - babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.5 - babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.5 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.5 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.17.10 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.17.10 + '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.10 + '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.10 + '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.10 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.10 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.10 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.10 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.10 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.10 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.10 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.17.10 + '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-destructuring': 7.17.3_@babel+core@7.17.10 + '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-modules-commonjs': 7.16.8_@babel+core@7.17.10 + '@babel/plugin-transform-modules-systemjs': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.17.10 + '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-regenerator': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.17.10 + '@babel/preset-modules': 0.1.5_@babel+core@7.17.10 + '@babel/types': 7.17.10 + babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.10 + babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.10 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.10 core-js-compat: 3.21.1 semver: 6.3.0 transitivePeerDependencies: - supports-color - /@babel/preset-flow/7.16.7_@babel+core@7.17.5: + /@babel/preset-flow/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-6ceP7IyZdUYQ3wUVqyRSQXztd1YmFHWI4Xv11MIqAlE4WqxBSd/FZ61V9k+TS5Gd4mkHOtQtPp9ymRpxH4y1Ug==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.5 + '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.10 dev: true - /@babel/preset-modules/0.1.5_@babel+core@7.17.5: + /@babel/preset-modules/0.1.5_@babel+core@7.17.10: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-proposal-unicode-property-regex': 7.16.5_@babel+core@7.17.5 - '@babel/plugin-transform-dotall-regex': 7.16.5_@babel+core@7.17.5 - '@babel/types': 7.17.0 + '@babel/plugin-proposal-unicode-property-regex': 7.16.5_@babel+core@7.17.10 + '@babel/plugin-transform-dotall-regex': 7.16.5_@babel+core@7.17.10 + '@babel/types': 7.17.10 esutils: 2.0.3 - /@babel/preset-react/7.16.7_@babel+core@7.17.5: + /@babel/preset-react/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.5 - '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.17.5 - dev: true - - /@babel/preset-typescript/7.16.7: - resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.16.7 - '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-typescript': 7.16.8 - transitivePeerDependencies: - - supports-color + '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.10 + '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.17.10 dev: true /@babel/preset-typescript/7.16.7_@babel+core@7.16.12: @@ -2041,27 +1968,27 @@ packages: - supports-color dev: true - /@babel/preset-typescript/7.16.7_@babel+core@7.17.5: + /@babel/preset-typescript/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.5 + '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.10 transitivePeerDependencies: - supports-color dev: true - /@babel/register/7.17.0_@babel+core@7.17.5: + /@babel/register/7.17.0_@babel+core@7.17.10: resolution: {integrity: sha512-UNZsMAZ7uKoGHo1HlEXfteEOYssf64n/PNLHGqOKq/bgYcu/4LrQWAHJwSCb3BRZK8Hi5gkJdRcwrGTO2wtRCg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -2095,8 +2022,25 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/parser': 7.17.3 - '@babel/types': 7.17.0 + '@babel/parser': 7.17.10 + '@babel/types': 7.17.10 + + /@babel/traverse/7.17.10: + resolution: {integrity: sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.16.7 + '@babel/generator': 7.17.10 + '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-function-name': 7.17.9 + '@babel/helper-hoist-variables': 7.16.7 + '@babel/helper-split-export-declaration': 7.16.7 + '@babel/parser': 7.17.10 + '@babel/types': 7.17.10 + debug: 4.3.3 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color /@babel/traverse/7.17.3: resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==} @@ -2115,16 +2059,15 @@ packages: transitivePeerDependencies: - supports-color - /@babel/types/7.16.0: - resolution: {integrity: sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==} + /@babel/types/7.17.0: + resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.16.7 to-fast-properties: 2.0.0 - dev: true - /@babel/types/7.17.0: - resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==} + /@babel/types/7.17.10: + resolution: {integrity: sha512-9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.16.7 @@ -2182,6 +2125,9 @@ packages: resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==} peerDependencies: react: '>=16.3.0' + peerDependenciesMeta: + react: + optional: true dependencies: '@babel/runtime': 7.17.2 '@emotion/cache': 10.0.29 @@ -2195,6 +2141,9 @@ packages: resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==} peerDependencies: react: '>=16.3.0' + peerDependenciesMeta: + react: + optional: true dependencies: '@babel/runtime': 7.17.2 '@emotion/cache': 10.0.29 @@ -2241,54 +2190,66 @@ packages: resolution: {integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==} dev: true - /@emotion/styled-base/10.3.0_864809d686fef2043b51d8d752270dc1: + /@emotion/styled-base/10.3.0_@emotion+core@10.3.1: resolution: {integrity: sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==} peerDependencies: '@emotion/core': ^10.0.28 react: '>=16.3.0' + peerDependenciesMeta: + react: + optional: true dependencies: '@babel/runtime': 7.17.2 - '@emotion/core': 10.3.1_react@16.14.0 + '@emotion/core': 10.3.1 '@emotion/is-prop-valid': 0.8.8 '@emotion/serialize': 0.11.16 '@emotion/utils': 0.11.3 - react: 16.14.0 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' + peerDependenciesMeta: + react: + optional: true dependencies: '@babel/runtime': 7.17.2 - '@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 + react: 16.14.0 dev: true - /@emotion/styled/10.3.0_864809d686fef2043b51d8d752270dc1: + /@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' + peerDependenciesMeta: + react: + optional: true dependencies: - '@emotion/core': 10.3.1_react@16.14.0 - '@emotion/styled-base': 10.3.0_864809d686fef2043b51d8d752270dc1 + '@emotion/core': 10.3.1 + '@emotion/styled-base': 10.3.0_@emotion+core@10.3.1 babel-plugin-emotion: 10.2.2 - react: 16.14.0 dev: true - /@emotion/styled/10.3.0_@emotion+core@10.3.1: + /@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' + peerDependenciesMeta: + react: + optional: true dependencies: - '@emotion/core': 10.3.1 - '@emotion/styled-base': 10.3.0_@emotion+core@10.3.1 + '@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: true /@emotion/stylis/0.8.5: @@ -2453,7 +2414,7 @@ packages: dependencies: '@intlify/shared': 9.1.9 js-yaml: 3.14.1 - json5: 2.2.0 + json5: 2.2.1 dev: false /@istanbuljs/load-nyc-config/1.1.0: @@ -2477,7 +2438,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 16.11.13 + '@types/node': 17.0.32 chalk: 4.1.2 jest-message-util: 26.6.2 jest-util: 26.6.2 @@ -2493,7 +2454,7 @@ packages: '@jest/test-result': 26.6.2 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 16.11.13 + '@types/node': 17.0.32 ansi-escapes: 4.3.2 chalk: 4.1.2 exit: 0.1.2 @@ -2530,7 +2491,7 @@ packages: dependencies: '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 16.11.13 + '@types/node': 17.0.32 jest-mock: 26.6.2 dev: true @@ -2540,7 +2501,7 @@ packages: dependencies: '@jest/types': 26.6.2 '@sinonjs/fake-timers': 6.0.1 - '@types/node': 16.11.13 + '@types/node': 17.0.32 jest-message-util: 26.6.2 jest-mock: 26.6.2 jest-util: 26.6.2 @@ -2629,7 +2590,7 @@ packages: resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -2654,7 +2615,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.3 '@types/istanbul-reports': 3.0.1 - '@types/node': 16.11.13 + '@types/node': 17.0.32 '@types/yargs': 15.0.14 chalk: 4.1.2 dev: true @@ -2665,15 +2626,26 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.3 '@types/istanbul-reports': 3.0.1 - '@types/node': 16.11.13 + '@types/node': 17.0.32 '@types/yargs': 16.0.4 chalk: 4.1.2 dev: true + /@jridgewell/gen-mapping/0.1.1: + resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.1 + '@jridgewell/sourcemap-codec': 1.4.11 + /@jridgewell/resolve-uri/3.0.5: resolution: {integrity: sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==} engines: {node: '>=6.0.0'} + /@jridgewell/set-array/1.1.1: + resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==} + engines: {node: '>=6.0.0'} + /@jridgewell/sourcemap-codec/1.4.11: resolution: {integrity: sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==} @@ -2737,6 +2709,9 @@ packages: resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} peerDependencies: react: ^16.13.1 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true dev: true /@mdx-js/util/1.6.22: @@ -2806,18 +2781,18 @@ packages: resolution: {integrity: sha512-z23bY5P7dLTmIbk0ZZ95mcEXIEER/mQCOqEp2vxnzG2nurks+vq6tNcUAXqME1Wl6aXWTXlqky5plBe7RQHzhQ==} dependencies: '@babel/compat-data': 7.17.0 - '@babel/core': 7.17.5 - '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.10 '@babel/helper-module-imports': 7.16.7 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-decorators': 7.17.2_@babel+core@7.17.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.5 - '@babel/plugin-transform-runtime': 7.16.5_@babel+core@7.17.5 - '@babel/preset-env': 7.16.11_@babel+core@7.17.5 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-decorators': 7.17.2_@babel+core@7.17.10 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.10 + '@babel/plugin-transform-runtime': 7.16.5_@babel+core@7.17.10 + '@babel/preset-env': 7.16.11_@babel+core@7.17.10 '@babel/runtime': 7.17.2 - '@vue/babel-preset-jsx': 1.2.4_@babel+core@7.17.5 + '@vue/babel-preset-jsx': 1.2.4_@babel+core@7.17.10 core-js: 2.6.12 core-js-compat: 3.21.1 regenerator-runtime: 0.13.9 @@ -2825,13 +2800,13 @@ packages: - supports-color dev: false - /@nuxt/builder/2.15.8_typescript@4.6.2: + /@nuxt/builder/2.15.8_wl2mvxm2ma5s7sz3dfofdm4k7q: resolution: {integrity: sha512-WVhN874LFMdgRiJqpxmeKI+vh5lhCUBVOyR9PhL1m1V/GV3fb+Dqc1BKS6XgayrWAWavPLveCJmQ/FID0puOfQ==} dependencies: '@nuxt/devalue': 1.2.5 '@nuxt/utils': 2.15.8 '@nuxt/vue-app': 2.15.8 - '@nuxt/webpack': 2.15.8_typescript@4.6.2 + '@nuxt/webpack': 2.15.8_wl2mvxm2ma5s7sz3dfofdm4k7q chalk: 4.1.2 chokidar: 3.5.3 consola: 2.15.3 @@ -2844,14 +2819,67 @@ packages: serialize-javascript: 5.0.1 upath: 2.0.1 transitivePeerDependencies: - - acorn + - '@vue/compiler-sfc' + - arc-templates + - atpl + - babel-core + - bluebird + - bracket-template - bufferutil + - coffee-script + - dot + - dust + - dustjs-helpers + - dustjs-linkedin + - eco + - ect + - ejs - encoding + - haml-coffee + - hamlet + - hamljs + - handlebars + - hogan.js + - htmling + - jade + - jazz + - jqtpl + - just + - liquid-node + - liquor + - marko + - mote + - mustache + - nunjucks + - plates + - pug + - qejs + - ractive + - razor-tmpl + - react + - react-dom + - slm + - squirrelly - supports-color + - swig + - swig-templates + - teacup + - templayed + - then-jade + - then-pug + - tinyliquid + - toffee + - twig + - twing - typescript + - underscore - utf-8-validate + - vash + - velocityjs + - walrus - webpack-cli - webpack-command + - whiskers dev: false /@nuxt/cli/2.15.8: @@ -2882,12 +2910,17 @@ packages: std-env: 2.3.1 upath: 2.0.1 wrap-ansi: 7.0.0 + transitivePeerDependencies: + - supports-color dev: false /@nuxt/components/2.2.1: resolution: {integrity: sha512-r1LHUzifvheTnJtYrMuA+apgsrEJbxcgFKIimeXKb+jl8TnPWdV3egmrxBCaDJchrtY/wmHyP47tunsft7AWwg==} peerDependencies: consola: '*' + peerDependenciesMeta: + consola: + optional: true dependencies: chalk: 4.1.2 chokidar: 3.5.3 @@ -2924,6 +2957,8 @@ packages: hable: 3.0.0 hash-sum: 2.0.0 lodash: 4.17.21 + transitivePeerDependencies: + - supports-color dev: false /@nuxt/devalue/1.2.5: @@ -2971,6 +3006,8 @@ packages: get-port-please: 2.2.0 node-res: 5.0.1 serve-static: 1.14.2 + transitivePeerDependencies: + - supports-color dev: false /@nuxt/opencollective/0.3.2: @@ -2985,15 +3022,15 @@ packages: - encoding dev: false - /@nuxt/postcss8/1.1.3: + /@nuxt/postcss8/1.1.3_webpack@4.46.0: resolution: {integrity: sha512-CdHtErhvQwueNZPBOmlAAKrNCK7aIpZDYhtS7TzXlSgPHHox1g3cSlf+Ke9oB/8t4mNNjdB+prclme2ibuCOEA==} dependencies: autoprefixer: 10.4.0_postcss@8.4.12 - css-loader: 5.2.7 + css-loader: 5.2.7_webpack@4.46.0 defu: 3.2.2 postcss: 8.4.12 postcss-import: 13.0.0_postcss@8.4.12 - postcss-loader: 4.3.0_postcss@8.4.12 + postcss-loader: 4.3.0_jgovvjlmnszlgzfyletnwk36ji postcss-url: 10.1.3_postcss@8.4.12 semver: 7.3.5 transitivePeerDependencies: @@ -3019,6 +3056,8 @@ packages: serve-static: 1.14.2 server-destroy: 1.0.1 ufo: 0.7.9 + transitivePeerDependencies: + - supports-color dev: false /@nuxt/telemetry/1.3.6: @@ -3047,7 +3086,7 @@ packages: - encoding dev: false - /@nuxt/types/2.15.8: + /@nuxt/types/2.15.8_webpack@4.46.0: resolution: {integrity: sha512-zBAG5Fy+SIaZIerOVF1vxy1zz16ZK07QSbsuQAjdtEFlvr+vKK+0AqCv8r8DBY5IVqdMIaw5FgNUz5py0xWdPg==} dependencies: '@types/autoprefixer': 9.7.2 @@ -3068,7 +3107,7 @@ packages: '@types/webpack-bundle-analyzer': 3.9.3 '@types/webpack-dev-middleware': 4.1.2 '@types/webpack-hot-middleware': 2.25.4 - sass-loader: 10.1.1 + sass-loader: 10.1.1_webpack@4.46.0 transitivePeerDependencies: - fibers - node-sass @@ -3076,15 +3115,15 @@ packages: - webpack dev: true - /@nuxt/typescript-build/2.1.0_@nuxt+types@2.15.8+eslint@8.15.0: + /@nuxt/typescript-build/2.1.0_wleosmb2b277pdfnwfuy3rhafi: resolution: {integrity: sha512-7TLMpfzgOckf3cBkzoPFns6Xl8FzY6MoFfm/5HUE47QeTWAdOG9ZFxMrVhHWieZHYUuV+k6byRtaRv4S/3R8zA==} peerDependencies: '@nuxt/types': '>=2.13.1' dependencies: - '@nuxt/types': 2.15.8 + '@nuxt/types': 2.15.8_webpack@4.46.0 consola: 2.15.3 - fork-ts-checker-webpack-plugin: 6.5.0_eslint@8.15.0+typescript@4.6.2 - ts-loader: 8.3.0_typescript@4.6.2 + fork-ts-checker-webpack-plugin: 6.5.0_mpahngmn3mtdx6vmys44ywifxm + ts-loader: 8.3.0_7in6qbnjgkqokibdcer35wqugu typescript: 4.6.2 transitivePeerDependencies: - eslint @@ -3142,14 +3181,14 @@ packages: vue-server-renderer: 2.6.14 dev: false - /@nuxt/webpack/2.15.8_typescript@4.6.2: + /@nuxt/webpack/2.15.8_wl2mvxm2ma5s7sz3dfofdm4k7q: resolution: {integrity: sha512-CzJYFed23Ow/UK0+cI1FVthDre1p2qc8Q97oizG39d3/SIh3aUHjgj8c60wcR+RSxVO0FzZMXkmq02NmA7vWJg==} dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@nuxt/babel-preset-app': 2.15.8 '@nuxt/friendly-errors-webpack-plugin': 2.5.2_webpack@4.46.0 '@nuxt/utils': 2.15.8 - babel-loader: 8.2.3_a58183228c2c7b1a132de84b2b6f9adf + babel-loader: 8.2.5_usdhdj5awexcm2e5jtwd44bofa cache-loader: 4.1.0_webpack@4.46.0 caniuse-lite: 1.0.30001314 consola: 2.15.3 @@ -3180,8 +3219,8 @@ packages: thread-loader: 3.0.4_webpack@4.46.0 time-fix-plugin: 2.0.7_webpack@4.46.0 ufo: 0.7.9 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 - vue-loader: 15.9.8_559ffc97fd41de05d12663d7fb949156 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy + vue-loader: 15.9.8_7oyydxtafvjqcmg5zydubwayrq vue-style-loader: 4.1.3 vue-template-compiler: 2.6.14 webpack: 4.46.0 @@ -3191,16 +3230,69 @@ packages: webpack-node-externals: 3.0.0 webpackbar: 4.0.0_webpack@4.46.0 transitivePeerDependencies: - - acorn + - '@vue/compiler-sfc' + - arc-templates + - atpl + - babel-core + - bluebird + - bracket-template - bufferutil + - coffee-script + - dot + - dust + - dustjs-helpers + - dustjs-linkedin + - eco + - ect + - ejs + - haml-coffee + - hamlet + - hamljs + - handlebars + - hogan.js + - htmling + - jade + - jazz + - jqtpl + - just + - liquid-node + - liquor + - marko + - mote + - mustache + - nunjucks + - plates + - pug + - qejs + - ractive + - razor-tmpl + - react + - react-dom + - slm + - squirrelly - supports-color + - swig + - swig-templates + - teacup + - templayed + - then-jade + - then-pug + - tinyliquid + - toffee + - twig + - twing - typescript + - underscore - utf-8-validate + - vash + - velocityjs + - walrus - webpack-cli - webpack-command + - whiskers dev: false - /@nuxtjs/composition-api/0.32.0_f76cbbf5da9c2936d5fdbb58483aa887: + /@nuxtjs/composition-api/0.32.0_efpv4fxq5hpknftnxyzfo2vyxy: resolution: {integrity: sha512-/LYf0N5x5j8i2/Uldfw+n4o3SVXyCIYQyOwSL+2JTllyyEkO3zHJc8YAbJhp22kHh6gPEhmgBA/whDUbERY7mg==} engines: {node: ^12.20.0 || >=14.13.0} peerDependencies: @@ -3208,15 +3300,17 @@ packages: nuxt: ^2.15 vue: ^2 dependencies: - '@vue/composition-api': 1.4.9 + '@nuxt/vue-app': 2.15.8 + '@vue/composition-api': 1.4.9_vue@2.6.14 defu: 5.0.1 estree-walker: 2.0.2 fs-extra: 9.1.0 magic-string: 0.25.9 - nuxt: 2.15.8_typescript@4.6.2 + nuxt: 2.15.8_wl2mvxm2ma5s7sz3dfofdm4k7q ufo: 0.7.9 - unplugin-vue2-script-setup: 0.9.3_084b6226078c1c34ec4d8a8c1a23d732 + unplugin-vue2-script-setup: 0.9.3_pw42y33qo2ly2ct4vpupmck4ae upath: 2.0.1 + vue: 2.6.14 transitivePeerDependencies: - '@vue/runtime-dom' - esbuild @@ -3227,14 +3321,14 @@ packages: - webpack dev: false - /@nuxtjs/eslint-module/3.0.2_eslint@8.15.0: + /@nuxtjs/eslint-module/3.0.2_nufgqnzswjkgegnrzqvmbqhove: resolution: {integrity: sha512-9q6/bMSvUU2L7Vhy5LUmghW3BQZMReQAvywBwZtX7s62W6dIL7IdD1T3u2zc8JW90grtJK84Ocx3dyYTj/Oavw==} peerDependencies: eslint: '>=7' dependencies: consola: 2.15.3 eslint: 8.15.0 - eslint-webpack-plugin: 2.6.0_eslint@8.15.0 + eslint-webpack-plugin: 2.6.0_nufgqnzswjkgegnrzqvmbqhove transitivePeerDependencies: - webpack dev: true @@ -3291,25 +3385,25 @@ packages: sitemap: 4.1.1 dev: false - /@nuxtjs/storybook/4.3.0_eslint@8.15.0+typescript@4.6.2: + /@nuxtjs/storybook/4.3.0_li6sx5er3n6ni6nfyx7d3q67pi: resolution: {integrity: sha512-UxtFQhFrNa1FLN0i6Agqf1PADN11C87WUKV9jHWbNhcIs0cQuoogZYno1cOOiEHZ/t44SxH72lLPz0NWH9L/aA==} hasBin: true dependencies: '@nuxt/devalue': 2.0.0 - '@nuxt/postcss8': 1.1.3 - '@storybook/addon-essentials': 6.4.19_2e4c3e5a5567efaad5cc8980b1fd57c3 - '@storybook/addon-postcss': 2.0.0 - '@storybook/react-docgen-typescript-plugin': 1.0.1_typescript@4.6.2 - '@storybook/vue': 6.4.19_0cc5bde6cc4006e6645ddb23b41993f2 + '@nuxt/postcss8': 1.1.3_webpack@4.46.0 + '@storybook/addon-essentials': 6.4.19_2daqike6pzpygnz2djthd6mvje + '@storybook/addon-postcss': 2.0.0_webpack@4.46.0 + '@storybook/react-docgen-typescript-plugin': 1.0.1_7in6qbnjgkqokibdcer35wqugu + '@storybook/vue': 6.4.19_a2jweejbyxkxmq6ipymwowpffi arg: 5.0.1 consola: 2.15.3 create-require: 1.1.1 - css-loader: 5.2.7 + css-loader: 5.2.7_webpack@4.46.0 jiti: 1.13.0 lodash.template: 4.5.0 pathe: 0.2.0 postcss: 8.4.12 - vue-loader: 15.9.8_css-loader@5.2.7 + vue-loader: 15.9.8_pv3e62hihcgilzzlt4q6ljqzyu transitivePeerDependencies: - '@babel/core' - '@storybook/angular' @@ -3320,26 +3414,78 @@ packages: - '@storybook/vue3' - '@storybook/web-components' - '@types/react' - - acorn + - '@vue/compiler-sfc' + - arc-templates + - atpl + - babel-core - babel-loader + - bluebird + - bracket-template - bufferutil - cache-loader + - coffee-script + - dot + - dust + - dustjs-helpers + - dustjs-linkedin + - eco + - ect + - ejs - encoding - eslint + - haml-coffee + - hamlet + - hamljs + - handlebars + - hogan.js + - htmling + - jade + - jazz + - jqtpl + - just + - liquid-node + - liquor - lit - lit-html + - lodash + - marko + - mote + - mustache + - nunjucks + - plates + - pug + - qejs + - ractive + - razor-tmpl - react - react-dom + - slm + - squirrelly - supports-color - svelte - sveltedoc-parser + - swig + - swig-templates + - teacup + - templayed + - then-jade + - then-pug + - tinyliquid + - toffee + - twig + - twing - typescript + - underscore - utf-8-validate + - vash + - velocityjs - vue - vue-template-compiler + - walrus - webpack - webpack-cli - webpack-command + - whiskers dev: true /@nuxtjs/style-resources/1.2.1: @@ -3351,15 +3497,16 @@ packages: sass-resources-loader: 2.2.4 dev: true - /@nuxtjs/svg/0.4.0: + /@nuxtjs/svg/0.4.0_6s5yfuw2cucs6uldabpyypzlau: resolution: {integrity: sha512-XF8uvV5YKBPAJr52SFRVkhltAsjCBTwwTc4GTysSm8WPYB2utJLY48qXdVC/J9dNQiMd7NHo1xmEYEqQfzqpqg==} dependencies: - file-loader: 6.2.0 - raw-loader: 4.0.2 + file-loader: 6.2.0_webpack@4.46.0 + raw-loader: 4.0.2_webpack@4.46.0 svg-sprite-loader: 5.2.1 - url-loader: 4.1.1_file-loader@6.2.0 - vue-svg-loader: 0.16.0 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy + vue-svg-loader: 0.16.0_ev5jzj74xu2fombjvobqpq452a transitivePeerDependencies: + - supports-color - vue-template-compiler - webpack dev: false @@ -3372,25 +3519,25 @@ packages: stack-trace: 0.0.10 dev: false - /@pinia/nuxt/0.1.8_pinia@2.0.13: + /@pinia/nuxt/0.1.8_pinia@2.0.13+vue@2.6.14: resolution: {integrity: sha512-+M1GH/4XQdooOulPL7aYzli6UE1R5rWJtgcPhx2/97yYRLhKZvuIT33OauUCjYZ+tQVs8lyKfzt6S2agqzcmWg==} peerDependencies: pinia: ~2.0.9 dependencies: - pinia: 2.0.13_typescript@4.6.2 - vue-demi: 0.12.1 + pinia: 2.0.13_k3kegkzgmpj55t3l5d75ppieg4 + vue-demi: 0.12.1_vue@2.6.14 transitivePeerDependencies: - '@vue/composition-api' - vue dev: false - /@pinia/testing/0.0.11_pinia@2.0.13: + /@pinia/testing/0.0.11_pinia@2.0.13+vue@2.6.14: resolution: {integrity: sha512-iJxUHV0Uj1jS7zvN5oVtSZ2BRI4PlG1xbqPkMeJasPtbqsnoxBmkwputDzqX5Dd1I1z9gEfyYOeE2duK3xGWpQ==} peerDependencies: pinia: '>=2.0.13' dependencies: - pinia: 2.0.13_typescript@4.6.2 - vue-demi: 0.12.1 + pinia: 2.0.13_k3kegkzgmpj55t3l5d75ppieg4 + vue-demi: 0.12.1_vue@2.6.14 transitivePeerDependencies: - '@vue/composition-api' - vue @@ -3646,7 +3793,7 @@ packages: - '@types/react' dev: true - /@storybook/addon-controls/6.4.19_eslint@8.15.0+typescript@4.6.2: + /@storybook/addon-controls/6.4.19_nojjwotduajuku2vg46qvhscnq: resolution: {integrity: sha512-JHi5z9i6NsgQLfG5WOeQE1AyOrM+QJLrjT+uOYx40bq+OC1yWHH7qHiphPP8kjJJhCZlaQk1qqXYkkQXgaeHSw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -3661,7 +3808,7 @@ packages: '@storybook/api': 6.4.19 '@storybook/client-logger': 6.4.19 '@storybook/components': 6.4.19 - '@storybook/core-common': 6.4.19_eslint@8.15.0+typescript@4.6.2 + '@storybook/core-common': 6.4.19_nojjwotduajuku2vg46qvhscnq '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.19 '@storybook/store': 6.4.19 @@ -3679,7 +3826,7 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.4.19_2e4c3e5a5567efaad5cc8980b1fd57c3: + /@storybook/addon-docs/6.4.19_gle3n7vynluk2gupxyxdelqio4: resolution: {integrity: sha512-OEPyx/5ZXmZOPqIAWoPjlIP8Q/YfNjAmBosA8tmA8t5KCSiq/vpLcAvQhxqK6n0wk/B8Xp67Z8RpLfXjU8R3tw==} peerDependencies: '@storybook/angular': 6.4.19 @@ -3726,21 +3873,21 @@ packages: webpack: optional: true dependencies: - '@babel/core': 7.17.5 - '@babel/generator': 7.17.3 - '@babel/parser': 7.17.3 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.5 - '@babel/preset-env': 7.16.11_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/generator': 7.17.10 + '@babel/parser': 7.17.10 + '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.10 + '@babel/preset-env': 7.16.11_@babel+core@7.17.10 '@jest/transform': 26.6.2 '@mdx-js/loader': 1.6.22 '@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_b1afae7d32d6bdf65a15a2c2a8a4d88d + '@storybook/builder-webpack4': 6.4.19_nojjwotduajuku2vg46qvhscnq '@storybook/client-logger': 6.4.19 '@storybook/components': 6.4.19 - '@storybook/core': 6.4.19_b1afae7d32d6bdf65a15a2c2a8a4d88d + '@storybook/core': 6.4.19_mpahngmn3mtdx6vmys44ywifxm '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.19 @@ -3750,7 +3897,7 @@ packages: '@storybook/source-loader': 6.4.19 '@storybook/store': 6.4.19 '@storybook/theming': 6.4.19 - '@storybook/vue': 6.4.19_0cc5bde6cc4006e6645ddb23b41993f2 + '@storybook/vue': 6.4.19_a2jweejbyxkxmq6ipymwowpffi acorn: 7.4.1 acorn-jsx: 5.3.2_acorn@7.4.1 acorn-walk: 7.2.0 @@ -3773,10 +3920,13 @@ packages: remark-slug: 6.1.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 + vue: 2.6.14 + webpack: 4.46.0 transitivePeerDependencies: - '@storybook/builder-webpack5' - '@storybook/manager-webpack5' - '@types/react' + - bluebird - bufferutil - encoding - eslint @@ -3788,7 +3938,7 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.4.19_2e4c3e5a5567efaad5cc8980b1fd57c3: + /@storybook/addon-essentials/6.4.19_2daqike6pzpygnz2djthd6mvje: resolution: {integrity: sha512-vbV8sjepMVEuwhTDBHjO3E6vXluG7RiEeozV1QVuS9lGhjQdvUPdZ9rDNUcP6WHhTdEkS/ffTMaGIy1v8oZd7g==} peerDependencies: '@babel/core': ^7.9.6 @@ -3813,10 +3963,11 @@ packages: webpack: optional: true dependencies: + '@babel/core': 7.17.10 '@storybook/addon-actions': 6.4.19 '@storybook/addon-backgrounds': 6.4.19 - '@storybook/addon-controls': 6.4.19_eslint@8.15.0+typescript@4.6.2 - '@storybook/addon-docs': 6.4.19_2e4c3e5a5567efaad5cc8980b1fd57c3 + '@storybook/addon-controls': 6.4.19_nojjwotduajuku2vg46qvhscnq + '@storybook/addon-docs': 6.4.19_gle3n7vynluk2gupxyxdelqio4 '@storybook/addon-measure': 6.4.19 '@storybook/addon-outline': 6.4.19 '@storybook/addon-toolbars': 6.4.19 @@ -3824,10 +3975,12 @@ packages: '@storybook/addons': 6.4.19 '@storybook/api': 6.4.19 '@storybook/node-logger': 6.4.19 - '@storybook/vue': 6.4.19_0cc5bde6cc4006e6645ddb23b41993f2 + '@storybook/vue': 6.4.19_a2jweejbyxkxmq6ipymwowpffi + babel-loader: 8.2.5_usdhdj5awexcm2e5jtwd44bofa core-js: 3.22.5 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 + webpack: 4.46.0 transitivePeerDependencies: - '@storybook/angular' - '@storybook/builder-webpack5' @@ -3836,6 +3989,7 @@ packages: - '@storybook/react' - '@storybook/vue3' - '@types/react' + - bluebird - bufferutil - encoding - eslint @@ -3899,15 +4053,15 @@ packages: - '@types/react' dev: true - /@storybook/addon-postcss/2.0.0: + /@storybook/addon-postcss/2.0.0_webpack@4.46.0: resolution: {integrity: sha512-Nt82A7e9zJH4+A+VzLKKswUfru+T6FJTakj4dccP0i8DSn7a0CkzRPrLuZBq8tg4voV6gD74bcDf3gViCVBGtA==} engines: {node: '>=10', yarn: ^1.17.0} dependencies: '@storybook/node-logger': 6.4.9 - css-loader: 3.6.0 + css-loader: 3.6.0_webpack@4.46.0 postcss: 7.0.39 - postcss-loader: 4.3.0_postcss@7.0.39 - style-loader: 1.3.0 + postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe + style-loader: 1.3.0_webpack@4.46.0 transitivePeerDependencies: - webpack dev: true @@ -3964,6 +4118,11 @@ packages: 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/api': 6.4.19 '@storybook/channels': 6.4.19 @@ -3978,19 +4137,24 @@ packages: regenerator-runtime: 0.13.9 dev: true - /@storybook/addons/6.4.19_react-dom@16.14.0+react@16.14.0: + /@storybook/addons/6.4.19_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-QNyRYhpqmHV8oJxxTBdkRlLSbDFhpBvfvMfIrIT1UXb/eemdBZTaCGVvXZ9UixoEEI7f8VwAQ44IvkU5B1509w==} 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/api': 6.4.19_react-dom@16.14.0+react@16.14.0 + '@storybook/api': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@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-dom@16.14.0+react@16.14.0 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@16.14.0 + '@storybook/router': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty + '@storybook/theming': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@types/webpack-env': 1.16.3 core-js: 3.22.5 global: 4.4.0 @@ -4004,6 +4168,11 @@ packages: 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/channels': 6.4.19 '@storybook/client-logger': 6.4.19 @@ -4024,19 +4193,24 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/api/6.4.19_react-dom@16.14.0+react@16.14.0: + /@storybook/api/6.4.19_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-aDvea+NpQCBjpNp9YidO1Pr7fzzCp15FSdkG+2ihGQfv5raxrN+IIJnGUXecpe71nvlYiB+29UXBVK7AL0j51Q==} 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/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-dom@16.14.0+react@16.14.0 + '@storybook/router': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@storybook/semver': 7.3.2 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@16.14.0 + '@storybook/theming': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty core-js: 3.22.5 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -4051,65 +4225,69 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/builder-webpack4/6.4.19_1b381fc2f987226c057ae86685972c7b: + /@storybook/builder-webpack4/6.4.19_nojjwotduajuku2vg46qvhscnq: resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 typescript: '*' peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true typescript: optional: true dependencies: - '@babel/core': 7.17.5 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-decorators': 7.17.2_@babel+core@7.17.5 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.5 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-destructuring': 7.17.3_@babel+core@7.17.5 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.5 - '@babel/preset-env': 7.16.11_@babel+core@7.17.5 - '@babel/preset-react': 7.16.7_@babel+core@7.17.5 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.5 - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@16.14.0 - '@storybook/api': 6.4.19_react-dom@16.14.0+react@16.14.0 + '@babel/core': 7.17.10 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-decorators': 7.17.2_@babel+core@7.17.10 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.10 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.10 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-destructuring': 7.17.3_@babel+core@7.17.10 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.10 + '@babel/preset-env': 7.16.11_@babel+core@7.17.10 + '@babel/preset-react': 7.16.7_@babel+core@7.17.10 + '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@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_react-dom@16.14.0+react@16.14.0 + '@storybook/client-api': 6.4.19 '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_react-dom@16.14.0+react@16.14.0 - '@storybook/core-common': 6.4.19_1b381fc2f987226c057ae86685972c7b + '@storybook/components': 6.4.19 + '@storybook/core-common': 6.4.19_nojjwotduajuku2vg46qvhscnq '@storybook/core-events': 6.4.19 '@storybook/node-logger': 6.4.19 - '@storybook/preview-web': 6.4.19_react-dom@16.14.0+react@16.14.0 - '@storybook/router': 6.4.19_react-dom@16.14.0+react@16.14.0 + '@storybook/preview-web': 6.4.19 + '@storybook/router': 6.4.19 '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react-dom@16.14.0+react@16.14.0 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@16.14.0 - '@storybook/ui': 6.4.19_react-dom@16.14.0+react@16.14.0 + '@storybook/store': 6.4.19 + '@storybook/theming': 6.4.19 + '@storybook/ui': 6.4.19 '@types/node': 14.18.12 '@types/webpack': 4.41.32 autoprefixer: 9.8.8 - babel-loader: 8.2.3_a58183228c2c7b1a132de84b2b6f9adf + babel-loader: 8.2.5_usdhdj5awexcm2e5jtwd44bofa babel-plugin-macros: 2.8.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.5 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.10 case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.22.5 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_mpahngmn3mtdx6vmys44ywifxm glob: 7.2.0 glob-promise: 3.4.0_glob@7.2.0 global: 4.4.0 @@ -4117,16 +4295,14 @@ packages: pnp-webpack-plugin: 1.6.4_typescript@4.6.2 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.3.0_postcss@7.0.39+webpack@4.46.0 + postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe raw-loader: 4.0.2_webpack@4.46.0 - react: 16.14.0 - react-dom: 16.14.0_react@16.14.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 + 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 @@ -4135,7 +4311,7 @@ packages: webpack-virtual-modules: 0.2.2 transitivePeerDependencies: - '@types/react' - - acorn + - bluebird - eslint - supports-color - vue-template-compiler @@ -4143,65 +4319,69 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack4/6.4.19_b1afae7d32d6bdf65a15a2c2a8a4d88d: + /@storybook/builder-webpack4/6.4.19_qehfux3h3tqxytdinp6waqh36a: resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 typescript: '*' peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true typescript: optional: true dependencies: - '@babel/core': 7.17.5 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-decorators': 7.17.2_@babel+core@7.17.5 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.5 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-destructuring': 7.17.3_@babel+core@7.17.5 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.5 - '@babel/preset-env': 7.16.11_@babel+core@7.17.5 - '@babel/preset-react': 7.16.7_@babel+core@7.17.5 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.5 - '@storybook/addons': 6.4.19 - '@storybook/api': 6.4.19 + '@babel/core': 7.17.10 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-decorators': 7.17.2_@babel+core@7.17.10 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.10 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.10 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-destructuring': 7.17.3_@babel+core@7.17.10 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.10 + '@babel/preset-env': 7.16.11_@babel+core@7.17.10 + '@babel/preset-react': 7.16.7_@babel+core@7.17.10 + '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@storybook/addons': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty + '@storybook/api': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@storybook/channel-postmessage': 6.4.19 '@storybook/channels': 6.4.19 - '@storybook/client-api': 6.4.19 + '@storybook/client-api': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19 - '@storybook/core-common': 6.4.19_eslint@8.15.0+typescript@4.6.2 + '@storybook/components': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty + '@storybook/core-common': 6.4.19_qehfux3h3tqxytdinp6waqh36a '@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_wcqkhtmu7mswc6yz4uyexck3ty + '@storybook/router': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@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_wcqkhtmu7mswc6yz4uyexck3ty + '@storybook/theming': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty + '@storybook/ui': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@types/node': 14.18.12 '@types/webpack': 4.41.32 autoprefixer: 9.8.8 - babel-loader: 8.2.3_a58183228c2c7b1a132de84b2b6f9adf + babel-loader: 8.2.5_usdhdj5awexcm2e5jtwd44bofa babel-plugin-macros: 2.8.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.5 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.10 case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.22.5 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_mpahngmn3mtdx6vmys44ywifxm glob: 7.2.0 glob-promise: 3.4.0_glob@7.2.0 global: 4.4.0 @@ -4209,14 +4389,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.3.0_postcss@7.0.39+webpack@4.46.0 + postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe raw-loader: 4.0.2_webpack@4.46.0 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 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_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-dev-middleware: 3.7.3_webpack@4.46.0 @@ -4225,7 +4407,7 @@ packages: webpack-virtual-modules: 0.2.2 transitivePeerDependencies: - '@types/react' - - acorn + - bluebird - eslint - supports-color - vue-template-compiler @@ -4268,6 +4450,11 @@ packages: 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 '@storybook/channel-postmessage': 6.4.19 @@ -4291,19 +4478,24 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/client-api/6.4.19_react-dom@16.14.0+react@16.14.0: + /@storybook/client-api/6.4.19_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-OCrT5Um3FDvZnimQKwWtwsaI+5agPwq2i8YiqlofrI/NPMKp0I7DEkCGwE5IRD1Q8BIKqHcMo5tTmfYi0AxyOg==} 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-dom@16.14.0+react@16.14.0 + '@storybook/addons': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@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-dom@16.14.0+react@16.14.0 + '@storybook/store': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@types/qs': 6.9.7 '@types/webpack-env': 1.16.3 core-js: 3.22.5 @@ -4333,6 +4525,11 @@ packages: 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: '@popperjs/core': 2.11.2 '@storybook/client-logger': 6.4.19 @@ -4362,16 +4559,21 @@ packages: - '@types/react' dev: true - /@storybook/components/6.4.19_react-dom@16.14.0+react@16.14.0: + /@storybook/components/6.4.19_wcqkhtmu7mswc6yz4uyexck3ty: 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 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true dependencies: '@popperjs/core': 2.11.2 '@storybook/client-logger': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@16.14.0 + '@storybook/theming': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@types/color-convert': 2.0.0 '@types/overlayscrollbars': 1.12.1 '@types/react-syntax-highlighter': 11.0.5 @@ -4386,9 +4588,9 @@ packages: polished: 4.1.4 prop-types: 15.8.1 react: 16.14.0 - react-colorful: 5.5.1_react-dom@16.14.0+react@16.14.0 + react-colorful: 5.5.1_wcqkhtmu7mswc6yz4uyexck3ty react-dom: 16.14.0_react@16.14.0 - react-popper-tooltip: 3.1.1_react-dom@16.14.0+react@16.14.0 + react-popper-tooltip: 3.1.1_wcqkhtmu7mswc6yz4uyexck3ty react-syntax-highlighter: 13.5.3_react@16.14.0 react-textarea-autosize: 8.3.3_react@16.14.0 regenerator-runtime: 0.13.9 @@ -4398,7 +4600,7 @@ packages: - '@types/react' dev: true - /@storybook/core-client/6.4.19_1e23a0fa29879f8bdd5a0b4c23f44c1d: + /@storybook/core-client/6.4.19_7in6qbnjgkqokibdcer35wqugu: resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -4406,45 +4608,10 @@ packages: typescript: '*' webpack: '*' peerDependenciesMeta: - typescript: + react: + optional: true + react-dom: optional: true - dependencies: - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@16.14.0 - '@storybook/channel-postmessage': 6.4.19 - '@storybook/channel-websocket': 6.4.19 - '@storybook/client-api': 6.4.19_react-dom@16.14.0+react@16.14.0 - '@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-dom@16.14.0+react@16.14.0 - '@storybook/store': 6.4.19_react-dom@16.14.0+react@16.14.0 - '@storybook/ui': 6.4.19_react-dom@16.14.0+react@16.14.0 - airbnb-js-shims: 2.2.1 - ansi-to-html: 0.6.15 - core-js: 3.22.5 - global: 4.4.0 - lodash: 4.17.21 - qs: 6.10.3 - react: 16.14.0 - react-dom: 16.14.0_react@16.14.0 - 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 - transitivePeerDependencies: - - '@types/react' - dev: true - - /@storybook/core-client/6.4.19_typescript@4.6.2: - 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: @@ -4469,11 +4636,12 @@ packages: typescript: 4.6.2 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.6.2+webpack@4.46.0: + /@storybook/core-client/6.4.19_dyr2b6rjq6pyxxk2bngch5cmdu: resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -4481,25 +4649,31 @@ packages: typescript: '*' webpack: '*' peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true typescript: optional: true dependencies: - '@storybook/addons': 6.4.19 + '@storybook/addons': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@storybook/channel-postmessage': 6.4.19 '@storybook/channel-websocket': 6.4.19 - '@storybook/client-api': 6.4.19 + '@storybook/client-api': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@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_wcqkhtmu7mswc6yz4uyexck3ty + '@storybook/store': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty + '@storybook/ui': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.22.5 global: 4.4.0 lodash: 4.17.21 qs: 6.10.3 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 typescript: 4.6.2 @@ -4510,61 +4684,63 @@ packages: - '@types/react' dev: true - /@storybook/core-common/6.4.19_1b381fc2f987226c057ae86685972c7b: + /@storybook/core-common/6.4.19_nojjwotduajuku2vg46qvhscnq: resolution: {integrity: sha512-X1pJJkO48DFxl6iyEemIKqRkJ7j9/cBh3BRBUr+xZHXBvnD0GKDXIocwh0PjSxSC6XSu3UCQnqtKi3PbjRl8Dg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 typescript: '*' peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true typescript: optional: true dependencies: - '@babel/core': 7.17.5 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-decorators': 7.17.2_@babel+core@7.17.5 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.5 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-destructuring': 7.17.3_@babel+core@7.17.5 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.5 - '@babel/preset-env': 7.16.11_@babel+core@7.17.5 - '@babel/preset-react': 7.16.7_@babel+core@7.17.5 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.5 - '@babel/register': 7.17.0_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-decorators': 7.17.2_@babel+core@7.17.10 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.10 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.10 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-destructuring': 7.17.3_@babel+core@7.17.10 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.10 + '@babel/preset-env': 7.16.11_@babel+core@7.17.10 + '@babel/preset-react': 7.16.7_@babel+core@7.17.10 + '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/register': 7.17.0_@babel+core@7.17.10 '@storybook/node-logger': 6.4.19 '@storybook/semver': 7.3.2 '@types/node': 14.18.12 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.3_a58183228c2c7b1a132de84b2b6f9adf + babel-loader: 8.2.5_usdhdj5awexcm2e5jtwd44bofa babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.5 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.10 chalk: 4.1.2 core-js: 3.22.5 express: 4.17.3 file-system-cache: 1.0.5 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.0_0c94ded6d3ea0776ea8fc984d539761d + fork-ts-checker-webpack-plugin: 6.5.0_mpahngmn3mtdx6vmys44ywifxm fs-extra: 9.1.0 glob: 7.2.0 handlebars: 4.7.7 interpret: 2.2.0 - json5: 2.2.0 + json5: 2.2.1 lazy-universal-dotenv: 3.0.1 picomatch: 2.3.1 pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 - react: 16.14.0 - react-dom: 16.14.0_react@16.14.0 resolve-from: 5.0.0 slash: 3.0.0 telejson: 5.3.3 @@ -4580,59 +4756,65 @@ packages: - webpack-command dev: true - /@storybook/core-common/6.4.19_eslint@8.15.0+typescript@4.6.2: + /@storybook/core-common/6.4.19_qehfux3h3tqxytdinp6waqh36a: resolution: {integrity: sha512-X1pJJkO48DFxl6iyEemIKqRkJ7j9/cBh3BRBUr+xZHXBvnD0GKDXIocwh0PjSxSC6XSu3UCQnqtKi3PbjRl8Dg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 typescript: '*' peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true typescript: optional: true dependencies: - '@babel/core': 7.17.5 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-decorators': 7.17.2_@babel+core@7.17.5 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.5 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-destructuring': 7.17.3_@babel+core@7.17.5 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.5 - '@babel/preset-env': 7.16.11_@babel+core@7.17.5 - '@babel/preset-react': 7.16.7_@babel+core@7.17.5 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.5 - '@babel/register': 7.17.0_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-decorators': 7.17.2_@babel+core@7.17.10 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.10 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.10 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-destructuring': 7.17.3_@babel+core@7.17.10 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.10 + '@babel/preset-env': 7.16.11_@babel+core@7.17.10 + '@babel/preset-react': 7.16.7_@babel+core@7.17.10 + '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/register': 7.17.0_@babel+core@7.17.10 '@storybook/node-logger': 6.4.19 '@storybook/semver': 7.3.2 '@types/node': 14.18.12 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.3_a58183228c2c7b1a132de84b2b6f9adf + babel-loader: 8.2.5_usdhdj5awexcm2e5jtwd44bofa babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.5 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.10 chalk: 4.1.2 core-js: 3.22.5 express: 4.17.3 file-system-cache: 1.0.5 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.0_0c94ded6d3ea0776ea8fc984d539761d + fork-ts-checker-webpack-plugin: 6.5.0_mpahngmn3mtdx6vmys44ywifxm fs-extra: 9.1.0 glob: 7.2.0 handlebars: 4.7.7 interpret: 2.2.0 - json5: 2.2.0 + json5: 2.2.1 lazy-universal-dotenv: 3.0.1 picomatch: 2.3.1 pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 resolve-from: 5.0.0 slash: 3.0.0 telejson: 5.3.3 @@ -4654,7 +4836,7 @@ packages: core-js: 3.22.5 dev: true - /@storybook/core-server/6.4.19_1b381fc2f987226c057ae86685972c7b: + /@storybook/core-server/6.4.19_nojjwotduajuku2vg46qvhscnq: resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -4667,20 +4849,24 @@ packages: optional: true '@storybook/manager-webpack5': optional: true + react: + optional: true + react-dom: + optional: true typescript: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.19_1b381fc2f987226c057ae86685972c7b - '@storybook/core-client': 6.4.19_1e23a0fa29879f8bdd5a0b4c23f44c1d - '@storybook/core-common': 6.4.19_1b381fc2f987226c057ae86685972c7b + '@storybook/builder-webpack4': 6.4.19_nojjwotduajuku2vg46qvhscnq + '@storybook/core-client': 6.4.19_7in6qbnjgkqokibdcer35wqugu + '@storybook/core-common': 6.4.19_nojjwotduajuku2vg46qvhscnq '@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_1b381fc2f987226c057ae86685972c7b + '@storybook/manager-webpack4': 6.4.19_nojjwotduajuku2vg46qvhscnq '@storybook/node-logger': 6.4.19 '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react-dom@16.14.0+react@16.14.0 + '@storybook/store': 6.4.19 '@types/node': 14.18.12 '@types/node-fetch': 2.6.1 '@types/pretty-hrtime': 1.0.1 @@ -4703,8 +4889,6 @@ packages: node-fetch: 2.6.7 pretty-hrtime: 1.0.3 prompts: 2.4.2 - react: 16.14.0 - react-dom: 16.14.0_react@16.14.0 regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 slash: 3.0.0 @@ -4717,7 +4901,7 @@ packages: ws: 8.5.0 transitivePeerDependencies: - '@types/react' - - acorn + - bluebird - bufferutil - encoding - eslint @@ -4728,7 +4912,7 @@ packages: - webpack-command dev: true - /@storybook/core-server/6.4.19_b1afae7d32d6bdf65a15a2c2a8a4d88d: + /@storybook/core-server/6.4.19_qehfux3h3tqxytdinp6waqh36a: resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -4741,20 +4925,24 @@ packages: optional: true '@storybook/manager-webpack5': optional: true + react: + optional: true + react-dom: + optional: true typescript: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.19_b1afae7d32d6bdf65a15a2c2a8a4d88d - '@storybook/core-client': 6.4.19_typescript@4.6.2+webpack@4.46.0 - '@storybook/core-common': 6.4.19_eslint@8.15.0+typescript@4.6.2 + '@storybook/builder-webpack4': 6.4.19_qehfux3h3tqxytdinp6waqh36a + '@storybook/core-client': 6.4.19_dyr2b6rjq6pyxxk2bngch5cmdu + '@storybook/core-common': 6.4.19_qehfux3h3tqxytdinp6waqh36a '@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_b1afae7d32d6bdf65a15a2c2a8a4d88d + '@storybook/manager-webpack4': 6.4.19_qehfux3h3tqxytdinp6waqh36a '@storybook/node-logger': 6.4.19 '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19 + '@storybook/store': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@types/node': 14.18.12 '@types/node-fetch': 2.6.1 '@types/pretty-hrtime': 1.0.1 @@ -4777,6 +4965,8 @@ packages: node-fetch: 2.6.7 pretty-hrtime: 1.0.3 prompts: 2.4.2 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 slash: 3.0.0 @@ -4789,7 +4979,7 @@ packages: ws: 8.5.0 transitivePeerDependencies: - '@types/react' - - acorn + - bluebird - bufferutil - encoding - eslint @@ -4800,7 +4990,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.19_1c176f51d26fa9520c639fd267c7cec4: + /@storybook/core/6.4.19_mpahngmn3mtdx6vmys44ywifxm: resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -4811,19 +5001,21 @@ packages: peerDependenciesMeta: '@storybook/builder-webpack5': optional: true + react: + optional: true + react-dom: + optional: true typescript: optional: true - dependencies: - '@storybook/core-client': 6.4.19_1e23a0fa29879f8bdd5a0b4c23f44c1d - '@storybook/core-server': 6.4.19_1b381fc2f987226c057ae86685972c7b - react: 16.14.0 - react-dom: 16.14.0_react@16.14.0 + dependencies: + '@storybook/core-client': 6.4.19_7in6qbnjgkqokibdcer35wqugu + '@storybook/core-server': 6.4.19_nojjwotduajuku2vg46qvhscnq typescript: 4.6.2 webpack: 4.46.0 transitivePeerDependencies: - '@storybook/manager-webpack5' - '@types/react' - - acorn + - bluebird - bufferutil - encoding - eslint @@ -4834,7 +5026,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.19_b1afae7d32d6bdf65a15a2c2a8a4d88d: + /@storybook/core/6.4.19_t67tlz2qu5uba2kxhsqlllgqoa: resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -4845,16 +5037,23 @@ packages: peerDependenciesMeta: '@storybook/builder-webpack5': optional: true + react: + optional: true + react-dom: + optional: true typescript: optional: true dependencies: - '@storybook/core-client': 6.4.19_typescript@4.6.2 - '@storybook/core-server': 6.4.19_b1afae7d32d6bdf65a15a2c2a8a4d88d + '@storybook/core-client': 6.4.19_dyr2b6rjq6pyxxk2bngch5cmdu + '@storybook/core-server': 6.4.19_qehfux3h3tqxytdinp6waqh36a + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 typescript: 4.6.2 + webpack: 4.46.0 transitivePeerDependencies: - '@storybook/manager-webpack5' - '@types/react' - - acorn + - bluebird - bufferutil - encoding - eslint @@ -4868,13 +5067,13 @@ packages: /@storybook/csf-tools/6.4.19: resolution: {integrity: sha512-gf/zRhGoAVsFwSyV2tc+jeJfZQkxF6QsaZgbUSe24/IUvGFCT/PS/jZq1qy7dECAwrTOfykgu8juyBtj6WhWyw==} dependencies: - '@babel/core': 7.17.5 - '@babel/generator': 7.17.3 - '@babel/parser': 7.17.3 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.5 - '@babel/preset-env': 7.16.11_@babel+core@7.17.5 - '@babel/traverse': 7.17.3 - '@babel/types': 7.17.0 + '@babel/core': 7.17.10 + '@babel/generator': 7.17.10 + '@babel/parser': 7.17.10 + '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.10 + '@babel/preset-env': 7.16.11_@babel+core@7.17.10 + '@babel/traverse': 7.17.10 + '@babel/types': 7.17.10 '@mdx-js/mdx': 1.6.22 '@storybook/csf': 0.0.2--canary.87bc651.0 core-js: 3.22.5 @@ -4895,28 +5094,32 @@ packages: lodash: 4.17.21 dev: true - /@storybook/manager-webpack4/6.4.19_1b381fc2f987226c057ae86685972c7b: + /@storybook/manager-webpack4/6.4.19_nojjwotduajuku2vg46qvhscnq: resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 typescript: '*' peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true typescript: optional: true dependencies: - '@babel/core': 7.17.5 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.5 - '@babel/preset-react': 7.16.7_@babel+core@7.17.5 - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@16.14.0 - '@storybook/core-client': 6.4.19_1e23a0fa29879f8bdd5a0b4c23f44c1d - '@storybook/core-common': 6.4.19_1b381fc2f987226c057ae86685972c7b + '@babel/core': 7.17.10 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.10 + '@babel/preset-react': 7.16.7_@babel+core@7.17.10 + '@storybook/addons': 6.4.19 + '@storybook/core-client': 6.4.19_7in6qbnjgkqokibdcer35wqugu + '@storybook/core-common': 6.4.19_nojjwotduajuku2vg46qvhscnq '@storybook/node-logger': 6.4.19 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@16.14.0 - '@storybook/ui': 6.4.19_react-dom@16.14.0+react@16.14.0 + '@storybook/theming': 6.4.19 + '@storybook/ui': 6.4.19 '@types/node': 14.18.12 '@types/webpack': 4.41.32 - babel-loader: 8.2.3_a58183228c2c7b1a132de84b2b6f9adf + babel-loader: 8.2.5_usdhdj5awexcm2e5jtwd44bofa case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.22.5 @@ -4929,8 +5132,6 @@ 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: 16.14.0 - react-dom: 16.14.0_react@16.14.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -4939,14 +5140,14 @@ 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-dev-middleware: 3.7.3_webpack@4.46.0 webpack-virtual-modules: 0.2.2 transitivePeerDependencies: - '@types/react' - - acorn + - bluebird - encoding - eslint - supports-color @@ -4955,28 +5156,32 @@ packages: - webpack-command dev: true - /@storybook/manager-webpack4/6.4.19_b1afae7d32d6bdf65a15a2c2a8a4d88d: + /@storybook/manager-webpack4/6.4.19_qehfux3h3tqxytdinp6waqh36a: resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 typescript: '*' peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true typescript: optional: true dependencies: - '@babel/core': 7.17.5 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.5 - '@babel/preset-react': 7.16.7_@babel+core@7.17.5 - '@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_eslint@8.15.0+typescript@4.6.2 + '@babel/core': 7.17.10 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.10 + '@babel/preset-react': 7.16.7_@babel+core@7.17.10 + '@storybook/addons': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty + '@storybook/core-client': 6.4.19_dyr2b6rjq6pyxxk2bngch5cmdu + '@storybook/core-common': 6.4.19_qehfux3h3tqxytdinp6waqh36a '@storybook/node-logger': 6.4.19 - '@storybook/theming': 6.4.19 - '@storybook/ui': 6.4.19 + '@storybook/theming': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty + '@storybook/ui': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@types/node': 14.18.12 '@types/webpack': 4.41.32 - babel-loader: 8.2.3_a58183228c2c7b1a132de84b2b6f9adf + babel-loader: 8.2.5_usdhdj5awexcm2e5jtwd44bofa case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.22.5 @@ -4989,22 +5194,24 @@ 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: 16.14.0 + react-dom: 16.14.0_react@16.14.0 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@7.4.1+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-dev-middleware: 3.7.3_webpack@4.46.0 webpack-virtual-modules: 0.2.2 transitivePeerDependencies: - '@types/react' - - acorn + - bluebird - encoding - eslint - supports-color @@ -5044,6 +5251,11 @@ packages: 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 '@storybook/channel-postmessage': 6.4.19 @@ -5063,18 +5275,23 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/preview-web/6.4.19_react-dom@16.14.0+react@16.14.0: + /@storybook/preview-web/6.4.19_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-jqltoBv5j7lvnxEfV9w8dLX9ASWGuvgz97yg8Yo5FqkftEwrHJenyvMGcTgDJKJPorF+wiz/9aIqnmd3LCAcZQ==} 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-dom@16.14.0+react@16.14.0 + '@storybook/addons': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@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-dom@16.14.0+react@16.14.0 + '@storybook/store': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty ansi-to-html: 0.6.15 core-js: 3.22.5 global: 4.4.0 @@ -5089,7 +5306,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/react-docgen-typescript-plugin/1.0.1_typescript@4.6.2: + /@storybook/react-docgen-typescript-plugin/1.0.1_7in6qbnjgkqokibdcer35wqugu: resolution: {integrity: sha512-dqbHa+5gaxaklFCuV1WTvljVPTo3QIJgpW4Ln+QeME7osPZUnUhjN2/djvo+sxrWUrTTuqX5jkn291aDngu9Tw==} peerDependencies: typescript: '>= 3.x' @@ -5103,6 +5320,7 @@ packages: react-docgen-typescript: 2.2.2_typescript@4.6.2 tslib: 2.3.1 typescript: 4.6.2 + webpack: 4.46.0 transitivePeerDependencies: - supports-color dev: true @@ -5112,6 +5330,11 @@ packages: 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/client-logger': 6.4.19 core-js: 3.22.5 @@ -5126,11 +5349,16 @@ packages: ts-dedent: 2.2.0 dev: true - /@storybook/router/6.4.19_react-dom@16.14.0+react@16.14.0: + /@storybook/router/6.4.19_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-KWWwIzuyeEIWVezkCihwY2A76Il9tUNg0I410g9qT7NrEsKyqXGRYOijWub7c1GGyNjLqz0jtrrehtixMcJkuA==} 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/client-logger': 6.4.19 core-js: 3.22.5 @@ -5143,7 +5371,7 @@ packages: react: 16.14.0 react-dom: 16.14.0_react@16.14.0 react-router: 6.2.2_react@16.14.0 - react-router-dom: 6.2.2_react-dom@16.14.0+react@16.14.0 + react-router-dom: 6.2.2_wcqkhtmu7mswc6yz4uyexck3ty ts-dedent: 2.2.0 dev: true @@ -5161,6 +5389,11 @@ packages: 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 '@storybook/client-logger': 6.4.19 @@ -5179,6 +5412,11 @@ packages: 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 '@storybook/client-logger': 6.4.19 @@ -5197,13 +5435,18 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/store/6.4.19_react-dom@16.14.0+react@16.14.0: + /@storybook/store/6.4.19_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-N9/ZjemRHGfT3InPIbqQqc6snkcfnf3Qh9oOr0smbfaVGJol//KOX65kzzobtzFcid0WxtTDZ3HmgFVH+GvuhQ==} 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-dom@16.14.0+react@16.14.0 + '@storybook/addons': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 @@ -5227,6 +5470,11 @@ packages: 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: '@emotion/core': 10.3.1 '@emotion/is-prop-valid': 0.8.8 @@ -5242,19 +5490,24 @@ packages: ts-dedent: 2.2.0 dev: true - /@storybook/theming/6.4.19_react-dom@16.14.0+react@16.14.0: + /@storybook/theming/6.4.19_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-V4pWmTvAxmbHR6B3jA4hPkaxZPyExHvCToy7b76DpUTpuHihijNDMAn85KhOQYIeL9q14zP/aiz899tOHsOidg==} 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: '@emotion/core': 10.3.1_react@16.14.0 '@emotion/is-prop-valid': 0.8.8 - '@emotion/styled': 10.3.0_864809d686fef2043b51d8d752270dc1 + '@emotion/styled': 10.3.0_qzeatvug73zaio2r3dlvejynye '@storybook/client-logger': 6.4.19 core-js: 3.22.5 deep-object-diff: 1.1.7 - emotion-theming: 10.3.0_864809d686fef2043b51d8d752270dc1 + emotion-theming: 10.3.0_qzeatvug73zaio2r3dlvejynye global: 4.4.0 memoizerific: 1.11.3 polished: 4.1.4 @@ -5269,6 +5522,11 @@ packages: 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: '@emotion/core': 10.3.1 '@storybook/addons': 6.4.19 @@ -5302,27 +5560,32 @@ packages: - '@types/react' dev: true - /@storybook/ui/6.4.19_react-dom@16.14.0+react@16.14.0: + /@storybook/ui/6.4.19_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-gFwdn5LA2U6oQ4bfUFLyHZnNasGQ01YVdwjbi+l6yjmnckBNtZfJoVTZ1rzGUbxSE9rK48InJRU+latTsr7xAg==} 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: '@emotion/core': 10.3.1_react@16.14.0 - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@16.14.0 - '@storybook/api': 6.4.19_react-dom@16.14.0+react@16.14.0 + '@storybook/addons': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty + '@storybook/api': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@storybook/channels': 6.4.19 '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_react-dom@16.14.0+react@16.14.0 + '@storybook/components': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@storybook/core-events': 6.4.19 - '@storybook/router': 6.4.19_react-dom@16.14.0+react@16.14.0 + '@storybook/router': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@storybook/semver': 7.3.2 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@16.14.0 + '@storybook/theming': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty copy-to-clipboard: 3.3.1 core-js: 3.22.5 core-js-pure: 3.21.1 downshift: 6.1.7_react@16.14.0 - emotion-theming: 10.3.0_864809d686fef2043b51d8d752270dc1 + emotion-theming: 10.3.0_qzeatvug73zaio2r3dlvejynye fuse.js: 3.6.1 global: 4.4.0 lodash: 4.17.21 @@ -5332,8 +5595,8 @@ packages: qs: 6.10.3 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 - react-draggable: 4.4.4_react-dom@16.14.0+react@16.14.0 - react-helmet-async: 1.2.3_react-dom@16.14.0+react@16.14.0 + react-draggable: 4.4.4_wcqkhtmu7mswc6yz4uyexck3ty + react-helmet-async: 1.2.3_wcqkhtmu7mswc6yz4uyexck3ty react-sizeme: 3.0.2 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -5342,7 +5605,7 @@ packages: - '@types/react' dev: true - /@storybook/vue/6.4.19_0cc5bde6cc4006e6645ddb23b41993f2: + /@storybook/vue/6.4.19_a2jweejbyxkxmq6ipymwowpffi: resolution: {integrity: sha512-Uqy2F7qIV90IQwhT7BCwDWWHwDvAgT2MFMripVmzUQfYfPoTsja54viDBS8i0uEc7R1qPrRA2CpofINKAuZM0A==} engines: {node: '>=10.13.0'} hasBin: true @@ -5354,30 +5617,34 @@ packages: vue-loader: ^15.7.0 vue-template-compiler: ^2.6.8 dependencies: - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@16.14.0 - '@storybook/core': 6.4.19_1c176f51d26fa9520c639fd267c7cec4 - '@storybook/core-common': 6.4.19_1b381fc2f987226c057ae86685972c7b + '@babel/core': 7.17.10 + '@storybook/addons': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty + '@storybook/core': 6.4.19_t67tlz2qu5uba2kxhsqlllgqoa + '@storybook/core-common': 6.4.19_qehfux3h3tqxytdinp6waqh36a '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/store': 6.4.19_react-dom@16.14.0+react@16.14.0 + '@storybook/store': 6.4.19_wcqkhtmu7mswc6yz4uyexck3ty '@types/webpack-env': 1.16.3 + babel-loader: 8.2.5_usdhdj5awexcm2e5jtwd44bofa core-js: 3.22.5 - css-loader: 5.2.7 + css-loader: 5.2.7_webpack@4.46.0 global: 4.4.0 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - ts-loader: 8.3.0_typescript@4.6.2+webpack@4.46.0 - vue-docgen-api: 4.44.18 - vue-docgen-loader: 1.5.0_4f483e0d3c950f846ed91d401997f598 - vue-loader: 15.9.8_css-loader@5.2.7 + ts-loader: 8.3.0_7in6qbnjgkqokibdcer35wqugu + vue: 2.6.14 + vue-docgen-api: 4.44.18_vue@2.6.14 + vue-docgen-loader: 1.5.0_j5ed4dj4suhyi3wzdvabtf7vta + vue-loader: 15.9.8_pv3e62hihcgilzzlt4q6ljqzyu + vue-template-compiler: 2.6.14 webpack: 4.46.0 transitivePeerDependencies: - '@storybook/builder-webpack5' - '@storybook/manager-webpack5' - '@types/react' - - acorn + - bluebird - bufferutil - encoding - eslint @@ -5393,7 +5660,7 @@ packages: peerDependencies: tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1' dependencies: - tailwindcss: 3.0.23_cf30258013438338cbfd2cf01b956a45 + tailwindcss: 3.0.23_z4yclaatiobtrs75ftybxflkiu dev: false /@tailwindcss/typography/0.5.2_tailwindcss@3.0.23: @@ -5404,7 +5671,7 @@ packages: lodash.castarray: 4.4.0 lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 - tailwindcss: 3.0.23_cf30258013438338cbfd2cf01b956a45 + tailwindcss: 3.0.23_z4yclaatiobtrs75ftybxflkiu dev: false /@testing-library/dom/7.31.2: @@ -5421,6 +5688,20 @@ packages: pretty-format: 26.6.2 dev: true + /@testing-library/dom/8.13.0: + resolution: {integrity: sha512-9VHgfIatKNXQNaZTtLnalIy0jNZzY35a4S3oi08YAt9Hv1VsfZ/DfA45lM8D/UhtHBGJ4/lGwp0PZkVndRkoOQ==} + engines: {node: '>=12'} + dependencies: + '@babel/code-frame': 7.16.7 + '@babel/runtime': 7.17.2 + '@types/aria-query': 4.2.2 + aria-query: 5.0.0 + chalk: 4.1.2 + dom-accessibility-api: 0.5.10 + lz-string: 1.4.4 + pretty-format: 27.4.2 + dev: true + /@testing-library/jest-dom/5.16.1: resolution: {integrity: sha512-ajUJdfDIuTCadB79ukO+0l8O+QwN0LiSxDaYUTI4LndbbUsGi6rWU1SCexXzBA2NSjlVB9/vbkasQIL3tmPBjw==} engines: {node: '>=8', npm: '>=6', yarn: '>=1'} @@ -5436,16 +5717,17 @@ packages: redent: 3.0.0 dev: true - /@testing-library/user-event/13.5.0: + /@testing-library/user-event/13.5.0_tlwynutqiyp5mns3woioasuxnq: resolution: {integrity: sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==} engines: {node: '>=10', npm: '>=6'} peerDependencies: '@testing-library/dom': '>=7.21.4' dependencies: '@babel/runtime': 7.17.2 + '@testing-library/dom': 8.13.0 dev: true - /@testing-library/vue/5.8.2: + /@testing-library/vue/5.8.2_sbs6or2oam5i4s4vmfp4rzwdnq: resolution: {integrity: sha512-evsQjLw3T/c92ZsXflZMzSN72P06VlgUZMIcrRKn5n9ZX7QgQyebB3DgdmPACf6JgNfP8Y3Lm2212FmeMnWlZw==} engines: {node: '>10.18'} peerDependencies: @@ -5454,7 +5736,9 @@ packages: dependencies: '@babel/runtime': 7.17.2 '@testing-library/dom': 7.31.2 - '@vue/test-utils': 1.1.3 + '@vue/test-utils': 1.1.3_sbs6or2oam5i4s4vmfp4rzwdnq + vue: 2.6.14 + vue-template-compiler: 2.6.14 dev: true /@tootallnate/once/1.1.2: @@ -5519,27 +5803,27 @@ packages: /@types/babel__generator/7.6.3: resolution: {integrity: sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==} dependencies: - '@babel/types': 7.16.0 + '@babel/types': 7.17.10 dev: true /@types/babel__template/7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.16.5 - '@babel/types': 7.16.0 + '@babel/parser': 7.17.10 + '@babel/types': 7.17.10 dev: true /@types/babel__traverse/7.14.2: resolution: {integrity: sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==} dependencies: - '@babel/types': 7.16.0 + '@babel/types': 7.17.10 dev: true /@types/body-parser/1.19.2: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.34 - '@types/node': 16.11.13 + '@types/node': 17.0.32 dev: true /@types/browserslist/4.15.0: @@ -5552,7 +5836,7 @@ packages: /@types/clean-css/4.2.5: resolution: {integrity: sha512-NEzjkGGpbs9S9fgC4abuBvTpVwE3i+Acu9BBod3PUyjDVZcNsGx61b8r2PphR61QGPnn0JHVs5ey6/I4eTrkxw==} dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 source-map: 0.6.1 dev: true @@ -5575,7 +5859,7 @@ packages: /@types/connect/3.4.34: resolution: {integrity: sha512-ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ==} dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 dev: true /@types/cookie/0.3.3: @@ -5596,13 +5880,13 @@ packages: /@types/etag/1.8.0: resolution: {integrity: sha512-EdSN0x+Y0/lBv7YAb8IU4Jgm6DWM+Bqtz7o5qozl96fzaqdqbdfHS5qjdpFeIv7xQ8jSLyjMMNShgYtMajEHyQ==} dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 dev: true /@types/express-serve-static-core/4.17.26: resolution: {integrity: sha512-zeu3tpouA043RHxW0gzRxwCHchMgftE8GArRsvYT0ByDMbn19olQHx5jLue0LxWY6iYtXb7rXmuVtSkhy9YZvQ==} dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 dev: true @@ -5632,13 +5916,13 @@ packages: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 3.0.5 - '@types/node': 16.11.13 + '@types/node': 17.0.32 dev: true /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 dev: true /@types/hast/2.3.4: @@ -5727,14 +6011,14 @@ packages: /@types/node-fetch/2.6.1: resolution: {integrity: sha512-oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA==} dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 form-data: 3.0.1 dev: true /@types/node-sass/4.11.2: resolution: {integrity: sha512-pOFlTw/OtZda4e+yMjq6/QYuvY0RDMQ+mxXdWj7rfSyf18V8hS4SfgurO+MasAkQsv6Wt6edOGlwh5QqJml9gw==} dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 dev: true /@types/node/12.20.12: @@ -5749,8 +6033,8 @@ packages: resolution: {integrity: sha512-q4jlIR71hUpWTnGhXWcakgkZeHa3CCjcQcnuzU8M891BAWA2jHiziiWEPEkdS5pFsz7H9HJiy8BrK7tBRNrY7A==} dev: true - /@types/node/16.11.13: - resolution: {integrity: sha512-eUXZzHLHoZqj1frtUetNkUetYoJ6X55UmrVnFD4DMhVeAmwLjniZhtBmsRiemQh4uq4G3vUra/Ws/hs9vEvL3Q==} + /@types/node/17.0.32: + resolution: {integrity: sha512-eAIcfAvhf/BkHcf4pkLJ7ECpBAhh9kcxRBpip9cTiO+hf+aJrsxYxBeS6OXvOd9WqNAJmavXVpZvY1rBjNsXmw==} /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -5838,13 +6122,13 @@ packages: /@types/sass/1.43.1: resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==} dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 dev: true /@types/sax/1.2.3: resolution: {integrity: sha512-+QSw6Tqvs/KQpZX8DvIl3hZSjNFLW/OqE5nlyHXtTwODaJvioN2rOWpBNEWZp2HZUFhOh+VohmJku/WxEXU2XA==} dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 dev: false /@types/scheduler/0.16.2: @@ -5855,7 +6139,7 @@ packages: resolution: {integrity: sha512-ZFqF6qa48XsPdjXV5Gsz0Zqmux2PerNd3a/ktL45mHpa19cuMi/cL8tcxdAx497yRh+QtYPuofjT9oWw9P7nkA==} dependencies: '@types/mime': 1.3.2 - '@types/node': 16.11.13 + '@types/node': 17.0.32 dev: true /@types/source-list-map/0.1.2: @@ -5933,7 +6217,7 @@ packages: /@types/webpack-sources/3.2.0: resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 '@types/source-list-map': 0.1.2 source-map: 0.7.3 @@ -5941,7 +6225,7 @@ packages: resolution: {integrity: sha512-Nn84RAiJjKRfPFFCVR8LC4ueTtTdfWAMZ03THIzZWRJB+rX24BD3LqPSFnbMscWauEsT4segAsylPDIaZyZyLQ==} dependencies: '@types/anymatch': 3.0.0 - '@types/node': 16.11.13 + '@types/node': 17.0.32 '@types/tapable': 1.0.8 '@types/uglify-js': 3.13.1 '@types/webpack-sources': 3.2.0 @@ -5951,7 +6235,7 @@ packages: /@types/webpack/4.41.32: resolution: {integrity: sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==} dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 '@types/tapable': 1.0.8 '@types/uglify-js': 3.13.1 '@types/webpack-sources': 3.2.0 @@ -5978,11 +6262,11 @@ packages: resolution: {integrity: sha512-8uALY5LTvSuHgloDVUvWP3pIauILm+8/0pDMokuDYIoNsOkSwd5AiHBTSEJjKTDcZr5z8UpgOWZkxBF4iJftoA==} requiresBuild: true dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 dev: true optional: true - /@typescript-eslint/eslint-plugin/5.23.0_dd2e9c733d57b00345e0b8fe5856baba: + /@typescript-eslint/eslint-plugin/5.23.0_3uxjy4z5k6yagrpaxd7fqvv2xi: resolution: {integrity: sha512-hEcSmG4XodSLiAp1uxv/OQSGsDY6QN3TcRU32gANp+19wGE1QQZLRS8/GV58VRUoXhnkuJ3ZxNQ3T6Z6zM59DA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5993,10 +6277,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.23.0_eslint@8.15.0+typescript@4.6.2 + '@typescript-eslint/parser': 5.23.0_2qyr5yzk6bquedgydwits76m2m '@typescript-eslint/scope-manager': 5.23.0 - '@typescript-eslint/type-utils': 5.23.0_eslint@8.15.0+typescript@4.6.2 - '@typescript-eslint/utils': 5.23.0_eslint@8.15.0+typescript@4.6.2 + '@typescript-eslint/type-utils': 5.23.0_2qyr5yzk6bquedgydwits76m2m + '@typescript-eslint/utils': 5.23.0_2qyr5yzk6bquedgydwits76m2m debug: 4.3.3 eslint: 8.15.0 functional-red-black-tree: 1.0.1 @@ -6009,7 +6293,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.23.0_eslint@8.15.0+typescript@4.6.2: + /@typescript-eslint/parser/5.23.0_2qyr5yzk6bquedgydwits76m2m: resolution: {integrity: sha512-V06cYUkqcGqpFjb8ttVgzNF53tgbB/KoQT/iB++DOIExKmzI9vBJKjZKt/6FuV9c+zrDsvJKbJ2DOCYwX91cbw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -6037,7 +6321,7 @@ packages: '@typescript-eslint/visitor-keys': 5.23.0 dev: true - /@typescript-eslint/type-utils/5.23.0_eslint@8.15.0+typescript@4.6.2: + /@typescript-eslint/type-utils/5.23.0_2qyr5yzk6bquedgydwits76m2m: resolution: {integrity: sha512-iuI05JsJl/SUnOTXA9f4oI+/4qS/Zcgk+s2ir+lRmXI+80D8GaGwoUqs4p+X+4AxDolPpEpVUdlEH4ADxFy4gw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -6047,7 +6331,7 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.23.0_eslint@8.15.0+typescript@4.6.2 + '@typescript-eslint/utils': 5.23.0_2qyr5yzk6bquedgydwits76m2m debug: 4.3.3 eslint: 8.15.0 tsutils: 3.21.0_typescript@4.6.2 @@ -6082,7 +6366,7 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.23.0_eslint@8.15.0+typescript@4.6.2: + /@typescript-eslint/utils/5.23.0_2qyr5yzk6bquedgydwits76m2m: resolution: {integrity: sha512-dbgaKN21drqpkbbedGMNPCtRPZo1IOUr5EI9Jrrh99r5UW5Q0dz46RKXeSBoPV+56R6dFKpbrdhgUNSJsDDRZA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -6142,101 +6426,101 @@ packages: resolution: {integrity: sha512-QOi5OW45e2R20VygMSNhyQHvpdUwQZqGPc748JLGCYEy+yp8fNFNdbNIGAgZmi9e+2JHPd6i6idRuqivyicIkA==} dev: false - /@vue/babel-plugin-transform-vue-jsx/1.2.1_@babel+core@7.17.5: + /@vue/babel-plugin-transform-vue-jsx/1.2.1_@babel+core@7.17.10: resolution: {integrity: sha512-HJuqwACYehQwh1fNT8f4kyzqlNMpBuUK4rSiSES5D4QsYncv5fxFsLyrxFPG2ksO7t5WP+Vgix6tt6yKClwPzA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/helper-module-imports': 7.16.7 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.5 + '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.10 '@vue/babel-helper-vue-jsx-merge-props': 1.2.1 html-tags: 2.0.0 lodash.kebabcase: 4.1.1 svg-tags: 1.0.0 dev: false - /@vue/babel-preset-jsx/1.2.4_@babel+core@7.17.5: + /@vue/babel-preset-jsx/1.2.4_@babel+core@7.17.10: resolution: {integrity: sha512-oRVnmN2a77bYDJzeGSt92AuHXbkIxbf/XXSE3klINnh9AXBmVS1DGa1f0d+dDYpLfsAKElMnqKTQfKn7obcL4w==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@vue/babel-helper-vue-jsx-merge-props': 1.2.1 - '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.17.5 - '@vue/babel-sugar-composition-api-inject-h': 1.2.1_@babel+core@7.17.5 - '@vue/babel-sugar-composition-api-render-instance': 1.2.4_@babel+core@7.17.5 - '@vue/babel-sugar-functional-vue': 1.2.2_@babel+core@7.17.5 - '@vue/babel-sugar-inject-h': 1.2.2_@babel+core@7.17.5 - '@vue/babel-sugar-v-model': 1.2.3_@babel+core@7.17.5 - '@vue/babel-sugar-v-on': 1.2.3_@babel+core@7.17.5 + '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.17.10 + '@vue/babel-sugar-composition-api-inject-h': 1.2.1_@babel+core@7.17.10 + '@vue/babel-sugar-composition-api-render-instance': 1.2.4_@babel+core@7.17.10 + '@vue/babel-sugar-functional-vue': 1.2.2_@babel+core@7.17.10 + '@vue/babel-sugar-inject-h': 1.2.2_@babel+core@7.17.10 + '@vue/babel-sugar-v-model': 1.2.3_@babel+core@7.17.10 + '@vue/babel-sugar-v-on': 1.2.3_@babel+core@7.17.10 dev: false - /@vue/babel-sugar-composition-api-inject-h/1.2.1_@babel+core@7.17.5: + /@vue/babel-sugar-composition-api-inject-h/1.2.1_@babel+core@7.17.10: resolution: {integrity: sha512-4B3L5Z2G+7s+9Bwbf+zPIifkFNcKth7fQwekVbnOA3cr3Pq71q71goWr97sk4/yyzH8phfe5ODVzEjX7HU7ItQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.10 dev: false - /@vue/babel-sugar-composition-api-render-instance/1.2.4_@babel+core@7.17.5: + /@vue/babel-sugar-composition-api-render-instance/1.2.4_@babel+core@7.17.10: resolution: {integrity: sha512-joha4PZznQMsxQYXtR3MnTgCASC9u3zt9KfBxIeuI5g2gscpTsSKRDzWQt4aqNIpx6cv8On7/m6zmmovlNsG7Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.10 dev: false - /@vue/babel-sugar-functional-vue/1.2.2_@babel+core@7.17.5: + /@vue/babel-sugar-functional-vue/1.2.2_@babel+core@7.17.10: resolution: {integrity: sha512-JvbgGn1bjCLByIAU1VOoepHQ1vFsroSA/QkzdiSs657V79q6OwEWLCQtQnEXD/rLTA8rRit4rMOhFpbjRFm82w==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.10 dev: false - /@vue/babel-sugar-inject-h/1.2.2_@babel+core@7.17.5: + /@vue/babel-sugar-inject-h/1.2.2_@babel+core@7.17.10: resolution: {integrity: sha512-y8vTo00oRkzQTgufeotjCLPAvlhnpSkcHFEp60+LJUwygGcd5Chrpn5480AQp/thrxVm8m2ifAk0LyFel9oCnw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.10 dev: false - /@vue/babel-sugar-v-model/1.2.3_@babel+core@7.17.5: + /@vue/babel-sugar-v-model/1.2.3_@babel+core@7.17.10: resolution: {integrity: sha512-A2jxx87mySr/ulAsSSyYE8un6SIH0NWHiLaCWpodPCVOlQVODCaSpiR4+IMsmBr73haG+oeCuSvMOM+ttWUqRQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.10 '@vue/babel-helper-vue-jsx-merge-props': 1.2.1 - '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.17.5 + '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.17.10 camelcase: 5.3.1 html-tags: 2.0.0 svg-tags: 1.0.0 dev: false - /@vue/babel-sugar-v-on/1.2.3_@babel+core@7.17.5: + /@vue/babel-sugar-v-on/1.2.3_@babel+core@7.17.10: resolution: {integrity: sha512-kt12VJdz/37D3N3eglBywV8GStKNUhNrsxChXIV+o0MwVXORYuhDTHJRKPgLJRb/EY3vM2aRFQdxJBp9CLikjw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.5 - '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.10 + '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.17.10 camelcase: 5.3.1 dev: false /@vue/compiler-core/3.2.31: resolution: {integrity: sha512-aKno00qoA4o+V/kR6i/pE+aP+esng5siNAVQ422TkBNM6qA4veXiZbSe8OTXHXquEi/f6Akc+nLfB4JGfe4/WQ==} dependencies: - '@babel/parser': 7.17.3 + '@babel/parser': 7.17.10 '@vue/shared': 3.2.31 estree-walker: 2.0.2 source-map: 0.6.1 @@ -6250,7 +6534,7 @@ packages: /@vue/compiler-sfc/3.2.31: resolution: {integrity: sha512-748adc9msSPGzXgibHiO6T7RWgfnDcVQD+VVwYgSsyyY8Ans64tALHZANrKtOzvkwznV/F4H7OAod/jIlp/dkQ==} dependencies: - '@babel/parser': 7.17.3 + '@babel/parser': 7.17.10 '@vue/compiler-core': 3.2.31 '@vue/compiler-dom': 3.2.31 '@vue/compiler-ssr': 3.2.31 @@ -6269,10 +6553,10 @@ packages: '@vue/shared': 3.2.31 dev: true - /@vue/component-compiler-utils/3.3.0: + /@vue/component-compiler-utils/3.3.0_babel-core@7.0.0-bridge.0: resolution: {integrity: sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==} dependencies: - consolidate: 0.15.1 + consolidate: 0.15.1_babel-core@7.0.0-bridge.0 hash-sum: 1.0.2 lru-cache: 4.1.5 merge-source-map: 1.1.0 @@ -6282,11 +6566,137 @@ packages: vue-template-es2015-compiler: 1.9.1 optionalDependencies: prettier: 2.6.0 - - /@vue/composition-api/1.4.9: + transitivePeerDependencies: + - arc-templates + - atpl + - babel-core + - bracket-template + - coffee-script + - dot + - dust + - dustjs-helpers + - dustjs-linkedin + - eco + - ect + - ejs + - haml-coffee + - hamlet + - hamljs + - handlebars + - hogan.js + - htmling + - jade + - jazz + - jqtpl + - just + - liquid-node + - liquor + - lodash + - marko + - mote + - mustache + - nunjucks + - plates + - pug + - qejs + - ractive + - razor-tmpl + - react + - react-dom + - slm + - squirrelly + - swig + - swig-templates + - teacup + - templayed + - then-jade + - then-pug + - tinyliquid + - toffee + - twig + - twing + - underscore + - vash + - velocityjs + - walrus + - whiskers + dev: true + + /@vue/component-compiler-utils/3.3.0_mz6uzicp2h6fqcdyehxis2yeyu: + resolution: {integrity: sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==} + dependencies: + consolidate: 0.15.1_mz6uzicp2h6fqcdyehxis2yeyu + hash-sum: 1.0.2 + lru-cache: 4.1.5 + merge-source-map: 1.1.0 + postcss: 7.0.39 + postcss-selector-parser: 6.0.9 + source-map: 0.6.1 + vue-template-es2015-compiler: 1.9.1 + optionalDependencies: + prettier: 2.6.0 + transitivePeerDependencies: + - arc-templates + - atpl + - babel-core + - bracket-template + - coffee-script + - dot + - dust + - dustjs-helpers + - dustjs-linkedin + - eco + - ect + - ejs + - haml-coffee + - hamlet + - hamljs + - handlebars + - hogan.js + - htmling + - jade + - jazz + - jqtpl + - just + - liquid-node + - liquor + - lodash + - marko + - mote + - mustache + - nunjucks + - plates + - pug + - qejs + - ractive + - razor-tmpl + - react + - react-dom + - slm + - squirrelly + - swig + - swig-templates + - teacup + - templayed + - then-jade + - then-pug + - tinyliquid + - toffee + - twig + - twing + - underscore + - vash + - velocityjs + - walrus + - whiskers + dev: false + + /@vue/composition-api/1.4.9_vue@2.6.14: resolution: {integrity: sha512-l6YOeg5LEXmfPqyxAnBaCv1FMRw0OGKJ4m6nOWRm6ngt5TuHcj5ZoBRN+LXh3J0u6Ur3C4VA+RiKT+M0eItr/g==} peerDependencies: vue: '>= 2.5 < 3' + dependencies: + vue: 2.6.14 dev: false /@vue/devtools-api/6.1.4: @@ -6296,7 +6706,7 @@ packages: /@vue/reactivity-transform/3.2.31: resolution: {integrity: sha512-uS4l4z/W7wXdI+Va5pgVxBJ345wyGFKvpPYtdSgvfJfX/x2Ymm6ophQlXXB6acqGHtXuBqNyyO3zVp9b1r0MOA==} dependencies: - '@babel/parser': 7.17.3 + '@babel/parser': 7.17.10 '@vue/compiler-core': 3.2.31 '@vue/shared': 3.2.31 estree-walker: 2.0.2 @@ -6326,7 +6736,7 @@ packages: /@vue/shared/3.2.31: resolution: {integrity: sha512-ymN2pj6zEjiKJZbrf98UM2pfDd6F2H7ksKw7NDt/ZZ1fh5Ei39X5tABugtT03ZRlWd9imccoK0hE8hpjpU7irQ==} - /@vue/test-utils/1.1.3: + /@vue/test-utils/1.1.3_sbs6or2oam5i4s4vmfp4rzwdnq: resolution: {integrity: sha512-BAY1Cwe9JpkJseimC295EW3YlAmgIJI9OPkg2FSP62+PHZooB0B+wceDi9TYyU57oqzL0yLbcP73JKFpKiLc9A==} peerDependencies: vue: 2.x @@ -6335,6 +6745,8 @@ packages: dom-event-types: 1.0.0 lodash: 4.17.21 pretty: 2.0.0 + vue: 2.6.14 + vue-template-compiler: 2.6.14 dev: true /@webassemblyjs/ast/1.9.0: @@ -6685,6 +7097,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==} @@ -6923,8 +7337,8 @@ packages: resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} hasBin: true dependencies: - browserslist: 4.20.0 - caniuse-lite: 1.0.30001314 + browserslist: 4.20.3 + caniuse-lite: 1.0.30001340 normalize-range: 0.1.2 num2fraction: 1.2.2 picocolors: 0.2.1 @@ -6958,50 +7372,25 @@ packages: js-tokens: 3.0.2 dev: true - /babel-core/7.0.0-bridge.0: - resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dev: false - - /babel-core/7.0.0-bridge.0_@babel+core@7.17.5: + /babel-core/7.0.0-bridge.0_@babel+core@7.17.10: resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - dev: true - - /babel-jest/26.6.3: - resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} - engines: {node: '>= 10.14.2'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@jest/transform': 26.6.2 - '@jest/types': 26.6.2 - '@types/babel__core': 7.1.17 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 26.6.2 - chalk: 4.1.2 - graceful-fs: 4.2.9 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - dev: true + '@babel/core': 7.17.10 - /babel-jest/26.6.3_@babel+core@7.17.5: + /babel-jest/26.6.3_@babel+core@7.17.10: resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} engines: {node: '>= 10.14.2'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 '@types/babel__core': 7.1.17 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 26.6.2_@babel+core@7.17.5 + babel-preset-jest: 26.6.2_@babel+core@7.17.10 chalk: 4.1.2 graceful-fs: 4.2.9 slash: 3.0.0 @@ -7009,16 +7398,16 @@ packages: - supports-color dev: true - /babel-loader/8.2.3_a58183228c2c7b1a132de84b2b6f9adf: - resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==} + /babel-loader/8.2.5_usdhdj5awexcm2e5jtwd44bofa: + resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 find-cache-dir: 3.3.2 - loader-utils: 1.4.0 + loader-utils: 2.0.2 make-dir: 3.1.0 schema-utils: 2.7.1 webpack: 4.46.0 @@ -7083,7 +7472,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@babel/template': 7.16.7 - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 '@types/babel__core': 7.1.17 '@types/babel__traverse': 7.14.2 dev: true @@ -7105,60 +7494,60 @@ packages: resolve: 1.22.0 dev: true - /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.17.5: + /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.17.10: resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.17.0 - '@babel/core': 7.17.5 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.5 + '@babel/compat-data': 7.17.10 + '@babel/core': 7.17.10 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.10 semver: 6.3.0 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.17.5: + /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.17.10: resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.17.10 core-js-compat: 3.21.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.4.0_@babel+core@7.17.5: + /babel-plugin-polyfill-corejs3/0.4.0_@babel+core@7.17.10: resolution: {integrity: sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.10 core-js-compat: 3.21.1 transitivePeerDependencies: - supports-color dev: false - /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.17.5: + /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.17.10: resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.10 core-js-compat: 3.21.1 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.17.5: + /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.17.10: resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.5 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.10 transitivePeerDependencies: - supports-color @@ -7173,6 +7562,8 @@ packages: babel-runtime: 6.26.0 babel-template: 6.26.0 babel-types: 6.26.0 + transitivePeerDependencies: + - supports-color dev: true /babel-plugin-transform-strict-mode/6.24.1: @@ -7182,64 +7573,35 @@ packages: babel-types: 6.26.0 dev: true - /babel-preset-current-node-syntax/1.0.1: - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/plugin-syntax-async-generators': 7.8.4 - '@babel/plugin-syntax-bigint': 7.8.3 - '@babel/plugin-syntax-class-properties': 7.12.13 - '@babel/plugin-syntax-import-meta': 7.10.4 - '@babel/plugin-syntax-json-strings': 7.8.3 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3 - '@babel/plugin-syntax-numeric-separator': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3 - '@babel/plugin-syntax-optional-chaining': 7.8.3 - '@babel/plugin-syntax-top-level-await': 7.14.5 - dev: true - - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.17.5: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.17.10: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.5 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.5 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.5 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.17.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.5 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.5 - dev: true - - /babel-preset-jest/26.6.2: - resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} - engines: {node: '>= 10.14.2'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - babel-plugin-jest-hoist: 26.6.2 - babel-preset-current-node-syntax: 1.0.1 - dev: true - - /babel-preset-jest/26.6.2_@babel+core@7.17.5: + '@babel/core': 7.17.10 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.10 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.10 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.17.10 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.10 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.10 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.10 + dev: true + + /babel-preset-jest/26.6.2_@babel+core@7.17.10: resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} engines: {node: '>= 10.14.2'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 babel-plugin-jest-hoist: 26.6.2 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.5 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.10 dev: true /babel-runtime/6.26.0: @@ -7257,6 +7619,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: @@ -7271,6 +7635,8 @@ packages: globals: 9.18.0 invariant: 2.2.4 lodash: 4.17.21 + transitivePeerDependencies: + - supports-color dev: true /babel-types/6.26.0: @@ -7286,7 +7652,7 @@ packages: resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==} engines: {node: '>= 10.0.0'} dependencies: - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 dev: true /babylon/6.18.0: @@ -7367,6 +7733,8 @@ packages: qs: 6.9.7 raw-body: 2.4.3 type-is: 1.6.18 + transitivePeerDependencies: + - supports-color dev: true /boolbase/1.0.0: @@ -7411,6 +7779,8 @@ packages: 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==} @@ -7490,10 +7860,22 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001314 - electron-to-chromium: 1.4.82 + caniuse-lite: 1.0.30001340 + electron-to-chromium: 1.4.137 escalade: 3.1.1 - node-releases: 2.0.2 + node-releases: 2.0.4 + picocolors: 1.0.0 + dev: true + + /browserslist/4.20.3: + resolution: {integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001340 + electron-to-chromium: 1.4.137 + escalade: 3.1.1 + node-releases: 2.0.4 picocolors: 1.0.0 /bser/2.1.1: @@ -7574,7 +7956,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 @@ -7602,6 +7984,8 @@ packages: ssri: 8.0.1 tar: 6.1.11 unique-filename: 1.1.1 + transitivePeerDependencies: + - bluebird /cache-base/1.0.1: resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} @@ -7702,8 +8086,8 @@ packages: /caniuse-api/3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: - browserslist: 4.20.0 - caniuse-lite: 1.0.30001314 + browserslist: 4.20.3 + caniuse-lite: 1.0.30001340 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: false @@ -7713,6 +8097,10 @@ packages: /caniuse-lite/1.0.30001314: resolution: {integrity: sha512-0zaSO+TnCHtHJIbpLroX7nsD+vYuOVjl3uzFbJO1wMVbuveJA0RK2WcQA9ZUIOiO0/ArMiMgHJLxfEZhQiC0kw==} + dev: false + + /caniuse-lite/1.0.30001340: + resolution: {integrity: sha512-jUNz+a9blQTQVu4uFcn17uAD8IDizPzQkIKh3LCJfg9BkyIqExYYdyc/ZSlWUSKb8iYiXxKsxbv4zYSvkqjrxw==} /capture-exit/2.0.0: resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} @@ -7816,6 +8204,8 @@ packages: upath: 1.2.0 optionalDependencies: fsevents: 1.2.13 + transitivePeerDependencies: + - supports-color optional: true /chokidar/3.5.2: @@ -8123,6 +8513,8 @@ packages: on-headers: 1.0.2 safe-buffer: 5.1.2 vary: 1.1.2 + transitivePeerDependencies: + - supports-color /compute-scroll-into-view/1.0.17: resolution: {integrity: sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==} @@ -8164,6 +8556,8 @@ packages: finalhandler: 1.1.2 parseurl: 1.3.3 utils-merge: 1.0.1 + transitivePeerDependencies: + - supports-color dev: false /consola/2.15.3: @@ -8175,17 +8569,350 @@ packages: /console-control-strings/1.1.0: resolution: {integrity: sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=} - /consolidate/0.15.1: + /consolidate/0.15.1_babel-core@7.0.0-bridge.0: + resolution: {integrity: sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==} + engines: {node: '>= 0.10.0'} + peerDependencies: + arc-templates: ^0.5.3 + atpl: '>=0.7.6' + babel-core: ^6.26.3 || 7.0.0-bridge.0 + bracket-template: ^1.1.5 + coffee-script: ^1.12.7 + dot: ^1.1.3 + dust: ^0.3.0 + dustjs-helpers: ^1.7.4 + dustjs-linkedin: ^2.7.5 + eco: ^1.1.0-rc-3 + ect: ^0.5.9 + ejs: ^3.1.5 + haml-coffee: ^1.14.1 + hamlet: ^0.3.3 + hamljs: ^0.6.2 + handlebars: ^4.7.6 + hogan.js: ^3.0.2 + htmling: ^0.0.8 + jade: ^1.11.0 + jazz: ^0.0.18 + jqtpl: ~1.1.0 + just: ^0.1.8 + liquid-node: ^3.0.1 + liquor: ^0.0.5 + lodash: ^4.17.20 + marko: ^3.14.4 + mote: ^0.2.0 + mustache: ^4.0.1 + nunjucks: ^3.2.2 + plates: ~0.4.11 + pug: ^3.0.0 + qejs: ^3.0.5 + ractive: ^1.3.12 + razor-tmpl: ^1.3.1 + react: ^16.13.1 + react-dom: ^16.13.1 + slm: ^2.0.0 + squirrelly: ^5.1.0 + swig: ^1.4.2 + swig-templates: ^2.0.3 + teacup: ^2.0.0 + templayed: '>=0.2.3' + then-jade: '*' + then-pug: '*' + tinyliquid: ^0.2.34 + toffee: ^0.3.6 + twig: ^1.15.2 + twing: ^5.0.2 + underscore: ^1.11.0 + vash: ^0.13.0 + velocityjs: ^2.0.1 + walrus: ^0.10.1 + whiskers: ^0.4.0 + peerDependenciesMeta: + arc-templates: + optional: true + atpl: + optional: true + babel-core: + optional: true + bracket-template: + optional: true + coffee-script: + optional: true + dot: + optional: true + dust: + optional: true + dustjs-helpers: + optional: true + dustjs-linkedin: + optional: true + eco: + optional: true + ect: + optional: true + ejs: + optional: true + haml-coffee: + optional: true + hamlet: + optional: true + hamljs: + optional: true + handlebars: + optional: true + hogan.js: + optional: true + htmling: + optional: true + jade: + optional: true + jazz: + optional: true + jqtpl: + optional: true + just: + optional: true + liquid-node: + optional: true + liquor: + optional: true + lodash: + optional: true + marko: + optional: true + mote: + optional: true + mustache: + optional: true + nunjucks: + optional: true + plates: + optional: true + pug: + optional: true + qejs: + optional: true + ractive: + optional: true + razor-tmpl: + optional: true + react: + optional: true + react-dom: + optional: true + slm: + optional: true + squirrelly: + optional: true + swig: + optional: true + swig-templates: + optional: true + teacup: + optional: true + templayed: + optional: true + then-jade: + optional: true + then-pug: + optional: true + tinyliquid: + optional: true + toffee: + optional: true + twig: + optional: true + twing: + optional: true + underscore: + optional: true + vash: + optional: true + velocityjs: + optional: true + walrus: + optional: true + whiskers: + optional: true + dependencies: + babel-core: 7.0.0-bridge.0_@babel+core@7.17.10 + bluebird: 3.7.2 + dev: true + + /consolidate/0.15.1_mz6uzicp2h6fqcdyehxis2yeyu: resolution: {integrity: sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==} engines: {node: '>= 0.10.0'} + peerDependencies: + arc-templates: ^0.5.3 + atpl: '>=0.7.6' + babel-core: ^6.26.3 || 7.0.0-bridge.0 + bracket-template: ^1.1.5 + coffee-script: ^1.12.7 + dot: ^1.1.3 + dust: ^0.3.0 + dustjs-helpers: ^1.7.4 + dustjs-linkedin: ^2.7.5 + eco: ^1.1.0-rc-3 + ect: ^0.5.9 + ejs: ^3.1.5 + haml-coffee: ^1.14.1 + hamlet: ^0.3.3 + hamljs: ^0.6.2 + handlebars: ^4.7.6 + hogan.js: ^3.0.2 + htmling: ^0.0.8 + jade: ^1.11.0 + jazz: ^0.0.18 + jqtpl: ~1.1.0 + just: ^0.1.8 + liquid-node: ^3.0.1 + liquor: ^0.0.5 + lodash: ^4.17.20 + marko: ^3.14.4 + mote: ^0.2.0 + mustache: ^4.0.1 + nunjucks: ^3.2.2 + plates: ~0.4.11 + pug: ^3.0.0 + qejs: ^3.0.5 + ractive: ^1.3.12 + razor-tmpl: ^1.3.1 + react: ^16.13.1 + react-dom: ^16.13.1 + slm: ^2.0.0 + squirrelly: ^5.1.0 + swig: ^1.4.2 + swig-templates: ^2.0.3 + teacup: ^2.0.0 + templayed: '>=0.2.3' + then-jade: '*' + then-pug: '*' + tinyliquid: ^0.2.34 + toffee: ^0.3.6 + twig: ^1.15.2 + twing: ^5.0.2 + underscore: ^1.11.0 + vash: ^0.13.0 + velocityjs: ^2.0.1 + walrus: ^0.10.1 + whiskers: ^0.4.0 + peerDependenciesMeta: + arc-templates: + optional: true + atpl: + optional: true + babel-core: + optional: true + bracket-template: + optional: true + coffee-script: + optional: true + dot: + optional: true + dust: + optional: true + dustjs-helpers: + optional: true + dustjs-linkedin: + optional: true + eco: + optional: true + ect: + optional: true + ejs: + optional: true + haml-coffee: + optional: true + hamlet: + optional: true + hamljs: + optional: true + handlebars: + optional: true + hogan.js: + optional: true + htmling: + optional: true + jade: + optional: true + jazz: + optional: true + jqtpl: + optional: true + just: + optional: true + liquid-node: + optional: true + liquor: + optional: true + lodash: + optional: true + marko: + optional: true + mote: + optional: true + mustache: + optional: true + nunjucks: + optional: true + plates: + optional: true + pug: + optional: true + qejs: + optional: true + ractive: + optional: true + razor-tmpl: + optional: true + react: + optional: true + react-dom: + optional: true + slm: + optional: true + squirrelly: + optional: true + swig: + optional: true + swig-templates: + optional: true + teacup: + optional: true + templayed: + optional: true + then-jade: + optional: true + then-pug: + optional: true + tinyliquid: + optional: true + toffee: + optional: true + twig: + optional: true + twing: + optional: true + underscore: + optional: true + vash: + optional: true + velocityjs: + optional: true + walrus: + optional: true + whiskers: + optional: true dependencies: + babel-core: 7.0.0-bridge.0_@babel+core@7.17.10 bluebird: 3.7.2 + lodash: 4.17.21 + dev: false /constantinople/4.0.1: resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==} dependencies: - '@babel/parser': 7.17.3 - '@babel/types': 7.17.0 + '@babel/parser': 7.17.10 + '@babel/types': 7.17.10 dev: true /constants-browserify/1.0.0: @@ -8266,7 +8993,7 @@ packages: /core-js-compat/3.21.1: resolution: {integrity: sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==} dependencies: - browserslist: 4.20.0 + browserslist: 4.20.3 semver: 7.0.0 /core-js-pure/3.21.1: @@ -8340,6 +9067,8 @@ packages: p-all: 2.1.0 p-filter: 2.1.0 p-map: 3.0.0 + transitivePeerDependencies: + - supports-color dev: true /crc/3.8.0: @@ -8439,27 +9168,6 @@ packages: postcss-selector-parser: 5.0.0 dev: false - /css-loader/3.6.0: - resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} - engines: {node: '>= 8.9.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - dependencies: - camelcase: 5.3.1 - cssesc: 3.0.0 - icss-utils: 4.1.1 - loader-utils: 1.4.0 - normalize-path: 3.0.0 - postcss: 7.0.39 - postcss-modules-extract-imports: 2.0.0 - postcss-modules-local-by-default: 3.0.3 - postcss-modules-scope: 2.2.0 - postcss-modules-values: 3.0.0 - postcss-value-parser: 4.2.0 - schema-utils: 2.7.1 - semver: 6.3.0 - dev: true - /css-loader/3.6.0_webpack@4.46.0: resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} engines: {node: '>= 8.9.0'} @@ -8503,7 +9211,7 @@ packages: webpack: 4.46.0 dev: false - /css-loader/5.2.7: + /css-loader/5.2.7_webpack@4.46.0: resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -8519,6 +9227,7 @@ packages: postcss-value-parser: 4.2.0 schema-utils: 3.1.1 semver: 7.3.5 + webpack: 4.46.0 /css-prefers-color-scheme/3.1.1: resolution: {integrity: sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==} @@ -8726,7 +9435,6 @@ packages: /de-indent/1.0.2: resolution: {integrity: sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=} - dev: false /deasync/0.1.24: resolution: {integrity: sha512-i98vg42xNfRZCymummMAN0rIcQ1gZFinSe3btvPIvy6JFTaeHcumeKybRo2HTv86nasfmT0nEgAn2ggLZhOCVA==} @@ -8739,11 +9447,21 @@ 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/3.2.7: resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.3 dev: true @@ -8920,6 +9638,8 @@ packages: dependencies: address: 1.1.2 debug: 2.6.9 + transitivePeerDependencies: + - supports-color dev: true /detective/5.2.0: @@ -9122,6 +9842,9 @@ packages: resolution: {integrity: sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==} peerDependencies: react: '>=16.12.0' + peerDependenciesMeta: + react: + optional: true dependencies: '@babel/runtime': 7.17.2 compute-scroll-into-view: 1.0.17 @@ -9134,6 +9857,9 @@ packages: resolution: {integrity: sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==} peerDependencies: react: '>=16.12.0' + peerDependenciesMeta: + react: + optional: true dependencies: '@babel/runtime': 7.17.2 compute-scroll-into-view: 1.0.17 @@ -9172,12 +9898,12 @@ packages: /ee-first/1.1.1: resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} + /electron-to-chromium/1.4.137: + resolution: {integrity: sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA==} + /electron-to-chromium/1.4.18: resolution: {integrity: sha512-i7nKjGGBE1+YUIbfLObA1EZPmN7J1ITEllbhusDk+KIk6V6gUxN9PFe36v+Sd+8Cg0k3cgUv9lQhQZalr8rggw==} - /electron-to-chromium/1.4.82: - resolution: {integrity: sha512-Ks+ANzLoIrFDUOJdjxYMH6CMKB8UQo5modAwvSZTxgF+vEs/U7G5IbWFUp6dS4klPkTDVdxbORuk8xAXXhMsWw==} - /element-resize-detector/1.2.4: resolution: {integrity: sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==} dependencies: @@ -9215,29 +9941,35 @@ packages: resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} engines: {node: '>= 4'} - /emotion-theming/10.3.0_864809d686fef2043b51d8d752270dc1: + /emotion-theming/10.3.0_@emotion+core@10.3.1: resolution: {integrity: sha512-mXiD2Oj7N9b6+h/dC6oLf9hwxbtKHQjoIqtodEyL8CpkN4F3V4IK/BT4D0C7zSs4BBFOu4UlPJbvvBLa88SGEA==} peerDependencies: '@emotion/core': ^10.0.27 react: '>=16.3.0' + peerDependenciesMeta: + react: + optional: true dependencies: '@babel/runtime': 7.17.2 - '@emotion/core': 10.3.1_react@16.14.0 + '@emotion/core': 10.3.1 '@emotion/weak-memoize': 0.2.5 hoist-non-react-statics: 3.3.2 - react: 16.14.0 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' + peerDependenciesMeta: + react: + optional: true dependencies: '@babel/runtime': 7.17.2 - '@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: true /encodeurl/1.0.2: @@ -9261,7 +9993,7 @@ packages: resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==} engines: {node: '>=6.9.0'} dependencies: - graceful-fs: 4.2.8 + graceful-fs: 4.2.9 memory-fs: 0.5.0 tapable: 1.1.3 @@ -9391,12 +10123,12 @@ packages: eslint: 8.15.0 dev: true - /eslint-import-resolver-custom-alias/1.3.0_eslint-plugin-import@2.26.0: + /eslint-import-resolver-custom-alias/1.3.0_fkfqfehjtk7sk2efaqbgxsuasa: resolution: {integrity: sha512-9rrpduF6/SZHFXrJgjeA+edJek6xulplYfo/UJvLPrY38O9UY00rAq76dHRnZ289yftc5NIfx3THi0IILRQ3dg==} peerDependencies: eslint-plugin-import: '>=2.2.0' dependencies: - eslint-plugin-import: 2.26.0_eslint@8.15.0 + eslint-plugin-import: 2.26.0_doddzorl55y6dbr5ij3nshfl64 glob-parent: 5.1.2 resolve: 1.20.0 dev: true @@ -9406,14 +10138,34 @@ packages: dependencies: debug: 3.2.7 resolve: 1.22.0 + transitivePeerDependencies: + - supports-color dev: true - /eslint-module-utils/2.7.3: + /eslint-module-utils/2.7.3_cphntlaow2spielwlvsegonsm4: 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.23.0_2qyr5yzk6bquedgydwits76m2m debug: 3.2.7 + eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 + transitivePeerDependencies: + - supports-color dev: true /eslint-plugin-eslint-comments/3.2.0_eslint@8.15.0: @@ -9427,19 +10179,24 @@ packages: ignore: 5.1.9 dev: true - /eslint-plugin-import/2.26.0_eslint@8.15.0: + /eslint-plugin-import/2.26.0_doddzorl55y6dbr5ij3nshfl64: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} 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.23.0_2qyr5yzk6bquedgydwits76m2m array-includes: 3.1.4 array.prototype.flat: 1.2.5 debug: 2.6.9 doctrine: 2.1.0 eslint: 8.15.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3 + eslint-module-utils: 2.7.3_cphntlaow2spielwlvsegonsm4 has: 1.0.3 is-core-module: 2.8.1 is-glob: 4.0.3 @@ -9447,9 +10204,13 @@ packages: object.values: 1.1.5 resolve: 1.22.0 tsconfig-paths: 3.14.1 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color dev: true - /eslint-plugin-prettier/4.0.0_add53f7086c12b51d2c31c9d18258ca8: + /eslint-plugin-prettier/4.0.0_vxkt64egyevvduwddsorqjmmva: resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==} engines: {node: '>=6.0.0'} peerDependencies: @@ -9567,7 +10328,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint-webpack-plugin/2.6.0_eslint@8.15.0: + /eslint-webpack-plugin/2.6.0_nufgqnzswjkgegnrzqvmbqhove: resolution: {integrity: sha512-V+LPY/T3kur5QO3u+1s34VDTcRxjXWPUGM4hlmTb5DwVD0OQz631yGTxJZf4SpAqAjdbBVe978S8BJeHpAdOhQ==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -9581,6 +10342,7 @@ packages: micromatch: 4.0.4 normalize-path: 3.0.0 schema-utils: 3.1.1 + webpack: 4.46.0 dev: true /eslint/8.15.0: @@ -9748,6 +10510,8 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color /expect/26.6.2: resolution: {integrity: sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==} @@ -9812,6 +10576,8 @@ packages: type-is: 1.6.18 utils-merge: 1.0.1 vary: 1.1.2 + transitivePeerDependencies: + - supports-color dev: true /extend-shallow/2.0.1: @@ -9852,6 +10618,8 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color /extract-css-chunks-webpack-plugin/4.9.0_webpack@4.46.0: resolution: {integrity: sha512-HNuNPCXRMqJDQ1OHAUehoY+0JVCnw9Y/H22FQzYVwo8Ulgew98AGDu0grnY5c7xwiXHjQa6yJ/1dxLCI/xqTyQ==} @@ -9904,6 +10672,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: @@ -9967,16 +10737,6 @@ packages: flat-cache: 3.0.4 dev: true - /file-loader/6.2.0: - resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - dependencies: - loader-utils: 2.0.2 - schema-utils: 3.1.1 - dev: false - /file-loader/6.2.0_webpack@4.46.0: resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} engines: {node: '>= 10.13.0'} @@ -10029,6 +10789,8 @@ packages: parseurl: 1.3.3 statuses: 1.5.0 unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color /find-babel-config/1.2.0: resolution: {integrity: sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==} @@ -10119,13 +10881,14 @@ packages: inherits: 2.0.4 readable-stream: 2.3.7 - /focus-trap-vue/1.1.1_focus-trap@6.7.1: + /focus-trap-vue/1.1.1_ww4o2appb4ncfu23ooisleyiie: resolution: {integrity: sha512-N+M4d4uYymCogct417gUL7wWSMIW/oUcCicfg3eRdo+gz7jlQnIGwUwViFxPkKV7iyzpc81g6JeSxRWiYWU3eQ==} peerDependencies: focus-trap: ^6.0.1 vue: ^2.6.0 dependencies: focus-trap: 6.7.1 + vue: 2.6.14 dev: false /focus-trap/6.7.1: @@ -10152,22 +10915,9 @@ packages: resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=} engines: {node: '>=0.10.0'} - /fork-ts-checker-webpack-plugin/4.1.6: + /fork-ts-checker-webpack-plugin/4.1.6_mpahngmn3mtdx6vmys44ywifxm: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} - dependencies: - '@babel/code-frame': 7.16.7 - chalk: 2.4.2 - micromatch: 3.1.10 - minimatch: 3.1.2 - semver: 5.7.1 - tapable: 1.1.3 - worker-rpc: 0.1.1 - dev: true - - /fork-ts-checker-webpack-plugin/6.5.0_0c94ded6d3ea0776ea8fc984d539761d: - resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} - engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: eslint: '>= 6' typescript: '>= 2.7' @@ -10179,25 +10929,22 @@ packages: vue-template-compiler: optional: true dependencies: - '@babel/code-frame': 7.16.0 - '@types/json-schema': 7.0.9 - chalk: 4.1.2 - chokidar: 3.5.2 - cosmiconfig: 6.0.0 - deepmerge: 4.2.2 + '@babel/code-frame': 7.16.7 + chalk: 2.4.2 eslint: 8.15.0 - fs-extra: 9.1.0 - glob: 7.2.0 - memfs: 3.4.0 + micromatch: 3.1.10 minimatch: 3.1.2 - schema-utils: 2.7.0 - semver: 7.3.5 + semver: 5.7.1 tapable: 1.1.3 typescript: 4.6.2 + vue-template-compiler: 2.6.14 webpack: 4.46.0 + worker-rpc: 0.1.1 + transitivePeerDependencies: + - supports-color dev: true - /fork-ts-checker-webpack-plugin/6.5.0_eslint@8.15.0+typescript@4.6.2: + /fork-ts-checker-webpack-plugin/6.5.0_mpahngmn3mtdx6vmys44ywifxm: resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -10226,6 +10973,8 @@ packages: semver: 7.3.5 tapable: 1.1.3 typescript: 4.6.2 + vue-template-compiler: 2.6.14 + webpack: 4.46.0 dev: true /form-data/3.0.1: @@ -10588,6 +11337,8 @@ packages: ignore: 4.0.6 pify: 4.0.1 slash: 2.0.0 + transitivePeerDependencies: + - supports-color dev: true /good-listener/1.2.2: @@ -10598,6 +11349,7 @@ packages: /graceful-fs/4.2.8: resolution: {integrity: sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==} + dev: false /graceful-fs/4.2.9: resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==} @@ -11661,7 +12413,7 @@ packages: resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -11673,8 +12425,8 @@ packages: resolution: {integrity: sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.17.5 - '@babel/parser': 7.17.3 + '@babel/core': 7.17.10 + '@babel/parser': 7.17.10 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -11765,10 +12517,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@jest/test-sequencer': 26.6.3_ts-node@10.7.0 '@jest/types': 26.6.2 - babel-jest: 26.6.3_@babel+core@7.17.5 + babel-jest: 26.6.3_@babel+core@7.17.10 chalk: 4.1.2 deepmerge: 4.2.2 glob: 7.2.0 @@ -11783,7 +12535,7 @@ packages: jest-validate: 26.6.2 micromatch: 4.0.4 pretty-format: 26.6.2 - ts-node: 10.7.0_typescript@4.6.2 + ts-node: 10.7.0_cbygeln5s5sjlseyk3kbidkfny transitivePeerDependencies: - bufferutil - canvas @@ -11836,7 +12588,7 @@ packages: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 16.11.13 + '@types/node': 17.0.32 jest-mock: 26.6.2 jest-util: 26.6.2 jsdom: 16.7.0 @@ -11854,7 +12606,7 @@ packages: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 16.11.13 + '@types/node': 17.0.32 jest-mock: 26.6.2 jest-util: 26.6.2 dev: true @@ -11875,7 +12627,7 @@ packages: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.5 - '@types/node': 16.11.13 + '@types/node': 17.0.32 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.9 @@ -11888,18 +12640,20 @@ packages: walker: 1.0.8 optionalDependencies: fsevents: 2.3.2 + transitivePeerDependencies: + - supports-color dev: true /jest-jasmine2/26.6.3_ts-node@10.7.0: resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/traverse': 7.17.3 + '@babel/traverse': 7.17.10 '@jest/environment': 26.6.2 '@jest/source-map': 26.6.2 '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 16.11.13 + '@types/node': 17.0.32 chalk: 4.1.2 co: 4.6.0 expect: 26.6.2 @@ -11983,7 +12737,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 16.11.13 + '@types/node': 17.0.32 dev: true /jest-pnp-resolver/1.2.2_jest-resolve@26.6.2: @@ -12015,6 +12769,8 @@ packages: '@jest/types': 26.6.2 jest-regex-util: 26.0.0 jest-snapshot: 26.6.2 + transitivePeerDependencies: + - supports-color dev: true /jest-resolve/26.6.2: @@ -12039,7 +12795,7 @@ packages: '@jest/environment': 26.6.2 '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 16.11.13 + '@types/node': 17.0.32 chalk: 4.1.2 emittery: 0.7.2 exit: 0.1.2 @@ -12107,7 +12863,7 @@ packages: resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} engines: {node: '>= 10.14.2'} dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 graceful-fs: 4.2.9 dev: true @@ -12115,7 +12871,7 @@ packages: resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/types': 7.17.0 + '@babel/types': 7.17.10 '@jest/types': 26.6.2 '@types/babel__traverse': 7.14.2 '@types/prettier': 2.4.2 @@ -12131,6 +12887,8 @@ packages: natural-compare: 1.4.0 pretty-format: 26.6.2 semver: 7.3.5 + transitivePeerDependencies: + - supports-color dev: true /jest-transform-stub/2.0.0: @@ -12142,7 +12900,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 16.11.13 + '@types/node': 17.0.32 chalk: 4.1.2 graceful-fs: 4.2.9 is-ci: 2.0.0 @@ -12167,7 +12925,7 @@ packages: dependencies: '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 16.11.13 + '@types/node': 17.0.32 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 26.6.2 @@ -12178,7 +12936,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 merge-stream: 2.0.0 supports-color: 7.2.0 @@ -12186,7 +12944,7 @@ packages: resolution: {integrity: sha512-f2s8kEdy15cv9r7q4KkzGXvlY0JTcmCbMHZBfSQDwW77REr45IDWwd0lksDFeVHH2jJ5pqb90T77XscrjeGzzg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 16.11.13 + '@types/node': 17.0.32 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -12273,15 +13031,15 @@ packages: resolution: {integrity: sha512-YMkZSyoc8zg5woZL23cmWlnFLPH/mHilonGA7Qbzs7H6M4v4PH0Qsn4jeDyw+CHhVoAnm9UxQyB0Yw1OT+mktA==} hasBin: true dependencies: - '@babel/core': 7.17.5 - '@babel/parser': 7.17.3 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.5 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.5 - '@babel/preset-env': 7.16.11_@babel+core@7.17.5 - '@babel/preset-flow': 7.16.7_@babel+core@7.17.5 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.5 - '@babel/register': 7.17.0_@babel+core@7.17.5 - babel-core: 7.0.0-bridge.0_@babel+core@7.17.5 + '@babel/core': 7.17.10 + '@babel/parser': 7.17.10 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.10 + '@babel/preset-env': 7.16.11_@babel+core@7.17.10 + '@babel/preset-flow': 7.16.7_@babel+core@7.17.10 + '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/register': 7.17.0_@babel+core@7.17.10 + babel-core: 7.0.0-bridge.0_@babel+core@7.17.10 colors: 1.4.0 flow-parser: 0.173.0 graceful-fs: 4.2.9 @@ -12376,12 +13134,12 @@ packages: hasBin: true dependencies: minimist: 1.2.5 + dev: true /json5/2.2.1: resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} engines: {node: '>=6'} hasBin: true - dev: true /jsonc-eslint-parser/2.1.0: resolution: {integrity: sha512-qCRJWlbP2v6HbmKW7R3lFbeiVWHo+oMJ0j+MizwvauqnCV/EvtAeEeuCgoc/ErtsuoKgYB8U4Ih8AxJbXoE6/g==} @@ -12671,7 +13429,7 @@ packages: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 - json5: 2.2.0 + json5: 2.2.1 dev: true /loader-utils/2.0.2: @@ -12680,7 +13438,7 @@ packages: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 - json5: 2.2.0 + json5: 2.2.1 /localforage/1.10.0: resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==} @@ -12890,6 +13648,9 @@ packages: engines: {node: '>= 10'} peerDependencies: react: '>= 0.14.0' + peerDependenciesMeta: + react: + optional: true dev: true /markdown-to-jsx/7.1.7_react@16.14.0: @@ -12897,6 +13658,9 @@ packages: engines: {node: '>= 10'} peerDependencies: react: '>= 0.14.0' + peerDependenciesMeta: + react: + optional: true dependencies: react: 16.14.0 dev: true @@ -13041,6 +13805,8 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color dev: false /micromatch/3.1.10: @@ -13060,6 +13826,8 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color /micromatch/4.0.4: resolution: {integrity: sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==} @@ -13290,6 +14058,8 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color /natural-compare/1.4.0: resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} @@ -13423,8 +14193,8 @@ packages: /node-releases/2.0.1: resolution: {integrity: sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==} - /node-releases/2.0.2: - resolution: {integrity: sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==} + /node-releases/2.0.4: + resolution: {integrity: sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ==} /node-res/5.0.1: resolution: {integrity: sha512-YOleO9c7MAqoHC+Ccu2vzvV1fL6Ku49gShq3PIMKWHRgrMSih3XcwL05NbLBi6oU2J471gTBfdpVVxwT6Pfhxg==} @@ -13553,13 +14323,13 @@ packages: engines: {node: '>=0.10.0'} dev: false - /nuxt/2.15.8_typescript@4.6.2: + /nuxt/2.15.8_wl2mvxm2ma5s7sz3dfofdm4k7q: resolution: {integrity: sha512-ceK3qLg/Baj7J8mK9bIxqw9AavrF+LXqwYEreBdY/a4Sj8YV4mIvhqea/6E7VTCNNGvKT2sJ/TTJjtfQ597lTA==} hasBin: true requiresBuild: true dependencies: '@nuxt/babel-preset-app': 2.15.8 - '@nuxt/builder': 2.15.8_typescript@4.6.2 + '@nuxt/builder': 2.15.8_wl2mvxm2ma5s7sz3dfofdm4k7q '@nuxt/cli': 2.15.8 '@nuxt/components': 2.2.1 '@nuxt/config': 2.15.8 @@ -13572,17 +14342,70 @@ packages: '@nuxt/utils': 2.15.8 '@nuxt/vue-app': 2.15.8 '@nuxt/vue-renderer': 2.15.8 - '@nuxt/webpack': 2.15.8_typescript@4.6.2 + '@nuxt/webpack': 2.15.8_wl2mvxm2ma5s7sz3dfofdm4k7q transitivePeerDependencies: - - acorn + - '@vue/compiler-sfc' + - arc-templates + - atpl + - babel-core + - bluebird + - bracket-template - bufferutil + - coffee-script - consola + - dot + - dust + - dustjs-helpers + - dustjs-linkedin + - eco + - ect + - ejs - encoding + - haml-coffee + - hamlet + - hamljs + - handlebars + - hogan.js + - htmling + - jade + - jazz + - jqtpl + - just + - liquid-node + - liquor + - marko + - mote + - mustache + - nunjucks + - plates + - pug + - qejs + - ractive + - razor-tmpl + - react + - react-dom + - slm + - squirrelly - supports-color + - swig + - swig-templates + - teacup + - templayed + - then-jade + - then-pug + - tinyliquid + - toffee + - twig + - twing - typescript + - underscore - utf-8-validate + - vash + - velocityjs + - walrus - webpack-cli - webpack-command + - whiskers dev: false /nwsapi/2.2.0: @@ -14094,7 +14917,7 @@ packages: engines: {node: '>=10'} dev: false - /pinia/2.0.13_typescript@4.6.2: + /pinia/2.0.13_k3kegkzgmpj55t3l5d75ppieg4: resolution: {integrity: sha512-B7rSqm1xNpwcPMnqns8/gVBfbbi7lWTByzS6aPZ4JOXSJD4Y531rZHDCoYWBwLyHY/8hWnXljgiXp6rRyrofcw==} peerDependencies: '@vue/composition-api': ^1.4.0 @@ -14108,7 +14931,8 @@ packages: dependencies: '@vue/devtools-api': 6.1.4 typescript: 4.6.2 - vue-demi: 0.12.1 + vue: 2.6.14 + vue-demi: 0.12.1_vue@2.6.14 dev: false /pirates/4.0.4: @@ -14223,6 +15047,8 @@ packages: async: 2.6.4 debug: 3.2.7 mkdirp: 0.5.5 + transitivePeerDependencies: + - supports-color dev: true /posix-character-classes/0.1.1: @@ -14290,7 +15116,7 @@ packages: resolution: {integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.20.0 + browserslist: 4.20.3 color: 3.2.1 has: 1.0.3 postcss: 7.0.39 @@ -14502,7 +15328,7 @@ packages: dependencies: import-cwd: 3.0.0 lilconfig: 2.0.4 - ts-node: 10.7.0_typescript@4.6.2 + ts-node: 10.7.0_cbygeln5s5sjlseyk3kbidkfny yaml: 1.10.2 dev: true @@ -14516,22 +15342,7 @@ packages: schema-utils: 1.0.0 dev: false - /postcss-loader/4.3.0_postcss@7.0.39: - resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} - engines: {node: '>= 10.13.0'} - peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: ^4.0.0 || ^5.0.0 - dependencies: - cosmiconfig: 7.0.1 - klona: 2.0.5 - loader-utils: 2.0.2 - postcss: 7.0.39 - schema-utils: 3.1.1 - semver: 7.3.5 - dev: true - - /postcss-loader/4.3.0_postcss@7.0.39+webpack@4.46.0: + /postcss-loader/4.3.0_gzaxsinx64nntyd3vmdqwl7coe: resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -14547,7 +15358,7 @@ packages: webpack: 4.46.0 dev: true - /postcss-loader/4.3.0_postcss@8.4.12: + /postcss-loader/4.3.0_jgovvjlmnszlgzfyletnwk36ji: resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -14560,6 +15371,7 @@ packages: postcss: 8.4.12 schema-utils: 3.1.1 semver: 7.3.5 + webpack: 4.46.0 /postcss-logical/3.0.0: resolution: {integrity: sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==} @@ -14589,7 +15401,7 @@ packages: resolution: {integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.20.0 + browserslist: 4.20.3 caniuse-api: 3.0.0 cssnano-util-same-parent: 4.0.1 postcss: 7.0.39 @@ -14620,7 +15432,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: alphanum-sort: 1.0.2 - browserslist: 4.20.0 + browserslist: 4.20.3 cssnano-util-get-arguments: 4.0.0 postcss: 7.0.39 postcss-value-parser: 3.3.1 @@ -14777,7 +15589,7 @@ packages: resolution: {integrity: sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.20.0 + browserslist: 4.20.3 postcss: 7.0.39 postcss-value-parser: 3.3.1 dev: false @@ -14843,8 +15655,8 @@ packages: engines: {node: '>=6.0.0'} dependencies: autoprefixer: 9.8.8 - browserslist: 4.20.0 - caniuse-lite: 1.0.30001314 + browserslist: 4.20.3 + caniuse-lite: 1.0.30001340 css-blank-pseudo: 0.1.4 css-has-pseudo: 0.10.0 css-prefers-color-scheme: 3.1.1 @@ -14893,7 +15705,7 @@ packages: resolution: {integrity: sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.20.0 + browserslist: 4.20.3 caniuse-api: 3.0.0 has: 1.0.3 postcss: 7.0.39 @@ -15178,6 +15990,21 @@ packages: /promise-inflight/1.0.1: resolution: {integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=} + peerDependencies: + bluebird: '*' + peerDependenciesMeta: + bluebird: + optional: 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 /promise.allsettled/1.0.5: resolution: {integrity: sha512-tVDqeZPoBC0SlzJHzWGZ2NKAguVq2oiYj7gbggbiTvH2itHohijTp7njOUA0aQ/nl+0lr/r6egmhoYu63UZ/pQ==} @@ -15479,16 +16306,6 @@ packages: unpipe: 1.0.0 dev: true - /raw-loader/4.0.2: - resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - dependencies: - loader-utils: 2.0.2 - schema-utils: 3.1.1 - dev: false - /raw-loader/4.0.2_webpack@4.46.0: resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} engines: {node: '>= 10.13.0'} @@ -15498,7 +16315,6 @@ packages: loader-utils: 2.0.2 schema-utils: 3.1.1 webpack: 4.46.0 - dev: true /rc9/1.2.0: resolution: {integrity: sha512-/jknmhG0USFAx5uoKkAKhtG40sONds9RWhFHrP1UzJ3OvVfqFWOypSUpmsQD0fFwAV7YtzHhsn3QNasfAoxgcQ==} @@ -15513,13 +16329,23 @@ packages: peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true dev: true - /react-colorful/5.5.1_react-dom@16.14.0+react@16.14.0: + /react-colorful/5.5.1_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-M1TJH2X3RXEt12sWkpa6hLc/bbYS0H6F4rIqjQZ+RxNBstpY67d9TrFXtqdZwhpmBXcCwEi7stKqFue3ZRkiOg==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true dependencies: react: 16.14.0 react-dom: 16.14.0_react@16.14.0 @@ -15537,6 +16363,9 @@ packages: resolution: {integrity: sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==} peerDependencies: react: ^16.14.0 + peerDependenciesMeta: + react: + optional: true dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 @@ -15550,16 +16379,26 @@ packages: peerDependencies: react: '>= 16.3.0' react-dom: '>= 16.3.0' + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true dependencies: clsx: 1.1.1 prop-types: 15.8.1 dev: true - /react-draggable/4.4.4_react-dom@16.14.0+react@16.14.0: + /react-draggable/4.4.4_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==} peerDependencies: react: '>= 16.3.0' react-dom: '>= 16.3.0' + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true dependencies: clsx: 1.1.1 prop-types: 15.8.1 @@ -15572,6 +16411,11 @@ packages: 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 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 @@ -15587,6 +16431,11 @@ packages: peerDependencies: react: ^16.6.0 || ^17.0.0 react-dom: ^16.6.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true dependencies: '@babel/runtime': 7.17.2 invariant: 2.2.4 @@ -15595,11 +16444,16 @@ packages: shallowequal: 1.1.0 dev: true - /react-helmet-async/1.2.3_react-dom@16.14.0+react@16.14.0: + /react-helmet-async/1.2.3_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-mCk2silF53Tq/YaYdkl2sB+/tDoPnaxN7dFS/6ZLJb/rhUY2EWGI5Xj2b4jHppScMqY45MbgPSwTxDchKpZ5Kw==} peerDependencies: react: ^16.6.0 || ^17.0.0 react-dom: ^16.6.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true dependencies: '@babel/runtime': 7.17.2 invariant: 2.2.4 @@ -15614,6 +16468,9 @@ packages: resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} peerDependencies: react: ^16.8.4 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true dependencies: '@babel/runtime': 7.17.2 is-dom: 1.1.0 @@ -15633,23 +16490,33 @@ packages: peerDependencies: react: ^16.6.0 || ^17.0.0 react-dom: ^16.6.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true dependencies: '@babel/runtime': 7.17.2 '@popperjs/core': 2.11.2 react-popper: 2.2.5_@popperjs+core@2.11.2 dev: true - /react-popper-tooltip/3.1.1_react-dom@16.14.0+react@16.14.0: + /react-popper-tooltip/3.1.1_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==} peerDependencies: react: ^16.6.0 || ^17.0.0 react-dom: ^16.6.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true dependencies: '@babel/runtime': 7.17.2 '@popperjs/core': 2.11.2 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 - react-popper: 2.2.5_b929fd6de5e082ba4cc01fd429715a88 + react-popper: 2.2.5_xeu723pf4cblutgad7kcs4k2ra dev: true /react-popper/2.2.5_@popperjs+core@2.11.2: @@ -15657,17 +16524,23 @@ packages: peerDependencies: '@popperjs/core': ^2.0.0 react: ^16.8.0 || ^17 + peerDependenciesMeta: + react: + optional: true dependencies: '@popperjs/core': 2.11.2 react-fast-compare: 3.2.0 warning: 4.0.3 dev: true - /react-popper/2.2.5_b929fd6de5e082ba4cc01fd429715a88: + /react-popper/2.2.5_xeu723pf4cblutgad7kcs4k2ra: resolution: {integrity: sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==} peerDependencies: '@popperjs/core': ^2.0.0 react: ^16.8.0 || ^17 + peerDependenciesMeta: + react: + optional: true dependencies: '@popperjs/core': 2.11.2 react: 16.14.0 @@ -15680,16 +16553,26 @@ packages: peerDependencies: react: '>=16.8' react-dom: '>=16.8' + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true dependencies: history: 5.3.0 react-router: 6.2.2 dev: true - /react-router-dom/6.2.2_react-dom@16.14.0+react@16.14.0: + /react-router-dom/6.2.2_wcqkhtmu7mswc6yz4uyexck3ty: resolution: {integrity: sha512-AtYEsAST7bDD4dLSQHDnk/qxWLJdad5t1HFa1qJyUrCeGgEuCSw0VB/27ARbF9Fi/W5598ujvJOm3ujUCVzuYQ==} peerDependencies: react: '>=16.8' react-dom: '>=16.8' + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true dependencies: history: 5.3.0 react: 16.14.0 @@ -15701,6 +16584,9 @@ packages: resolution: {integrity: sha512-/MbxyLzd7Q7amp4gDOGaYvXwhEojkJD5BtExkuKmj39VEE0m3l/zipf6h2WIB2jyAO0lI6NGETh4RDcktRm4AQ==} peerDependencies: react: '>=16.8' + peerDependenciesMeta: + react: + optional: true dependencies: history: 5.3.0 dev: true @@ -15709,6 +16595,9 @@ packages: resolution: {integrity: sha512-/MbxyLzd7Q7amp4gDOGaYvXwhEojkJD5BtExkuKmj39VEE0m3l/zipf6h2WIB2jyAO0lI6NGETh4RDcktRm4AQ==} peerDependencies: react: '>=16.8' + peerDependenciesMeta: + react: + optional: true dependencies: history: 5.3.0 react: 16.14.0 @@ -15727,6 +16616,9 @@ packages: resolution: {integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==} peerDependencies: react: '>= 0.14.0' + peerDependenciesMeta: + react: + optional: true dependencies: '@babel/runtime': 7.17.2 highlight.js: 10.7.3 @@ -15739,6 +16631,9 @@ packages: resolution: {integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==} peerDependencies: react: '>= 0.14.0' + peerDependenciesMeta: + react: + optional: true dependencies: '@babel/runtime': 7.17.2 highlight.js: 10.7.3 @@ -15753,6 +16648,9 @@ packages: engines: {node: '>=10'} peerDependencies: react: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true dependencies: '@babel/runtime': 7.17.2 use-composed-ref: 1.2.1 @@ -15766,6 +16664,9 @@ packages: engines: {node: '>=10'} peerDependencies: react: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true dependencies: '@babel/runtime': 7.17.2 react: 16.14.0 @@ -15843,6 +16744,8 @@ packages: graceful-fs: 4.2.9 micromatch: 3.1.10 readable-stream: 2.3.7 + transitivePeerDependencies: + - supports-color optional: true /readdirp/3.6.0: @@ -15856,6 +16759,11 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true dev: false /recast/0.18.10: @@ -16275,9 +17183,11 @@ packages: micromatch: 3.1.10 minimist: 1.2.6 walker: 1.0.8 + transitivePeerDependencies: + - supports-color dev: true - /sass-loader/10.1.1: + /sass-loader/10.1.1_webpack@4.46.0: resolution: {integrity: sha512-W6gVDXAd5hR/WHsPicvZdjAWHBcEJ44UahgxcIE196fW2ong0ZHMPO1kZuI5q0VlvMQZh32gpv69PLWQm70qrw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -16298,6 +17208,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 semver: 7.3.5 + webpack: 4.46.0 dev: true /sass-resources-loader/2.2.4: @@ -16408,6 +17319,8 @@ packages: on-finished: 2.3.0 range-parser: 1.2.1 statuses: 1.5.0 + transitivePeerDependencies: + - supports-color /serialize-javascript/3.1.0: resolution: {integrity: sha512-JIJT1DGiWmIKhzRsG91aS6Ze4sFUrYbltlkg2onR5OrnNM02Kl/hnY/T4FN2omvyeBbQmMJv+K4cPOpGzOTFBg==} @@ -16450,6 +17363,8 @@ packages: escape-html: 1.0.3 parseurl: 1.3.3 send: 0.17.2 + transitivePeerDependencies: + - supports-color /server-destroy/1.0.1: resolution: {integrity: sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0=} @@ -16636,6 +17551,8 @@ packages: source-map: 0.5.7 source-map-resolve: 0.5.3 use: 3.1.1 + transitivePeerDependencies: + - supports-color /socks-proxy-agent/6.1.1: resolution: {integrity: sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==} @@ -17003,16 +17920,6 @@ packages: engines: {node: '>=8'} dev: true - /style-loader/1.3.0: - resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} - engines: {node: '>= 8.9.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - dependencies: - loader-utils: 2.0.2 - schema-utils: 2.7.1 - dev: true - /style-loader/1.3.0_webpack@4.46.0: resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} engines: {node: '>= 8.9.0'} @@ -17047,7 +17954,7 @@ packages: resolution: {integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.20.0 + browserslist: 4.20.3 postcss: 7.0.39 postcss-selector-parser: 3.1.2 dev: false @@ -17105,6 +18012,8 @@ packages: deepmerge: 1.3.2 mitt: 1.1.2 svg-baker: 1.7.0 + transitivePeerDependencies: + - supports-color dev: false /svg-baker/1.7.0: @@ -17123,6 +18032,8 @@ packages: posthtml-svg-mode: 1.0.3 query-string: 4.3.4 traverse: 0.6.6 + transitivePeerDependencies: + - supports-color dev: false /svg-sprite-loader/5.2.1: @@ -17137,18 +18048,21 @@ packages: svg-baker: 1.7.0 svg-baker-runtime: 1.4.7 url-slug: 2.0.0 + transitivePeerDependencies: + - supports-color dev: false /svg-tags/1.0.0: resolution: {integrity: sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=} dev: false - /svg-to-vue/0.7.0: + /svg-to-vue/0.7.0_ev5jzj74xu2fombjvobqpq452a: resolution: {integrity: sha512-Tg2nMmf3BQorYCAjxbtTkYyWPVSeox5AZUFvfy4MoWK/5tuQlnA/h3LAlTjV3sEvOC5FtUNovRSj3p784l4KOA==} peerDependencies: vue-template-compiler: ^2.0.0 dependencies: svgo: 1.3.2 + vue-template-compiler: 2.6.14 dev: false /svgo/1.3.2: @@ -17209,7 +18123,7 @@ packages: open: 7.4.2 portfinder: 1.0.28 replace-in-file: 6.3.2 - tailwindcss: 3.0.23_cf30258013438338cbfd2cf01b956a45 + tailwindcss: 3.0.23_z4yclaatiobtrs75ftybxflkiu transitivePeerDependencies: - supports-color dev: true @@ -17218,7 +18132,7 @@ packages: resolution: {integrity: sha512-y7yC8QXjluDBEFMSX33tV6xMYrf0B3sa+tOB5JSQb6/G6laBU313a+Z+qxu55M1Qyn8tDMttjomsA8IsJD+k+w==} dev: true - /tailwindcss/3.0.23_cf30258013438338cbfd2cf01b956a45: + /tailwindcss/3.0.23_z4yclaatiobtrs75ftybxflkiu: resolution: {integrity: sha512-+OZOV9ubyQ6oI2BXEhzw4HrqvgcARY38xv3zKcjnWtMIZstEsXdI9xftd1iB7+RbOnj2HOEzkA0OyB5BaSxPQA==} engines: {node: '>=12.13.0'} hasBin: true @@ -17327,26 +18241,6 @@ packages: webpack-sources: 1.4.3 worker-farm: 1.7.0 - /terser-webpack-plugin/4.2.3_acorn@7.4.1+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@7.4.1 - webpack: 4.46.0 - webpack-sources: 1.4.3 - transitivePeerDependencies: - - acorn - dev: true - /terser-webpack-plugin/4.2.3_webpack@4.46.0: resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==} engines: {node: '>= 10.13.0'} @@ -17364,13 +18258,14 @@ packages: webpack: 4.46.0 webpack-sources: 1.4.3 transitivePeerDependencies: - - acorn + - bluebird /terser/4.8.0: resolution: {integrity: sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==} engines: {node: '>=6.0.0'} hasBin: true dependencies: + acorn: 8.7.1 commander: 2.20.3 source-map: 0.6.1 source-map-support: 0.5.21 @@ -17379,31 +18274,14 @@ packages: resolution: {integrity: sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==} engines: {node: '>=10'} hasBin: true - peerDependencies: - acorn: ^8.5.0 - peerDependenciesMeta: - acorn: - optional: true - dependencies: - commander: 2.20.3 - source-map: 0.7.3 - source-map-support: 0.5.21 - - /terser/5.10.0_acorn@7.4.1: - resolution: {integrity: sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==} - engines: {node: '>=10'} - hasBin: true - peerDependencies: - acorn: ^8.5.0 peerDependenciesMeta: acorn: optional: true dependencies: - acorn: 7.4.1 + acorn: 8.7.1 commander: 2.20.3 source-map: 0.7.3 source-map-support: 0.5.21 - dev: true /test-exclude/6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} @@ -17584,22 +18462,7 @@ packages: engines: {node: '>=6.10'} dev: true - /ts-loader/8.3.0_typescript@4.6.2: - resolution: {integrity: sha512-MgGly4I6cStsJy27ViE32UoqxPTN9Xly4anxxVyaIWR+9BGxboV4EyJBGfR3RePV7Ksjj3rHmPZJeIt+7o4Vag==} - engines: {node: '>=10.0.0'} - peerDependencies: - typescript: '*' - webpack: '*' - dependencies: - chalk: 4.1.2 - enhanced-resolve: 4.5.0 - loader-utils: 2.0.2 - micromatch: 4.0.4 - semver: 7.3.5 - typescript: 4.6.2 - dev: true - - /ts-loader/8.3.0_typescript@4.6.2+webpack@4.46.0: + /ts-loader/8.3.0_7in6qbnjgkqokibdcer35wqugu: resolution: {integrity: sha512-MgGly4I6cStsJy27ViE32UoqxPTN9Xly4anxxVyaIWR+9BGxboV4EyJBGfR3RePV7Ksjj3rHmPZJeIt+7o4Vag==} engines: {node: '>=10.0.0'} peerDependencies: @@ -17619,7 +18482,7 @@ packages: resolution: {integrity: sha512-vDWbsl26LIcPGmDpoVzjEP6+hvHZkBkLW7JpvwbCv/5IYPJlsbzCVXY3wsCeAxAUeTclNOUZxnLdGh3VBD/J6w==} dev: true - /ts-node/10.7.0_typescript@4.6.2: + /ts-node/10.7.0_cbygeln5s5sjlseyk3kbidkfny: resolution: {integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==} hasBin: true peerDependencies: @@ -17638,6 +18501,7 @@ packages: '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 '@tsconfig/node16': 1.0.2 + '@types/node': 17.0.32 acorn: 8.7.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -17917,7 +18781,7 @@ packages: resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=} engines: {node: '>= 0.8'} - /unplugin-vue2-script-setup/0.9.3_084b6226078c1c34ec4d8a8c1a23d732: + /unplugin-vue2-script-setup/0.9.3_pw42y33qo2ly2ct4vpupmck4ae: resolution: {integrity: sha512-m2QESHiFNmx0fIo/P0AiCrH6E5WtijRB/Ldrj8zjwRIYYbiOgmTfRmWQquW0H8ei5OwhYT30WAgepFjWrJ5oJg==} peerDependencies: '@vue/composition-api': ^1.4.3 @@ -17928,7 +18792,7 @@ packages: optional: true dependencies: '@antfu/utils': 0.4.0 - '@babel/core': 7.17.5 + '@babel/core': 7.17.10 '@babel/generator': 7.17.3 '@babel/parser': 7.17.3 '@babel/traverse': 7.17.3 @@ -17936,7 +18800,7 @@ packages: '@rollup/pluginutils': 4.2.0 '@vue/compiler-core': 3.2.31 '@vue/compiler-dom': 3.2.31 - '@vue/composition-api': 1.4.9 + '@vue/composition-api': 1.4.9_vue@2.6.14 '@vue/reactivity-transform': 3.2.31 '@vue/runtime-dom': 3.2.31 '@vue/shared': 3.2.31 @@ -17944,7 +18808,7 @@ packages: htmlparser2: 5.0.1 magic-string: 0.25.9 tslib: 2.3.1 - unplugin: 0.3.3 + unplugin: 0.3.3_webpack@4.46.0 transitivePeerDependencies: - esbuild - rollup @@ -17953,7 +18817,7 @@ packages: - webpack dev: false - /unplugin/0.3.3: + /unplugin/0.3.3_webpack@4.46.0: resolution: {integrity: sha512-WjZWpUqqcYPQ/efR00Zm2m1+J1LitwoZ4uhHV4VdZ+IpW0Nh/qnDYtVf+nLhozXdGxslMPecOshVR7NiWFl4gA==} peerDependencies: esbuild: '>=0.13' @@ -17970,6 +18834,7 @@ packages: webpack: optional: true dependencies: + webpack: 4.46.0 webpack-virtual-modules: 0.4.3 dev: false @@ -18007,23 +18872,7 @@ packages: resolution: {integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=} deprecated: Please see https://github.com/lydell/urix#deprecated - /url-loader/4.1.1_file-loader@6.2.0: - resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - file-loader: '*' - webpack: ^4.0.0 || ^5.0.0 - peerDependenciesMeta: - file-loader: - optional: true - dependencies: - file-loader: 6.2.0 - loader-utils: 2.0.2 - mime-types: 2.1.34 - schema-utils: 3.1.1 - dev: false - - /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: @@ -18055,12 +18904,18 @@ packages: resolution: {integrity: sha512-6+X1FLlIcjvFMAeAD/hcxDT8tmyrWnbSPMU0EnxQuDLIxokuFzWliXBiYZuGIx+mrAMLBw0WFfCkaPw8ebzAhw==} peerDependencies: react: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true dev: true /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 + peerDependenciesMeta: + react: + optional: true dependencies: react: 16.14.0 dev: true @@ -18073,6 +18928,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true + react: + optional: true dev: true /use-isomorphic-layout-effect/1.1.1_react@16.14.0: @@ -18083,6 +18940,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true + react: + optional: true dependencies: react: 16.14.0 dev: true @@ -18095,6 +18954,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true + react: + optional: true dependencies: use-isomorphic-layout-effect: 1.1.1 dev: true @@ -18107,6 +18968,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true + react: + optional: true dependencies: react: 16.14.0 use-isomorphic-layout-effect: 1.1.1_react@16.14.0 @@ -18229,7 +19092,7 @@ packages: resolution: {integrity: sha512-vKl1skEKn8EK9f8P2ZzhRnuaRHLHrlt1sbRmazlvsx6EiC3A8oWF8YCBrMJzoN+W3OnElwIGbVjsx6/xelY1AA==} dev: false - /vue-demi/0.12.1: + /vue-demi/0.12.1_vue@2.6.14: resolution: {integrity: sha512-QL3ny+wX8c6Xm1/EZylbgzdoDolye+VpCXRhI2hug9dJTP3OUJ3lmiKN3CsVV3mOJKwFi0nsstbgob0vG7aoIw==} engines: {node: '>=12'} hasBin: true @@ -18240,12 +19103,14 @@ packages: peerDependenciesMeta: '@vue/composition-api': optional: true + dependencies: + vue: 2.6.14 - /vue-docgen-api/4.44.18: + /vue-docgen-api/4.44.18_vue@2.6.14: resolution: {integrity: sha512-zZLa2TqCid97tIk98A30GnP5N46SfAsJW5p3z1PDYME0UTZWl6nKLcgQLtGfzXYT4bz+dV11cc6FumdGW0QTlA==} dependencies: - '@babel/parser': 7.17.3 - '@babel/types': 7.17.0 + '@babel/parser': 7.17.10 + '@babel/types': 7.17.10 '@vue/compiler-dom': 3.2.31 '@vue/compiler-sfc': 3.2.31 ast-types: 0.14.2 @@ -18254,12 +19119,12 @@ packages: pug: 3.0.2 recast: 0.20.5 ts-map: 1.0.3 - vue-inbrowser-compiler-utils: 4.44.17 + vue-inbrowser-compiler-utils: 4.44.17_vue@2.6.14 transitivePeerDependencies: - vue dev: true - /vue-docgen-loader/1.5.0_4f483e0d3c950f846ed91d401997f598: + /vue-docgen-loader/1.5.0_j5ed4dj4suhyi3wzdvabtf7vta: resolution: {integrity: sha512-LKZ8mxeIQ44uSUMTplnwOXbC4bO4E2vyZDTbn7/1QlVwJPEIjk3ahL0DA1m27IEw6YTlHOwtWS0PrHmDkFgyAg==} engines: {node: '>= 8.16'} peerDependencies: @@ -18270,7 +19135,7 @@ packages: jscodeshift: 0.7.1 loader-utils: 1.4.0 querystring: 0.2.1 - vue-docgen-api: 4.44.18 + vue-docgen-api: 4.44.18_vue@2.6.14 webpack: 4.46.0 transitivePeerDependencies: - supports-color @@ -18312,22 +19177,23 @@ packages: resolution: {integrity: sha512-7apa5PvRg1YCLoraE3lOgpCG8hJGupLCtywQWedWsgBbvF0TOgFvhitqK9xRH0PBGG1G8aiJz9oklyNDFfDxLg==} dev: false - /vue-inbrowser-compiler-utils/4.44.17: + /vue-inbrowser-compiler-utils/4.44.17_vue@2.6.14: resolution: {integrity: sha512-dvxumVgIzR4FXjAWYWIOnpD+6bW0dLkoAv43UShER8gVIhLFo9UEmbF31wD6YWJj94lUpbVIuWl2qc6axYNEAQ==} peerDependencies: vue: '>=2' dependencies: camelcase: 5.3.1 + vue: 2.6.14 dev: true - /vue-jest/3.0.7_babel-core@7.0.0-bridge.0: + /vue-jest/3.0.7_emdz5kfrc5cn55r4a24jgpa35q: resolution: {integrity: sha512-PIOxFM+wsBMry26ZpfBvUQ/DGH2hvp5khDQ1n51g3bN0TwFwTy4J85XVfxTRMukqHji/GnAoGUnlZ5Ao73K62w==} peerDependencies: - babel-core: ^6.25.0 || ^7.0.0-0 + babel-core: ^6.25.0 || ^7.0.0-0 || 7.0.0-bridge.0 vue: ^2.x vue-template-compiler: ^2.x dependencies: - babel-core: 7.0.0-bridge.0 + babel-core: 7.0.0-bridge.0_@babel+core@7.17.10 babel-plugin-transform-es2015-modules-commonjs: 6.26.2 chalk: 2.4.2 deasync: 0.1.24 @@ -18338,23 +19204,30 @@ packages: object-assign: 4.1.1 source-map: 0.5.7 tsconfig: 7.0.0 + vue: 2.6.14 + vue-template-compiler: 2.6.14 vue-template-es2015-compiler: 1.9.1 + transitivePeerDependencies: + - supports-color dev: true - /vue-loader/15.9.8_559ffc97fd41de05d12663d7fb949156: + /vue-loader/15.9.8_7oyydxtafvjqcmg5zydubwayrq: resolution: {integrity: sha512-GwSkxPrihfLR69/dSV3+5CdMQ0D+jXg8Ma1S4nQXKJAznYFX14vHdc/NetQc34Dw+rBbIJyP7JOuVb9Fhprvog==} peerDependencies: + '@vue/compiler-sfc': ^3.0.8 cache-loader: '*' css-loader: '*' vue-template-compiler: '*' webpack: ^3.0.0 || ^4.1.0 || ^5.0.0-0 peerDependenciesMeta: + '@vue/compiler-sfc': + optional: true cache-loader: optional: true vue-template-compiler: optional: true dependencies: - '@vue/component-compiler-utils': 3.3.0 + '@vue/component-compiler-utils': 3.3.0_mz6uzicp2h6fqcdyehxis2yeyu cache-loader: 4.1.0_webpack@4.46.0 css-loader: 4.3.0_webpack@4.46.0 hash-sum: 1.0.2 @@ -18363,27 +19236,140 @@ packages: vue-style-loader: 4.1.3 vue-template-compiler: 2.6.14 webpack: 4.46.0 - dev: false - - /vue-loader/15.9.8_css-loader@5.2.7: + transitivePeerDependencies: + - arc-templates + - atpl + - babel-core + - bracket-template + - coffee-script + - dot + - dust + - dustjs-helpers + - dustjs-linkedin + - eco + - ect + - ejs + - haml-coffee + - hamlet + - hamljs + - handlebars + - hogan.js + - htmling + - jade + - jazz + - jqtpl + - just + - liquid-node + - liquor + - lodash + - marko + - mote + - mustache + - nunjucks + - plates + - pug + - qejs + - ractive + - razor-tmpl + - react + - react-dom + - slm + - squirrelly + - swig + - swig-templates + - teacup + - templayed + - then-jade + - then-pug + - tinyliquid + - toffee + - twig + - twing + - underscore + - vash + - velocityjs + - walrus + - whiskers + dev: false + + /vue-loader/15.9.8_pv3e62hihcgilzzlt4q6ljqzyu: resolution: {integrity: sha512-GwSkxPrihfLR69/dSV3+5CdMQ0D+jXg8Ma1S4nQXKJAznYFX14vHdc/NetQc34Dw+rBbIJyP7JOuVb9Fhprvog==} peerDependencies: + '@vue/compiler-sfc': ^3.0.8 cache-loader: '*' css-loader: '*' vue-template-compiler: '*' webpack: ^3.0.0 || ^4.1.0 || ^5.0.0-0 peerDependenciesMeta: + '@vue/compiler-sfc': + optional: true cache-loader: optional: true vue-template-compiler: optional: true dependencies: - '@vue/component-compiler-utils': 3.3.0 - css-loader: 5.2.7 + '@vue/component-compiler-utils': 3.3.0_babel-core@7.0.0-bridge.0 + css-loader: 5.2.7_webpack@4.46.0 hash-sum: 1.0.2 loader-utils: 1.4.0 vue-hot-reload-api: 2.3.4 vue-style-loader: 4.1.3 + vue-template-compiler: 2.6.14 + webpack: 4.46.0 + transitivePeerDependencies: + - arc-templates + - atpl + - babel-core + - bracket-template + - coffee-script + - dot + - dust + - dustjs-helpers + - dustjs-linkedin + - eco + - ect + - ejs + - haml-coffee + - hamlet + - hamljs + - handlebars + - hogan.js + - htmling + - jade + - jazz + - jqtpl + - just + - liquid-node + - liquor + - lodash + - marko + - mote + - mustache + - nunjucks + - plates + - pug + - qejs + - ractive + - razor-tmpl + - react + - react-dom + - slm + - squirrelly + - swig + - swig-templates + - teacup + - templayed + - then-jade + - then-pug + - tinyliquid + - toffee + - twig + - twing + - underscore + - vash + - velocityjs + - walrus + - whiskers dev: true /vue-meta/2.4.0: @@ -18419,13 +19405,14 @@ packages: hash-sum: 1.0.2 loader-utils: 1.4.0 - /vue-svg-loader/0.16.0: + /vue-svg-loader/0.16.0_ev5jzj74xu2fombjvobqpq452a: resolution: {integrity: sha512-2RtFXlTCYWm8YAEO2qAOZ2SuIF2NvLutB5muc3KDYoZq5ZeCHf8ggzSan3ksbbca7CJ/Aw57ZnDF4B7W/AkGtw==} peerDependencies: vue-template-compiler: ^2.0.0 dependencies: loader-utils: 1.4.0 - svg-to-vue: 0.7.0 + svg-to-vue: 0.7.0_ev5jzj74xu2fombjvobqpq452a + vue-template-compiler: 2.6.14 dev: false /vue-template-compiler/2.6.14: @@ -18433,7 +19420,6 @@ packages: dependencies: de-indent: 1.0.2 he: 1.2.0 - dev: false /vue-template-es2015-compiler/1.9.1: resolution: {integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==} @@ -18490,6 +19476,8 @@ packages: requiresBuild: true dependencies: chokidar: 2.1.8 + transitivePeerDependencies: + - supports-color optional: true /watchpack/1.7.5: @@ -18500,6 +19488,8 @@ packages: optionalDependencies: chokidar: 3.5.3 watchpack-chokidar2: 2.0.1 + transitivePeerDependencies: + - supports-color /watchpack/2.3.1: resolution: {integrity: sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==} @@ -18614,6 +19604,8 @@ packages: resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==} dependencies: debug: 3.2.7 + transitivePeerDependencies: + - supports-color dev: true /webpack-virtual-modules/0.4.3: @@ -18656,6 +19648,8 @@ packages: terser-webpack-plugin: 1.4.5_webpack@4.46.0 watchpack: 1.7.5 webpack-sources: 1.4.3 + transitivePeerDependencies: + - supports-color /webpackbar/4.0.0_webpack@4.46.0: resolution: {integrity: sha512-k1qRoSL/3BVuINzngj09nIwreD8wxV4grcuhHTD8VJgUbGcy8lQSPqv+bM00B7F+PffwIsQ8ISd4mIwRbr23eQ==} @@ -18741,8 +19735,8 @@ packages: resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==} engines: {node: '>= 10.0.0'} dependencies: - '@babel/parser': 7.17.3 - '@babel/types': 7.17.0 + '@babel/parser': 7.17.10 + '@babel/types': 7.17.10 assert-never: 1.2.1 babel-walk: 3.0.0-canary-5 dev: true