From 67e511d719cbc3e7f2b391a8d6914406caa2fb24 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 23 Aug 2021 16:51:49 -0300 Subject: updated build fast for web --- contrib/build-fast-node.sh | 69 + contrib/build-fast-web.sh | 139 + contrib/build-fast-with-linaria.mjs | 42 + contrib/build-fast.sh | 70 - package.json | 5 + .../.storybook/preview.js | 10 +- .../clean_and_build_fast.sh | 4 + packages/taler-wallet-webextension/package.json | 5 +- .../taler-wallet-webextension/rollup.config.js | 17 +- .../src/NavigationBar.tsx | 2 +- .../src/components/Checkbox.tsx | 1 + .../src/components/DebugCheckbox.tsx | 2 +- .../src/components/Diagnostics.tsx | 5 +- .../src/components/EditableText.tsx | 6 +- .../src/components/ErrorMessage.tsx | 2 +- .../src/components/LogoHeader.tsx | 2 + .../src/components/SelectList.tsx | 1 + packages/taler-wallet-webextension/src/cta/Pay.tsx | 2 +- .../taler-wallet-webextension/src/cta/Refund.tsx | 1 + packages/taler-wallet-webextension/src/cta/Tip.tsx | 1 + .../taler-wallet-webextension/src/cta/Withdraw.tsx | 3 +- .../taler-wallet-webextension/src/cta/payback.tsx | 1 + .../src/cta/reset-required.tsx | 2 +- .../src/cta/return-coins.tsx | 2 +- .../src/popup/Backup.stories.tsx | 8 +- .../src/popup/BackupPage.tsx | 2 +- .../src/popup/Balance.stories.tsx | 9 +- .../src/popup/BalancePage.tsx | 2 +- .../taler-wallet-webextension/src/popup/Debug.tsx | 2 +- .../src/popup/History.stories.tsx | 8 +- .../src/popup/History.tsx | 2 +- .../src/popup/Popup.stories.tsx | 8 +- .../popup/ProviderAddConfirmProvider.stories.tsx | 8 +- .../src/popup/ProviderAddPage.tsx | 2 +- .../src/popup/ProviderAddSetUrl.stories.tsx | 8 +- .../src/popup/ProviderDetail.stories.tsx | 8 +- .../src/popup/ProviderDetailPage.tsx | 2 +- .../src/popup/Settings.stories.tsx | 9 +- .../src/popup/Settings.tsx | 2 +- .../src/popup/Transaction.stories.tsx | 8 +- .../src/popup/Transaction.tsx | 2 +- .../src/popupEntryPoint.tsx | 4 +- .../taler-wallet-webextension/src/renderHtml.tsx | 3 +- .../taler-wallet-webextension/src/test-utils.ts | 6 +- .../src/wallet/History.stories.tsx | 9 +- .../src/wallet/History.tsx | 2 +- .../src/wallet/Welcome.tsx | 1 + .../src/walletEntryPoint.tsx | 2 +- .../taler-wallet-webextension/static/popup.html | 2 +- .../taler-wallet-webextension/static/wallet.html | 2 +- packages/taler-wallet-webextension/tsconfig.json | 5 +- pnpm-lock.yaml | 8285 ++++++++++---------- vendor | 2 +- 53 files changed, 4344 insertions(+), 4463 deletions(-) create mode 100755 contrib/build-fast-node.sh create mode 100755 contrib/build-fast-web.sh create mode 100644 contrib/build-fast-with-linaria.mjs delete mode 100755 contrib/build-fast.sh create mode 100755 packages/taler-wallet-webextension/clean_and_build_fast.sh diff --git a/contrib/build-fast-node.sh b/contrib/build-fast-node.sh new file mode 100755 index 000000000..b514694fb --- /dev/null +++ b/contrib/build-fast-node.sh @@ -0,0 +1,69 @@ +#!/usr/bin/env bash + +set -eu +set -x + +export DIST=build/node +export NODE_PATH=$DIST:vendor + +function build_idb() { + rm -rf packages/idb-bridge/{node_modules,lib,dist,tsconfig.tsbuildinfo} + idb_dir=$DIST/@gnu-taler/idb-bridge + mkdir -p $idb_dir + esbuild --platform=node --bundle packages/idb-bridge/src/index.ts > $idb_dir/index.js +} + +function build_taler_util() { + rm -rf packages/taler-util/{node_modules,lib,dist,tsconfig.tsbuildinfo} + taler_util_dir=$DIST/@gnu-taler/taler-util + mkdir -p $taler_util_dir + esbuild --platform=node --bundle packages/taler-util/src/index.ts > $taler_util_dir/index.js +} + +function build_fflate() { + fflate_dir=$DIST/fflate + mkdir -p $fflate_dir + esbuild --platform=node --bundle vendor/fflate/src/index.ts > $fflate_dir/index.js +} + +function build_ct() { + ct_dir=$DIST/cancellationtoken + mkdir -p $ct_dir + esbuild --target=es6 --platform=node --bundle vendor/cancellationtoken/src/index.ts > $ct_dir/index.js +} + +function build_wallet_core() { + rm -rf packages/taler-wallet-core/{node_modules,lib,dist,tsconfig.tsbuildinfo} + taler_wallet_core_dir=$DIST/@gnu-taler/taler-wallet-core + + mkdir -p $taler_wallet_core_dir + esbuild --platform=node --bundle --external:@gnu-taler/taler-util packages/taler-wallet-core/src/index.node.ts > $taler_wallet_core_dir/index.js +} + +function build_wallet_embedded() { + rm -rf packages/taler-wallet-embedded/{node_modules,lib,dist,tsconfig.tsbuildinfo} + taler_wallet_embedded_dir=$DIST/@gnu-taler/taler-wallet-embedded + + mkdir -p $taler_wallet_embedded_dir + esbuild --platform=node --bundle packages/taler-wallet-embedded/src/index.ts > $taler_wallet_embedded_dir/taler-wallet-embedded.js +} + +function build_wallet_cli() { + rm -rf packages/taler-wallet-cli/{node_modules,lib,dist,tsconfig.tsbuildinfo} + taler_wallet_cli_dir=$DIST/@gnu-taler/taler-wallet-cli + mkdir -p $taler_wallet_cli_dir + + esbuild --platform=node --bundle packages/taler-wallet-cli/src/index.ts > $taler_wallet_cli_dir/index.js + cp $taler_wallet_cli_dir/index.js $taler_wallet_cli_dir/taler-wallet-cli.js +} + + +build_idb +build_taler_util +build_fflate +build_wallet_core +build_wallet_embedded +build_ct + +build_wallet_cli + diff --git a/contrib/build-fast-web.sh b/contrib/build-fast-web.sh new file mode 100755 index 000000000..ddc9f10f3 --- /dev/null +++ b/contrib/build-fast-web.sh @@ -0,0 +1,139 @@ +#!/usr/bin/env bash + +set -eu +set -x + +export DIST=build/web +export NODE_PATH=$DIST:vendor + +export BUNDLE_OPTIONS='--bundle --format=esm --target=esnext' + +function build_idb() { + rm -rf packages/idb-bridge/{node_modules,lib,dist,tsconfig.tsbuildinfo} + idb_dir=$DIST/@gnu-taler/idb-bridge + mkdir -p $idb_dir + esbuild $BUNDLE_OPTIONS packages/idb-bridge/src/index.ts > $idb_dir/index.js +} + +function build_taler_util() { + taler_util_dir=$DIST/@gnu-taler/taler-util + mkdir -p $taler_util_dir + rm -rf packages/taler-util/{node_modules,lib,dist,tsconfig.tsbuildinfo} + + esbuild $BUNDLE_OPTIONS packages/taler-util/src/index.ts > $taler_util_dir/index.js +} + +function build_fflate() { + fflate_dir=$DIST/fflate + mkdir -p $fflate_dir + esbuild $BUNDLE_OPTIONS vendor/fflate/src/index.ts > $fflate_dir/index.js +} + +function build_ct() { + ct_dir=$DIST/cancellationtoken + mkdir -p $ct_dir + esbuild $BUNDLE_OPTIONS vendor/cancellationtoken/src/index.ts > $ct_dir/index.js +} + +function build_wallet_core() { + taler_wallet_core_dir=$DIST/@gnu-taler/taler-wallet-core + + rm -rf packages/taler-wallet-core/{node_modules,lib,dist,tsconfig.tsbuildinfo} + + mkdir -p $taler_wallet_core_dir + esbuild $BUNDLE_OPTIONS --external:@gnu-taler/taler-util packages/taler-wallet-core/src/index.browser.ts > $taler_wallet_core_dir/index.js +} + +function build_wallet_embedded() { + taler_wallet_embedded_dir=$DIST/@gnu-taler/taler-wallet-embedded + rm -rf packages/taler-wallet-embedded/{node_modules,lib,dist,tsconfig.tsbuildinfo} + + mkdir -p $taler_wallet_embedded_dir + esbuild $BUNDLE_OPTIONS packages/taler-wallet-embedded/src/index.ts > $taler_wallet_embedded_dir/taler-wallet-embedded.js +} + +function build_vendor() { + mkdir -p $DIST/$1 + + esbuild $BUNDLE_OPTIONS vendor/$1/src/index.js > $DIST/$1/index.js +} + +function build_preact() { + mkdir -p $DIST/preact/{debug,hooks} + + esbuild $BUNDLE_OPTIONS vendor/preact/src/index.js > $DIST/preact/index.js + esbuild $BUNDLE_OPTIONS --external:preact vendor/preact/hooks/src/index.js > $DIST/preact/hooks/index.js + esbuild $BUNDLE_OPTIONS --external:preact vendor/preact/debug/src/index.js > $DIST/preact/debug/index.js +} + +function build_preact-router() { + mkdir -p $DIST/preact-router/match + + esbuild $BUNDLE_OPTIONS --external:preact vendor/preact-router/src/index.js > $DIST/preact-router/index.js + esbuild $BUNDLE_OPTIONS --loader:.js=jsx --external:preact --external:preact-router vendor/preact-router/src/match.js > $DIST/preact-router/match/index.js +} + +function build_preact_compat() { + mkdir -p $DIST/{react/jsx-runtime,react-dom/test-utils} + + esbuild $BUNDLE_OPTIONS --loader:.js=jsx vendor/preact/compat/src/index.js > $DIST/react/index.js + + esbuild $BUNDLE_OPTIONS --loader:.js=jsx --external:preact vendor/preact/compat/src/index.js > $DIST/react/index.js + esbuild $BUNDLE_OPTIONS --loader:.js=jsx --external:preact vendor/preact/compat/src/index.js > $DIST/react-dom/index.js + esbuild $BUNDLE_OPTIONS --loader:.js=jsx vendor/preact/jsx-runtime/src/index.js > $DIST/react/jsx-runtime/index.js + esbuild $BUNDLE_OPTIONS --loader:.js=jsx vendor/preact/test-utils/src/index.js > $DIST/react-dom/test-utils/index.js +} + +function build_history() { + mkdir -p $DIST/{history,resolve-pathname,value-equal,tiny-warning,tiny-invariant} + + esbuild $BUNDLE_OPTIONS --loader:.js=ts vendor/tiny-warning/src/index.js > $DIST/tiny-warning/index.js + esbuild $BUNDLE_OPTIONS --loader:.js=ts vendor/tiny-invariant/src/index.js > $DIST/tiny-invariant/index.js + + esbuild $BUNDLE_OPTIONS vendor/resolve-pathname/modules/index.js > $DIST/resolve-pathname/index.js + esbuild $BUNDLE_OPTIONS vendor/value-equal/modules/index.js > $DIST/value-equal/index.js + + esbuild $BUNDLE_OPTIONS vendor/history/modules/index.js > $DIST/history/index.js +} + +function build_linaria() { + mkdir -p $DIST/@linaria/{react,core} + mkdir -p $DIST/@emotion/is-prop-valid + + esbuild $BUNDLE_OPTIONS vendor/@emotion/is-prop-valid/index.js > $DIST/@emotion/is-prop-valid/index.js + + esbuild $BUNDLE_OPTIONS vendor/@linaria/packages/core/src/index.ts > $DIST/@linaria/core/index.js + esbuild $BUNDLE_OPTIONS --external:preact vendor/@linaria/packages/react/src/index.ts > $DIST/@linaria/react/index.js +} + +function build_wallet_webextension() { + rm -rf packages/taler-wallet-webextension/{node_modules,lib,dist,tsconfig.tsbuildinfo,extension} + + taler_wallet_webextension_dir=packages/taler-wallet-webextension/dist + mkdir -p $taler_wallet_webextension_dir + + esbuild $BUNDLE_OPTIONS packages/taler-wallet-webextension/src/background.ts > $taler_wallet_webextension_dir/background.js + esbuild $BUNDLE_OPTIONS packages/taler-wallet-webextension/src/browserWorkerEntry.ts > $taler_wallet_webextension_dir/browserWorkerEntry.js + + # implemented as a script because right now esbuild binary does not support plugins + # FIXME: remove javascript when possible + node ./contrib/build-fast-with-linaria.mjs packages/taler-wallet-webextension/src/popupEntryPoint.tsx $taler_wallet_webextension_dir + node ./contrib/build-fast-with-linaria.mjs packages/taler-wallet-webextension/src/walletEntryPoint.tsx $taler_wallet_webextension_dir +} + + +build_idb +build_taler_util +build_fflate +build_wallet_core + +build_vendor date-fns + +build_preact +build_preact-router +build_preact_compat + +build_history +build_linaria + +build_wallet_webextension diff --git a/contrib/build-fast-with-linaria.mjs b/contrib/build-fast-with-linaria.mjs new file mode 100644 index 000000000..88ce75f18 --- /dev/null +++ b/contrib/build-fast-with-linaria.mjs @@ -0,0 +1,42 @@ + +import linaria from '@linaria/esbuild' +import esbuild from 'esbuild' + +if (process.argv.length !== 4) { + console.log(` +Usage: + ${process.argv[1]} + +entryPoint: file to be converted +outputDir: destination directory +`) + process.exit(1) +} + +esbuild + .build({ + entryPoints: [process.argv[2]], + bundle: true, + outdir: process.argv[3], + minify: false, + nodePaths: ['build/web', 'vendor'], + loader: { + '.svg': 'dataurl', + '.png': 'dataurl', + }, + target: [ + 'esnext' + ], + format: 'esm', + jsxFactory: 'h', + jsxFragment: 'Fragment', + define: { + 'process.env.NODE_ENV' : '"development"', + }, + plugins: [ + linaria.default({ + sourceMap: true, + }), + ], + }) + .catch (() => process.exit(1)); diff --git a/contrib/build-fast.sh b/contrib/build-fast.sh deleted file mode 100755 index b73041e74..000000000 --- a/contrib/build-fast.sh +++ /dev/null @@ -1,70 +0,0 @@ -#!/usr/bin/env bash - -set -eu -set -x - -export NODE_PATH=vendor:build - -function build_idb() { - rm -rf packages/idb-bridge/node_modules - idb_dir=build/@gnu-taler/idb-bridge - mkdir -p $idb_dir - esbuild --platform=node --bundle packages/idb-bridge/src/index.ts > $idb_dir/index.js -} - -function build_taler_util() { - taler_util_dir=build/@gnu-taler/taler-util - mkdir -p $taler_util_dir - esbuild --platform=node --bundle packages/taler-util/src/index.ts > $taler_util_dir/index.js -} - -function build_fflate() { - fflate_dir=build/fflate - mkdir -p $fflate_dir - esbuild --platform=node --bundle vendor/fflate/src/index.ts > $fflate_dir/index.js -} - -function build_ct() { - ct_dir=build/cancellationtoken - mkdir -p $ct_dir - esbuild --target=es6 --platform=node --bundle vendor/cancellationtoken/src/index.ts > $ct_dir/index.js -} - -function build_wallet_core() { - taler_wallet_core_dir=build/@gnu-taler/taler-wallet-core - - rm -rf packages/taler-wallet-core/node_modules - rm -rf packages/taler-wallet-core/lib - rm -rf packages/taler-wallet-core/dist - - mkdir -p $taler_wallet_core_dir - esbuild --platform=node --bundle packages/taler-wallet-core/src/index.node.ts > $taler_wallet_core_dir/index.js -} - -function build_wallet_embedded() { - taler_wallet_embedded_dir=build/@gnu-taler/taler-wallet-embedded - - mkdir -p $taler_wallet_embedded_dir - esbuild --platform=node --bundle packages/taler-wallet-embedded/src/index.ts > $taler_wallet_embedded_dir/taler-wallet-embedded.js -} - -function build_wallet_cli() { - taler_wallet_cli_dir=build/@gnu-taler/taler-wallet-cli - mkdir -p $taler_wallet_cli_dir - - rm -rf packages/taler-wallet-cli/node_modules - rm -rf packages/taler-wallet-cli/lib - rm -rf packages/taler-wallet-cli/dist - - esbuild --platform=node --bundle packages/taler-wallet-cli/src/index.ts > $taler_wallet_cli_dir/index.js - cp $taler_wallet_cli_dir/index.js $taler_wallet_cli_dir/taler-wallet-cli.js -} - - -build_idb -build_taler_util -build_fflate -build_wallet_core -build_wallet_embedded -build_ct -build_wallet_cli diff --git a/package.json b/package.json index 3d5f494c7..95ef6f5e1 100644 --- a/package.json +++ b/package.json @@ -6,5 +6,10 @@ "clean": "pnpm run --filter '{packages}' clean", "pretty": "pnpm run --filter '{packages}' pretty", "check": "pnpm run --filter '{packages}' --if-present test" + }, + "devDependencies": { + "@linaria/esbuild": "^3.0.0-beta.7", + "@linaria/shaker": "^3.0.0-beta.7", + "esbuild": "^0.12.21" } } diff --git a/packages/taler-wallet-webextension/.storybook/preview.js b/packages/taler-wallet-webextension/.storybook/preview.js index 1b6f62400..920e6b1ca 100644 --- a/packages/taler-wallet-webextension/.storybook/preview.js +++ b/packages/taler-wallet-webextension/.storybook/preview.js @@ -14,7 +14,7 @@ GNU Taler; see the file COPYING. If not, see */ -import { Fragment } from "preact" +import { h, Fragment } from "preact" import { NavBar } from '../src/NavigationBar' import { LogoHeader } from '../src/components/LogoHeader' import { TranslationProvider } from '../src/context/translation' @@ -123,8 +123,8 @@ export const decorators = [ font-family: Arial, Helvetica, sans-serif; }`} - - + + } @@ -158,8 +158,8 @@ export const decorators = [ - {/* - */} + + } diff --git a/packages/taler-wallet-webextension/clean_and_build_fast.sh b/packages/taler-wallet-webextension/clean_and_build_fast.sh new file mode 100755 index 000000000..707070437 --- /dev/null +++ b/packages/taler-wallet-webextension/clean_and_build_fast.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash +# This file is in the public domain. +rm -rf dist lib tsconfig.tsbuildinfo && (cd ../.. && rm -rf build/web && ./contrib/build-fast-web.sh) && rm -rf extension/ && ./pack.sh && (cd extension/ && unzip taler*.zip) + diff --git a/packages/taler-wallet-webextension/package.json b/packages/taler-wallet-webextension/package.json index e41c6cb86..74b57637f 100644 --- a/packages/taler-wallet-webextension/package.json +++ b/packages/taler-wallet-webextension/package.json @@ -19,6 +19,7 @@ "@gnu-taler/taler-util": "workspace:*", "@gnu-taler/taler-wallet-core": "workspace:*", "date-fns": "^2.22.1", + "history": "4.10.1", "preact": "^10.5.13", "preact-router": "^3.2.1", "tslib": "^2.1.0" @@ -27,15 +28,12 @@ "@babel/core": "^7.14.0", "@babel/plugin-transform-react-jsx-source": "^7.12.13", "@babel/preset-typescript": "^7.13.0", - "@linaria/babel-preset": "^3.0.0-beta.4", "@linaria/core": "^3.0.0-beta.4", "@linaria/react": "^3.0.0-beta.7", "@linaria/rollup": "^3.0.0-beta.7", - "@linaria/shaker": "^3.0.0-beta.7", "@linaria/webpack-loader": "^3.0.0-beta.7", "@rollup/plugin-alias": "^3.1.2", - "@rollup/plugin-commonjs": "^17.0.0", "@rollup/plugin-image": "^2.0.6", "@rollup/plugin-json": "^4.1.0", @@ -54,7 +52,6 @@ "babel-plugin-transform-react-jsx": "^6.24.1", "enzyme": "^3.11.0", "enzyme-adapter-preact-pure": "^3.1.0", - "history": "4.10.1", "jest": "^26.6.3", "jest-preset-preact": "^4.0.3", "preact-cli": "^3.0.5", diff --git a/packages/taler-wallet-webextension/rollup.config.js b/packages/taler-wallet-webextension/rollup.config.js index 5a3f0db5f..150db1fff 100644 --- a/packages/taler-wallet-webextension/rollup.config.js +++ b/packages/taler-wallet-webextension/rollup.config.js @@ -44,9 +44,6 @@ const makePlugins = () => [ linaria({ sourceMap: process.env.NODE_ENV !== 'production', }), - css({ - output: 'styles.css', - }), ]; @@ -59,7 +56,12 @@ const webExtensionWalletEntryPoint = { exports: "none", name: "webExtensionWalletEntry", }, - plugins: makePlugins(), + plugins: [ + ...makePlugins(), + css({ + output: 'walletEntryPoint.css', + }), + ], }; const webExtensionPopupEntryPoint = { @@ -70,7 +72,12 @@ const webExtensionPopupEntryPoint = { exports: "none", name: "webExtensionPopupEntry", }, - plugins: makePlugins(), + plugins: [ + ...makePlugins(), + css({ + output: 'popupEntryPoint.css', + }), + ], }; const webExtensionBackgroundPageScript = { diff --git a/packages/taler-wallet-webextension/src/NavigationBar.tsx b/packages/taler-wallet-webextension/src/NavigationBar.tsx index e07032d0a..9ddf610cd 100644 --- a/packages/taler-wallet-webextension/src/NavigationBar.tsx +++ b/packages/taler-wallet-webextension/src/NavigationBar.tsx @@ -25,7 +25,7 @@ * Imports. */ import { i18n } from "@gnu-taler/taler-util"; -import { ComponentChildren, JSX } from "preact"; +import { ComponentChildren, JSX, h } from "preact"; import Match from "preact-router/match"; import { useDevContext } from "./context/devContext"; import { PopupNavigation } from './components/styled' diff --git a/packages/taler-wallet-webextension/src/components/Checkbox.tsx b/packages/taler-wallet-webextension/src/components/Checkbox.tsx index 6b3dc024e..2d7b98087 100644 --- a/packages/taler-wallet-webextension/src/components/Checkbox.tsx +++ b/packages/taler-wallet-webextension/src/components/Checkbox.tsx @@ -15,6 +15,7 @@ */ import { JSX } from "preact/jsx-runtime"; +import { h } from "preact"; interface Props { enabled: boolean; diff --git a/packages/taler-wallet-webextension/src/components/DebugCheckbox.tsx b/packages/taler-wallet-webextension/src/components/DebugCheckbox.tsx index 7534629fb..f0c682ccb 100644 --- a/packages/taler-wallet-webextension/src/components/DebugCheckbox.tsx +++ b/packages/taler-wallet-webextension/src/components/DebugCheckbox.tsx @@ -14,7 +14,7 @@ TALER; see the file COPYING. If not, see */ - import { JSX } from "preact"; + import { JSX, h } from "preact"; export function DebugCheckbox({ enabled, onToggle }: { enabled: boolean; onToggle: () => void; }): JSX.Element { return ( diff --git a/packages/taler-wallet-webextension/src/components/Diagnostics.tsx b/packages/taler-wallet-webextension/src/components/Diagnostics.tsx index b36525dbf..c98710149 100644 --- a/packages/taler-wallet-webextension/src/components/Diagnostics.tsx +++ b/packages/taler-wallet-webextension/src/components/Diagnostics.tsx @@ -1,8 +1,7 @@ -import { useState, useEffect } from "preact/hooks"; -import { getDiagnostics } from "../wxApi"; -import { PageLink } from "../renderHtml"; import { WalletDiagnostics } from "@gnu-taler/taler-util"; +import { h } from "preact"; import { JSX } from "preact/jsx-runtime"; +import { PageLink } from "../renderHtml"; interface Props { timedOut: boolean; diff --git a/packages/taler-wallet-webextension/src/components/EditableText.tsx b/packages/taler-wallet-webextension/src/components/EditableText.tsx index 82983d13a..6f3388bf9 100644 --- a/packages/taler-wallet-webextension/src/components/EditableText.tsx +++ b/packages/taler-wallet-webextension/src/components/EditableText.tsx @@ -14,7 +14,7 @@ GNU Taler; see the file COPYING. If not, see */ -import { VNode } from "preact"; +import { h } from "preact"; import { useRef, useState } from "preact/hooks"; import { JSX } from "preact/jsx-runtime"; @@ -27,7 +27,7 @@ interface Props { } export function EditableText({ name, value, onChange, label, description }: Props): JSX.Element { const [editing, setEditing] = useState(false) - const ref = useRef() + const ref = useRef(null) let InputText; if (!editing) { InputText = () =>
@@ -42,7 +42,7 @@ export function EditableText({ name, value, onChange, label, description }: Prop type="text" id={`text-${name}`} /> - +
} return ( diff --git a/packages/taler-wallet-webextension/src/components/ErrorMessage.tsx b/packages/taler-wallet-webextension/src/components/ErrorMessage.tsx index 6bbdd26dc..4aef66d36 100644 --- a/packages/taler-wallet-webextension/src/components/ErrorMessage.tsx +++ b/packages/taler-wallet-webextension/src/components/ErrorMessage.tsx @@ -1,4 +1,4 @@ -import { VNode } from "preact"; +import { VNode, h } from "preact"; import { useState } from "preact/hooks"; import arrowDown from '../../static/img/chevron-down.svg'; import { ErrorBox } from "./styled"; diff --git a/packages/taler-wallet-webextension/src/components/LogoHeader.tsx b/packages/taler-wallet-webextension/src/components/LogoHeader.tsx index 0217289eb..b45dcb353 100644 --- a/packages/taler-wallet-webextension/src/components/LogoHeader.tsx +++ b/packages/taler-wallet-webextension/src/components/LogoHeader.tsx @@ -1,3 +1,5 @@ +import { h } from "preact"; + export function LogoHeader() { return
(Component: FunctionalComponent, props: Partial) { - const r = (args: any) => - r.args = props - return r -} - export const LotOfProviders = createExample(TestedComponent, { providers: [{ "active": true, diff --git a/packages/taler-wallet-webextension/src/popup/BackupPage.tsx b/packages/taler-wallet-webextension/src/popup/BackupPage.tsx index 72139e1f8..695f3abaa 100644 --- a/packages/taler-wallet-webextension/src/popup/BackupPage.tsx +++ b/packages/taler-wallet-webextension/src/popup/BackupPage.tsx @@ -18,7 +18,7 @@ import { i18n, Timestamp } from "@gnu-taler/taler-util"; import { ProviderInfo, ProviderPaymentStatus } from "@gnu-taler/taler-wallet-core"; import { differenceInMonths, formatDuration, intervalToDuration } from "date-fns"; -import { Fragment, JSX, VNode } from "preact"; +import { Fragment, JSX, VNode, h } from "preact"; import { BoldLight, ButtonPrimary, ButtonSuccess, Centered, CenteredText, CenteredTextBold, PopupBox, RowBorderGray, diff --git a/packages/taler-wallet-webextension/src/popup/Balance.stories.tsx b/packages/taler-wallet-webextension/src/popup/Balance.stories.tsx index a1b5e7c52..4a2e1045b 100644 --- a/packages/taler-wallet-webextension/src/popup/Balance.stories.tsx +++ b/packages/taler-wallet-webextension/src/popup/Balance.stories.tsx @@ -19,7 +19,7 @@ * @author Sebastian Javier Marchano (sebasjm) */ -import { ComponentChildren, FunctionalComponent, h } from 'preact'; +import { createExample, NullLink } from '../test-utils'; import { BalanceView as TestedComponent } from './BalancePage'; export default { @@ -30,16 +30,9 @@ export default { }; -function createExample(Component: FunctionalComponent, props: Partial) { - const r = (args: any) => - r.args = props - return r -} - export const NotYetLoaded = createExample(TestedComponent, { }); -const NullLink = ({ children }: { children?: ComponentChildren }) => h('a', { children, href: 'javascript:void(0);' }) export const GotError = createExample(TestedComponent, { balance: { error: true diff --git a/packages/taler-wallet-webextension/src/popup/BalancePage.tsx b/packages/taler-wallet-webextension/src/popup/BalancePage.tsx index 5a2b9f747..350d4b861 100644 --- a/packages/taler-wallet-webextension/src/popup/BalancePage.tsx +++ b/packages/taler-wallet-webextension/src/popup/BalancePage.tsx @@ -19,7 +19,7 @@ import { Balance, BalancesResponse, i18n } from "@gnu-taler/taler-util"; -import { JSX } from "preact"; +import { JSX, h } from "preact"; import { PopupBox, Centered } from "../components/styled/index"; import { BalancesHook, useBalances } from "../hooks/useBalances"; import { PageLink, renderAmount } from "../renderHtml"; diff --git a/packages/taler-wallet-webextension/src/popup/Debug.tsx b/packages/taler-wallet-webextension/src/popup/Debug.tsx index 33b82b05b..3968b0191 100644 --- a/packages/taler-wallet-webextension/src/popup/Debug.tsx +++ b/packages/taler-wallet-webextension/src/popup/Debug.tsx @@ -14,7 +14,7 @@ TALER; see the file COPYING. If not, see */ -import { JSX } from "preact"; +import { JSX, h } from "preact"; import { Diagnostics } from "../components/Diagnostics"; import { useDiagnostics } from "../hooks/useDiagnostics.js"; import * as wxApi from "../wxApi"; diff --git a/packages/taler-wallet-webextension/src/popup/History.stories.tsx b/packages/taler-wallet-webextension/src/popup/History.stories.tsx index 5337a6c1c..c92033d49 100644 --- a/packages/taler-wallet-webextension/src/popup/History.stories.tsx +++ b/packages/taler-wallet-webextension/src/popup/History.stories.tsx @@ -26,7 +26,7 @@ import { TransactionWithdrawal, WithdrawalType } from '@gnu-taler/taler-util'; -import { FunctionalComponent } from 'preact'; +import { createExample } from '../test-utils'; import { HistoryView as TestedComponent } from './History'; export default { @@ -105,12 +105,6 @@ const exampleData = { } as TransactionRefund, } -function createExample(Component: FunctionalComponent, props: Partial) { - const r = (args: any) => - r.args = props - return r -} - export const Empty = createExample(TestedComponent, { list: [], balances: [{ diff --git a/packages/taler-wallet-webextension/src/popup/History.tsx b/packages/taler-wallet-webextension/src/popup/History.tsx index 7c9eae54b..fd97d975f 100644 --- a/packages/taler-wallet-webextension/src/popup/History.tsx +++ b/packages/taler-wallet-webextension/src/popup/History.tsx @@ -16,7 +16,7 @@ import { AmountString, Balance, Timestamp, Transaction, TransactionsResponse, TransactionType } from "@gnu-taler/taler-util"; import { formatDistance } from "date-fns"; -import { JSX } from "preact"; +import { JSX, h } from "preact"; import { useEffect, useState } from "preact/hooks"; import imageBank from '../../static/img/ri-bank-line.svg'; import imageHandHeart from '../../static/img/ri-hand-heart-line.svg'; diff --git a/packages/taler-wallet-webextension/src/popup/Popup.stories.tsx b/packages/taler-wallet-webextension/src/popup/Popup.stories.tsx index ce5b11c32..cd443e9d4 100644 --- a/packages/taler-wallet-webextension/src/popup/Popup.stories.tsx +++ b/packages/taler-wallet-webextension/src/popup/Popup.stories.tsx @@ -19,7 +19,7 @@ * @author Sebastian Javier Marchano (sebasjm) */ -import { Fragment, FunctionalComponent } from 'preact'; +import { createExample } from '../test-utils'; import { NavBar as TestedComponent } from '../NavigationBar'; export default { @@ -33,12 +33,6 @@ export default { }; -function createExample(Component: FunctionalComponent, props: Partial) { - const r = (args: any) => - r.args = props - return r -} - export const OnBalance = createExample(TestedComponent, { devMode:false, path:'/balance' diff --git a/packages/taler-wallet-webextension/src/popup/ProviderAddConfirmProvider.stories.tsx b/packages/taler-wallet-webextension/src/popup/ProviderAddConfirmProvider.stories.tsx index f286870c1..de1f67b96 100644 --- a/packages/taler-wallet-webextension/src/popup/ProviderAddConfirmProvider.stories.tsx +++ b/packages/taler-wallet-webextension/src/popup/ProviderAddConfirmProvider.stories.tsx @@ -19,7 +19,7 @@ * @author Sebastian Javier Marchano (sebasjm) */ -import { FunctionalComponent } from 'preact'; +import { createExample } from '../test-utils'; import { ConfirmProviderView as TestedComponent } from './ProviderAddPage'; export default { @@ -33,12 +33,6 @@ export default { }; -function createExample(Component: FunctionalComponent, props: Partial) { - const r = (args: any) => - r.args = props - return r -} - export const DemoService = createExample(TestedComponent, { url: 'https://sync.demo.taler.net/', provider: { diff --git a/packages/taler-wallet-webextension/src/popup/ProviderAddPage.tsx b/packages/taler-wallet-webextension/src/popup/ProviderAddPage.tsx index 2680345f7..050614978 100644 --- a/packages/taler-wallet-webextension/src/popup/ProviderAddPage.tsx +++ b/packages/taler-wallet-webextension/src/popup/ProviderAddPage.tsx @@ -1,6 +1,6 @@ import { Amounts, BackupBackupProviderTerms, canonicalizeBaseUrl, i18n } from "@gnu-taler/taler-util"; import { verify } from "@gnu-taler/taler-wallet-core/src/crypto/primitives/nacl-fast"; -import { VNode } from "preact"; +import { VNode, h } from "preact"; import { useEffect, useState } from "preact/hooks"; import { Checkbox } from "../components/Checkbox"; import { ErrorMessage } from "../components/ErrorMessage"; diff --git a/packages/taler-wallet-webextension/src/popup/ProviderAddSetUrl.stories.tsx b/packages/taler-wallet-webextension/src/popup/ProviderAddSetUrl.stories.tsx index dfee115bb..2daf49e0c 100644 --- a/packages/taler-wallet-webextension/src/popup/ProviderAddSetUrl.stories.tsx +++ b/packages/taler-wallet-webextension/src/popup/ProviderAddSetUrl.stories.tsx @@ -19,7 +19,7 @@ * @author Sebastian Javier Marchano (sebasjm) */ -import { FunctionalComponent } from 'preact'; +import { createExample } from '../test-utils'; import { SetUrlView as TestedComponent } from './ProviderAddPage'; export default { @@ -33,12 +33,6 @@ export default { }; -function createExample(Component: FunctionalComponent, props: Partial) { - const r = (args: any) => - r.args = props - return r -} - export const Initial = createExample(TestedComponent, { }); diff --git a/packages/taler-wallet-webextension/src/popup/ProviderDetail.stories.tsx b/packages/taler-wallet-webextension/src/popup/ProviderDetail.stories.tsx index d82e8f588..4416608f8 100644 --- a/packages/taler-wallet-webextension/src/popup/ProviderDetail.stories.tsx +++ b/packages/taler-wallet-webextension/src/popup/ProviderDetail.stories.tsx @@ -20,7 +20,7 @@ */ import { ProviderPaymentType } from '@gnu-taler/taler-wallet-core'; -import { FunctionalComponent } from 'preact'; +import { createExample } from '../test-utils'; import { ProviderView as TestedComponent } from './ProviderDetailPage'; export default { @@ -34,12 +34,6 @@ export default { }; -function createExample(Component: FunctionalComponent, props: Partial) { - const r = (args: any) => - r.args = props - return r -} - export const Active = createExample(TestedComponent, { info: { "active": true, diff --git a/packages/taler-wallet-webextension/src/popup/ProviderDetailPage.tsx b/packages/taler-wallet-webextension/src/popup/ProviderDetailPage.tsx index 707e6c33a..bfc32a8f3 100644 --- a/packages/taler-wallet-webextension/src/popup/ProviderDetailPage.tsx +++ b/packages/taler-wallet-webextension/src/popup/ProviderDetailPage.tsx @@ -18,7 +18,7 @@ import { i18n, Timestamp } from "@gnu-taler/taler-util"; import { ProviderInfo, ProviderPaymentStatus, ProviderPaymentType } from "@gnu-taler/taler-wallet-core"; import { format, formatDuration, intervalToDuration } from "date-fns"; -import { Fragment, VNode } from "preact"; +import { Fragment, VNode, h } from "preact"; import { ErrorMessage } from "../components/ErrorMessage"; import { Button, ButtonDestructive, ButtonPrimary, PaymentStatus, PopupBox, SmallTextLight } from "../components/styled"; import { useProviderStatus } from "../hooks/useProviderStatus"; diff --git a/packages/taler-wallet-webextension/src/popup/Settings.stories.tsx b/packages/taler-wallet-webextension/src/popup/Settings.stories.tsx index 07e1538b7..06e33c9d3 100644 --- a/packages/taler-wallet-webextension/src/popup/Settings.stories.tsx +++ b/packages/taler-wallet-webextension/src/popup/Settings.stories.tsx @@ -19,7 +19,7 @@ * @author Sebastian Javier Marchano (sebasjm) */ -import { FunctionalComponent } from 'preact'; +import { createExample } from '../test-utils'; import { SettingsView as TestedComponent } from './Settings'; export default { @@ -30,13 +30,6 @@ export default { } }; - -function createExample(Component: FunctionalComponent, props: Partial) { - const r = (args: any) => - r.args = props - return r -} - export const AllOff = createExample(TestedComponent, { deviceName: 'this-is-the-device-name', setDeviceName: () => Promise.resolve(), diff --git a/packages/taler-wallet-webextension/src/popup/Settings.tsx b/packages/taler-wallet-webextension/src/popup/Settings.tsx index 40ab51561..52e72ee2f 100644 --- a/packages/taler-wallet-webextension/src/popup/Settings.tsx +++ b/packages/taler-wallet-webextension/src/popup/Settings.tsx @@ -16,7 +16,7 @@ import { i18n } from "@gnu-taler/taler-util"; -import { VNode } from "preact"; +import { VNode, h } from "preact"; import { Checkbox } from "../components/Checkbox"; import { EditableText } from "../components/EditableText"; import { SelectList } from "../components/SelectList"; diff --git a/packages/taler-wallet-webextension/src/popup/Transaction.stories.tsx b/packages/taler-wallet-webextension/src/popup/Transaction.stories.tsx index 4e63b9242..65302babb 100644 --- a/packages/taler-wallet-webextension/src/popup/Transaction.stories.tsx +++ b/packages/taler-wallet-webextension/src/popup/Transaction.stories.tsx @@ -26,7 +26,7 @@ import { TransactionWithdrawal, WithdrawalType } from '@gnu-taler/taler-util'; -import { FunctionalComponent } from 'preact'; +import { createExample } from '../test-utils'; import { TransactionView as TestedComponent } from './Transaction'; export default { @@ -117,12 +117,6 @@ const transactionError = { message: 'message' } -function createExample(Component: FunctionalComponent, props: Partial) { - const r = (args: any) => - r.args = props - return r -} - export const Withdraw = createExample(TestedComponent, { transaction: exampleData.withdraw }); diff --git a/packages/taler-wallet-webextension/src/popup/Transaction.tsx b/packages/taler-wallet-webextension/src/popup/Transaction.tsx index 8177b74ad..117a098bc 100644 --- a/packages/taler-wallet-webextension/src/popup/Transaction.tsx +++ b/packages/taler-wallet-webextension/src/popup/Transaction.tsx @@ -16,7 +16,7 @@ import { AmountJson, Amounts, i18n, Transaction, TransactionType } from "@gnu-taler/taler-util"; import { format } from "date-fns"; -import { Fragment, JSX, VNode } from "preact"; +import { Fragment, JSX, VNode, h } from "preact"; import { route } from 'preact-router'; import { useEffect, useState } from "preact/hooks"; import * as wxApi from "../wxApi"; diff --git a/packages/taler-wallet-webextension/src/popupEntryPoint.tsx b/packages/taler-wallet-webextension/src/popupEntryPoint.tsx index 4a9fe9abc..77c19c150 100644 --- a/packages/taler-wallet-webextension/src/popupEntryPoint.tsx +++ b/packages/taler-wallet-webextension/src/popupEntryPoint.tsx @@ -22,9 +22,9 @@ import { setupI18n } from "@gnu-taler/taler-util"; import { createHashHistory } from "history"; -import { render } from "preact"; +import { render, h } from "preact"; import Router, { route, Route } from "preact-router"; -import { useEffect } from "preact/hooks"; +import { useEffect, useState } from "preact/hooks"; import { DevContextProvider } from "./context/devContext"; import { useTalerActionURL } from "./hooks/useTalerActionURL"; import { strings } from "./i18n/strings"; diff --git a/packages/taler-wallet-webextension/src/renderHtml.tsx b/packages/taler-wallet-webextension/src/renderHtml.tsx index 1101b80d6..bbe8e465c 100644 --- a/packages/taler-wallet-webextension/src/renderHtml.tsx +++ b/packages/taler-wallet-webextension/src/renderHtml.tsx @@ -28,8 +28,7 @@ import { Amounts, amountFractionalBase, } from "@gnu-taler/taler-util"; -import { Component, ComponentChildren, JSX } from "preact"; -import { JSXInternal } from "preact/src/jsx"; +import { Component, ComponentChildren, JSX, h } from "preact"; /** * Render amount as HTML, which non-breaking space between diff --git a/packages/taler-wallet-webextension/src/test-utils.ts b/packages/taler-wallet-webextension/src/test-utils.ts index 16262b3c2..7ef47b314 100644 --- a/packages/taler-wallet-webextension/src/test-utils.ts +++ b/packages/taler-wallet-webextension/src/test-utils.ts @@ -1,4 +1,4 @@ -import { FunctionalComponent, h as render } from 'preact'; +import { ComponentChildren, FunctionalComponent, h as render } from 'preact'; export function createExample(Component: FunctionalComponent, props: Partial) { const r = (args: any) => render(Component, args) @@ -6,3 +6,7 @@ export function createExample(Component: FunctionalComponent, prop return r } + +export function NullLink({ children }: { children?: ComponentChildren }) { + return render('a', { children, href: 'javascript:void(0);' }) +} diff --git a/packages/taler-wallet-webextension/src/wallet/History.stories.tsx b/packages/taler-wallet-webextension/src/wallet/History.stories.tsx index f50fd3b68..7db13fef5 100644 --- a/packages/taler-wallet-webextension/src/wallet/History.stories.tsx +++ b/packages/taler-wallet-webextension/src/wallet/History.stories.tsx @@ -26,8 +26,9 @@ import { TransactionWithdrawal, WithdrawalType } from '@gnu-taler/taler-util'; -import { FunctionalComponent } from 'preact'; import { HistoryView as TestedComponent } from './History'; +import { createExample } from '../test-utils'; + export default { title: 'wallet/history/list', @@ -106,12 +107,6 @@ const exampleData = { } as TransactionRefund, } -function createExample(Component: FunctionalComponent, props: Partial) { - const r = (args: any) => - r.args = props - return r -} - export const Empty = createExample(TestedComponent, { list: [], balances: [{ diff --git a/packages/taler-wallet-webextension/src/wallet/History.tsx b/packages/taler-wallet-webextension/src/wallet/History.tsx index 6ef5047ae..7f9a9b1a8 100644 --- a/packages/taler-wallet-webextension/src/wallet/History.tsx +++ b/packages/taler-wallet-webextension/src/wallet/History.tsx @@ -16,7 +16,7 @@ import { AmountString, Balance, Timestamp, Transaction, TransactionsResponse, TransactionType } from "@gnu-taler/taler-util"; import { format } from "date-fns"; -import { Fragment, JSX } from "preact"; +import { Fragment, JSX, h } from "preact"; import { useEffect, useState } from "preact/hooks"; import imageBank from '../../static/img/ri-bank-line.svg'; import imageHandHeart from '../../static/img/ri-hand-heart-line.svg'; diff --git a/packages/taler-wallet-webextension/src/wallet/Welcome.tsx b/packages/taler-wallet-webextension/src/wallet/Welcome.tsx index 0738e14b6..d11070d9a 100644 --- a/packages/taler-wallet-webextension/src/wallet/Welcome.tsx +++ b/packages/taler-wallet-webextension/src/wallet/Welcome.tsx @@ -27,6 +27,7 @@ import { Diagnostics } from "../components/Diagnostics"; import { WalletBox } from "../components/styled"; import { useDiagnostics } from "../hooks/useDiagnostics"; import { WalletDiagnostics } from "@gnu-taler/taler-util"; +import { h } from 'preact'; export function WelcomePage() { const [permissionsEnabled, togglePermissions] = useExtendedPermissions() diff --git a/packages/taler-wallet-webextension/src/walletEntryPoint.tsx b/packages/taler-wallet-webextension/src/walletEntryPoint.tsx index f8191a0fb..61df45e7e 100644 --- a/packages/taler-wallet-webextension/src/walletEntryPoint.tsx +++ b/packages/taler-wallet-webextension/src/walletEntryPoint.tsx @@ -20,7 +20,7 @@ * @author Florian Dold */ -import { Fragment, render } from "preact"; +import { Fragment, render, h } from "preact"; import { setupI18n } from "@gnu-taler/taler-util"; import { strings } from "./i18n/strings"; import { createHashHistory } from 'history'; diff --git a/packages/taler-wallet-webextension/static/popup.html b/packages/taler-wallet-webextension/static/popup.html index 06e447924..9c1246456 100644 --- a/packages/taler-wallet-webextension/static/popup.html +++ b/packages/taler-wallet-webextension/static/popup.html @@ -4,7 +4,7 @@ - + diff --git a/packages/taler-wallet-webextension/static/wallet.html b/packages/taler-wallet-webextension/static/wallet.html index 817e8bfb8..a1c069d74 100644 --- a/packages/taler-wallet-webextension/static/wallet.html +++ b/packages/taler-wallet-webextension/static/wallet.html @@ -4,7 +4,7 @@ - + diff --git a/packages/taler-wallet-webextension/tsconfig.json b/packages/taler-wallet-webextension/tsconfig.json index cff3d8857..75e2ce016 100644 --- a/packages/taler-wallet-webextension/tsconfig.json +++ b/packages/taler-wallet-webextension/tsconfig.json @@ -2,8 +2,9 @@ "compilerOptions": { "composite": true, "lib": ["es6", "DOM"], - "jsx": "react-jsx", - "jsxImportSource": "preact", + "jsx": "react", + "jsxFactory": "h", + "jsxFragmentFactory": "Fragment", "moduleResolution": "Node", "module": "ESNext", "target": "ES6", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a5338b7e7..9f0d575bf 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3,7 +3,14 @@ lockfileVersion: 5.3 importers: .: - specifiers: {} + specifiers: + '@linaria/esbuild': ^3.0.0-beta.7 + '@linaria/shaker': ^3.0.0-beta.7 + esbuild: ^0.12.21 + devDependencies: + '@linaria/esbuild': 3.0.0-beta.7 + '@linaria/shaker': 3.0.0-beta.7 + esbuild: 0.12.21 packages/idb-bridge: specifiers: @@ -212,7 +219,6 @@ importers: '@linaria/core': ^3.0.0-beta.4 '@linaria/react': ^3.0.0-beta.7 '@linaria/rollup': ^3.0.0-beta.7 - '@linaria/shaker': ^3.0.0-beta.7 '@linaria/webpack-loader': ^3.0.0-beta.7 '@rollup/plugin-alias': ^3.1.2 '@rollup/plugin-commonjs': ^17.0.0 @@ -253,55 +259,66 @@ importers: dependencies: '@gnu-taler/taler-util': link:../taler-util '@gnu-taler/taler-wallet-core': link:../taler-wallet-core - date-fns: 2.22.1 - preact: 10.5.13 - preact-router: 3.2.1_preact@10.5.13 - tslib: 2.1.0 + date-fns: 2.23.0 + history: 4.10.1 + preact: 10.5.14 + preact-router: 3.2.1_preact@10.5.14 + tslib: 2.3.1 devDependencies: - '@babel/core': 7.14.0 - '@babel/plugin-transform-react-jsx-source': 7.12.13_@babel+core@7.14.0 - '@babel/preset-typescript': 7.13.0_@babel+core@7.14.0 - '@linaria/babel-preset': 3.0.0-beta.4_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@babel/plugin-transform-react-jsx-source': 7.14.5_@babel+core@7.15.0 + '@babel/preset-typescript': 7.15.0_@babel+core@7.15.0 + '@linaria/babel-preset': 3.0.0-beta.4_@babel+core@7.15.0 '@linaria/core': 3.0.0-beta.4 '@linaria/react': 3.0.0-beta.7 - '@linaria/rollup': 3.0.0-beta.7_@babel+core@7.14.0+rollup@2.37.1 - '@linaria/shaker': 3.0.0-beta.7_@babel+core@7.14.0 - '@linaria/webpack-loader': 3.0.0-beta.7_@babel+core@7.14.0 - '@rollup/plugin-alias': 3.1.2_rollup@2.37.1 - '@rollup/plugin-commonjs': 17.0.0_rollup@2.37.1 - '@rollup/plugin-image': 2.0.6_rollup@2.37.1 - '@rollup/plugin-json': 4.1.0_rollup@2.37.1 - '@rollup/plugin-node-resolve': 11.1.0_rollup@2.37.1 - '@rollup/plugin-replace': 2.3.4_rollup@2.37.1 - '@storybook/addon-a11y': 6.2.9 - '@storybook/addon-essentials': 6.2.9_73bef2aa0eff460ee552903a16f56020 - '@storybook/preact': 6.2.9_692c377c5519f2a2696800bf2192657e - '@testing-library/preact': 2.0.1_preact@10.5.13 + '@linaria/rollup': 3.0.0-beta.7_@babel+core@7.15.0 + '@linaria/webpack-loader': 3.0.0-beta.7_@babel+core@7.15.0 + '@rollup/plugin-alias': 3.1.5_rollup@2.56.2 + '@rollup/plugin-commonjs': 17.1.0_rollup@2.56.2 + '@rollup/plugin-image': 2.1.0_rollup@2.56.2 + '@rollup/plugin-json': 4.1.0_rollup@2.56.2 + '@rollup/plugin-node-resolve': 11.2.1_rollup@2.56.2 + '@rollup/plugin-replace': 2.4.2_rollup@2.56.2 + '@storybook/addon-a11y': 6.3.7 + '@storybook/addon-essentials': 6.3.7_193cc68279dba09bf08a9695eff9545a + '@storybook/preact': 6.3.7_a13982c5b38b6f6bf56b24269c60ed34 + '@testing-library/preact': 2.0.1_preact@10.5.14 '@types/chrome': 0.0.128 - '@types/history': 4.7.8 - '@types/jest': 26.0.23 - '@types/node': 14.14.22 + '@types/history': 4.7.9 + '@types/jest': 26.0.24 + '@types/node': 14.17.10 ava: 3.15.0 - babel-loader: 8.2.2_@babel+core@7.14.0 + babel-loader: 8.2.2_@babel+core@7.15.0 babel-plugin-transform-react-jsx: 6.24.1 enzyme: 3.11.0 - enzyme-adapter-preact-pure: 3.1.0_enzyme@3.11.0+preact@10.5.13 - history: 4.10.1 + enzyme-adapter-preact-pure: 3.1.0_enzyme@3.11.0+preact@10.5.14 jest: 26.6.3 - jest-preset-preact: 4.0.3_669f037bdb6c36f0a67e918c516dafdd - preact-cli: 3.0.5_c069246dc1d99535ac277c76f8ef56e0 - preact-render-to-string: 5.1.19_preact@10.5.13 + jest-preset-preact: 4.0.5_9b3f24ae35a87c3c82fffbe3fdf70e1e + preact-cli: 3.2.2_517d24bd855b57d7e424aceed04e063b + preact-render-to-string: 5.1.19_preact@10.5.14 rimraf: 3.0.2 - rollup: 2.37.1 - rollup-plugin-css-only: 3.1.0_rollup@2.37.1 + rollup: 2.56.2 + rollup-plugin-css-only: 3.1.0_rollup@2.56.2 rollup-plugin-ignore: 1.0.9 - rollup-plugin-sourcemaps: 0.6.3_38ff52cc32daa1ae80c428f8a47a4e22 - rollup-plugin-terser: 7.0.2_rollup@2.37.1 + rollup-plugin-sourcemaps: 0.6.3_87d168520bd21f84b7cb8eb331bc7479 + rollup-plugin-terser: 7.0.2_rollup@2.56.2 storybook-dark-mode: 1.0.8 - typescript: 4.1.3 + typescript: 4.3.5 packages: + /@apideck/better-ajv-errors/0.2.5_ajv@8.6.2: + resolution: {integrity: sha512-Pm1fAqCT8OEfBVLddU3fWZ/URWpGGhkvlsBIgn9Y2jJlcNumo0gNzPsQswDJTiA8HcKpCjOhWQOgkA9kXR4Ghg==} + engines: {node: '>=10'} + peerDependencies: + ajv: '>=8' + dependencies: + ajv: 8.6.2 + json-schema: 0.3.0 + jsonpointer: 4.1.0 + leven: 3.1.0 + dev: true + /@ava/typescript/1.1.1: resolution: {integrity: sha512-KbLUAe2cWXK63WLK6LnOJonjwEDU/8MNXCOA1ooX/YFZgKRmeAD1kZu+2K0ks5fnOCEcckNQAooyBNGdZUmMQA==} engines: {node: '>=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0'} @@ -312,7 +329,7 @@ packages: /@babel/code-frame/7.10.4: resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==} dependencies: - '@babel/highlight': 7.10.4 + '@babel/highlight': 7.14.5 dev: true /@babel/code-frame/7.12.11: @@ -334,12 +351,8 @@ packages: '@babel/highlight': 7.14.5 dev: true - /@babel/compat-data/7.14.0: - resolution: {integrity: sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q==} - dev: true - - /@babel/compat-data/7.14.7: - resolution: {integrity: sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw==} + /@babel/compat-data/7.15.0: + resolution: {integrity: sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==} engines: {node: '>=6.9.0'} dev: true @@ -347,16 +360,16 @@ packages: resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.12.13 - '@babel/generator': 7.14.3 - '@babel/helper-module-transforms': 7.14.2 - '@babel/helpers': 7.14.0 - '@babel/parser': 7.14.3 - '@babel/template': 7.12.13 - '@babel/traverse': 7.14.2 - '@babel/types': 7.14.2 - convert-source-map: 1.7.0 - debug: 4.3.1 + '@babel/code-frame': 7.14.5 + '@babel/generator': 7.15.0 + '@babel/helper-module-transforms': 7.15.0 + '@babel/helpers': 7.15.3 + '@babel/parser': 7.15.3 + '@babel/template': 7.14.5 + '@babel/traverse': 7.15.0 + '@babel/types': 7.15.0 + convert-source-map: 1.8.0 + debug: 4.3.2 gensync: 1.0.0-beta.2 json5: 2.2.0 lodash: 4.17.21 @@ -367,44 +380,21 @@ packages: - supports-color dev: true - /@babel/core/7.14.0: - resolution: {integrity: sha512-8YqpRig5NmIHlMLw09zMlPTvUVMILjqCOtVgu+TVNWEBvy9b5I3RRyhqnrV4hjgEK7n8P9OqvkWJAFmEL6Wwfw==} + /@babel/core/7.15.0: + resolution: {integrity: sha512-tXtmTminrze5HEUPn/a0JtOzzfp0nk+UEXQ/tqIJo3WDGypl/2OFQEMll/zSFU8f/lfmfLXvTaORHF3cfXIQMw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.12.13 - '@babel/generator': 7.14.1 - '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.0 - '@babel/helper-module-transforms': 7.14.0 - '@babel/helpers': 7.14.0 - '@babel/parser': 7.14.1 - '@babel/template': 7.12.13 - '@babel/traverse': 7.14.0 - '@babel/types': 7.14.1 - convert-source-map: 1.7.0 - debug: 4.3.1 - gensync: 1.0.0-beta.2 - json5: 2.2.0 - semver: 6.3.0 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/core/7.14.3: - resolution: {integrity: sha512-jB5AmTKOCSJIZ72sd78ECEhuPiDMKlQdDI/4QRI6lzYATx5SSogS1oQA2AoPecRCknm30gHi2l+QVvNUu3wZAg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.12.13 - '@babel/generator': 7.14.3 - '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.3 - '@babel/helper-module-transforms': 7.14.2 - '@babel/helpers': 7.14.0 - '@babel/parser': 7.14.3 - '@babel/template': 7.12.13 - '@babel/traverse': 7.14.2 - '@babel/types': 7.14.2 - convert-source-map: 1.7.0 - debug: 4.3.1 + '@babel/code-frame': 7.14.5 + '@babel/generator': 7.15.0 + '@babel/helper-compilation-targets': 7.15.0_@babel+core@7.15.0 + '@babel/helper-module-transforms': 7.15.0 + '@babel/helpers': 7.15.3 + '@babel/parser': 7.15.3 + '@babel/template': 7.14.5 + '@babel/traverse': 7.15.0 + '@babel/types': 7.15.0 + convert-source-map: 1.8.0 + debug: 4.3.2 gensync: 1.0.0-beta.2 json5: 2.2.0 semver: 6.3.0 @@ -413,49 +403,20 @@ packages: - supports-color dev: true - /@babel/generator/7.14.1: - resolution: {integrity: sha512-TMGhsXMXCP/O1WtQmZjpEYDhCYC9vFhayWZPJSZCGkPJgUqX0rF0wwtrYvnzVxIjcF80tkUertXVk5cwqi5cAQ==} - dependencies: - '@babel/types': 7.14.1 - jsesc: 2.5.2 - source-map: 0.5.7 - dev: true - - /@babel/generator/7.14.3: - resolution: {integrity: sha512-bn0S6flG/j0xtQdz3hsjJ624h3W0r3llttBMfyHX3YrZ/KtLYr15bjA0FXkgW7FpvrDuTuElXeVjiKlYRpnOFA==} - dependencies: - '@babel/types': 7.14.2 - jsesc: 2.5.2 - source-map: 0.5.7 - dev: true - - /@babel/generator/7.14.5: - resolution: {integrity: sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA==} + /@babel/generator/7.15.0: + resolution: {integrity: sha512-eKl4XdMrbpYvuB505KTta4AV9g+wWzmVBW69tX0H2NwKVKd2YJbKgyK6M8j/rgLbmHOYJn6rUklV677nOyJrEQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.5 + '@babel/types': 7.15.0 jsesc: 2.5.2 source-map: 0.5.7 dev: true - /@babel/helper-annotate-as-pure/7.12.13: - resolution: {integrity: sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==} - dependencies: - '@babel/types': 7.14.2 - dev: true - /@babel/helper-annotate-as-pure/7.14.5: resolution: {integrity: sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.5 - dev: true - - /@babel/helper-builder-binary-assignment-operator-visitor/7.12.13: - resolution: {integrity: sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==} - dependencies: - '@babel/helper-explode-assignable-expression': 7.13.0 - '@babel/types': 7.14.1 + '@babel/types': 7.15.0 dev: true /@babel/helper-builder-binary-assignment-operator-visitor/7.14.5: @@ -463,187 +424,99 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.14.5 - '@babel/types': 7.14.5 - dev: true - - /@babel/helper-compilation-targets/7.13.16_@babel+core@7.14.0: - resolution: {integrity: sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.14.0 - '@babel/core': 7.14.0 - '@babel/helper-validator-option': 7.12.17 - browserslist: 4.16.6 - semver: 6.3.0 + '@babel/types': 7.15.0 dev: true - /@babel/helper-compilation-targets/7.13.16_@babel+core@7.14.3: - resolution: {integrity: sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==} + /@babel/helper-compilation-targets/7.15.0: + resolution: {integrity: sha512-h+/9t0ncd4jfZ8wsdAsoIxSa61qhBYlycXiHWqJaQBCXAhDCMbPRSMTGnZIkkmt1u4ag+UQmuqcILwqKzZ4N2A==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.14.0 - '@babel/core': 7.14.3 - '@babel/helper-validator-option': 7.12.17 - browserslist: 4.16.6 + '@babel/compat-data': 7.15.0 + '@babel/helper-validator-option': 7.14.5 + browserslist: 4.16.8 semver: 6.3.0 dev: true - /@babel/helper-compilation-targets/7.14.5_@babel+core@7.14.0: - resolution: {integrity: sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw==} + /@babel/helper-compilation-targets/7.15.0_@babel+core@7.15.0: + resolution: {integrity: sha512-h+/9t0ncd4jfZ8wsdAsoIxSa61qhBYlycXiHWqJaQBCXAhDCMbPRSMTGnZIkkmt1u4ag+UQmuqcILwqKzZ4N2A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.14.7 - '@babel/core': 7.14.0 + '@babel/compat-data': 7.15.0 + '@babel/core': 7.15.0 '@babel/helper-validator-option': 7.14.5 - browserslist: 4.16.6 + browserslist: 4.16.8 semver: 6.3.0 dev: true - /@babel/helper-create-class-features-plugin/7.14.1_@babel+core@7.14.0: - resolution: {integrity: sha512-r8rsUahG4ywm0QpGcCrLaUSOuNAISR3IZCg4Fx05Ozq31aCUrQsTLH6KPxy0N5ULoQ4Sn9qjNdGNtbPWAC6hYg==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-function-name': 7.12.13 - '@babel/helper-member-expression-to-functions': 7.13.12 - '@babel/helper-optimise-call-expression': 7.12.13 - '@babel/helper-replace-supers': 7.13.12 - '@babel/helper-split-export-declaration': 7.12.13 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-create-class-features-plugin/7.14.1_@babel+core@7.14.3: - resolution: {integrity: sha512-r8rsUahG4ywm0QpGcCrLaUSOuNAISR3IZCg4Fx05Ozq31aCUrQsTLH6KPxy0N5ULoQ4Sn9qjNdGNtbPWAC6hYg==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-function-name': 7.12.13 - '@babel/helper-member-expression-to-functions': 7.13.12 - '@babel/helper-optimise-call-expression': 7.12.13 - '@babel/helper-replace-supers': 7.13.12 - '@babel/helper-split-export-declaration': 7.12.13 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-create-class-features-plugin/7.14.3_@babel+core@7.14.0: - resolution: {integrity: sha512-BnEfi5+6J2Lte9LeiL6TxLWdIlEv9Woacc1qXzXBgbikcOzMRM2Oya5XGg/f/ngotv1ej2A/b+3iJH8wbS1+lQ==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-function-name': 7.14.2 - '@babel/helper-member-expression-to-functions': 7.13.12 - '@babel/helper-optimise-call-expression': 7.12.13 - '@babel/helper-replace-supers': 7.14.3 - '@babel/helper-split-export-declaration': 7.12.13 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-create-class-features-plugin/7.14.3_@babel+core@7.14.3: - resolution: {integrity: sha512-BnEfi5+6J2Lte9LeiL6TxLWdIlEv9Woacc1qXzXBgbikcOzMRM2Oya5XGg/f/ngotv1ej2A/b+3iJH8wbS1+lQ==} + /@babel/helper-create-class-features-plugin/7.15.0: + resolution: {integrity: sha512-MdmDXgvTIi4heDVX/e9EFfeGpugqm9fobBVg/iioE8kueXrOHdRDe36FAY7SnE9xXLVeYCoJR/gdrBEIHRC83Q==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-function-name': 7.14.2 - '@babel/helper-member-expression-to-functions': 7.13.12 - '@babel/helper-optimise-call-expression': 7.12.13 - '@babel/helper-replace-supers': 7.14.3 - '@babel/helper-split-export-declaration': 7.12.13 + '@babel/helper-annotate-as-pure': 7.14.5 + '@babel/helper-function-name': 7.14.5 + '@babel/helper-member-expression-to-functions': 7.15.0 + '@babel/helper-optimise-call-expression': 7.14.5 + '@babel/helper-replace-supers': 7.15.0 + '@babel/helper-split-export-declaration': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-create-class-features-plugin/7.14.6_@babel+core@7.14.0: - resolution: {integrity: sha512-Z6gsfGofTxH/+LQXqYEK45kxmcensbzmk/oi8DmaQytlQCgqNZt9XQF8iqlI/SeXWVjaMNxvYvzaYw+kh42mDg==} + /@babel/helper-create-class-features-plugin/7.15.0_@babel+core@7.15.0: + resolution: {integrity: sha512-MdmDXgvTIi4heDVX/e9EFfeGpugqm9fobBVg/iioE8kueXrOHdRDe36FAY7SnE9xXLVeYCoJR/gdrBEIHRC83Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 '@babel/helper-annotate-as-pure': 7.14.5 '@babel/helper-function-name': 7.14.5 - '@babel/helper-member-expression-to-functions': 7.14.7 + '@babel/helper-member-expression-to-functions': 7.15.0 '@babel/helper-optimise-call-expression': 7.14.5 - '@babel/helper-replace-supers': 7.14.5 + '@babel/helper-replace-supers': 7.15.0 '@babel/helper-split-export-declaration': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin/7.12.17_@babel+core@7.14.0: - resolution: {integrity: sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-annotate-as-pure': 7.12.13 - regexpu-core: 4.7.1 - dev: true - - /@babel/helper-create-regexp-features-plugin/7.12.17_@babel+core@7.14.3: - resolution: {integrity: sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==} + /@babel/helper-create-regexp-features-plugin/7.14.5: + resolution: {integrity: sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-annotate-as-pure': 7.12.13 + '@babel/helper-annotate-as-pure': 7.14.5 regexpu-core: 4.7.1 dev: true - /@babel/helper-create-regexp-features-plugin/7.14.5_@babel+core@7.14.0: + /@babel/helper-create-regexp-features-plugin/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 '@babel/helper-annotate-as-pure': 7.14.5 regexpu-core: 4.7.1 dev: true - /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.14.3: + /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.15.0: resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.3 - '@babel/helper-module-imports': 7.13.12 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/traverse': 7.14.2 - debug: 4.3.1 - lodash.debounce: 4.0.8 - resolve: 1.20.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-define-polyfill-provider/0.2.0_@babel+core@7.14.0: - resolution: {integrity: sha512-JT8tHuFjKBo8NnaUbblz7mIu1nnvUDiHVjXXkulZULyidvo/7P6TY7+YqpV37IfF+KUFxmlK04elKtGKXaiVgw==} - peerDependencies: - '@babel/core': ^7.4.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.0 - '@babel/helper-module-imports': 7.13.12 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/traverse': 7.14.0 - debug: 4.3.1 + '@babel/core': 7.15.0 + '@babel/helper-compilation-targets': 7.15.0_@babel+core@7.15.0 + '@babel/helper-module-imports': 7.14.5 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/traverse': 7.15.0 + debug: 4.3.2 lodash.debounce: 4.0.8 resolve: 1.20.0 semver: 6.3.0 @@ -651,17 +524,16 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider/0.2.1_@babel+core@7.14.3: - resolution: {integrity: sha512-x3AUTVZNPunaw1opRTa5OwVA5N0YxGlIad9xQ5QflK1uIS7PnAGGU5O2Dj/G183fR//N8AzTq+Q8+oiu9m0VFg==} + /@babel/helper-define-polyfill-provider/0.2.3: + resolution: {integrity: sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.3 - '@babel/helper-module-imports': 7.13.12 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/traverse': 7.14.2 - debug: 4.3.1 + '@babel/helper-compilation-targets': 7.15.0 + '@babel/helper-module-imports': 7.14.5 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/traverse': 7.15.0 + debug: 4.3.2 lodash.debounce: 4.0.8 resolve: 1.20.0 semver: 6.3.0 @@ -669,16 +541,16 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider/0.2.3_@babel+core@7.14.0: + /@babel/helper-define-polyfill-provider/0.2.3_@babel+core@7.15.0: resolution: {integrity: sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-compilation-targets': 7.14.5_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@babel/helper-compilation-targets': 7.15.0_@babel+core@7.15.0 '@babel/helper-module-imports': 7.14.5 '@babel/helper-plugin-utils': 7.14.5 - '@babel/traverse': 7.14.7 + '@babel/traverse': 7.15.0 debug: 4.3.2 lodash.debounce: 4.0.8 resolve: 1.20.0 @@ -687,33 +559,11 @@ packages: - supports-color dev: true - /@babel/helper-explode-assignable-expression/7.13.0: - resolution: {integrity: sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA==} - dependencies: - '@babel/types': 7.14.1 - dev: true - /@babel/helper-explode-assignable-expression/7.14.5: resolution: {integrity: sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.5 - dev: true - - /@babel/helper-function-name/7.12.13: - resolution: {integrity: sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==} - dependencies: - '@babel/helper-get-function-arity': 7.12.13 - '@babel/template': 7.12.13 - '@babel/types': 7.14.1 - dev: true - - /@babel/helper-function-name/7.14.2: - resolution: {integrity: sha512-NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ==} - dependencies: - '@babel/helper-get-function-arity': 7.12.13 - '@babel/template': 7.12.13 - '@babel/types': 7.14.2 + '@babel/types': 7.15.0 dev: true /@babel/helper-function-name/7.14.5: @@ -722,228 +572,111 @@ packages: dependencies: '@babel/helper-get-function-arity': 7.14.5 '@babel/template': 7.14.5 - '@babel/types': 7.14.5 - dev: true - - /@babel/helper-get-function-arity/7.12.13: - resolution: {integrity: sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==} - dependencies: - '@babel/types': 7.14.1 + '@babel/types': 7.15.0 dev: true /@babel/helper-get-function-arity/7.14.5: resolution: {integrity: sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.5 - dev: true - - /@babel/helper-hoist-variables/7.13.16: - resolution: {integrity: sha512-1eMtTrXtrwscjcAeO4BVK+vvkxaLJSPFz1w1KLawz6HLNi9bPFGBNwwDyVfiu1Tv/vRRFYfoGaKhmAQPGPn5Wg==} - dependencies: - '@babel/traverse': 7.14.0 - '@babel/types': 7.14.1 - transitivePeerDependencies: - - supports-color + '@babel/types': 7.15.0 dev: true /@babel/helper-hoist-variables/7.14.5: resolution: {integrity: sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.5 - dev: true - - /@babel/helper-member-expression-to-functions/7.13.12: - resolution: {integrity: sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==} - dependencies: - '@babel/types': 7.14.1 + '@babel/types': 7.15.0 dev: true - /@babel/helper-member-expression-to-functions/7.14.7: - resolution: {integrity: sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==} + /@babel/helper-member-expression-to-functions/7.15.0: + resolution: {integrity: sha512-Jq8H8U2kYiafuj2xMTPQwkTBnEEdGKpT35lJEQsRRjnG0LW3neucsaMWLgKcwu3OHKNeYugfw+Z20BXBSEs2Lg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.5 - dev: true - - /@babel/helper-module-imports/7.13.12: - resolution: {integrity: sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==} - dependencies: - '@babel/types': 7.14.2 + '@babel/types': 7.15.0 dev: true /@babel/helper-module-imports/7.14.5: resolution: {integrity: sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.5 - dev: true - - /@babel/helper-module-transforms/7.14.0: - resolution: {integrity: sha512-L40t9bxIuGOfpIGA3HNkJhU9qYrf4y5A5LUSw7rGMSn+pcG8dfJ0g6Zval6YJGd2nEjI7oP00fRdnhLKndx6bw==} - dependencies: - '@babel/helper-module-imports': 7.13.12 - '@babel/helper-replace-supers': 7.13.12 - '@babel/helper-simple-access': 7.13.12 - '@babel/helper-split-export-declaration': 7.12.13 - '@babel/helper-validator-identifier': 7.14.0 - '@babel/template': 7.12.13 - '@babel/traverse': 7.14.0 - '@babel/types': 7.14.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-module-transforms/7.14.2: - resolution: {integrity: sha512-OznJUda/soKXv0XhpvzGWDnml4Qnwp16GN+D/kZIdLsWoHj05kyu8Rm5kXmMef+rVJZ0+4pSGLkeixdqNUATDA==} - dependencies: - '@babel/helper-module-imports': 7.13.12 - '@babel/helper-replace-supers': 7.14.3 - '@babel/helper-simple-access': 7.13.12 - '@babel/helper-split-export-declaration': 7.12.13 - '@babel/helper-validator-identifier': 7.14.0 - '@babel/template': 7.12.13 - '@babel/traverse': 7.14.2 - '@babel/types': 7.14.2 - transitivePeerDependencies: - - supports-color + '@babel/types': 7.15.0 dev: true - /@babel/helper-module-transforms/7.14.5: - resolution: {integrity: sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA==} + /@babel/helper-module-transforms/7.15.0: + resolution: {integrity: sha512-RkGiW5Rer7fpXv9m1B3iHIFDZdItnO2/BLfWVW/9q7+KqQSDY5kUfQEbzdXM1MVhJGcugKV7kRrNVzNxmk7NBg==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-module-imports': 7.14.5 - '@babel/helper-replace-supers': 7.14.5 - '@babel/helper-simple-access': 7.14.5 + '@babel/helper-replace-supers': 7.15.0 + '@babel/helper-simple-access': 7.14.8 '@babel/helper-split-export-declaration': 7.14.5 - '@babel/helper-validator-identifier': 7.14.5 + '@babel/helper-validator-identifier': 7.14.9 '@babel/template': 7.14.5 - '@babel/traverse': 7.14.7 - '@babel/types': 7.14.5 + '@babel/traverse': 7.15.0 + '@babel/types': 7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-optimise-call-expression/7.12.13: - resolution: {integrity: sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==} - dependencies: - '@babel/types': 7.14.1 - dev: true - /@babel/helper-optimise-call-expression/7.14.5: resolution: {integrity: sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.5 + '@babel/types': 7.15.0 dev: true /@babel/helper-plugin-utils/7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} dev: true - /@babel/helper-plugin-utils/7.13.0: - resolution: {integrity: sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==} - dev: true - /@babel/helper-plugin-utils/7.14.5: resolution: {integrity: sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-remap-async-to-generator/7.13.0: - resolution: {integrity: sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg==} - dependencies: - '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-wrap-function': 7.13.0 - '@babel/types': 7.14.1 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helper-remap-async-to-generator/7.14.5: resolution: {integrity: sha512-rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-annotate-as-pure': 7.14.5 '@babel/helper-wrap-function': 7.14.5 - '@babel/types': 7.14.5 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-replace-supers/7.13.12: - resolution: {integrity: sha512-Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw==} - dependencies: - '@babel/helper-member-expression-to-functions': 7.13.12 - '@babel/helper-optimise-call-expression': 7.12.13 - '@babel/traverse': 7.14.0 - '@babel/types': 7.14.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-replace-supers/7.14.3: - resolution: {integrity: sha512-Rlh8qEWZSTfdz+tgNV/N4gz1a0TMNwCUcENhMjHTHKp3LseYH5Jha0NSlyTQWMnjbYcwFt+bqAMqSLHVXkQ6UA==} - dependencies: - '@babel/helper-member-expression-to-functions': 7.13.12 - '@babel/helper-optimise-call-expression': 7.12.13 - '@babel/traverse': 7.14.2 - '@babel/types': 7.14.2 + '@babel/types': 7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-replace-supers/7.14.5: - resolution: {integrity: sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==} + /@babel/helper-replace-supers/7.15.0: + resolution: {integrity: sha512-6O+eWrhx+HEra/uJnifCwhwMd6Bp5+ZfZeJwbqUTuqkhIT6YcRhiZCOOFChRypOIe0cV46kFrRBlm+t5vHCEaA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-member-expression-to-functions': 7.14.7 + '@babel/helper-member-expression-to-functions': 7.15.0 '@babel/helper-optimise-call-expression': 7.14.5 - '@babel/traverse': 7.14.7 - '@babel/types': 7.14.5 + '@babel/traverse': 7.15.0 + '@babel/types': 7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-simple-access/7.13.12: - resolution: {integrity: sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==} - dependencies: - '@babel/types': 7.14.1 - dev: true - - /@babel/helper-simple-access/7.14.5: - resolution: {integrity: sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw==} + /@babel/helper-simple-access/7.14.8: + resolution: {integrity: sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.5 - dev: true - - /@babel/helper-skip-transparent-expression-wrappers/7.12.1: - resolution: {integrity: sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==} - dependencies: - '@babel/types': 7.14.1 + '@babel/types': 7.15.0 dev: true /@babel/helper-skip-transparent-expression-wrappers/7.14.5: resolution: {integrity: sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.5 - dev: true - - /@babel/helper-split-export-declaration/7.12.13: - resolution: {integrity: sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==} - dependencies: - '@babel/types': 7.14.1 + '@babel/types': 7.15.0 dev: true /@babel/helper-split-export-declaration/7.14.5: resolution: {integrity: sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.14.5 + '@babel/types': 7.15.0 dev: true /@babel/helper-validator-identifier/7.12.11: @@ -954,49 +687,35 @@ packages: resolution: {integrity: sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==} dev: true - /@babel/helper-validator-identifier/7.14.5: - resolution: {integrity: sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==} + /@babel/helper-validator-identifier/7.14.9: + resolution: {integrity: sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-validator-option/7.12.17: - resolution: {integrity: sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==} - dev: true - /@babel/helper-validator-option/7.14.5: resolution: {integrity: sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-wrap-function/7.13.0: - resolution: {integrity: sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA==} - dependencies: - '@babel/helper-function-name': 7.12.13 - '@babel/template': 7.12.13 - '@babel/traverse': 7.14.0 - '@babel/types': 7.14.1 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helper-wrap-function/7.14.5: resolution: {integrity: sha512-YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-function-name': 7.14.5 '@babel/template': 7.14.5 - '@babel/traverse': 7.14.7 - '@babel/types': 7.14.5 + '@babel/traverse': 7.15.0 + '@babel/types': 7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/helpers/7.14.0: - resolution: {integrity: sha512-+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg==} + /@babel/helpers/7.15.3: + resolution: {integrity: sha512-HwJiz52XaS96lX+28Tnbu31VeFSQJGOeKHJeaEPQlTl7PnlhFElWPj8tUXtqFIzeN86XxXoBr+WFAyK2PPVz6g==} + engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.12.13 - '@babel/traverse': 7.14.0 - '@babel/types': 7.14.1 + '@babel/template': 7.14.5 + '@babel/traverse': 7.15.0 + '@babel/types': 7.15.0 transitivePeerDependencies: - supports-color dev: true @@ -1021,397 +740,268 @@ packages: resolution: {integrity: sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.14.5 + '@babel/helper-validator-identifier': 7.14.9 chalk: 2.4.2 js-tokens: 4.0.0 dev: true - /@babel/parser/7.14.1: - resolution: {integrity: sha512-muUGEKu8E/ftMTPlNp+mc6zL3E9zKWmF5sDHZ5MSsoTP9Wyz64AhEf9kD08xYJ7w6Hdcu8H550ircnPyWSIF0Q==} - engines: {node: '>=6.0.0'} - hasBin: true - dev: true - - /@babel/parser/7.14.3: - resolution: {integrity: sha512-7MpZDIfI7sUC5zWo2+foJ50CSI5lcqDehZ0lVgIhSi4bFEk94fLAKlF3Q0nzSQQ+ca0lm+O6G9ztKVBeu8PMRQ==} - engines: {node: '>=6.0.0'} - hasBin: true - dev: true - - /@babel/parser/7.14.7: - resolution: {integrity: sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA==} + /@babel/parser/7.15.3: + resolution: {integrity: sha512-O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA==} engines: {node: '>=6.0.0'} hasBin: true dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.13.12_@babel+core@7.14.0: - resolution: {integrity: sha512-d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ==} - peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 - '@babel/plugin-proposal-optional-chaining': 7.13.12_@babel+core@7.14.0 - dev: true - - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.13.12_@babel+core@7.14.3: - resolution: {integrity: sha512-d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ==} + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.14.5: + resolution: {integrity: sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 - '@babel/plugin-proposal-optional-chaining': 7.13.12_@babel+core@7.14.3 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.14.5 + '@babel/plugin-proposal-optional-chaining': 7.14.5 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.14.5_@babel+core@7.14.0: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 '@babel/helper-skip-transparent-expression-wrappers': 7.14.5 - '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.14.0 - dev: true - - /@babel/plugin-proposal-async-generator-functions/7.13.15_@babel+core@7.14.0: - resolution: {integrity: sha512-VapibkWzFeoa6ubXy/NgV5U2U4MVnUlvnx6wo1XhlsaTrLYWE0UFpDQsVrmn22q5CzeloqJ8gEMHSKxuee6ZdA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-remap-async-to-generator': 7.13.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.14.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-proposal-async-generator-functions/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-b1AM4F6fwck4N8ItZ/AtC4FP/cqZqmKRQ4FaTDutwSYyjuhtvsGEMLK4N/ztV/ImP40BjIDyMgBQAeAMsQYVFQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-remap-async-to-generator': 7.13.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.14.3 - transitivePeerDependencies: - - supports-color + '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-async-generator-functions/7.14.7_@babel+core@7.14.0: - resolution: {integrity: sha512-RK8Wj7lXLY3bqei69/cc25gwS5puEc3dknoFPFbqfy3XxYQBQFvu4ioWpafMBAB+L9NyptQK4nMOa5Xz16og8Q==} + /@babel/plugin-proposal-async-generator-functions/7.14.9: + resolution: {integrity: sha512-d1lnh+ZnKrFKwtTYdw320+sQWCTwgkB9fmUhNXRADA4akR6wLjaruSGnIEUjpt9HCOwTr4ynFTKu19b7rFRpmw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 '@babel/helper-remap-async-to-generator': 7.14.5 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.14.0 + '@babel/plugin-syntax-async-generators': 7.8.4 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.13.0_@babel+core@7.14.0: - resolution: {integrity: sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==} + /@babel/plugin-proposal-async-generator-functions/7.14.9_@babel+core@7.15.0: + resolution: {integrity: sha512-d1lnh+ZnKrFKwtTYdw320+sQWCTwgkB9fmUhNXRADA4akR6wLjaruSGnIEUjpt9HCOwTr4ynFTKu19b7rFRpmw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-class-features-plugin': 7.14.1_@babel+core@7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-remap-async-to-generator': 7.14.5 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.13.0_@babel+core@7.14.3: - resolution: {integrity: sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==} + /@babel/plugin-proposal-class-properties/7.14.5: + resolution: {integrity: sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-create-class-features-plugin': 7.14.1_@babel+core@7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-create-class-features-plugin': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.14.5_@babel+core@7.14.0: + /@babel/plugin-proposal-class-properties/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-class-features-plugin': 7.14.6_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@babel/helper-create-class-features-plugin': 7.15.0_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-static-block/7.13.11_@babel+core@7.14.0: - resolution: {integrity: sha512-fJTdFI4bfnMjvxJyNuaf8i9mVcZ0UhetaGEUHaHV9KEnibLugJkZAtXikR8KcYj+NYmI4DZMS8yQAyg+hvfSqg==} - peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-class-static-block': 7.12.13_@babel+core@7.14.0 - dev: true - - /@babel/plugin-proposal-class-static-block/7.14.3_@babel+core@7.14.3: - resolution: {integrity: sha512-HEjzp5q+lWSjAgJtSluFDrGGosmwTgKwCXdDQZvhKsRlwv3YdkUEqxNrrjesJd+B9E9zvr1PVPVBvhYZ9msjvQ==} + /@babel/plugin-proposal-class-static-block/7.14.5: + resolution: {integrity: sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-create-class-features-plugin': 7.14.3_@babel+core@7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-class-static-block': 7.12.13_@babel+core@7.14.3 + '@babel/helper-create-class-features-plugin': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-syntax-class-static-block': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-static-block/7.14.5_@babel+core@7.14.0: + /@babel/plugin-proposal-class-static-block/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-class-features-plugin': 7.14.6_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@babel/helper-create-class-features-plugin': 7.15.0_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.14.0 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-decorators/7.13.15_@babel+core@7.14.0: - resolution: {integrity: sha512-ibAMAqUm97yzi+LPgdr5Nqb9CMkeieGHvwPg1ywSGjZrZHQEGqE01HmOio8kxRpA/+VtOHouIVy2FMpBbtltjA==} + /@babel/plugin-proposal-decorators/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-LYz5nvQcvYeRVjui1Ykn28i+3aUiXwQ/3MGoEy0InTaz1pJo/lAzmIDXX+BQny/oufgHzJ6vnEEiXQ8KZjEVFg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-class-features-plugin': 7.14.1_@babel+core@7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-decorators': 7.12.13_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@babel/helper-create-class-features-plugin': 7.15.0_@babel+core@7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-syntax-decorators': 7.14.5_@babel+core@7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-decorators/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-LauAqDd/VjQDtae58QgBcEOE42NNP+jB2OE+XeC3KBI/E+BhhRjtr5viCIrj1hmu1YvrguLipIPRJZmS5yUcFw==} + /@babel/plugin-proposal-dynamic-import/7.14.5: + resolution: {integrity: sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-create-class-features-plugin': 7.14.3_@babel+core@7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-decorators': 7.12.13_@babel+core@7.14.3 - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3 dev: true - /@babel/plugin-proposal-dynamic-import/7.13.8_@babel+core@7.14.0: - resolution: {integrity: sha512-ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.0 - dev: true - - /@babel/plugin-proposal-dynamic-import/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-oxVQZIWFh91vuNEMKltqNsKLFWkOIyJc95k2Gv9lWVyDfPUQGSSlbDEgWuJUU1afGE9WwlzpucMZ3yDRHIItkA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.3 - dev: true - - /@babel/plugin-proposal-dynamic-import/7.14.5_@babel+core@7.14.0: + /@babel/plugin-proposal-dynamic-import/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.0 - dev: true - - /@babel/plugin-proposal-export-default-from/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-idIsBT+DGXdOHL82U+8bwX4goHm/z10g8sGGrQroh+HCRcm7mDv/luaGdWJQMTuCX2FsdXS7X0Nyyzp4znAPJA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-export-default-from': 7.12.13_@babel+core@7.14.3 - dev: true - - /@babel/plugin-proposal-export-namespace-from/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.14.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-export-namespace-from/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-sRxW3z3Zp3pFfLAgVEvzTFutTXax837oOatUIvSG9o5gRj9mKwm3br1Se5f4QalTQs9x4AzlA/HrCWbQIHASUQ==} + /@babel/plugin-proposal-export-default-from/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-T8KZ5abXvKMjF6JcoXjgac3ElmXf0AWzJwi2O/42Jk+HmCky3D9+i1B7NPP1FblyceqTevKeV/9szeikFoaMDg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.14.3 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-syntax-export-default-from': 7.14.5_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-export-namespace-from/7.14.5_@babel+core@7.14.0: + /@babel/plugin-proposal-export-namespace-from/7.14.5: resolution: {integrity: sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.14.0 + '@babel/plugin-syntax-export-namespace-from': 7.8.3 dev: true - /@babel/plugin-proposal-json-strings/7.13.8_@babel+core@7.14.0: - resolution: {integrity: sha512-w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.14.0 - dev: true - - /@babel/plugin-proposal-json-strings/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-w2DtsfXBBJddJacXMBhElGEYqCZQqN99Se1qeYn8DVLB33owlrlLftIbMzn5nz1OITfDVknXF433tBrLEAOEjA==} + /@babel/plugin-proposal-export-namespace-from/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.14.3 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-json-strings/7.14.5_@babel+core@7.14.0: + /@babel/plugin-proposal-json-strings/7.14.5: resolution: {integrity: sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.14.0 + '@babel/plugin-syntax-json-strings': 7.8.3 dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.13.8_@babel+core@7.14.0: - resolution: {integrity: sha512-aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.14.0 - dev: true - - /@babel/plugin-proposal-logical-assignment-operators/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-1JAZtUrqYyGsS7IDmFeaem+/LJqujfLZ2weLR9ugB0ufUPjzf8cguyVT1g5im7f7RXxuLq1xUxEzvm68uYRtGg==} + /@babel/plugin-proposal-json-strings/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.14.3 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.14.5_@babel+core@7.14.0: + /@babel/plugin-proposal-logical-assignment-operators/7.14.5: resolution: {integrity: sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.14.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4 dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.13.8_@babel+core@7.14.0: - resolution: {integrity: sha512-iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.14.0 - dev: true - - /@babel/plugin-proposal-nullish-coalescing-operator/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-ebR0zU9OvI2N4qiAC38KIAK75KItpIPTpAtd2r4OZmMFeKbKJpUFLYP2EuDut82+BmYi8sz42B+TfTptJ9iG5Q==} + /@babel/plugin-proposal-logical-assignment-operators/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.14.3 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.14.5_@babel+core@7.14.0: + /@babel/plugin-proposal-nullish-coalescing-operator/7.14.5: resolution: {integrity: sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.14.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3 dev: true - /@babel/plugin-proposal-numeric-separator/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==} + /@babel/plugin-proposal-nullish-coalescing-operator/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-numeric-separator/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-DcTQY9syxu9BpU3Uo94fjCB3LN9/hgPS8oUL7KrSW3bA2ePrKZZPJcc5y0hoJAM9dft3pGfErtEUvxXQcfLxUg==} + /@babel/plugin-proposal-numeric-separator/7.14.5: + resolution: {integrity: sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.14.3 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4 dev: true - /@babel/plugin-proposal-numeric-separator/7.14.5_@babel+core@7.14.0: + /@babel/plugin-proposal-numeric-separator/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.14.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.15.0 dev: true /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9: @@ -1422,680 +1012,514 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 - '@babel/plugin-transform-parameters': 7.14.2_@babel+core@7.12.9 - dev: true - - /@babel/plugin-proposal-object-rest-spread/7.13.8_@babel+core@7.14.0: - resolution: {integrity: sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.14.0 - '@babel/core': 7.14.0 - '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-transform-parameters': 7.13.0_@babel+core@7.14.0 + '@babel/plugin-transform-parameters': 7.14.5_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-object-rest-spread/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-hBIQFxwZi8GIp934+nj5uV31mqclC1aYDhctDu5khTi9PCCUOczyy0b34W0oE9U/eJXiqQaKyVsmjeagOaSlbw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.14.0 - '@babel/core': 7.14.3 - '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.14.3 - '@babel/plugin-transform-parameters': 7.14.2_@babel+core@7.14.3 - dev: true - - /@babel/plugin-proposal-object-rest-spread/7.14.7_@babel+core@7.14.0: + /@babel/plugin-proposal-object-rest-spread/7.14.7: resolution: {integrity: sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.14.7 - '@babel/core': 7.14.0 - '@babel/helper-compilation-targets': 7.14.5_@babel+core@7.14.0 + '@babel/compat-data': 7.15.0 + '@babel/helper-compilation-targets': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-transform-parameters': 7.14.5_@babel+core@7.14.0 - dev: true - - /@babel/plugin-proposal-optional-catch-binding/7.13.8_@babel+core@7.14.0: - resolution: {integrity: sha512-0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.14.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3 + '@babel/plugin-transform-parameters': 7.14.5 dev: true - /@babel/plugin-proposal-optional-catch-binding/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-XtkJsmJtBaUbOxZsNk0Fvrv8eiqgneug0A6aqLFZ4TSkar2L5dSXWcnUKHgmjJt49pyB/6ZHvkr3dPgl9MOWRQ==} + /@babel/plugin-proposal-object-rest-spread/7.14.7_@babel+core@7.15.0: + resolution: {integrity: sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.14.3 + '@babel/compat-data': 7.15.0 + '@babel/core': 7.15.0 + '@babel/helper-compilation-targets': 7.15.0_@babel+core@7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-transform-parameters': 7.14.5_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-optional-catch-binding/7.14.5_@babel+core@7.14.0: + /@babel/plugin-proposal-optional-catch-binding/7.14.5: resolution: {integrity: sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.14.0 - dev: true - - /@babel/plugin-proposal-optional-chaining/7.13.12_@babel+core@7.14.0: - resolution: {integrity: sha512-fcEdKOkIB7Tf4IxrgEVeFC4zeJSTr78no9wTdBuZZbqF64kzllU0ybo2zrzm7gUQfxGhBgq4E39oRs8Zx/RMYQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.14.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3 dev: true - /@babel/plugin-proposal-optional-chaining/7.13.12_@babel+core@7.14.3: - resolution: {integrity: sha512-fcEdKOkIB7Tf4IxrgEVeFC4zeJSTr78no9wTdBuZZbqF64kzllU0ybo2zrzm7gUQfxGhBgq4E39oRs8Zx/RMYQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.14.3 - dev: true - - /@babel/plugin-proposal-optional-chaining/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-qQByMRPwMZJainfig10BoaDldx/+VDtNcrA7qdNaEOAj6VXud+gfrkA8j4CRAU5HjnWREXqIpSpH30qZX1xivA==} + /@babel/plugin-proposal-optional-catch-binding/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.14.3 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-optional-chaining/7.14.5_@babel+core@7.14.0: + /@babel/plugin-proposal-optional-chaining/7.14.5: resolution: {integrity: sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 '@babel/helper-skip-transparent-expression-wrappers': 7.14.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.14.0 - dev: true - - /@babel/plugin-proposal-private-methods/7.13.0_@babel+core@7.14.0: - resolution: {integrity: sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-class-features-plugin': 7.14.3_@babel+core@7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - transitivePeerDependencies: - - supports-color + '@babel/plugin-syntax-optional-chaining': 7.8.3 dev: true - /@babel/plugin-proposal-private-methods/7.13.0_@babel+core@7.14.3: - resolution: {integrity: sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q==} + /@babel/plugin-proposal-optional-chaining/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-create-class-features-plugin': 7.14.3_@babel+core@7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.14.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.15.0 dev: true - /@babel/plugin-proposal-private-methods/7.14.5_@babel+core@7.14.0: + /@babel/plugin-proposal-private-methods/7.14.5: resolution: {integrity: sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-class-features-plugin': 7.14.6_@babel+core@7.14.0 + '@babel/helper-create-class-features-plugin': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object/7.14.0_@babel+core@7.14.0: - resolution: {integrity: sha512-59ANdmEwwRUkLjB7CRtwJxxwtjESw+X2IePItA+RGQh+oy5RmpCh/EvVVvh5XQc3yxsm5gtv0+i9oBZhaDNVTg==} + /@babel/plugin-proposal-private-methods/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-create-class-features-plugin': 7.14.1_@babel+core@7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.0_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@babel/helper-create-class-features-plugin': 7.15.0_@babel+core@7.15.0 + '@babel/helper-plugin-utils': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object/7.14.0_@babel+core@7.14.3: - resolution: {integrity: sha512-59ANdmEwwRUkLjB7CRtwJxxwtjESw+X2IePItA+RGQh+oy5RmpCh/EvVVvh5XQc3yxsm5gtv0+i9oBZhaDNVTg==} + /@babel/plugin-proposal-private-property-in-object/7.14.5: + resolution: {integrity: sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-create-class-features-plugin': 7.14.1_@babel+core@7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.0_@babel+core@7.14.3 + '@babel/helper-annotate-as-pure': 7.14.5 + '@babel/helper-create-class-features-plugin': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object/7.14.5_@babel+core@7.14.0: + /@babel/plugin-proposal-private-property-in-object/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 '@babel/helper-annotate-as-pure': 7.14.5 - '@babel/helper-create-class-features-plugin': 7.14.6_@babel+core@7.14.0 + '@babel/helper-create-class-features-plugin': 7.15.0_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.14.0 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-unicode-property-regex/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==} - engines: {node: '>=4'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-regexp-features-plugin': 7.12.17_@babel+core@7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-proposal-unicode-property-regex/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==} + /@babel/plugin-proposal-unicode-property-regex/7.14.5: + resolution: {integrity: sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-create-regexp-features-plugin': 7.12.17_@babel+core@7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-create-regexp-features-plugin': 7.14.5 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-proposal-unicode-property-regex/7.14.5_@babel+core@7.14.0: + /@babel/plugin-proposal-unicode-property-regex/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.14.0: + /@babel/plugin-syntax-async-generators/7.8.4: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.14.3: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.15.0: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.14.0: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.14.0: + /@babel/plugin-syntax-class-properties/7.12.13: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.14.3: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.15.0: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-syntax-class-static-block/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-ZmKQ0ZXR0nYpHZIIuj9zE7oIqCx2hw9TKi+lIo73NNrMPAZGHfS92/VRV0ZmPj6H2ffBgyFHXvJ5NYsNeEaP2A==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-syntax-class-static-block/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-ZmKQ0ZXR0nYpHZIIuj9zE7oIqCx2hw9TKi+lIo73NNrMPAZGHfS92/VRV0ZmPj6H2ffBgyFHXvJ5NYsNeEaP2A==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.14.0: + /@babel/plugin-syntax-class-static-block/7.14.5: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-decorators/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-Rw6aIXGuqDLr6/LoBBYE57nKOzQpz/aDkKlMqEwH+Vp0MXbG6H/TfRjaY343LKxzAKAMXIHsQ8JzaZKuDZ9MwA==} + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-decorators/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-Rw6aIXGuqDLr6/LoBBYE57nKOzQpz/aDkKlMqEwH+Vp0MXbG6H/TfRjaY343LKxzAKAMXIHsQ8JzaZKuDZ9MwA==} + /@babel/plugin-syntax-decorators/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-c4sZMRWL4GSvP1EXy0woIP7m4jkVcEuG8R1TOZxPBPtp4FSM/kiPZub9UIs/Jrb5ZAOzvTUSGYrWsrSu1JvoPw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.14.0: + /@babel/plugin-syntax-dynamic-import/7.8.3: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.14.3: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-export-default-from/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-gVry0zqoums0hA+EniCYK3gABhjYSLX1dVuwYpPw9DrLNA4/GovXySHVg4FGRsZht09ON/5C2NVx3keq+qqVGQ==} + /@babel/plugin-syntax-export-default-from/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-snWDxjuaPEobRBnhpqEfZ8RMxDbHt8+87fiEioGuE+Uc0xAKgSD8QiuL3lF93hPVQfZFAcYwrrf+H5qUhike3Q==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.14.0: + /@babel/plugin-syntax-export-namespace-from/7.8.3: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.14.3: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.14.0: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.15.0: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.14.0: + /@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.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.14.3: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-syntax-jsx/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-jsx/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==} + /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9: + resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9: - resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==} + /@babel/plugin-syntax-jsx/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.14.0: + /@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/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.14.3: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.15.0: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.14.0: + /@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/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.14.3: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.14.0: + /@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.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.14.3: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.15.0: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9: + /@babel/plugin-syntax-object-rest-spread/7.8.3: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.14.0: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.14.3: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.14.0: + /@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/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.14.3: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.14.0: + /@babel/plugin-syntax-optional-chaining/7.8.3: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.14.3: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.15.0: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-syntax-private-property-in-object/7.14.0_@babel+core@7.14.0: - resolution: {integrity: sha512-bda3xF8wGl5/5btF794utNOL0Jw+9jE5C1sLZcoK7c4uonE/y3iQiyG+KbkF3WBV/paX58VCpjhxLPkdj5Fe4w==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-syntax-private-property-in-object/7.14.0_@babel+core@7.14.3: - resolution: {integrity: sha512-bda3xF8wGl5/5btF794utNOL0Jw+9jE5C1sLZcoK7c4uonE/y3iQiyG+KbkF3WBV/paX58VCpjhxLPkdj5Fe4w==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.14.0: + /@babel/plugin-syntax-private-property-in-object/7.14.5: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-top-level-await/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-syntax-top-level-await/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==} + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.14.0: + /@babel/plugin-syntax-top-level-await/7.14.5: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-syntax-typescript/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-syntax-typescript/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-arrow-functions/7.13.0_@babel+core@7.14.0: - resolution: {integrity: sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg==} + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-arrow-functions/7.13.0_@babel+core@7.14.3: - resolution: {integrity: sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg==} + /@babel/plugin-syntax-typescript/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-arrow-functions/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-arrow-functions/7.14.5: resolution: {integrity: sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-async-to-generator/7.13.0_@babel+core@7.14.0: - resolution: {integrity: sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg==} + /@babel/plugin-transform-arrow-functions/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-module-imports': 7.13.12 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-remap-async-to-generator': 7.13.0 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-async-to-generator/7.13.0_@babel+core@7.14.3: - resolution: {integrity: sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg==} + /@babel/plugin-transform-async-to-generator/7.14.5: + resolution: {integrity: sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-module-imports': 7.13.12 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-remap-async-to-generator': 7.13.0 + '@babel/helper-module-imports': 7.14.5 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-remap-async-to-generator': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-async-to-generator/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-async-to-generator/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 '@babel/helper-module-imports': 7.14.5 '@babel/helper-plugin-utils': 7.14.5 '@babel/helper-remap-async-to-generator': 7.14.5 @@ -2103,1407 +1527,977 @@ packages: - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-block-scoped-functions/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-block-scoped-functions/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-block-scoped-functions/7.14.5: resolution: {integrity: sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-block-scoping/7.14.1_@babel+core@7.14.0: - resolution: {integrity: sha512-2mQXd0zBrwfp0O1moWIhPpEeTKDvxyHcnma3JATVP1l+CctWBuot6OJG8LQ4DnBj4ZZPSmlb/fm4mu47EOAnVA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-block-scoping/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-neZZcP19NugZZqNwMTH+KoBjx5WyvESPSIOQb4JHpfd+zPfqcH65RMu5xJju5+6q/Y2VzYrleQTr+b6METyyxg==} + /@babel/plugin-transform-block-scoped-functions/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-block-scoping/7.14.5_@babel+core@7.14.0: - resolution: {integrity: sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw==} + /@babel/plugin-transform-block-scoping/7.15.3: + resolution: {integrity: sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-classes/7.13.0_@babel+core@7.14.0: - resolution: {integrity: sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g==} + /@babel/plugin-transform-block-scoping/7.15.3_@babel+core@7.15.0: + resolution: {integrity: sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-function-name': 7.12.13 - '@babel/helper-optimise-call-expression': 7.12.13 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-replace-supers': 7.13.12 - '@babel/helper-split-export-declaration': 7.12.13 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-classes/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-7oafAVcucHquA/VZCsXv/gmuiHeYd64UJyyTYU+MPfNu0KeNlxw06IeENBO8bJjXVbolu+j1MM5aKQtH1OMCNg==} + /@babel/plugin-transform-classes/7.14.9: + resolution: {integrity: sha512-NfZpTcxU3foGWbl4wxmZ35mTsYJy8oQocbeIMoDAGGFarAmSQlL+LWMkDx/tj6pNotpbX3rltIA4dprgAPOq5A==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-function-name': 7.14.2 - '@babel/helper-optimise-call-expression': 7.12.13 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-replace-supers': 7.14.3 - '@babel/helper-split-export-declaration': 7.12.13 + '@babel/helper-annotate-as-pure': 7.14.5 + '@babel/helper-function-name': 7.14.5 + '@babel/helper-optimise-call-expression': 7.14.5 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-replace-supers': 7.15.0 + '@babel/helper-split-export-declaration': 7.14.5 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-classes/7.14.5_@babel+core@7.14.0: - resolution: {integrity: sha512-J4VxKAMykM06K/64z9rwiL6xnBHgB1+FVspqvlgCdwD1KUbQNfszeKVVOMh59w3sztHYIZDgnhOC4WbdEfHFDA==} + /@babel/plugin-transform-classes/7.14.9_@babel+core@7.15.0: + resolution: {integrity: sha512-NfZpTcxU3foGWbl4wxmZ35mTsYJy8oQocbeIMoDAGGFarAmSQlL+LWMkDx/tj6pNotpbX3rltIA4dprgAPOq5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 '@babel/helper-annotate-as-pure': 7.14.5 '@babel/helper-function-name': 7.14.5 '@babel/helper-optimise-call-expression': 7.14.5 '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-replace-supers': 7.14.5 + '@babel/helper-replace-supers': 7.15.0 '@babel/helper-split-export-declaration': 7.14.5 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-computed-properties/7.13.0_@babel+core@7.14.0: - resolution: {integrity: sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-computed-properties/7.13.0_@babel+core@7.14.3: - resolution: {integrity: sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-computed-properties/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-computed-properties/7.14.5: resolution: {integrity: sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-destructuring/7.13.17_@babel+core@7.14.0: - resolution: {integrity: sha512-UAUqiLv+uRLO+xuBKKMEpC+t7YRNVRqBsWWq1yKXbBZBje/t3IXCiSinZhjn/DC3qzBfICeYd2EFGEbHsh5RLA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-destructuring/7.13.17_@babel+core@7.14.3: - resolution: {integrity: sha512-UAUqiLv+uRLO+xuBKKMEpC+t7YRNVRqBsWWq1yKXbBZBje/t3IXCiSinZhjn/DC3qzBfICeYd2EFGEbHsh5RLA==} + /@babel/plugin-transform-computed-properties/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-destructuring/7.14.7_@babel+core@7.14.0: + /@babel/plugin-transform-destructuring/7.14.7: resolution: {integrity: sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-dotall-regex/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-regexp-features-plugin': 7.12.17_@babel+core@7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-dotall-regex/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==} + /@babel/plugin-transform-destructuring/7.14.7_@babel+core@7.15.0: + resolution: {integrity: sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-create-regexp-features-plugin': 7.12.17_@babel+core@7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-dotall-regex/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-dotall-regex/7.14.5: resolution: {integrity: sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.14.0 + '@babel/helper-create-regexp-features-plugin': 7.14.5 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-duplicate-keys/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-duplicate-keys/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==} + /@babel/plugin-transform-dotall-regex/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-duplicate-keys/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-duplicate-keys/7.14.5: resolution: {integrity: sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-exponentiation-operator/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.12.13 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-exponentiation-operator/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==} + /@babel/plugin-transform-duplicate-keys/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.12.13 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-exponentiation-operator/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-exponentiation-operator/7.14.5: resolution: {integrity: sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-builder-binary-assignment-operator-visitor': 7.14.5 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-for-of/7.13.0_@babel+core@7.14.0: - resolution: {integrity: sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-for-of/7.13.0_@babel+core@7.14.3: - resolution: {integrity: sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg==} + /@babel/plugin-transform-exponentiation-operator/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.14.5 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-for-of/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-for-of/7.14.5: resolution: {integrity: sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-function-name/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-function-name': 7.12.13 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-function-name/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==} + /@babel/plugin-transform-for-of/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-function-name': 7.12.13 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-function-name/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-function-name/7.14.5: resolution: {integrity: sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-function-name': 7.14.5 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-literals/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-literals/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==} + /@babel/plugin-transform-function-name/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-function-name': 7.14.5 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-literals/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-literals/7.14.5: resolution: {integrity: sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-member-expression-literals/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-member-expression-literals/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==} + /@babel/plugin-transform-literals/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-member-expression-literals/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-member-expression-literals/7.14.5: resolution: {integrity: sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-modules-amd/7.14.0_@babel+core@7.14.0: - resolution: {integrity: sha512-CF4c5LX4LQ03LebQxJ5JZes2OYjzBuk1TdiF7cG7d5dK4lAdw9NZmaxq5K/mouUdNeqwz3TNjnW6v01UqUNgpQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-module-transforms': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-modules-amd/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-hPC6XBswt8P3G2D1tSV2HzdKvkqOpmbyoy+g73JG0qlF/qx2y3KaMmXb1fLrpmWGLZYA0ojCvaHdzFWjlmV+Pw==} + /@babel/plugin-transform-member-expression-literals/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-module-transforms': 7.14.2 - '@babel/helper-plugin-utils': 7.13.0 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-modules-amd/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-modules-amd/7.14.5: resolution: {integrity: sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-module-transforms': 7.14.5 + '@babel/helper-module-transforms': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.14.0_@babel+core@7.14.0: - resolution: {integrity: sha512-EX4QePlsTaRZQmw9BsoPeyh5OCtRGIhwfLquhxGp5e32w+dyL8htOcDwamlitmNFK6xBZYlygjdye9dbd9rUlQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-module-transforms': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-simple-access': 7.13.12 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-modules-commonjs/7.14.0_@babel+core@7.14.3: - resolution: {integrity: sha512-EX4QePlsTaRZQmw9BsoPeyh5OCtRGIhwfLquhxGp5e32w+dyL8htOcDwamlitmNFK6xBZYlygjdye9dbd9rUlQ==} + /@babel/plugin-transform-modules-amd/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-module-transforms': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-simple-access': 7.13.12 + '@babel/core': 7.15.0 + '@babel/helper-module-transforms': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.14.5_@babel+core@7.14.0: - resolution: {integrity: sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A==} + /@babel/plugin-transform-modules-commonjs/7.15.0: + resolution: {integrity: sha512-3H/R9s8cXcOGE8kgMlmjYYC9nqr5ELiPkJn4q0mypBrjhYQoc+5/Maq69vV4xRPWnkzZuwJPf5rArxpB/35Cig==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-module-transforms': 7.14.5 + '@babel/helper-module-transforms': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-simple-access': 7.14.5 + '@babel/helper-simple-access': 7.14.8 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.13.8_@babel+core@7.14.0: - resolution: {integrity: sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A==} + /@babel/plugin-transform-modules-commonjs/7.15.0_@babel+core@7.15.0: + resolution: {integrity: sha512-3H/R9s8cXcOGE8kgMlmjYYC9nqr5ELiPkJn4q0mypBrjhYQoc+5/Maq69vV4xRPWnkzZuwJPf5rArxpB/35Cig==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-hoist-variables': 7.13.16 - '@babel/helper-module-transforms': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-validator-identifier': 7.14.0 + '@babel/core': 7.15.0 + '@babel/helper-module-transforms': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-simple-access': 7.14.8 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.13.8_@babel+core@7.14.3: - resolution: {integrity: sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A==} + /@babel/plugin-transform-modules-systemjs/7.14.5: + resolution: {integrity: sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-hoist-variables': 7.13.16 - '@babel/helper-module-transforms': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-validator-identifier': 7.14.0 + '@babel/helper-hoist-variables': 7.14.5 + '@babel/helper-module-transforms': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-validator-identifier': 7.14.9 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-modules-systemjs/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 '@babel/helper-hoist-variables': 7.14.5 - '@babel/helper-module-transforms': 7.14.5 + '@babel/helper-module-transforms': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-validator-identifier': 7.14.5 + '@babel/helper-validator-identifier': 7.14.9 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.14.0_@babel+core@7.14.0: - resolution: {integrity: sha512-nPZdnWtXXeY7I87UZr9VlsWme3Y0cfFFE41Wbxz4bbaexAjNMInXPFUpRRUJ8NoMm0Cw+zxbqjdPmLhcjfazMw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-module-transforms': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-modules-umd/7.14.0_@babel+core@7.14.3: - resolution: {integrity: sha512-nPZdnWtXXeY7I87UZr9VlsWme3Y0cfFFE41Wbxz4bbaexAjNMInXPFUpRRUJ8NoMm0Cw+zxbqjdPmLhcjfazMw==} + /@babel/plugin-transform-modules-umd/7.14.5: + resolution: {integrity: sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-module-transforms': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-module-transforms': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-modules-umd/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-module-transforms': 7.14.5 + '@babel/core': 7.15.0 + '@babel/helper-module-transforms': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-regexp-features-plugin': 7.12.17_@babel+core@7.14.0 - dev: true - - /@babel/plugin-transform-named-capturing-groups-regex/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==} + /@babel/plugin-transform-named-capturing-groups-regex/7.14.9: + resolution: {integrity: sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-create-regexp-features-plugin': 7.12.17_@babel+core@7.14.3 + '@babel/helper-create-regexp-features-plugin': 7.14.5 dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.14.7_@babel+core@7.14.0: - resolution: {integrity: sha512-DTNOTaS7TkW97xsDMrp7nycUVh6sn/eq22VaxWfEdzuEbRsiaOU0pqU7DlyUGHVsbQbSghvjKRpEl+nUCKGQSg==} + /@babel/plugin-transform-named-capturing-groups-regex/7.14.9_@babel+core@7.15.0: + resolution: {integrity: sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.15.0 dev: true - /@babel/plugin-transform-new-target/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-new-target/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-new-target/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-new-target/7.14.5: resolution: {integrity: sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-object-assign/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-4QxDMc0lAOkIBSfCrnSGbAJ+4epDBF2XXwcLXuBcG1xl9u7LrktNVD4+LwhL47XuKVPQ7R25e/WdcV+h97HyZA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-object-super/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==} + /@babel/plugin-transform-new-target/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-replace-supers': 7.13.12 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-object-super/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==} + /@babel/plugin-transform-object-assign/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-lvhjk4UN9xJJYB1mI5KC0/o1D5EcJXdbhVe+4fSk08D6ZN+iuAIs7LJC+71h8av9Ew4+uRq9452v9R93SFmQlQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-replace-supers': 7.13.12 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-object-super/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-object-super/7.14.5: resolution: {integrity: sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-replace-supers': 7.14.5 + '@babel/helper-replace-supers': 7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-parameters/7.13.0_@babel+core@7.14.0: - resolution: {integrity: sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-parameters/7.14.2_@babel+core@7.12.9: - resolution: {integrity: sha512-NxoVmA3APNCC1JdMXkdYXuQS+EMdqy0vIwyDHeKHiJKRxmp1qGSdb0JLEIoPRhkx6H/8Qi3RJ3uqOCYw8giy9A==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-parameters/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-NxoVmA3APNCC1JdMXkdYXuQS+EMdqy0vIwyDHeKHiJKRxmp1qGSdb0JLEIoPRhkx6H/8Qi3RJ3uqOCYw8giy9A==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-parameters/7.14.5_@babel+core@7.14.0: - resolution: {integrity: sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: true - - /@babel/plugin-transform-property-literals/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-property-literals/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-property-literals/7.14.5_@babel+core@7.14.0: - resolution: {integrity: sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==} + /@babel/plugin-transform-object-super/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-replace-supers': 7.15.0 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-react-display-name/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-zCubvP+jjahpnFJvPaHPiGVfuVUjXHhFvJKQdNnsmSsiU9kR/rCZ41jHc++tERD2zV+p7Hr6is+t5b6iWTCqSw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-react-jsx-development/7.12.17_@babel+core@7.14.3: - resolution: {integrity: sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/plugin-transform-react-jsx': 7.14.3_@babel+core@7.14.3 - dev: true - - /@babel/plugin-transform-react-jsx-source/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-react-jsx/7.13.12_@babel+core@7.14.0: - resolution: {integrity: sha512-jcEI2UqIcpCqB5U5DRxIl0tQEProI2gcu+g8VTIqxLO5Iidojb4d77q+fwGseCvd8af/lJ9masp4QWzBXFE2xA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-module-imports': 7.13.12 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-jsx': 7.12.13_@babel+core@7.14.0 - '@babel/types': 7.14.1 - dev: true - - /@babel/plugin-transform-react-jsx/7.14.3_@babel+core@7.14.0: - resolution: {integrity: sha512-uuxuoUNVhdgYzERiHHFkE4dWoJx+UFVyuAl0aqN8P2/AKFHwqgUC5w2+4/PjpKXJsFgBlYAFXlUmDQ3k3DUkXw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-module-imports': 7.13.12 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-jsx': 7.12.13_@babel+core@7.14.0 - '@babel/types': 7.14.2 - dev: true - - /@babel/plugin-transform-react-jsx/7.14.3_@babel+core@7.14.3: - resolution: {integrity: sha512-uuxuoUNVhdgYzERiHHFkE4dWoJx+UFVyuAl0aqN8P2/AKFHwqgUC5w2+4/PjpKXJsFgBlYAFXlUmDQ3k3DUkXw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-module-imports': 7.13.12 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-jsx': 7.12.13_@babel+core@7.14.3 - '@babel/types': 7.14.2 - dev: true - - /@babel/plugin-transform-react-pure-annotations/7.12.1_@babel+core@7.14.3: - resolution: {integrity: sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-plugin-utils': 7.13.0 - dev: true - - /@babel/plugin-transform-regenerator/7.13.15_@babel+core@7.14.0: - resolution: {integrity: sha512-Bk9cOLSz8DiurcMETZ8E2YtIVJbFCPGW28DJWUakmyVWtQSm6Wsf0p4B4BfEr/eL2Nkhe/CICiUiMOCi1TPhuQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - regenerator-transform: 0.14.5 - dev: true - - /@babel/plugin-transform-regenerator/7.13.15_@babel+core@7.14.3: - resolution: {integrity: sha512-Bk9cOLSz8DiurcMETZ8E2YtIVJbFCPGW28DJWUakmyVWtQSm6Wsf0p4B4BfEr/eL2Nkhe/CICiUiMOCi1TPhuQ==} + /@babel/plugin-transform-parameters/7.14.5: + resolution: {integrity: sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - regenerator-transform: 0.14.5 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-regenerator/7.14.5_@babel+core@7.14.0: - resolution: {integrity: sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==} + /@babel/plugin-transform-parameters/7.14.5_@babel+core@7.12.9: + resolution: {integrity: sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - regenerator-transform: 0.14.5 + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-reserved-words/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==} + /@babel/plugin-transform-parameters/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-reserved-words/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==} + /@babel/plugin-transform-property-literals/7.14.5: + resolution: {integrity: sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-reserved-words/7.14.5_@babel+core@7.14.0: - resolution: {integrity: sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==} + /@babel/plugin-transform-property-literals/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-runtime/7.14.5_@babel+core@7.14.0: - resolution: {integrity: sha512-fPMBhh1AV8ZyneiCIA+wYYUH1arzlXR1UMcApjvchDhfKxhy2r2lReJv8uHEyihi4IFIGlr1Pdx7S5fkESDQsg==} + /@babel/plugin-transform-react-display-name/7.15.1_@babel+core@7.15.0: + resolution: {integrity: sha512-yQZ/i/pUCJAHI/LbtZr413S3VT26qNrEm0M5RRxQJA947/YNYwbZbBaXGDrq6CG5QsZycI1VIP6d7pQaBfP+8Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-module-imports': 7.14.5 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 - babel-plugin-polyfill-corejs2: 0.2.2_@babel+core@7.14.0 - babel-plugin-polyfill-corejs3: 0.2.3_@babel+core@7.14.0 - babel-plugin-polyfill-regenerator: 0.2.2_@babel+core@7.14.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color dev: true - /@babel/plugin-transform-shorthand-properties/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==} + /@babel/plugin-transform-react-jsx-development/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-rdwG/9jC6QybWxVe2UVOa7q6cnTpw8JRRHOxntG/h6g/guAOe6AhtQHJuJh5FwmnXIT1bdm5vC2/5huV8ZOorQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/plugin-transform-react-jsx': 7.14.9_@babel+core@7.15.0 dev: true - /@babel/plugin-transform-shorthand-properties/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==} + /@babel/plugin-transform-react-jsx-source/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-1TpSDnD9XR/rQ2tzunBVPThF5poaYT9GqP+of8fAtguYuI/dm2RkrMBDemsxtY0XBzvW7nXjYM0hRyKX9QYj7Q==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-shorthand-properties/7.14.5_@babel+core@7.14.0: - resolution: {integrity: sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==} + /@babel/plugin-transform-react-jsx/7.14.9_@babel+core@7.15.0: + resolution: {integrity: sha512-30PeETvS+AeD1f58i1OVyoDlVYQhap/K20ZrMjLmmzmC2AYR/G43D4sdJAaDAqCD3MYpSWbmrz3kES158QSLjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 + '@babel/helper-annotate-as-pure': 7.14.5 + '@babel/helper-module-imports': 7.14.5 '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-syntax-jsx': 7.14.5_@babel+core@7.15.0 + '@babel/types': 7.15.0 dev: true - /@babel/plugin-transform-spread/7.13.0_@babel+core@7.14.0: - resolution: {integrity: sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg==} + /@babel/plugin-transform-react-pure-annotations/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-3X4HpBJimNxW4rhUy/SONPyNQHp5YRr0HhJdT2OH1BRp0of7u3Dkirc7x9FRJMKMqTBI079VZ1hzv7Ouuz///g==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 + '@babel/core': 7.15.0 + '@babel/helper-annotate-as-pure': 7.14.5 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-spread/7.13.0_@babel+core@7.14.3: - resolution: {integrity: sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg==} + /@babel/plugin-transform-regenerator/7.14.5: + resolution: {integrity: sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 + regenerator-transform: 0.14.5 dev: true - /@babel/plugin-transform-spread/7.14.6_@babel+core@7.14.0: - resolution: {integrity: sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==} + /@babel/plugin-transform-regenerator/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.14.5 + '@babel/core': 7.15.0 + regenerator-transform: 0.14.5 dev: true - /@babel/plugin-transform-sticky-regex/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==} + /@babel/plugin-transform-reserved-words/7.14.5: + resolution: {integrity: sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-sticky-regex/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==} + /@babel/plugin-transform-reserved-words/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-sticky-regex/7.14.5_@babel+core@7.14.0: - resolution: {integrity: sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==} + /@babel/plugin-transform-runtime/7.15.0: + resolution: {integrity: sha512-sfHYkLGjhzWTq6xsuQ01oEsUYjkHRux9fW1iUA68dC7Qd8BS1Unq4aZ8itmQp95zUzIcyR2EbNMTzAicFj+guw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 + '@babel/helper-module-imports': 7.14.5 '@babel/helper-plugin-utils': 7.14.5 + babel-plugin-polyfill-corejs2: 0.2.2 + babel-plugin-polyfill-corejs3: 0.2.4 + babel-plugin-polyfill-regenerator: 0.2.2 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-template-literals/7.13.0_@babel+core@7.14.0: - resolution: {integrity: sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw==} + /@babel/plugin-transform-shorthand-properties/7.14.5: + resolution: {integrity: sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-template-literals/7.13.0_@babel+core@7.14.3: - resolution: {integrity: sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw==} + /@babel/plugin-transform-shorthand-properties/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-template-literals/7.14.5_@babel+core@7.14.0: - resolution: {integrity: sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==} + /@babel/plugin-transform-spread/7.14.6: + resolution: {integrity: sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.14.5 dev: true - /@babel/plugin-transform-typeof-symbol/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==} + /@babel/plugin-transform-spread/7.14.6_@babel+core@7.15.0: + resolution: {integrity: sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.14.5 dev: true - /@babel/plugin-transform-typeof-symbol/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==} + /@babel/plugin-transform-sticky-regex/7.14.5: + resolution: {integrity: sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-typeof-symbol/7.14.5_@babel+core@7.14.0: - resolution: {integrity: sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==} + /@babel/plugin-transform-sticky-regex/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-typescript/7.13.0_@babel+core@7.14.0: - resolution: {integrity: sha512-elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ==} + /@babel/plugin-transform-template-literals/7.14.5: + resolution: {integrity: sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-class-features-plugin': 7.14.1_@babel+core@7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-typescript': 7.12.13_@babel+core@7.14.0 - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-typescript/7.13.0_@babel+core@7.14.3: - resolution: {integrity: sha512-elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ==} + /@babel/plugin-transform-template-literals/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-create-class-features-plugin': 7.14.1_@babel+core@7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-syntax-typescript': 7.12.13_@babel+core@7.14.3 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-unicode-escapes/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==} + /@babel/plugin-transform-typeof-symbol/7.14.5: + resolution: {integrity: sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-unicode-escapes/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==} + /@babel/plugin-transform-typeof-symbol/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-unicode-escapes/7.14.5_@babel+core@7.14.0: - resolution: {integrity: sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==} + /@babel/plugin-transform-typescript/7.15.0_@babel+core@7.15.0: + resolution: {integrity: sha512-WIIEazmngMEEHDaPTx0IZY48SaAmjVWe3TRSX7cmJXn0bEv9midFzAjxiruOWYIVf5iQ10vFx7ASDpgEO08L5w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 + '@babel/helper-create-class-features-plugin': 7.15.0_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-syntax-typescript': 7.14.5_@babel+core@7.15.0 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-unicode-regex/7.12.13_@babel+core@7.14.0: - resolution: {integrity: sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==} + /@babel/plugin-transform-unicode-escapes/7.14.5: + resolution: {integrity: sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-regexp-features-plugin': 7.12.17_@babel+core@7.14.0 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-unicode-regex/7.12.13_@babel+core@7.14.3: - resolution: {integrity: sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==} + /@babel/plugin-transform-unicode-escapes/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-create-regexp-features-plugin': 7.12.17_@babel+core@7.14.3 - '@babel/helper-plugin-utils': 7.13.0 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-unicode-regex/7.14.5_@babel+core@7.14.0: + /@babel/plugin-transform-unicode-regex/7.14.5: resolution: {integrity: sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.14.0 + '@babel/helper-create-regexp-features-plugin': 7.14.5 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/preset-env/7.14.1_@babel+core@7.14.0: - resolution: {integrity: sha512-0M4yL1l7V4l+j/UHvxcdvNfLB9pPtIooHTbEhgD/6UGyh8Hy3Bm1Mj0buzjDXATCSz3JFibVdnoJZCrlUCanrQ==} + /@babel/plugin-transform-unicode-regex/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.14.0 - '@babel/core': 7.14.0 - '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-validator-option': 7.12.17 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.13.12_@babel+core@7.14.0 - '@babel/plugin-proposal-async-generator-functions': 7.13.15_@babel+core@7.14.0 - '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.14.0 - '@babel/plugin-proposal-class-static-block': 7.13.11_@babel+core@7.14.0 - '@babel/plugin-proposal-dynamic-import': 7.13.8_@babel+core@7.14.0 - '@babel/plugin-proposal-export-namespace-from': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-proposal-json-strings': 7.13.8_@babel+core@7.14.0 - '@babel/plugin-proposal-logical-assignment-operators': 7.13.8_@babel+core@7.14.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.13.8_@babel+core@7.14.0 - '@babel/plugin-proposal-numeric-separator': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-proposal-object-rest-spread': 7.13.8_@babel+core@7.14.0 - '@babel/plugin-proposal-optional-catch-binding': 7.13.8_@babel+core@7.14.0 - '@babel/plugin-proposal-optional-chaining': 7.13.12_@babel+core@7.14.0 - '@babel/plugin-proposal-private-methods': 7.13.0_@babel+core@7.14.0 - '@babel/plugin-proposal-private-property-in-object': 7.14.0_@babel+core@7.14.0 - '@babel/plugin-proposal-unicode-property-regex': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.14.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-syntax-class-static-block': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.14.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.14.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.0_@babel+core@7.14.0 - '@babel/plugin-syntax-top-level-await': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-arrow-functions': 7.13.0_@babel+core@7.14.0 - '@babel/plugin-transform-async-to-generator': 7.13.0_@babel+core@7.14.0 - '@babel/plugin-transform-block-scoped-functions': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-block-scoping': 7.14.1_@babel+core@7.14.0 - '@babel/plugin-transform-classes': 7.13.0_@babel+core@7.14.0 - '@babel/plugin-transform-computed-properties': 7.13.0_@babel+core@7.14.0 - '@babel/plugin-transform-destructuring': 7.13.17_@babel+core@7.14.0 - '@babel/plugin-transform-dotall-regex': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-duplicate-keys': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-exponentiation-operator': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-for-of': 7.13.0_@babel+core@7.14.0 - '@babel/plugin-transform-function-name': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-literals': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-member-expression-literals': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-modules-amd': 7.14.0_@babel+core@7.14.0 - '@babel/plugin-transform-modules-commonjs': 7.14.0_@babel+core@7.14.0 - '@babel/plugin-transform-modules-systemjs': 7.13.8_@babel+core@7.14.0 - '@babel/plugin-transform-modules-umd': 7.14.0_@babel+core@7.14.0 - '@babel/plugin-transform-named-capturing-groups-regex': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-new-target': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-object-super': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-parameters': 7.13.0_@babel+core@7.14.0 - '@babel/plugin-transform-property-literals': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-regenerator': 7.13.15_@babel+core@7.14.0 - '@babel/plugin-transform-reserved-words': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-spread': 7.13.0_@babel+core@7.14.0 - '@babel/plugin-transform-sticky-regex': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-template-literals': 7.13.0_@babel+core@7.14.0 - '@babel/plugin-transform-typeof-symbol': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-unicode-escapes': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-unicode-regex': 7.12.13_@babel+core@7.14.0 - '@babel/preset-modules': 0.1.4_@babel+core@7.14.0 - '@babel/types': 7.14.1 - babel-plugin-polyfill-corejs2: 0.2.0_@babel+core@7.14.0 - babel-plugin-polyfill-corejs3: 0.2.0_@babel+core@7.14.0 - babel-plugin-polyfill-regenerator: 0.2.0_@babel+core@7.14.0 - core-js-compat: 3.12.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.15.0 + '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.15.0 + '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/preset-env/7.14.2_@babel+core@7.14.3: - resolution: {integrity: sha512-7dD7lVT8GMrE73v4lvDEb85cgcQhdES91BSD7jS/xjC6QY8PnRhux35ac+GCpbiRhp8crexBvZZqnaL6VrY8TQ==} + /@babel/preset-env/7.15.0: + resolution: {integrity: sha512-FhEpCNFCcWW3iZLg0L2NPE9UerdtsCR6ZcsGHUX6Om6kbCQeL5QZDqFDmeNHC6/fy6UH3jEge7K4qG5uC9In0Q==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.14.0 - '@babel/core': 7.14.3 - '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-validator-option': 7.12.17 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.13.12_@babel+core@7.14.3 - '@babel/plugin-proposal-async-generator-functions': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-proposal-class-static-block': 7.14.3_@babel+core@7.14.3 - '@babel/plugin-proposal-dynamic-import': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-export-namespace-from': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-json-strings': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-logical-assignment-operators': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-numeric-separator': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-object-rest-spread': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-optional-catch-binding': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-optional-chaining': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-private-methods': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-proposal-private-property-in-object': 7.14.0_@babel+core@7.14.3 - '@babel/plugin-proposal-unicode-property-regex': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.14.3 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-syntax-class-static-block': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.3 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.14.3 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.14.3 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.14.3 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.14.3 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.14.3 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.14.3 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.14.3 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.14.3 - '@babel/plugin-syntax-private-property-in-object': 7.14.0_@babel+core@7.14.3 - '@babel/plugin-syntax-top-level-await': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-arrow-functions': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-async-to-generator': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-block-scoped-functions': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-block-scoping': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-classes': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-computed-properties': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-destructuring': 7.13.17_@babel+core@7.14.3 - '@babel/plugin-transform-dotall-regex': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-duplicate-keys': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-exponentiation-operator': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-for-of': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-function-name': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-literals': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-member-expression-literals': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-modules-amd': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-modules-commonjs': 7.14.0_@babel+core@7.14.3 - '@babel/plugin-transform-modules-systemjs': 7.13.8_@babel+core@7.14.3 - '@babel/plugin-transform-modules-umd': 7.14.0_@babel+core@7.14.3 - '@babel/plugin-transform-named-capturing-groups-regex': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-new-target': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-object-super': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-parameters': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-property-literals': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-regenerator': 7.13.15_@babel+core@7.14.3 - '@babel/plugin-transform-reserved-words': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-spread': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-sticky-regex': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-template-literals': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-typeof-symbol': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-unicode-escapes': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-unicode-regex': 7.12.13_@babel+core@7.14.3 - '@babel/preset-modules': 0.1.4_@babel+core@7.14.3 - '@babel/types': 7.14.2 - babel-plugin-polyfill-corejs2: 0.2.1_@babel+core@7.14.3 - babel-plugin-polyfill-corejs3: 0.2.1_@babel+core@7.14.3 - babel-plugin-polyfill-regenerator: 0.2.1_@babel+core@7.14.3 - core-js-compat: 3.13.0 + '@babel/compat-data': 7.15.0 + '@babel/helper-compilation-targets': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-validator-option': 7.14.5 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.14.5 + '@babel/plugin-proposal-async-generator-functions': 7.14.9 + '@babel/plugin-proposal-class-properties': 7.14.5 + '@babel/plugin-proposal-class-static-block': 7.14.5 + '@babel/plugin-proposal-dynamic-import': 7.14.5 + '@babel/plugin-proposal-export-namespace-from': 7.14.5 + '@babel/plugin-proposal-json-strings': 7.14.5 + '@babel/plugin-proposal-logical-assignment-operators': 7.14.5 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.5 + '@babel/plugin-proposal-numeric-separator': 7.14.5 + '@babel/plugin-proposal-object-rest-spread': 7.14.7 + '@babel/plugin-proposal-optional-catch-binding': 7.14.5 + '@babel/plugin-proposal-optional-chaining': 7.14.5 + '@babel/plugin-proposal-private-methods': 7.14.5 + '@babel/plugin-proposal-private-property-in-object': 7.14.5 + '@babel/plugin-proposal-unicode-property-regex': 7.14.5 + '@babel/plugin-syntax-async-generators': 7.8.4 + '@babel/plugin-syntax-class-properties': 7.12.13 + '@babel/plugin-syntax-class-static-block': 7.14.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3 + '@babel/plugin-syntax-export-namespace-from': 7.8.3 + '@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-private-property-in-object': 7.14.5 + '@babel/plugin-syntax-top-level-await': 7.14.5 + '@babel/plugin-transform-arrow-functions': 7.14.5 + '@babel/plugin-transform-async-to-generator': 7.14.5 + '@babel/plugin-transform-block-scoped-functions': 7.14.5 + '@babel/plugin-transform-block-scoping': 7.15.3 + '@babel/plugin-transform-classes': 7.14.9 + '@babel/plugin-transform-computed-properties': 7.14.5 + '@babel/plugin-transform-destructuring': 7.14.7 + '@babel/plugin-transform-dotall-regex': 7.14.5 + '@babel/plugin-transform-duplicate-keys': 7.14.5 + '@babel/plugin-transform-exponentiation-operator': 7.14.5 + '@babel/plugin-transform-for-of': 7.14.5 + '@babel/plugin-transform-function-name': 7.14.5 + '@babel/plugin-transform-literals': 7.14.5 + '@babel/plugin-transform-member-expression-literals': 7.14.5 + '@babel/plugin-transform-modules-amd': 7.14.5 + '@babel/plugin-transform-modules-commonjs': 7.15.0 + '@babel/plugin-transform-modules-systemjs': 7.14.5 + '@babel/plugin-transform-modules-umd': 7.14.5 + '@babel/plugin-transform-named-capturing-groups-regex': 7.14.9 + '@babel/plugin-transform-new-target': 7.14.5 + '@babel/plugin-transform-object-super': 7.14.5 + '@babel/plugin-transform-parameters': 7.14.5 + '@babel/plugin-transform-property-literals': 7.14.5 + '@babel/plugin-transform-regenerator': 7.14.5 + '@babel/plugin-transform-reserved-words': 7.14.5 + '@babel/plugin-transform-shorthand-properties': 7.14.5 + '@babel/plugin-transform-spread': 7.14.6 + '@babel/plugin-transform-sticky-regex': 7.14.5 + '@babel/plugin-transform-template-literals': 7.14.5 + '@babel/plugin-transform-typeof-symbol': 7.14.5 + '@babel/plugin-transform-unicode-escapes': 7.14.5 + '@babel/plugin-transform-unicode-regex': 7.14.5 + '@babel/preset-modules': 0.1.4 + '@babel/types': 7.15.0 + babel-plugin-polyfill-corejs2: 0.2.2 + babel-plugin-polyfill-corejs3: 0.2.4 + babel-plugin-polyfill-regenerator: 0.2.2 + core-js-compat: 3.16.2 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-env/7.14.7_@babel+core@7.14.0: - resolution: {integrity: sha512-itOGqCKLsSUl0Y+1nSfhbuuOlTs0MJk2Iv7iSH+XT/mR8U1zRLO7NjWlYXB47yhK4J/7j+HYty/EhFZDYKa/VA==} + /@babel/preset-env/7.15.0_@babel+core@7.15.0: + resolution: {integrity: sha512-FhEpCNFCcWW3iZLg0L2NPE9UerdtsCR6ZcsGHUX6Om6kbCQeL5QZDqFDmeNHC6/fy6UH3jEge7K4qG5uC9In0Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.14.7 - '@babel/core': 7.14.0 - '@babel/helper-compilation-targets': 7.14.5_@babel+core@7.14.0 + '@babel/compat-data': 7.15.0 + '@babel/core': 7.15.0 + '@babel/helper-compilation-targets': 7.15.0_@babel+core@7.15.0 '@babel/helper-plugin-utils': 7.14.5 '@babel/helper-validator-option': 7.14.5 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-proposal-async-generator-functions': 7.14.7_@babel+core@7.14.0 - '@babel/plugin-proposal-class-properties': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-proposal-class-static-block': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-proposal-dynamic-import': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-proposal-export-namespace-from': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-proposal-json-strings': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-proposal-logical-assignment-operators': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-proposal-numeric-separator': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-proposal-object-rest-spread': 7.14.7_@babel+core@7.14.0 - '@babel/plugin-proposal-optional-catch-binding': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-proposal-private-methods': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-proposal-private-property-in-object': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-proposal-unicode-property-regex': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.14.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.14.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.14.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-arrow-functions': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-async-to-generator': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-block-scoped-functions': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-block-scoping': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-classes': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-computed-properties': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-destructuring': 7.14.7_@babel+core@7.14.0 - '@babel/plugin-transform-dotall-regex': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-duplicate-keys': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-exponentiation-operator': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-for-of': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-function-name': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-literals': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-member-expression-literals': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-modules-amd': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-modules-commonjs': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-modules-systemjs': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-modules-umd': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-named-capturing-groups-regex': 7.14.7_@babel+core@7.14.0 - '@babel/plugin-transform-new-target': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-object-super': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-parameters': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-property-literals': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-regenerator': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-reserved-words': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-shorthand-properties': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-spread': 7.14.6_@babel+core@7.14.0 - '@babel/plugin-transform-sticky-regex': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-template-literals': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-typeof-symbol': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-unicode-escapes': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-unicode-regex': 7.14.5_@babel+core@7.14.0 - '@babel/preset-modules': 0.1.4_@babel+core@7.14.0 - '@babel/types': 7.14.5 - babel-plugin-polyfill-corejs2: 0.2.2_@babel+core@7.14.0 - babel-plugin-polyfill-corejs3: 0.2.3_@babel+core@7.14.0 - babel-plugin-polyfill-regenerator: 0.2.2_@babel+core@7.14.0 - core-js-compat: 3.15.2 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-async-generator-functions': 7.14.9_@babel+core@7.15.0 + '@babel/plugin-proposal-class-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-class-static-block': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-dynamic-import': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-export-namespace-from': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-json-strings': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-logical-assignment-operators': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-numeric-separator': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-object-rest-spread': 7.14.7_@babel+core@7.15.0 + '@babel/plugin-proposal-optional-catch-binding': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-private-methods': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-private-property-in-object': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-unicode-property-regex': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.15.0 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.15.0 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.15.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.15.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-arrow-functions': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-async-to-generator': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-block-scoped-functions': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-block-scoping': 7.15.3_@babel+core@7.15.0 + '@babel/plugin-transform-classes': 7.14.9_@babel+core@7.15.0 + '@babel/plugin-transform-computed-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-destructuring': 7.14.7_@babel+core@7.15.0 + '@babel/plugin-transform-dotall-regex': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-duplicate-keys': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-exponentiation-operator': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-for-of': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-function-name': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-literals': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-member-expression-literals': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-modules-amd': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-modules-commonjs': 7.15.0_@babel+core@7.15.0 + '@babel/plugin-transform-modules-systemjs': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-modules-umd': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-named-capturing-groups-regex': 7.14.9_@babel+core@7.15.0 + '@babel/plugin-transform-new-target': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-object-super': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-parameters': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-property-literals': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-regenerator': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-reserved-words': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-shorthand-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-spread': 7.14.6_@babel+core@7.15.0 + '@babel/plugin-transform-sticky-regex': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-template-literals': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-typeof-symbol': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-unicode-escapes': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-unicode-regex': 7.14.5_@babel+core@7.15.0 + '@babel/preset-modules': 0.1.4_@babel+core@7.15.0 + '@babel/types': 7.15.0 + babel-plugin-polyfill-corejs2: 0.2.2_@babel+core@7.15.0 + babel-plugin-polyfill-corejs3: 0.2.4_@babel+core@7.15.0 + babel-plugin-polyfill-regenerator: 0.2.2_@babel+core@7.15.0 + core-js-compat: 3.16.2 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-modules/0.1.4_@babel+core@7.14.0: + /@babel/preset-modules/0.1.4: resolution: {integrity: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-proposal-unicode-property-regex': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-dotall-regex': 7.12.13_@babel+core@7.14.0 - '@babel/types': 7.14.1 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-proposal-unicode-property-regex': 7.14.5 + '@babel/plugin-transform-dotall-regex': 7.14.5 + '@babel/types': 7.15.0 esutils: 2.0.3 dev: true - /@babel/preset-modules/0.1.4_@babel+core@7.14.3: + /@babel/preset-modules/0.1.4_@babel+core@7.15.0: resolution: {integrity: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/plugin-proposal-unicode-property-regex': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-dotall-regex': 7.12.13_@babel+core@7.14.3 - '@babel/types': 7.14.1 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/plugin-proposal-unicode-property-regex': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-dotall-regex': 7.14.5_@babel+core@7.15.0 + '@babel/types': 7.15.0 esutils: 2.0.3 dev: true - /@babel/preset-react/7.13.13_@babel+core@7.14.3: - resolution: {integrity: sha512-gx+tDLIE06sRjKJkVtpZ/t3mzCDOnPG+ggHZG9lffUbX8+wC739x20YQc9V35Do6ZAxaUc/HhVHIiOzz5MvDmA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-validator-option': 7.12.17 - '@babel/plugin-transform-react-display-name': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-react-jsx': 7.14.3_@babel+core@7.14.3 - '@babel/plugin-transform-react-jsx-development': 7.12.17_@babel+core@7.14.3 - '@babel/plugin-transform-react-pure-annotations': 7.12.1_@babel+core@7.14.3 - dev: true - - /@babel/preset-typescript/7.13.0_@babel+core@7.14.0: - resolution: {integrity: sha512-LXJwxrHy0N3f6gIJlYbLta1D9BDtHpQeqwzM0LIfjDlr6UE/D5Mc7W4iDiQzaE+ks0sTjT26ArcHWnJVt0QiHw==} + /@babel/preset-react/7.14.5_@babel+core@7.15.0: + resolution: {integrity: sha512-XFxBkjyObLvBaAvkx1Ie95Iaq4S/GUEIrejyrntQ/VCMKUYvKLoyKxOBzJ2kjA3b6rC9/KL6KXfDC2GqvLiNqQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-validator-option': 7.12.17 - '@babel/plugin-transform-typescript': 7.13.0_@babel+core@7.14.0 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-validator-option': 7.14.5 + '@babel/plugin-transform-react-display-name': 7.15.1_@babel+core@7.15.0 + '@babel/plugin-transform-react-jsx': 7.14.9_@babel+core@7.15.0 + '@babel/plugin-transform-react-jsx-development': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-react-pure-annotations': 7.14.5_@babel+core@7.15.0 dev: true - /@babel/preset-typescript/7.13.0_@babel+core@7.14.3: - resolution: {integrity: sha512-LXJwxrHy0N3f6gIJlYbLta1D9BDtHpQeqwzM0LIfjDlr6UE/D5Mc7W4iDiQzaE+ks0sTjT26ArcHWnJVt0QiHw==} + /@babel/preset-typescript/7.15.0_@babel+core@7.15.0: + resolution: {integrity: sha512-lt0Y/8V3y06Wq/8H/u0WakrqciZ7Fz7mwPDHWUJAXlABL5hiUG42BNlRXiELNjeWjO5rWmnNKlx+yzJvxezHow==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-plugin-utils': 7.13.0 - '@babel/helper-validator-option': 7.12.17 - '@babel/plugin-transform-typescript': 7.13.0_@babel+core@7.14.3 + '@babel/core': 7.15.0 + '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-validator-option': 7.14.5 + '@babel/plugin-transform-typescript': 7.15.0_@babel+core@7.15.0 transitivePeerDependencies: - supports-color dev: true - /@babel/register/7.13.16_@babel+core@7.14.3: - resolution: {integrity: sha512-dh2t11ysujTwByQjXNgJ48QZ2zcXKQVdV8s0TbeMI0flmtGWCdTwK9tJiACHXPLmncm5+ktNn/diojA45JE4jg==} + /@babel/register/7.15.3_@babel+core@7.15.0: + resolution: {integrity: sha512-mj4IY1ZJkorClxKTImccn4T81+UKTo4Ux0+OFSV9hME1ooqS9UV+pJ6BjD0qXPK4T3XW/KNa79XByjeEMZz+fw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 + '@babel/core': 7.15.0 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -3511,11 +2505,12 @@ packages: source-map-support: 0.5.19 dev: true - /@babel/runtime-corejs3/7.14.0: - resolution: {integrity: sha512-0R0HTZWHLk6G8jIk0FtoX+AatCtKnswS98VhXwGImFc759PJRp4Tru0PQYZofyijTFUr+gT8Mu7sgXVJLQ0ceg==} + /@babel/runtime-corejs3/7.15.3: + resolution: {integrity: sha512-30A3lP+sRL6ml8uhoJSs+8jwpKzbw8CqBvDc1laeptxPm5FahumJxirigcbD2qTs71Sonvj1cyZB0OKGAmxQ+A==} + engines: {node: '>=6.9.0'} dependencies: - core-js-pure: 3.12.0 - regenerator-runtime: 0.13.7 + core-js-pure: 3.16.2 + regenerator-runtime: 0.13.9 dev: true /@babel/runtime/7.12.5: @@ -3524,95 +2519,43 @@ packages: regenerator-runtime: 0.13.7 dev: true - /@babel/runtime/7.14.0: - resolution: {integrity: sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==} - dependencies: - regenerator-runtime: 0.13.7 - dev: true - - /@babel/template/7.12.13: - resolution: {integrity: sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==} + /@babel/runtime/7.15.3: + resolution: {integrity: sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA==} + engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.12.13 - '@babel/parser': 7.14.1 - '@babel/types': 7.14.1 - dev: true + regenerator-runtime: 0.13.9 /@babel/template/7.14.5: resolution: {integrity: sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.14.5 - '@babel/parser': 7.14.7 - '@babel/types': 7.14.5 - dev: true - - /@babel/traverse/7.14.0: - resolution: {integrity: sha512-dZ/a371EE5XNhTHomvtuLTUyx6UEoJmYX+DT5zBCQN3McHemsuIaKKYqsc/fs26BEkHs/lBZy0J571LP5z9kQA==} - dependencies: - '@babel/code-frame': 7.12.13 - '@babel/generator': 7.14.1 - '@babel/helper-function-name': 7.12.13 - '@babel/helper-split-export-declaration': 7.12.13 - '@babel/parser': 7.14.1 - '@babel/types': 7.14.1 - debug: 4.3.1 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/traverse/7.14.2: - resolution: {integrity: sha512-TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA==} - dependencies: - '@babel/code-frame': 7.12.13 - '@babel/generator': 7.14.3 - '@babel/helper-function-name': 7.14.2 - '@babel/helper-split-export-declaration': 7.12.13 - '@babel/parser': 7.14.3 - '@babel/types': 7.14.2 - debug: 4.3.1 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + '@babel/parser': 7.15.3 + '@babel/types': 7.15.0 dev: true - /@babel/traverse/7.14.7: - resolution: {integrity: sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ==} + /@babel/traverse/7.15.0: + resolution: {integrity: sha512-392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.14.5 - '@babel/generator': 7.14.5 + '@babel/generator': 7.15.0 '@babel/helper-function-name': 7.14.5 '@babel/helper-hoist-variables': 7.14.5 '@babel/helper-split-export-declaration': 7.14.5 - '@babel/parser': 7.14.7 - '@babel/types': 7.14.5 + '@babel/parser': 7.15.3 + '@babel/types': 7.15.0 debug: 4.3.2 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/types/7.14.1: - resolution: {integrity: sha512-S13Qe85fzLs3gYRUnrpyeIrBJIMYv33qSTg1qoBwiG6nPKwUWAD9odSzWhEedpwOIzSEI6gbdQIWEMiCI42iBA==} - dependencies: - '@babel/helper-validator-identifier': 7.14.0 - to-fast-properties: 2.0.0 - dev: true - - /@babel/types/7.14.2: - resolution: {integrity: sha512-SdjAG/3DikRHpUOjxZgnkbR11xUlyDMUFJdvnIgZEE16mqmY0BINMmc4//JMJglEmn6i7sq6p+mGrFWyZ98EEw==} - dependencies: - '@babel/helper-validator-identifier': 7.14.0 - to-fast-properties: 2.0.0 - dev: true - - /@babel/types/7.14.5: - resolution: {integrity: sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg==} + /@babel/types/7.15.0: + resolution: {integrity: sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.14.5 + '@babel/helper-validator-identifier': 7.14.9 to-fast-properties: 2.0.0 dev: true @@ -3654,7 +2597,7 @@ packages: peerDependencies: react: '>=16.3.0' dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 '@emotion/cache': 10.0.29 '@emotion/css': 10.0.27 '@emotion/serialize': 0.11.16 @@ -3667,7 +2610,7 @@ packages: peerDependencies: react: '>=16.3.0' dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 '@emotion/cache': 10.0.29 '@emotion/css': 10.0.27 '@emotion/serialize': 0.11.16 @@ -3718,7 +2661,7 @@ packages: '@emotion/core': ^10.0.28 react: '>=16.3.0' dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 '@emotion/core': 10.1.1_react@16.14.0 '@emotion/is-prop-valid': 0.8.8 '@emotion/serialize': 0.11.16 @@ -3732,7 +2675,7 @@ packages: '@emotion/core': ^10.0.28 react: '>=16.3.0' dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 '@emotion/core': 10.1.1 '@emotion/is-prop-valid': 0.8.8 '@emotion/serialize': 0.11.16 @@ -3796,38 +2739,6 @@ packages: - supports-color dev: true - /@hapi/address/2.1.4: - resolution: {integrity: sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==} - deprecated: Moved to 'npm install @sideway/address' - dev: true - - /@hapi/bourne/1.3.2: - resolution: {integrity: sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==} - deprecated: This version has been deprecated and is no longer supported or maintained - dev: true - - /@hapi/hoek/8.5.1: - resolution: {integrity: sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==} - deprecated: This version has been deprecated and is no longer supported or maintained - dev: true - - /@hapi/joi/15.1.1: - resolution: {integrity: sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==} - deprecated: Switch to 'npm install joi' - dependencies: - '@hapi/address': 2.1.4 - '@hapi/bourne': 1.3.2 - '@hapi/hoek': 8.5.1 - '@hapi/topo': 3.1.6 - dev: true - - /@hapi/topo/3.1.6: - resolution: {integrity: sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==} - deprecated: This version has been deprecated and is no longer supported or maintained - dependencies: - '@hapi/hoek': 8.5.1 - dev: true - /@istanbuljs/load-nyc-config/1.1.0: resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} @@ -3854,13 +2765,25 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 14.14.44 - chalk: 4.1.1 + '@types/node': 14.17.10 + chalk: 4.1.2 jest-message-util: 26.6.2 jest-util: 26.6.2 slash: 3.0.0 dev: true + /@jest/console/27.0.6: + resolution: {integrity: sha512-fMlIBocSHPZ3JxgWiDNW/KPj6s+YRd0hicb33IrmelCcjXo/pXPwvuiKFmZz+XuqI/1u7nbUK10zSsWL/1aegg==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + '@jest/types': 27.0.6 + '@types/node': 14.17.10 + chalk: 4.1.2 + jest-message-util: 27.0.6 + jest-util: 27.0.6 + slash: 3.0.0 + dev: true + /@jest/core/26.6.3: resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==} engines: {node: '>= 10.14.2'} @@ -3870,11 +2793,11 @@ packages: '@jest/test-result': 26.6.2 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 14.14.44 + '@types/node': 14.17.10 ansi-escapes: 4.3.2 - chalk: 4.1.1 + chalk: 4.1.2 exit: 0.1.2 - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 jest-changed-files: 26.6.2 jest-config: 26.6.3 jest-haste-map: 26.6.2 @@ -3907,7 +2830,7 @@ packages: dependencies: '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 14.14.44 + '@types/node': 14.17.10 jest-mock: 26.6.2 dev: true @@ -3917,7 +2840,7 @@ packages: dependencies: '@jest/types': 26.6.2 '@sinonjs/fake-timers': 6.0.1 - '@types/node': 14.14.44 + '@types/node': 14.17.10 jest-message-util: 26.6.2 jest-mock: 26.6.2 jest-util: 26.6.2 @@ -3941,11 +2864,11 @@ packages: '@jest/test-result': 26.6.2 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 - chalk: 4.1.1 + chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 - glob: 7.1.6 - graceful-fs: 4.2.6 + glob: 7.1.7 + graceful-fs: 4.2.8 istanbul-lib-coverage: 3.0.0 istanbul-lib-instrument: 4.0.3 istanbul-lib-report: 3.0.0 @@ -3971,7 +2894,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: callsites: 3.1.0 - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 source-map: 0.6.1 dev: true @@ -3985,12 +2908,22 @@ packages: collect-v8-coverage: 1.0.1 dev: true + /@jest/test-result/27.0.6: + resolution: {integrity: sha512-ja/pBOMTufjX4JLEauLxE3LQBPaI2YjGFtXexRAjt1I/MbfNlMx0sytSX3tn5hSLzQsR3Qy2rd0hc1BWojtj9w==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + '@jest/console': 27.0.6 + '@jest/types': 27.0.6 + '@types/istanbul-lib-coverage': 2.0.3 + collect-v8-coverage: 1.0.1 + dev: true + /@jest/test-sequencer/26.6.3: resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==} engines: {node: '>= 10.14.2'} dependencies: '@jest/test-result': 26.6.2 - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 jest-haste-map: 26.6.2 jest-runner: 26.6.3 jest-runtime: 26.6.3 @@ -4006,13 +2939,13 @@ packages: resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/core': 7.14.3 + '@babel/core': 7.15.0 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.0.0 - chalk: 4.1.1 - convert-source-map: 1.7.0 + chalk: 4.1.2 + convert-source-map: 1.8.0 fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 jest-haste-map: 26.6.2 jest-regex-util: 26.0.0 jest-util: 26.6.2 @@ -4025,25 +2958,59 @@ packages: - supports-color dev: true + /@jest/transform/27.0.6: + resolution: {integrity: sha512-rj5Dw+mtIcntAUnMlW/Vju5mr73u8yg+irnHwzgtgoeI6cCPOvUwQ0D1uQtc/APmWgvRweEb1g05pkUpxH3iCA==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + '@babel/core': 7.15.0 + '@jest/types': 27.0.6 + babel-plugin-istanbul: 6.0.0 + chalk: 4.1.2 + convert-source-map: 1.8.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.8 + jest-haste-map: 27.0.6 + jest-regex-util: 27.0.6 + jest-util: 27.0.6 + micromatch: 4.0.4 + pirates: 4.0.1 + slash: 3.0.0 + source-map: 0.6.1 + write-file-atomic: 3.0.3 + transitivePeerDependencies: + - supports-color + dev: true + /@jest/types/26.6.2: resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} engines: {node: '>= 10.14.2'} dependencies: '@types/istanbul-lib-coverage': 2.0.3 - '@types/istanbul-reports': 3.0.0 - '@types/node': 14.14.44 - '@types/yargs': 15.0.13 - chalk: 4.1.1 + '@types/istanbul-reports': 3.0.1 + '@types/node': 14.17.10 + '@types/yargs': 15.0.14 + chalk: 4.1.2 + dev: true + + /@jest/types/27.0.6: + resolution: {integrity: sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + '@types/istanbul-lib-coverage': 2.0.3 + '@types/istanbul-reports': 3.0.1 + '@types/node': 14.17.10 + '@types/yargs': 16.0.4 + chalk: 4.1.2 dev: true - /@linaria/babel-preset/3.0.0-beta.4_@babel+core@7.14.0: + /@linaria/babel-preset/3.0.0-beta.4_@babel+core@7.15.0: resolution: {integrity: sha512-Bjsk4VZUQXK3u04MuLlyP/+/tDd7bWeLXYCOnq4US9H2QFRdka97fm6hH34SRinoHm9fSPCHrj9d+KtY8ge2wg==} peerDependencies: '@babel/core': '>=7' dependencies: - '@babel/core': 7.14.0 - '@babel/generator': 7.14.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@babel/generator': 7.15.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.15.0 '@babel/template': 7.14.5 '@linaria/core': 3.0.0-beta.4 '@linaria/logger': 3.0.0-beta.3 @@ -4054,14 +3021,31 @@ packages: - supports-color dev: true - /@linaria/babel-preset/3.0.0-beta.7_@babel+core@7.14.0: + /@linaria/babel-preset/3.0.0-beta.7: + resolution: {integrity: sha512-NE5f//T9ywXZA+W+Pw1YjWKdzskUpaV7GVkxXhkxLM2la1+S4xOoZR1rzW77bR1C9GFFwzZTeb8XP85whb2ZqQ==} + peerDependencies: + '@babel/core': '>=7' + dependencies: + '@babel/generator': 7.15.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3 + '@babel/template': 7.14.5 + '@linaria/core': 3.0.0-beta.4 + '@linaria/logger': 3.0.0-beta.3 + cosmiconfig: 5.2.1 + source-map: 0.7.3 + stylis: 3.5.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@linaria/babel-preset/3.0.0-beta.7_@babel+core@7.15.0: resolution: {integrity: sha512-NE5f//T9ywXZA+W+Pw1YjWKdzskUpaV7GVkxXhkxLM2la1+S4xOoZR1rzW77bR1C9GFFwzZTeb8XP85whb2ZqQ==} peerDependencies: '@babel/core': '>=7' dependencies: - '@babel/core': 7.14.0 - '@babel/generator': 7.14.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@babel/generator': 7.15.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.15.0 '@babel/template': 7.14.5 '@linaria/core': 3.0.0-beta.4 '@linaria/logger': 3.0.0-beta.3 @@ -4076,6 +3060,17 @@ packages: resolution: {integrity: sha512-NzxeMDxRt57nR6tLFZ8xIstp5ld9JQPIyp9+TKtQZhoX3oJuUru+S4vXPr1Gach6VaqKKKT5T6fmJgJl9MMprw==} dev: true + /@linaria/esbuild/3.0.0-beta.7: + resolution: {integrity: sha512-ImgwFz/dEe3ea3s4m3QiZV7ssEv8oQVgeMxju0FrkEDg02mWBS8tvU3WTJy0hjb9mUfR8fqJbOZSV33dTrtcww==} + peerDependencies: + '@babel/core': '>=7' + dependencies: + '@linaria/babel-preset': 3.0.0-beta.7 + esbuild: 0.12.21 + transitivePeerDependencies: + - supports-color + dev: true + /@linaria/logger/3.0.0-beta.3: resolution: {integrity: sha512-Z2k0RJuA4PffcZcwBN1By8FmcCvcFUe9GHc846B6hNP09zDVhHSFLKJN9NfXJCzJ/9PifOxSUKyOjLtpv3EhGA==} dependencies: @@ -4084,13 +3079,12 @@ packages: - supports-color dev: true - /@linaria/preeval/3.0.0-beta.7_@babel+core@7.14.0: + /@linaria/preeval/3.0.0-beta.7: resolution: {integrity: sha512-fTFgxtjBGKh9P2rsqhBnHTqFo1d8VzznmXKpILM0ClAclVn+FB+KJl+nWyEbQ8nT9/ceRoTwbdZHZ/M3DFHG+w==} peerDependencies: '@babel/core': '>=7' dependencies: - '@babel/core': 7.14.0 - '@linaria/babel-preset': 3.0.0-beta.7_@babel+core@7.14.0 + '@linaria/babel-preset': 3.0.0-beta.7 transitivePeerDependencies: - supports-color dev: true @@ -4104,55 +3098,53 @@ packages: '@linaria/core': 3.0.0-beta.4 dev: true - /@linaria/rollup/3.0.0-beta.7_@babel+core@7.14.0+rollup@2.37.1: + /@linaria/rollup/3.0.0-beta.7_@babel+core@7.15.0: resolution: {integrity: sha512-5bghkIaITLjotLd0c76VQSHcsETYjTSav9a6LNu5EarCi6oZ9prW8n6BaCKBDbG6njLGfSNhdLXrANx9AQOjyw==} peerDependencies: '@babel/core': '>=7' dependencies: - '@babel/core': 7.14.0 - '@linaria/babel-preset': 3.0.0-beta.7_@babel+core@7.14.0 - '@rollup/pluginutils': 4.1.0_rollup@2.37.1 + '@babel/core': 7.15.0 + '@linaria/babel-preset': 3.0.0-beta.7_@babel+core@7.15.0 + '@rollup/pluginutils': 4.1.1 transitivePeerDependencies: - - rollup - supports-color dev: true - /@linaria/shaker/3.0.0-beta.7_@babel+core@7.14.0: + /@linaria/shaker/3.0.0-beta.7: resolution: {integrity: sha512-fWDbbKcS8EiAnoNhTQa+2Or7QyR3Ofyqjtcrb1aeLN2ecVI2u7B5jAZgVPg9euTnhQ2ieUU3G9hh1INkoGKS/A==} peerDependencies: '@babel/core': '>=7' dependencies: - '@babel/core': 7.14.0 - '@babel/generator': 7.14.5 - '@babel/plugin-transform-runtime': 7.14.5_@babel+core@7.14.0 - '@babel/plugin-transform-template-literals': 7.14.5_@babel+core@7.14.0 - '@babel/preset-env': 7.14.7_@babel+core@7.14.0 - '@linaria/babel-preset': 3.0.0-beta.7_@babel+core@7.14.0 + '@babel/generator': 7.15.0 + '@babel/plugin-transform-runtime': 7.15.0 + '@babel/plugin-transform-template-literals': 7.14.5 + '@babel/preset-env': 7.15.0 + '@linaria/babel-preset': 3.0.0-beta.7 '@linaria/logger': 3.0.0-beta.3 - '@linaria/preeval': 3.0.0-beta.7_@babel+core@7.14.0 + '@linaria/preeval': 3.0.0-beta.7 babel-plugin-transform-react-remove-prop-types: 0.4.24 transitivePeerDependencies: - supports-color dev: true - /@linaria/webpack-loader/3.0.0-beta.7_@babel+core@7.14.0: + /@linaria/webpack-loader/3.0.0-beta.7_@babel+core@7.15.0: resolution: {integrity: sha512-tYR+PVAqUEPsOUGeD1jOvpaX3UeBQIvh6JmX5ziYr0faBwOwabmjszCYrQ2FVonpHBsjs6zB1KtG+yUTgSygGA==} dependencies: - '@linaria/webpack4-loader': 3.0.0-beta.7_@babel+core@7.14.0 - '@linaria/webpack5-loader': 3.0.0-beta.7_@babel+core@7.14.0 + '@linaria/webpack4-loader': 3.0.0-beta.7_@babel+core@7.15.0 + '@linaria/webpack5-loader': 3.0.0-beta.7_@babel+core@7.15.0 transitivePeerDependencies: - '@babel/core' - supports-color - webpack dev: true - /@linaria/webpack4-loader/3.0.0-beta.7_@babel+core@7.14.0: + /@linaria/webpack4-loader/3.0.0-beta.7_@babel+core@7.15.0: resolution: {integrity: sha512-B2c5vr9b8igcILM/ZcxE9Vu0J2w7NS9xERTvGD7Kp4TdLnFRpALMTJgYqlk3Gxq4T7RlAEi1vu8kHx65mXqA6g==} peerDependencies: '@babel/core': '>=7' dependencies: - '@babel/core': 7.14.0 - '@linaria/babel-preset': 3.0.0-beta.7_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@linaria/babel-preset': 3.0.0-beta.7_@babel+core@7.15.0 '@linaria/logger': 3.0.0-beta.3 cosmiconfig: 5.2.1 enhanced-resolve: 4.5.0 @@ -4164,14 +3156,14 @@ packages: - supports-color dev: true - /@linaria/webpack5-loader/3.0.0-beta.7_@babel+core@7.14.0: + /@linaria/webpack5-loader/3.0.0-beta.7_@babel+core@7.15.0: resolution: {integrity: sha512-s2C44ml1fjDFjEJS1PFXjgCklOd3KWiG4Z3l+nUuCidncn9abnv18rDkiukUcKGwwAGJ3NhgfhU9SwXPIYFfMw==} peerDependencies: '@babel/core': '>=7' webpack: '>=5' dependencies: - '@babel/core': 7.14.0 - '@linaria/babel-preset': 3.0.0-beta.7_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@linaria/babel-preset': 3.0.0-beta.7_@babel+core@7.15.0 '@linaria/logger': 3.0.0-beta.3 cosmiconfig: 5.2.1 enhanced-resolve: 5.8.2 @@ -4274,6 +3266,14 @@ packages: run-parallel: 1.2.0 dev: true + /@nodelib/fs.scandir/2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + dev: true + /@nodelib/fs.stat/1.1.3: resolution: {integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==} engines: {node: '>= 6'} @@ -4284,6 +3284,11 @@ packages: engines: {node: '>= 8'} dev: true + /@nodelib/fs.stat/2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + dev: true + /@nodelib/fs.walk/1.2.6: resolution: {integrity: sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==} engines: {node: '>= 8'} @@ -4292,6 +3297,14 @@ packages: fastq: 1.11.0 dev: true + /@nodelib/fs.walk/1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.12.0 + dev: true + /@npmcli/move-file/1.1.2: resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} engines: {node: '>=10'} @@ -4300,11 +3313,15 @@ packages: rimraf: 3.0.2 dev: true - /@popperjs/core/2.9.2: - resolution: {integrity: sha512-VZMYa7+fXHdwIq1TDhSXoVmSPEGM/aa+6Aiq3nVVJ9bXr24zScr+NlKFKC3iPljA7ho/GAZr+d2jOf5GIRC30Q==} + /@polka/url/1.0.0-next.17: + resolution: {integrity: sha512-0p1rCgM3LLbAdwBnc7gqgnvjHg9KpbhcSphergHShlkWz8EdPawoMJ3/VbezI0mGC5eKCDzMaPgF9Yca6cKvrg==} + dev: true + + /@popperjs/core/2.9.3: + resolution: {integrity: sha512-xDu17cEfh7Kid/d95kB6tZsLOmSWKCZKtprnhVepjsSaCij+lM3mItSJDuuHDMbCWTh8Ejmebwb+KONcCJ0eXQ==} dev: true - /@preact/async-loader/3.0.1_preact@10.5.13: + /@preact/async-loader/3.0.1_preact@10.5.14: resolution: {integrity: sha512-BoUN24hxEfAQYnWjliAmkZLuliv+ONQi7AWn+/+VOJHTIHmbFiXrvmSxITf7PDkKiK0a5xy4OErZtVVLlk96Tg==} engines: {node: '>=8'} peerDependencies: @@ -4312,30 +3329,36 @@ packages: dependencies: kleur: 4.1.4 loader-utils: 2.0.0 - preact: 10.5.13 + preact: 10.5.14 dev: true - /@prefresh/core/0.8.1_preact@10.5.13: - resolution: {integrity: sha512-woho+Ja8w3pxnZwq68MnWzH9ffdidrpJsV6PDTNIsJOpsLYmfCNxqxGsxIqYw40d1yjg4h6HFGbb6Y9lhyTPNA==} + /@prefresh/babel-plugin/0.4.1: + resolution: {integrity: sha512-gj3ekiYtHlZNz0zFI1z6a9mcYX80Qacw84+2++7V1skvO7kQoV2ux56r8bJkTBbKMVxwAgaYrxxIdUCYlclE7Q==} + dev: true + + /@prefresh/core/1.3.2_preact@10.5.14: + resolution: {integrity: sha512-Iv+uI698KDgWsrKpLvOgN3hmAMyvhVgn09mcnhZ98BUNdg/qrxE7tcUf5yFCImkgqED5/Dcn8G5hFy4IikEDvg==} peerDependencies: preact: ^10.0.0 dependencies: - preact: 10.5.13 + preact: 10.5.14 dev: true - /@prefresh/utils/0.3.1: - resolution: {integrity: sha512-9kLzPWN4teeiKuc+Rle3SF/hyx5lzo35X4rHr+kQXnJT+BaEb1ymDWIHGkv85xjnw8+l6I1r1H7JB4BHOMJfmg==} + /@prefresh/utils/1.1.1: + resolution: {integrity: sha512-MUhT5m2XNN5NsZl4GnpuvlzLo6VSTa/+wBfBd3fiWUvHGhv0GF9hnA1pd//v0uJaKwUnVRQ1hYElxCV7DtYsCQ==} dev: true - /@prefresh/webpack/1.1.0_preact@10.5.13+webpack@4.46.0: - resolution: {integrity: sha512-a3JG2maH3bacDobb4WywVTuqvAyBxJ7dRNSG2Ywv1AytAdgpgNZKJpR4xUTzPTwPGpRkfNOOf4mODqoOZ7W0Sw==} + /@prefresh/webpack/3.3.2_b4d84c08f02729896cbfdece19209372: + resolution: {integrity: sha512-1cX0t5G7IXWO2164sl2O32G02BzDl6C4UUZWfDb0x1CQM1g3It9PSLWd+rIlHfSg4MEU9YHM8e6/OK8uavRJhA==} peerDependencies: + '@prefresh/babel-plugin': ^0.4.0 preact: ^10.4.0 webpack: ^4.0.0 || ^5.0.0 dependencies: - '@prefresh/core': 0.8.1_preact@10.5.13 - '@prefresh/utils': 0.3.1 - preact: 10.5.13 + '@prefresh/babel-plugin': 0.4.1 + '@prefresh/core': 1.3.2_preact@10.5.14 + '@prefresh/utils': 1.1.1 + preact: 10.5.14 webpack: 4.46.0 dev: true @@ -4365,16 +3388,33 @@ packages: react-lifecycles-compat: 3.0.4 dev: true - /@rollup/plugin-alias/3.1.2_rollup@2.37.1: - resolution: {integrity: sha512-wzDnQ6v7CcoRzS0qVwFPrFdYA4Qlr+ookA217Y2Z3DPZE1R8jrFNM3jvGgOf6o6DMjbnQIn5lCIJgHPe1Bt3uw==} + /@rollup/plugin-alias/3.1.5_rollup@2.56.2: + resolution: {integrity: sha512-yzUaSvCC/LJPbl9rnzX3HN7vy0tq7EzHoEiQl1ofh4n5r2Rd5bj/+zcJgaGA76xbw95/JjWQyvHg9rOJp2y0oQ==} engines: {node: '>=8.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: - rollup: 2.37.1 + rollup: 2.56.2 slash: 3.0.0 dev: true + /@rollup/plugin-babel/5.3.0_@babel+core@7.15.0+rollup@2.56.2: + resolution: {integrity: sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw==} + engines: {node: '>= 10.0.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 + rollup: ^1.20.0||^2.0.0 + peerDependenciesMeta: + '@types/babel__core': + optional: true + dependencies: + '@babel/core': 7.15.0 + '@babel/helper-module-imports': 7.14.5 + '@rollup/pluginutils': 3.1.0_rollup@2.56.2 + rollup: 2.56.2 + dev: true + /@rollup/plugin-commonjs/17.0.0_rollup@2.37.1: resolution: {integrity: sha512-/omBIJG1nHQc+bgkYDuLpb/V08QyutP9amOrJRUSlYJZP+b/68gM//D8sxJe3Yry2QnYIr3QjR3x4AlxJEN3GA==} engines: {node: '>= 8.0.0'} @@ -4391,47 +3431,63 @@ packages: rollup: 2.37.1 dev: true - /@rollup/plugin-commonjs/17.1.0_rollup@2.37.1: + /@rollup/plugin-commonjs/17.1.0_rollup@2.37.1: + resolution: {integrity: sha512-PoMdXCw0ZyvjpCMT5aV4nkL0QywxP29sODQsSGeDpr/oI49Qq9tRtAsb/LbYbDzFlOydVEqHmmZWFtXJEAX9ew==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^2.30.0 + dependencies: + '@rollup/pluginutils': 3.1.0_rollup@2.37.1 + commondir: 1.0.1 + estree-walker: 2.0.2 + glob: 7.1.6 + is-reference: 1.2.1 + magic-string: 0.25.7 + resolve: 1.20.0 + rollup: 2.37.1 + dev: true + + /@rollup/plugin-commonjs/17.1.0_rollup@2.43.0: resolution: {integrity: sha512-PoMdXCw0ZyvjpCMT5aV4nkL0QywxP29sODQsSGeDpr/oI49Qq9tRtAsb/LbYbDzFlOydVEqHmmZWFtXJEAX9ew==} engines: {node: '>= 8.0.0'} peerDependencies: rollup: ^2.30.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.37.1 + '@rollup/pluginutils': 3.1.0_rollup@2.43.0 commondir: 1.0.1 estree-walker: 2.0.2 glob: 7.1.6 is-reference: 1.2.1 magic-string: 0.25.7 resolve: 1.20.0 - rollup: 2.37.1 + rollup: 2.43.0 dev: true - /@rollup/plugin-commonjs/17.1.0_rollup@2.43.0: + /@rollup/plugin-commonjs/17.1.0_rollup@2.56.2: resolution: {integrity: sha512-PoMdXCw0ZyvjpCMT5aV4nkL0QywxP29sODQsSGeDpr/oI49Qq9tRtAsb/LbYbDzFlOydVEqHmmZWFtXJEAX9ew==} engines: {node: '>= 8.0.0'} peerDependencies: rollup: ^2.30.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.43.0 + '@rollup/pluginutils': 3.1.0_rollup@2.56.2 commondir: 1.0.1 estree-walker: 2.0.2 - glob: 7.1.6 + glob: 7.1.7 is-reference: 1.2.1 magic-string: 0.25.7 resolve: 1.20.0 - rollup: 2.43.0 + rollup: 2.56.2 dev: true - /@rollup/plugin-image/2.0.6_rollup@2.37.1: - resolution: {integrity: sha512-bB+spXogbPiFjhBS7i8ajUOgOnVwWK3bnJ6VroxKey/q8/EPRkoSh+4O1qPCw97qMIDspF4TlzXVBhZ7nojIPw==} + /@rollup/plugin-image/2.1.0_rollup@2.56.2: + resolution: {integrity: sha512-IiRhjv65A4Rb/9R+gTP2JdIciumkc8c+3xFoUfw3PUkX77SqqzvJ028AfX856E3ZdExMrqY9C9ZVXN46w6rh9A==} engines: {node: '>= 8.0.0'} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.37.1 + '@rollup/pluginutils': 3.1.0_rollup@2.56.2 mini-svg-data-uri: 1.3.3 - rollup: 2.37.1 + rollup: 2.56.2 dev: true /@rollup/plugin-json/4.1.0_rollup@2.37.1: @@ -4452,6 +3508,15 @@ packages: rollup: 2.43.0 dev: true + /@rollup/plugin-json/4.1.0_rollup@2.56.2: + resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 + dependencies: + '@rollup/pluginutils': 3.1.0_rollup@2.56.2 + rollup: 2.56.2 + dev: true + /@rollup/plugin-node-resolve/11.1.0_rollup@2.37.1: resolution: {integrity: sha512-ouBBppRdWJKCllDXGzJ7ZIkYbaq+5TmyP0smt1vdJCFfoZhLi31vhpmjLhyo8lreHf4RoeSNllaWrvSqHpHRog==} engines: {node: '>= 10.0.0'} @@ -4497,18 +3562,19 @@ packages: rollup: 2.43.0 dev: true - /@rollup/plugin-node-resolve/7.1.3_rollup@1.32.1: - resolution: {integrity: sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==} - engines: {node: '>= 8.0.0'} + /@rollup/plugin-node-resolve/11.2.1_rollup@2.56.2: + resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} + engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@1.32.1 - '@types/resolve': 0.0.8 + '@rollup/pluginutils': 3.1.0_rollup@2.56.2 + '@types/resolve': 1.17.1 builtin-modules: 3.2.0 + deepmerge: 4.2.2 is-module: 1.0.0 resolve: 1.20.0 - rollup: 1.32.1 + rollup: 2.56.2 dev: true /@rollup/plugin-replace/2.3.4_rollup@2.37.1: @@ -4521,27 +3587,27 @@ packages: rollup: 2.37.1 dev: true - /@rollup/plugin-replace/2.4.2_rollup@1.32.1: + /@rollup/plugin-replace/2.4.2_rollup@2.43.0: resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@1.32.1 + '@rollup/pluginutils': 3.1.0_rollup@2.43.0 magic-string: 0.25.7 - rollup: 1.32.1 + rollup: 2.43.0 dev: true - /@rollup/plugin-replace/2.4.2_rollup@2.43.0: + /@rollup/plugin-replace/2.4.2_rollup@2.56.2: resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.43.0 + '@rollup/pluginutils': 3.1.0_rollup@2.56.2 magic-string: 0.25.7 - rollup: 2.43.0 + rollup: 2.56.2 dev: true - /@rollup/pluginutils/3.1.0_rollup@1.32.1: + /@rollup/pluginutils/3.1.0_rollup@2.37.1: resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -4550,10 +3616,10 @@ packages: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.2.2 - rollup: 1.32.1 + rollup: 2.37.1 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.37.1: + /@rollup/pluginutils/3.1.0_rollup@2.43.0: resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -4562,10 +3628,10 @@ packages: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.2.2 - rollup: 2.37.1 + rollup: 2.43.0 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.43.0: + /@rollup/pluginutils/3.1.0_rollup@2.56.2: resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -4573,19 +3639,16 @@ packages: dependencies: '@types/estree': 0.0.39 estree-walker: 1.0.1 - picomatch: 2.2.2 - rollup: 2.43.0 + picomatch: 2.3.0 + rollup: 2.56.2 dev: true - /@rollup/pluginutils/4.1.0_rollup@2.37.1: - resolution: {integrity: sha512-TrBhfJkFxA+ER+ew2U2/fHbebhLT/l/2pRk0hfj9KusXUuRXd2v0R58AfaZK9VXDQ4TogOSEmICVrQAA3zFnHQ==} + /@rollup/pluginutils/4.1.1: + resolution: {integrity: sha512-clDjivHqWGXi7u+0d2r2sBi4Ie6VLEAzWMIkvJLnDmxoOhBYOTfzGbOQBA32THHm11/LiJbd01tJUpJsbshSWQ==} engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 dependencies: estree-walker: 2.0.2 picomatch: 2.3.0 - rollup: 2.37.1 dev: true /@rushstack/node-core-library/3.35.2: @@ -4636,8 +3699,8 @@ packages: '@sinonjs/commons': 1.8.3 dev: true - /@storybook/addon-a11y/6.2.9: - resolution: {integrity: sha512-wo7nFpEqEeiHDsRKnhqe2gIHZ9Z7/Aefw570kBgReU5tKlmrb5rFAfTVBWGBZlLHWeJMsFsRsWrWrmkf1B52OQ==} + /@storybook/addon-a11y/6.3.7: + resolution: {integrity: sha512-Z5Lhxm8r5CkPW9FYf6zmAk9c7IhUeUQZxKZeEWGZdOvcjQ32rtg4IYvO2SHgWNrEKBdxxFm3pMiyK3wylQLfsQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -4647,28 +3710,28 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.2.9 - '@storybook/api': 6.2.9 - '@storybook/channels': 6.2.9 - '@storybook/client-api': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/components': 6.2.9 - '@storybook/core-events': 6.2.9 - '@storybook/theming': 6.2.9 - axe-core: 4.2.1 - core-js: 3.13.0 + '@storybook/addons': 6.3.7 + '@storybook/api': 6.3.7 + '@storybook/channels': 6.3.7 + '@storybook/client-api': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/components': 6.3.7 + '@storybook/core-events': 6.3.7 + '@storybook/theming': 6.3.7 + axe-core: 4.3.2 + core-js: 3.16.2 global: 4.4.0 lodash: 4.17.21 react-sizeme: 3.0.1 - regenerator-runtime: 0.13.7 - ts-dedent: 2.1.1 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/addon-actions/6.2.9: - resolution: {integrity: sha512-CkUYSMt+fvuHfWvtDzlhhaeQBCWlUo99xdL88JTsTml05P43bIHZNIRv2QJ8DwhHuxdIPeHKLmz9y/ymOagOnw==} + /@storybook/addon-actions/6.3.7: + resolution: {integrity: sha512-CEAmztbVt47Gw1o6Iw0VP20tuvISCEKk9CS/rCjHtb4ubby6+j/bkp3pkEUQIbyLdHiLWFMz0ZJdyA/U6T6jCw==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -4678,29 +3741,29 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.2.9 - '@storybook/api': 6.2.9 - '@storybook/client-api': 6.2.9 - '@storybook/components': 6.2.9 - '@storybook/core-events': 6.2.9 - '@storybook/theming': 6.2.9 - core-js: 3.13.0 + '@storybook/addons': 6.3.7 + '@storybook/api': 6.3.7 + '@storybook/client-api': 6.3.7 + '@storybook/components': 6.3.7 + '@storybook/core-events': 6.3.7 + '@storybook/theming': 6.3.7 + core-js: 3.16.2 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 - polished: 4.1.2 + polished: 4.1.3 prop-types: 15.7.2 react-inspector: 5.1.1 - regenerator-runtime: 0.13.7 - ts-dedent: 2.1.1 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 util-deprecate: 1.0.2 uuid-browser: 3.1.0 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/addon-backgrounds/6.2.9: - resolution: {integrity: sha512-oPSdeoUuvaXshY5sQRagbYXpr6ZEVUuLhGYBnZTlvm19QMeNCXQE+rdlgzcgyafq4mc1FI/udE2MpJ1dhfS6pQ==} + /@storybook/addon-backgrounds/6.3.7: + resolution: {integrity: sha512-NH95pDNILgCXeegbckG+P3zxT5SPmgkAq29P+e3gX7YBOTc6885YCFMJLFpuDMwW4lA0ovXosp4PaUHLsBnLDg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -4710,24 +3773,24 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.2.9 - '@storybook/api': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/components': 6.2.9 - '@storybook/core-events': 6.2.9 - '@storybook/theming': 6.2.9 - core-js: 3.13.0 + '@storybook/addons': 6.3.7 + '@storybook/api': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/components': 6.3.7 + '@storybook/core-events': 6.3.7 + '@storybook/theming': 6.3.7 + core-js: 3.16.2 global: 4.4.0 memoizerific: 1.11.3 - regenerator-runtime: 0.13.7 - ts-dedent: 2.1.1 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/addon-controls/6.2.9: - resolution: {integrity: sha512-NvXAJ7I5U4CLxv4wL3/Ne9rehJlgnSmQlLIG/z6dg5zm7JIb48LT4IY6GzjlUP5LkjmO9KJ8gJC249uRt2iPBQ==} + /@storybook/addon-controls/6.3.7: + resolution: {integrity: sha512-VHOv5XZ0MQ45k6X7AUrMIxGkm7sgIiPwsvajnoeMe7UwS3ngbTb0Q0raLqI/L5jLM/jyQwfpUO9isA6cztGTEQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -4737,25 +3800,27 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.2.9 - '@storybook/api': 6.2.9 - '@storybook/client-api': 6.2.9 - '@storybook/components': 6.2.9 - '@storybook/node-logger': 6.2.9 - '@storybook/theming': 6.2.9 - core-js: 3.13.0 - ts-dedent: 2.1.1 + '@storybook/addons': 6.3.7 + '@storybook/api': 6.3.7 + '@storybook/client-api': 6.3.7 + '@storybook/components': 6.3.7 + '@storybook/node-logger': 6.3.7 + '@storybook/theming': 6.3.7 + core-js: 3.16.2 + ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/addon-docs/6.2.9_2c1175e136205d5b41ea3884efbc04c9: - resolution: {integrity: sha512-qOtwgiqI3LMqT0eXYNV6ykp7qSu0LQGeXxy3wOBGuDDqAizfgnAjomYEWGFcyKp5ahV7HCRCjxbixAklFPUmyw==} + /@storybook/addon-docs/6.3.7_typescript@4.3.5: + resolution: {integrity: sha512-cyuyoLuB5ELhbrXgnZneDCHqNq1wSdWZ4dzdHy1E5WwLPEhLlD6INfEsm8gnDIb4IncYuzMhK3XYBDd7d3ijOg==} peerDependencies: - '@storybook/angular': 6.2.9 - '@storybook/vue': 6.2.9 - '@storybook/vue3': 6.2.9 - babel-loader: ^8.0.0 + '@storybook/angular': 6.3.7 + '@storybook/vue': 6.3.7 + '@storybook/vue3': 6.3.7 + '@storybook/web-components': 6.3.7 + lit: ^2.0.0-rc.1 + lit-html: ^1.4.1 || ^2.0.0-rc.3 react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 svelte: ^3.31.2 @@ -4769,6 +3834,12 @@ packages: optional: true '@storybook/vue3': optional: true + '@storybook/web-components': + optional: true + lit: + optional: true + lit-html: + optional: true react: optional: true react-dom: @@ -4782,33 +3853,33 @@ packages: webpack: optional: true dependencies: - '@babel/core': 7.14.3 - '@babel/generator': 7.14.3 - '@babel/parser': 7.14.3 - '@babel/plugin-transform-react-jsx': 7.14.3_@babel+core@7.14.3 - '@babel/preset-env': 7.14.2_@babel+core@7.14.3 + '@babel/core': 7.15.0 + '@babel/generator': 7.15.0 + '@babel/parser': 7.15.3 + '@babel/plugin-transform-react-jsx': 7.14.9_@babel+core@7.15.0 + '@babel/preset-env': 7.15.0_@babel+core@7.15.0 '@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.2.9 - '@storybook/api': 6.2.9 - '@storybook/builder-webpack4': 6.2.9_typescript@4.1.3 - '@storybook/client-api': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/components': 6.2.9 - '@storybook/core': 6.2.9_typescript@4.1.3 - '@storybook/core-events': 6.2.9 + '@storybook/addons': 6.3.7 + '@storybook/api': 6.3.7 + '@storybook/builder-webpack4': 6.3.7_typescript@4.3.5 + '@storybook/client-api': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/components': 6.3.7 + '@storybook/core': 6.3.7_f0b419a7e119055c71dcaf6063a7ba7a + '@storybook/core-events': 6.3.7 '@storybook/csf': 0.0.1 - '@storybook/node-logger': 6.2.9 - '@storybook/postinstall': 6.2.9 - '@storybook/source-loader': 6.2.9 - '@storybook/theming': 6.2.9 + '@storybook/csf-tools': 6.3.7_@babel+core@7.15.0 + '@storybook/node-logger': 6.3.7 + '@storybook/postinstall': 6.3.7 + '@storybook/source-loader': 6.3.7 + '@storybook/theming': 6.3.7 acorn: 7.4.1 - acorn-jsx: 5.3.1_acorn@7.4.1 + acorn-jsx: 5.3.2_acorn@7.4.1 acorn-walk: 7.2.0 - babel-loader: 8.2.2_@babel+core@7.14.0 - core-js: 3.13.0 + core-js: 3.16.2 doctrine: 3.0.0 escodegen: 2.0.0 fast-deep-equal: 3.1.3 @@ -4817,16 +3888,18 @@ packages: js-string-escape: 1.0.1 loader-utils: 2.0.0 lodash: 4.17.21 + p-limit: 3.1.0 prettier: 2.2.1 prop-types: 15.7.2 react-element-to-jsx-string: 14.3.2 - regenerator-runtime: 0.13.7 + regenerator-runtime: 0.13.9 remark-external-links: 8.0.0 - remark-slug: 6.0.0 - ts-dedent: 2.1.1 + remark-slug: 6.1.0 + ts-dedent: 2.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - '@storybook/builder-webpack5' + - '@storybook/manager-webpack5' - '@types/react' - supports-color - typescript @@ -4834,18 +3907,24 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.2.9_73bef2aa0eff460ee552903a16f56020: - resolution: {integrity: sha512-zXsV4e1TCkHyDwi7hew4h9eJfDW++f2BNKzTif+DAcjPUVFDp7yC17gLjS5IhOjcQk+db0UUlFSx/OrTxhy7Xw==} + /@storybook/addon-essentials/6.3.7_193cc68279dba09bf08a9695eff9545a: + resolution: {integrity: sha512-ZWAW3qMFrrpfSekmCZibp/ivnohFLJdJweiIA0CLnuCNuuK9kQdpFahWdvyBy5NlCj3UJwB7epTZYZyHqYW7UQ==} peerDependencies: '@babel/core': ^7.9.6 - '@storybook/vue': 6.2.9 + '@storybook/vue': 6.3.7 + '@storybook/web-components': 6.3.7 babel-loader: ^8.0.0 + lit-html: ^1.4.1 || ^2.0.0-rc.3 react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 webpack: '*' peerDependenciesMeta: '@storybook/vue': optional: true + '@storybook/web-components': + optional: true + lit-html: + optional: true react: optional: true react-dom: @@ -4853,25 +3932,32 @@ packages: webpack: optional: true dependencies: - '@babel/core': 7.14.0 - '@storybook/addon-actions': 6.2.9 - '@storybook/addon-backgrounds': 6.2.9 - '@storybook/addon-controls': 6.2.9 - '@storybook/addon-docs': 6.2.9_2c1175e136205d5b41ea3884efbc04c9 - '@storybook/addon-toolbars': 6.2.9 - '@storybook/addon-viewport': 6.2.9 - '@storybook/addons': 6.2.9 - '@storybook/api': 6.2.9 - '@storybook/node-logger': 6.2.9 - babel-loader: 8.2.2_@babel+core@7.14.0 - core-js: 3.13.0 - regenerator-runtime: 0.13.7 - ts-dedent: 2.1.1 + '@babel/core': 7.15.0 + '@storybook/addon-actions': 6.3.7 + '@storybook/addon-backgrounds': 6.3.7 + '@storybook/addon-controls': 6.3.7 + '@storybook/addon-docs': 6.3.7_typescript@4.3.5 + '@storybook/addon-measure': 2.0.0_a4b77c99d63b159b69a1438c89904ed9 + '@storybook/addon-toolbars': 6.3.7 + '@storybook/addon-viewport': 6.3.7 + '@storybook/addons': 6.3.7 + '@storybook/api': 6.3.7 + '@storybook/node-logger': 6.3.7 + babel-loader: 8.2.2_@babel+core@7.15.0 + core-js: 3.16.2 + regenerator-runtime: 0.13.9 + storybook-addon-outline: 1.4.1 + ts-dedent: 2.2.0 transitivePeerDependencies: - '@storybook/angular' - '@storybook/builder-webpack5' + - '@storybook/components' + - '@storybook/core-events' + - '@storybook/manager-webpack5' + - '@storybook/theming' - '@storybook/vue3' - '@types/react' + - lit - supports-color - svelte - sveltedoc-parser @@ -4881,8 +3967,28 @@ packages: - webpack-command dev: true - /@storybook/addon-toolbars/6.2.9: - resolution: {integrity: sha512-4WjIofN5npBPNZ8v1UhzPeATB9RnAWRH/y1AVS1HB+zl6Ku92o7aOMqVxs8zR1oSSmtkHh/rcUcpATFKjuofdw==} + /@storybook/addon-measure/2.0.0_a4b77c99d63b159b69a1438c89904ed9: + resolution: {integrity: sha512-ZhdT++cX+L9LwjhGYggvYUUVQH/MGn2rwbrAwCMzA/f2QTFvkjxzX8nDgMxIhaLCDC+gHIxfJG2wrWN0jkBr3g==} + peerDependencies: + '@storybook/addons': ^6.3.0 + '@storybook/api': ^6.3.0 + '@storybook/components': ^6.3.0 + '@storybook/core-events': ^6.3.0 + '@storybook/theming': ^6.3.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + dependencies: + '@storybook/addons': 6.3.7 + '@storybook/api': 6.3.7 + dev: true + + /@storybook/addon-toolbars/6.3.7: + resolution: {integrity: sha512-UTIurbl2WXj/jSOj7ndqQ/WtG7kSpGp62T7gwEZTZ+h/3sJn+bixofBD/7+sXa4hWW07YgTXV547DMhzp5bygg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -4892,17 +3998,19 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.2.9 - '@storybook/api': 6.2.9 - '@storybook/client-api': 6.2.9 - '@storybook/components': 6.2.9 - core-js: 3.13.0 + '@storybook/addons': 6.3.7 + '@storybook/api': 6.3.7 + '@storybook/client-api': 6.3.7 + '@storybook/components': 6.3.7 + '@storybook/theming': 6.3.7 + core-js: 3.16.2 + regenerator-runtime: 0.13.9 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/addon-viewport/6.2.9: - resolution: {integrity: sha512-IK2mu5njmfcAT967SJtBOY2B6NPMikySZga9QuaLdSpQxPd3vXKNMVG1CjnduMLeDaAoUlvlJISeEPbYGuE+1A==} + /@storybook/addon-viewport/6.3.7: + resolution: {integrity: sha512-Hdv2QoVVfe/YuMVQKVVnfCCuEoTqTa8Ck7AOKz31VSAliBFhXewP51oKhw9F6mTyvCozMHX6EBtBzN06KyrPyw==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -4912,101 +4020,101 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.2.9 - '@storybook/api': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/components': 6.2.9 - '@storybook/core-events': 6.2.9 - '@storybook/theming': 6.2.9 - core-js: 3.13.0 + '@storybook/addons': 6.3.7 + '@storybook/api': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/components': 6.3.7 + '@storybook/core-events': 6.3.7 + '@storybook/theming': 6.3.7 + core-js: 3.16.2 global: 4.4.0 memoizerific: 1.11.3 prop-types: 15.7.2 - regenerator-runtime: 0.13.7 + regenerator-runtime: 0.13.9 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/addons/6.2.9: - resolution: {integrity: sha512-GnmEKbJwiN1jncN9NSA8CuR1i2XAlasPcl/Zn0jkfV9WitQeczVcJCPw86SGH84AD+tTBCyF2i9UC0KaOV1YBQ==} + /@storybook/addons/6.3.7: + resolution: {integrity: sha512-9stVjTcc52bqqh7YQex/LpSjJ4e2Czm4/ZYDjIiNy0p4OZEx+yLhL5mZzMWh2NQd6vv+pHASBSxf2IeaR5511A==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/api': 6.2.9 - '@storybook/channels': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/core-events': 6.2.9 - '@storybook/router': 6.2.9 - '@storybook/theming': 6.2.9 - core-js: 3.13.0 + '@storybook/api': 6.3.7 + '@storybook/channels': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/core-events': 6.3.7 + '@storybook/router': 6.3.7 + '@storybook/theming': 6.3.7 + core-js: 3.16.2 global: 4.4.0 - regenerator-runtime: 0.13.7 + regenerator-runtime: 0.13.9 dev: true - /@storybook/addons/6.2.9_react-dom@16.14.0+react@16.14.0: - resolution: {integrity: sha512-GnmEKbJwiN1jncN9NSA8CuR1i2XAlasPcl/Zn0jkfV9WitQeczVcJCPw86SGH84AD+tTBCyF2i9UC0KaOV1YBQ==} + /@storybook/addons/6.3.7_react-dom@16.14.0+react@16.14.0: + resolution: {integrity: sha512-9stVjTcc52bqqh7YQex/LpSjJ4e2Czm4/ZYDjIiNy0p4OZEx+yLhL5mZzMWh2NQd6vv+pHASBSxf2IeaR5511A==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/api': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/channels': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/core-events': 6.2.9 - '@storybook/router': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/theming': 6.2.9_react-dom@16.14.0+react@16.14.0 - core-js: 3.13.0 + '@storybook/api': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/channels': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/core-events': 6.3.7 + '@storybook/router': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/theming': 6.3.7_react-dom@16.14.0+react@16.14.0 + core-js: 3.16.2 global: 4.4.0 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 - regenerator-runtime: 0.13.7 + regenerator-runtime: 0.13.9 dev: true - /@storybook/api/6.2.9: - resolution: {integrity: sha512-okkA3HAScE9tGnYBrjTOcgzT+L1lRHNoEh3ZfGgh1u/XNEyHGNkj4grvkd6nX7BzRcYQ/l2VkcKCqmOjUnSkVQ==} + /@storybook/api/6.3.7: + resolution: {integrity: sha512-57al8mxmE9agXZGo8syRQ8UhvGnDC9zkuwkBPXchESYYVkm3Mc54RTvdAOYDiy85VS4JxiGOywHayCaRwgUddQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: '@reach/router': 1.3.4 - '@storybook/channels': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/core-events': 6.2.9 + '@storybook/channels': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/core-events': 6.3.7 '@storybook/csf': 0.0.1 - '@storybook/router': 6.2.9 + '@storybook/router': 6.3.7 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.2.9 - '@types/reach__router': 1.3.7 - core-js: 3.13.0 + '@storybook/theming': 6.3.7 + '@types/reach__router': 1.3.9 + core-js: 3.16.2 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 qs: 6.10.1 - regenerator-runtime: 0.13.7 + regenerator-runtime: 0.13.9 store2: 2.12.0 telejson: 5.3.3 - ts-dedent: 2.1.1 + ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/api/6.2.9_react-dom@16.14.0+react@16.14.0: - resolution: {integrity: sha512-okkA3HAScE9tGnYBrjTOcgzT+L1lRHNoEh3ZfGgh1u/XNEyHGNkj4grvkd6nX7BzRcYQ/l2VkcKCqmOjUnSkVQ==} + /@storybook/api/6.3.7_react-dom@16.14.0+react@16.14.0: + resolution: {integrity: sha512-57al8mxmE9agXZGo8syRQ8UhvGnDC9zkuwkBPXchESYYVkm3Mc54RTvdAOYDiy85VS4JxiGOywHayCaRwgUddQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: '@reach/router': 1.3.4_react-dom@16.14.0+react@16.14.0 - '@storybook/channels': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/core-events': 6.2.9 + '@storybook/channels': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/core-events': 6.3.7 '@storybook/csf': 0.0.1 - '@storybook/router': 6.2.9_react-dom@16.14.0+react@16.14.0 + '@storybook/router': 6.3.7_react-dom@16.14.0+react@16.14.0 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@types/reach__router': 1.3.7 - core-js: 3.13.0 + '@storybook/theming': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@types/reach__router': 1.3.9 + core-js: 3.16.2 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 @@ -5014,15 +4122,15 @@ packages: qs: 6.10.1 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 - regenerator-runtime: 0.13.7 + regenerator-runtime: 0.13.9 store2: 2.12.0 telejson: 5.3.3 - ts-dedent: 2.1.1 + ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/builder-webpack4/6.2.9_57e9b9bc897643e588d334e009fcfb51: - resolution: {integrity: sha512-swECic1huVdj+B+iRJIQ8ds59HuPVE4fmhI+j/nhw0CQCsgAEKqDlOQVYEimW6nZX8GO4WxNm6tiiRzxixejbw==} + /@storybook/builder-webpack4/6.3.7_8073bd74a106ff14517e8eecceb690e6: + resolution: {integrity: sha512-M5envblMzAUrNqP1+ouKiL8iSIW/90+kBRU2QeWlZoZl1ib+fiFoKk06cgbaC70Bx1lU8nOnI/VBvB5pLhXLaw==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -5031,49 +4139,49 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.14.3 - '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-proposal-decorators': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-export-default-from': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-object-rest-spread': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-optional-chaining': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-private-methods': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.3 - '@babel/plugin-transform-arrow-functions': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-block-scoping': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-classes': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-destructuring': 7.13.17_@babel+core@7.14.3 - '@babel/plugin-transform-for-of': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-parameters': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-spread': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-template-literals': 7.13.0_@babel+core@7.14.3 - '@babel/preset-env': 7.14.2_@babel+core@7.14.3 - '@babel/preset-react': 7.13.13_@babel+core@7.14.3 - '@babel/preset-typescript': 7.13.0_@babel+core@7.14.3 - '@storybook/addons': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/api': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/channel-postmessage': 6.2.9 - '@storybook/channels': 6.2.9 - '@storybook/client-api': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/client-logger': 6.2.9 - '@storybook/components': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/core-common': 6.2.9_57e9b9bc897643e588d334e009fcfb51 - '@storybook/core-events': 6.2.9 - '@storybook/node-logger': 6.2.9 - '@storybook/router': 6.2.9_react-dom@16.14.0+react@16.14.0 + '@babel/core': 7.15.0 + '@babel/plugin-proposal-class-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-decorators': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-export-default-from': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-object-rest-spread': 7.14.7_@babel+core@7.15.0 + '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-private-methods': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-transform-arrow-functions': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-block-scoping': 7.15.3_@babel+core@7.15.0 + '@babel/plugin-transform-classes': 7.14.9_@babel+core@7.15.0 + '@babel/plugin-transform-destructuring': 7.14.7_@babel+core@7.15.0 + '@babel/plugin-transform-for-of': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-parameters': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-shorthand-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-spread': 7.14.6_@babel+core@7.15.0 + '@babel/plugin-transform-template-literals': 7.14.5_@babel+core@7.15.0 + '@babel/preset-env': 7.15.0_@babel+core@7.15.0 + '@babel/preset-react': 7.14.5_@babel+core@7.15.0 + '@babel/preset-typescript': 7.15.0_@babel+core@7.15.0 + '@storybook/addons': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/api': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/channel-postmessage': 6.3.7 + '@storybook/channels': 6.3.7 + '@storybook/client-api': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/client-logger': 6.3.7 + '@storybook/components': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/core-common': 6.3.7_8073bd74a106ff14517e8eecceb690e6 + '@storybook/core-events': 6.3.7 + '@storybook/node-logger': 6.3.7 + '@storybook/router': 6.3.7_react-dom@16.14.0+react@16.14.0 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/ui': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@types/node': 14.17.1 - '@types/webpack': 4.41.29 + '@storybook/theming': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/ui': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@types/node': 14.17.10 + '@types/webpack': 4.41.30 autoprefixer: 9.8.6 - babel-loader: 8.2.2_105470dfa535e5f605a4a54ef7d81e87 + babel-loader: 8.2.2_be352a5a80662835a7707f972edfcfde babel-plugin-macros: 2.8.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.14.3 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.15.0 case-sensitive-paths-webpack-plugin: 2.4.0 - core-js: 3.13.0 + core-js: 3.16.2 css-loader: 3.6.0_webpack@4.46.0 dotenv-webpack: 1.8.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 @@ -5084,19 +4192,19 @@ packages: glob-promise: 3.4.0_glob@7.1.7 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.1.3 - postcss: 7.0.35 + pnp-webpack-plugin: 1.6.4_typescript@4.3.5 + postcss: 7.0.36 postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.3.0_postcss@7.0.35+webpack@4.46.0 + postcss-loader: 4.3.0_postcss@7.0.36+webpack@4.46.0 raw-loader: 4.0.2_webpack@4.46.0 react: 16.14.0 react-dev-utils: 11.0.4 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: 3.1.0_webpack@4.46.0 - ts-dedent: 2.1.1 - typescript: 4.1.3 + terser-webpack-plugin: 4.2.3_webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.3.5 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -5111,8 +4219,8 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack4/6.2.9_typescript@4.1.3: - resolution: {integrity: sha512-swECic1huVdj+B+iRJIQ8ds59HuPVE4fmhI+j/nhw0CQCsgAEKqDlOQVYEimW6nZX8GO4WxNm6tiiRzxixejbw==} + /@storybook/builder-webpack4/6.3.7_typescript@4.3.5: + resolution: {integrity: sha512-M5envblMzAUrNqP1+ouKiL8iSIW/90+kBRU2QeWlZoZl1ib+fiFoKk06cgbaC70Bx1lU8nOnI/VBvB5pLhXLaw==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -5121,49 +4229,49 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.14.3 - '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-proposal-decorators': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-export-default-from': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-object-rest-spread': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-optional-chaining': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-private-methods': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.3 - '@babel/plugin-transform-arrow-functions': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-block-scoping': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-classes': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-destructuring': 7.13.17_@babel+core@7.14.3 - '@babel/plugin-transform-for-of': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-parameters': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-spread': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-template-literals': 7.13.0_@babel+core@7.14.3 - '@babel/preset-env': 7.14.2_@babel+core@7.14.3 - '@babel/preset-react': 7.13.13_@babel+core@7.14.3 - '@babel/preset-typescript': 7.13.0_@babel+core@7.14.3 - '@storybook/addons': 6.2.9 - '@storybook/api': 6.2.9 - '@storybook/channel-postmessage': 6.2.9 - '@storybook/channels': 6.2.9 - '@storybook/client-api': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/components': 6.2.9 - '@storybook/core-common': 6.2.9_typescript@4.1.3 - '@storybook/core-events': 6.2.9 - '@storybook/node-logger': 6.2.9 - '@storybook/router': 6.2.9 + '@babel/core': 7.15.0 + '@babel/plugin-proposal-class-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-decorators': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-export-default-from': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-object-rest-spread': 7.14.7_@babel+core@7.15.0 + '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-private-methods': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-transform-arrow-functions': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-block-scoping': 7.15.3_@babel+core@7.15.0 + '@babel/plugin-transform-classes': 7.14.9_@babel+core@7.15.0 + '@babel/plugin-transform-destructuring': 7.14.7_@babel+core@7.15.0 + '@babel/plugin-transform-for-of': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-parameters': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-shorthand-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-spread': 7.14.6_@babel+core@7.15.0 + '@babel/plugin-transform-template-literals': 7.14.5_@babel+core@7.15.0 + '@babel/preset-env': 7.15.0_@babel+core@7.15.0 + '@babel/preset-react': 7.14.5_@babel+core@7.15.0 + '@babel/preset-typescript': 7.15.0_@babel+core@7.15.0 + '@storybook/addons': 6.3.7 + '@storybook/api': 6.3.7 + '@storybook/channel-postmessage': 6.3.7 + '@storybook/channels': 6.3.7 + '@storybook/client-api': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/components': 6.3.7 + '@storybook/core-common': 6.3.7_typescript@4.3.5 + '@storybook/core-events': 6.3.7 + '@storybook/node-logger': 6.3.7 + '@storybook/router': 6.3.7 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.2.9 - '@storybook/ui': 6.2.9 - '@types/node': 14.17.1 - '@types/webpack': 4.41.29 + '@storybook/theming': 6.3.7 + '@storybook/ui': 6.3.7 + '@types/node': 14.17.10 + '@types/webpack': 4.41.30 autoprefixer: 9.8.6 - babel-loader: 8.2.2_105470dfa535e5f605a4a54ef7d81e87 + babel-loader: 8.2.2_be352a5a80662835a7707f972edfcfde babel-plugin-macros: 2.8.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.14.3 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.15.0 case-sensitive-paths-webpack-plugin: 2.4.0 - core-js: 3.13.0 + core-js: 3.16.2 css-loader: 3.6.0_webpack@4.46.0 dotenv-webpack: 1.8.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 @@ -5174,17 +4282,17 @@ packages: glob-promise: 3.4.0_glob@7.1.7 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.1.3 - postcss: 7.0.35 + pnp-webpack-plugin: 1.6.4_typescript@4.3.5 + postcss: 7.0.36 postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.3.0_postcss@7.0.35+webpack@4.46.0 + postcss-loader: 4.3.0_postcss@7.0.36+webpack@4.46.0 raw-loader: 4.0.2_webpack@4.46.0 react-dev-utils: 11.0.4 stable: 0.1.8 style-loader: 1.3.0_webpack@4.46.0 - terser-webpack-plugin: 3.1.0_webpack@4.46.0 - ts-dedent: 2.1.1 - typescript: 4.1.3 + terser-webpack-plugin: 4.2.3_webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.3.5 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -5199,159 +4307,159 @@ packages: - webpack-command dev: true - /@storybook/channel-postmessage/6.2.9: - resolution: {integrity: sha512-OqV+gLeeCHR0KExsIz0B7gD17Cjd9D+I75qnBsLWM9inWO5kc/WZ5svw8Bvjlcm6snWpvxUaT8L+svuqcPSmww==} + /@storybook/channel-postmessage/6.3.7: + resolution: {integrity: sha512-Cmw8HRkeSF1yUFLfEIUIkUICyCXX8x5Ol/5QPbiW9HPE2hbZtYROCcg4bmWqdq59N0Tp9FQNSn+9ZygPgqQtNw==} dependencies: - '@storybook/channels': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/core-events': 6.2.9 - core-js: 3.13.0 + '@storybook/channels': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/core-events': 6.3.7 + core-js: 3.16.2 global: 4.4.0 qs: 6.10.1 telejson: 5.3.3 dev: true - /@storybook/channels/6.2.9: - resolution: {integrity: sha512-6dC8Fb2ipNyOQXnUZMDeEUaJGH5DMLzyHlGLhVyDtrO5WR6bO8mQdkzf4+5dSKXgCBNX0BSkssXth4pDjn18rg==} + /@storybook/channels/6.3.7: + resolution: {integrity: sha512-aErXO+SRO8MPp2wOkT2n9d0fby+8yM35tq1tI633B4eQsM74EykbXPv7EamrYPqp1AI4BdiloyEpr0hmr2zlvg==} dependencies: - core-js: 3.13.0 - ts-dedent: 2.1.1 + core-js: 3.16.2 + ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/client-api/6.2.9: - resolution: {integrity: sha512-aLvEUVkbvv6Qo/2mF4rFCecdqi2CGOUDdsV1a6EFIVS/9gXFdpirsOwKHo9qNjacGdWPlBYGCUcbrw+DvNaSFA==} + /@storybook/client-api/6.3.7: + resolution: {integrity: sha512-8wOH19cMIwIIYhZy5O5Wl8JT1QOL5kNuamp9GPmg5ff4DtnG+/uUslskRvsnKyjPvl+WbIlZtBVWBiawVdd/yQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/addons': 6.2.9 - '@storybook/channel-postmessage': 6.2.9 - '@storybook/channels': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/core-events': 6.2.9 + '@storybook/addons': 6.3.7 + '@storybook/channel-postmessage': 6.3.7 + '@storybook/channels': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/core-events': 6.3.7 '@storybook/csf': 0.0.1 - '@types/qs': 6.9.6 - '@types/webpack-env': 1.16.0 - core-js: 3.13.0 + '@types/qs': 6.9.7 + '@types/webpack-env': 1.16.2 + core-js: 3.16.2 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 qs: 6.10.1 - regenerator-runtime: 0.13.7 + regenerator-runtime: 0.13.9 stable: 0.1.8 store2: 2.12.0 - ts-dedent: 2.1.1 + ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/client-api/6.2.9_react-dom@16.14.0+react@16.14.0: - resolution: {integrity: sha512-aLvEUVkbvv6Qo/2mF4rFCecdqi2CGOUDdsV1a6EFIVS/9gXFdpirsOwKHo9qNjacGdWPlBYGCUcbrw+DvNaSFA==} + /@storybook/client-api/6.3.7_react-dom@16.14.0+react@16.14.0: + resolution: {integrity: sha512-8wOH19cMIwIIYhZy5O5Wl8JT1QOL5kNuamp9GPmg5ff4DtnG+/uUslskRvsnKyjPvl+WbIlZtBVWBiawVdd/yQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/addons': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/channel-postmessage': 6.2.9 - '@storybook/channels': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/core-events': 6.2.9 + '@storybook/addons': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/channel-postmessage': 6.3.7 + '@storybook/channels': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/core-events': 6.3.7 '@storybook/csf': 0.0.1 - '@types/qs': 6.9.6 - '@types/webpack-env': 1.16.0 - core-js: 3.13.0 + '@types/qs': 6.9.7 + '@types/webpack-env': 1.16.2 + core-js: 3.16.2 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 qs: 6.10.1 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 - regenerator-runtime: 0.13.7 + regenerator-runtime: 0.13.9 stable: 0.1.8 store2: 2.12.0 - ts-dedent: 2.1.1 + ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/client-logger/6.2.9: - resolution: {integrity: sha512-IfOQZuvpjh66qBInQCJOb9S0dTGpzZ/Cxlcvokp+PYt95KztaWN3mPm+HaDQCeRsrWNe0Bpm1zuickcJ6dBOXg==} + /@storybook/client-logger/6.3.7: + resolution: {integrity: sha512-BQRErHE3nIEuUJN/3S3dO1LzxAknOgrFeZLd4UVcH/fvjtS1F4EkhcbH+jNyUWvcWGv66PZYN0oFPEn/g3Savg==} dependencies: - core-js: 3.13.0 + core-js: 3.16.2 global: 4.4.0 dev: true - /@storybook/components/6.2.9: - resolution: {integrity: sha512-hnV1MI2aB2g1sJ7NJphpxi7TwrMZQ/tpCJeHnkjmzyC6ez1MXqcBXGrEEdSXzRfAxjQTOEpu6H1mnns0xMP0Ag==} + /@storybook/components/6.3.7: + resolution: {integrity: sha512-O7LIg9Z18G0AJqXX7Shcj0uHqwXlSA5UkHgaz9A7mqqqJNl6m6FwwTWcxR1acUfYVNkO+czgpqZHNrOF6rky1A==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@popperjs/core': 2.9.2 - '@storybook/client-logger': 6.2.9 + '@popperjs/core': 2.9.3 + '@storybook/client-logger': 6.3.7 '@storybook/csf': 0.0.1 - '@storybook/theming': 6.2.9 + '@storybook/theming': 6.3.7 '@types/color-convert': 2.0.0 - '@types/overlayscrollbars': 1.12.0 + '@types/overlayscrollbars': 1.12.1 '@types/react-syntax-highlighter': 11.0.5 color-convert: 2.0.1 - core-js: 3.13.0 + core-js: 3.16.2 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 markdown-to-jsx: 7.1.3 memoizerific: 1.11.3 overlayscrollbars: 1.13.1 - polished: 4.1.2 + polished: 4.1.3 prop-types: 15.7.2 - react-colorful: 5.2.0 + react-colorful: 5.3.0 react-popper-tooltip: 3.1.1 react-syntax-highlighter: 13.5.3 - react-textarea-autosize: 8.3.2 - regenerator-runtime: 0.13.7 - ts-dedent: 2.1.1 + react-textarea-autosize: 8.3.3 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/components/6.2.9_react-dom@16.14.0+react@16.14.0: - resolution: {integrity: sha512-hnV1MI2aB2g1sJ7NJphpxi7TwrMZQ/tpCJeHnkjmzyC6ez1MXqcBXGrEEdSXzRfAxjQTOEpu6H1mnns0xMP0Ag==} + /@storybook/components/6.3.7_react-dom@16.14.0+react@16.14.0: + resolution: {integrity: sha512-O7LIg9Z18G0AJqXX7Shcj0uHqwXlSA5UkHgaz9A7mqqqJNl6m6FwwTWcxR1acUfYVNkO+czgpqZHNrOF6rky1A==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@popperjs/core': 2.9.2 - '@storybook/client-logger': 6.2.9 + '@popperjs/core': 2.9.3 + '@storybook/client-logger': 6.3.7 '@storybook/csf': 0.0.1 - '@storybook/theming': 6.2.9_react-dom@16.14.0+react@16.14.0 + '@storybook/theming': 6.3.7_react-dom@16.14.0+react@16.14.0 '@types/color-convert': 2.0.0 - '@types/overlayscrollbars': 1.12.0 + '@types/overlayscrollbars': 1.12.1 '@types/react-syntax-highlighter': 11.0.5 color-convert: 2.0.1 - core-js: 3.13.0 + core-js: 3.16.2 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 markdown-to-jsx: 7.1.3_react@16.14.0 memoizerific: 1.11.3 overlayscrollbars: 1.13.1 - polished: 4.1.2 + polished: 4.1.3 prop-types: 15.7.2 react: 16.14.0 - react-colorful: 5.2.0_react-dom@16.14.0+react@16.14.0 + react-colorful: 5.3.0_react-dom@16.14.0+react@16.14.0 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-syntax-highlighter: 13.5.3_react@16.14.0 - react-textarea-autosize: 8.3.2_react@16.14.0 - regenerator-runtime: 0.13.7 - ts-dedent: 2.1.1 + react-textarea-autosize: 8.3.3_react@16.14.0 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/core-client/6.2.9_5172b44f0d1f46ab4afc625a2a4cc77e: - resolution: {integrity: sha512-jW841J5lCe1Ub5ZMtzYPgCy/OUddFxxVYeHLZyuNxlH5RoiQQxbDpuFlzuZMYGuIzD6eZw+ANE4w5vW/y5oBfA==} + /@storybook/core-client/6.3.7_70d39b49be06a92d1ddadaf2d0a6de02: + resolution: {integrity: sha512-M/4A65yV+Y4lsCQXX4BtQO/i3BcMPrU5FkDG8qJd3dkcx2fUlFvGWqQPkcTZE+MPVvMEGl/AsEZSADzah9+dAg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -5361,23 +4469,24 @@ packages: typescript: optional: true dependencies: - '@storybook/addons': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/channel-postmessage': 6.2.9 - '@storybook/client-api': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/client-logger': 6.2.9 - '@storybook/core-events': 6.2.9 + '@storybook/addons': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/channel-postmessage': 6.3.7 + '@storybook/client-api': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/client-logger': 6.3.7 + '@storybook/core-events': 6.3.7 '@storybook/csf': 0.0.1 - '@storybook/ui': 6.2.9_react-dom@16.14.0+react@16.14.0 + '@storybook/ui': 6.3.7_react-dom@16.14.0+react@16.14.0 + airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 - core-js: 3.13.0 + core-js: 3.16.2 global: 4.4.0 lodash: 4.17.21 qs: 6.10.1 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 - regenerator-runtime: 0.13.7 - ts-dedent: 2.1.1 - typescript: 4.1.3 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + typescript: 4.3.5 unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -5385,8 +4494,8 @@ packages: - '@types/react' dev: true - /@storybook/core-client/6.2.9_57e9b9bc897643e588d334e009fcfb51: - resolution: {integrity: sha512-jW841J5lCe1Ub5ZMtzYPgCy/OUddFxxVYeHLZyuNxlH5RoiQQxbDpuFlzuZMYGuIzD6eZw+ANE4w5vW/y5oBfA==} + /@storybook/core-client/6.3.7_8073bd74a106ff14517e8eecceb690e6: + resolution: {integrity: sha512-M/4A65yV+Y4lsCQXX4BtQO/i3BcMPrU5FkDG8qJd3dkcx2fUlFvGWqQPkcTZE+MPVvMEGl/AsEZSADzah9+dAg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -5396,31 +4505,32 @@ packages: typescript: optional: true dependencies: - '@storybook/addons': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/channel-postmessage': 6.2.9 - '@storybook/client-api': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/client-logger': 6.2.9 - '@storybook/core-events': 6.2.9 + '@storybook/addons': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/channel-postmessage': 6.3.7 + '@storybook/client-api': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/client-logger': 6.3.7 + '@storybook/core-events': 6.3.7 '@storybook/csf': 0.0.1 - '@storybook/ui': 6.2.9_react-dom@16.14.0+react@16.14.0 + '@storybook/ui': 6.3.7_react-dom@16.14.0+react@16.14.0 + airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 - core-js: 3.13.0 + core-js: 3.16.2 global: 4.4.0 lodash: 4.17.21 qs: 6.10.1 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 - regenerator-runtime: 0.13.7 - ts-dedent: 2.1.1 - typescript: 4.1.3 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + typescript: 4.3.5 unfetch: 4.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/core-client/6.2.9_typescript@4.1.3: - resolution: {integrity: sha512-jW841J5lCe1Ub5ZMtzYPgCy/OUddFxxVYeHLZyuNxlH5RoiQQxbDpuFlzuZMYGuIzD6eZw+ANE4w5vW/y5oBfA==} + /@storybook/core-client/6.3.7_typescript@4.3.5: + resolution: {integrity: sha512-M/4A65yV+Y4lsCQXX4BtQO/i3BcMPrU5FkDG8qJd3dkcx2fUlFvGWqQPkcTZE+MPVvMEGl/AsEZSADzah9+dAg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -5430,29 +4540,30 @@ packages: typescript: optional: true dependencies: - '@storybook/addons': 6.2.9 - '@storybook/channel-postmessage': 6.2.9 - '@storybook/client-api': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/core-events': 6.2.9 + '@storybook/addons': 6.3.7 + '@storybook/channel-postmessage': 6.3.7 + '@storybook/client-api': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/core-events': 6.3.7 '@storybook/csf': 0.0.1 - '@storybook/ui': 6.2.9 + '@storybook/ui': 6.3.7 + airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 - core-js: 3.13.0 + core-js: 3.16.2 global: 4.4.0 lodash: 4.17.21 qs: 6.10.1 - regenerator-runtime: 0.13.7 - ts-dedent: 2.1.1 - typescript: 4.1.3 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + typescript: 4.3.5 unfetch: 4.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/core-client/6.2.9_typescript@4.1.3+webpack@4.46.0: - resolution: {integrity: sha512-jW841J5lCe1Ub5ZMtzYPgCy/OUddFxxVYeHLZyuNxlH5RoiQQxbDpuFlzuZMYGuIzD6eZw+ANE4w5vW/y5oBfA==} + /@storybook/core-client/6.3.7_typescript@4.3.5+webpack@4.46.0: + resolution: {integrity: sha512-M/4A65yV+Y4lsCQXX4BtQO/i3BcMPrU5FkDG8qJd3dkcx2fUlFvGWqQPkcTZE+MPVvMEGl/AsEZSADzah9+dAg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -5462,21 +4573,22 @@ packages: typescript: optional: true dependencies: - '@storybook/addons': 6.2.9 - '@storybook/channel-postmessage': 6.2.9 - '@storybook/client-api': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/core-events': 6.2.9 + '@storybook/addons': 6.3.7 + '@storybook/channel-postmessage': 6.3.7 + '@storybook/client-api': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/core-events': 6.3.7 '@storybook/csf': 0.0.1 - '@storybook/ui': 6.2.9 + '@storybook/ui': 6.3.7 + airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 - core-js: 3.13.0 + core-js: 3.16.2 global: 4.4.0 lodash: 4.17.21 qs: 6.10.1 - regenerator-runtime: 0.13.7 - ts-dedent: 2.1.1 - typescript: 4.1.3 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + typescript: 4.3.5 unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -5484,8 +4596,8 @@ packages: - '@types/react' dev: true - /@storybook/core-common/6.2.9_57e9b9bc897643e588d334e009fcfb51: - resolution: {integrity: sha512-ve0Qb4EMit8jGibfZBprmaU2i4LtpB4vSMIzD9nB1YeBmw2cGhHubtmayZ0TwcV3fPQhtYH9wwRWuWyzzHyQyw==} + /@storybook/core-common/6.3.7_8073bd74a106ff14517e8eecceb690e6: + resolution: {integrity: sha512-exLoqRPPsAefwyjbsQBLNFrlPCcv69Q/pclqmIm7FqAPR7f3CKP1rqsHY0PnemizTL/+cLX5S7mY90gI6wpNug==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -5494,42 +4606,42 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.14.3 - '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-proposal-decorators': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-export-default-from': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-object-rest-spread': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-optional-chaining': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-private-methods': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.3 - '@babel/plugin-transform-arrow-functions': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-block-scoping': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-classes': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-destructuring': 7.13.17_@babel+core@7.14.3 - '@babel/plugin-transform-for-of': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-parameters': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-spread': 7.13.0_@babel+core@7.14.3 - '@babel/preset-env': 7.14.2_@babel+core@7.14.3 - '@babel/preset-react': 7.13.13_@babel+core@7.14.3 - '@babel/preset-typescript': 7.13.0_@babel+core@7.14.3 - '@babel/register': 7.13.16_@babel+core@7.14.3 - '@storybook/node-logger': 6.2.9 + '@babel/core': 7.15.0 + '@babel/plugin-proposal-class-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-decorators': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-export-default-from': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-object-rest-spread': 7.14.7_@babel+core@7.15.0 + '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-private-methods': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-transform-arrow-functions': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-block-scoping': 7.15.3_@babel+core@7.15.0 + '@babel/plugin-transform-classes': 7.14.9_@babel+core@7.15.0 + '@babel/plugin-transform-destructuring': 7.14.7_@babel+core@7.15.0 + '@babel/plugin-transform-for-of': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-parameters': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-shorthand-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-spread': 7.14.6_@babel+core@7.15.0 + '@babel/preset-env': 7.15.0_@babel+core@7.15.0 + '@babel/preset-react': 7.14.5_@babel+core@7.15.0 + '@babel/preset-typescript': 7.15.0_@babel+core@7.15.0 + '@babel/register': 7.15.3_@babel+core@7.15.0 + '@storybook/node-logger': 6.3.7 '@storybook/semver': 7.3.2 '@types/glob-base': 0.3.0 - '@types/micromatch': 4.0.1 - '@types/node': 14.17.1 - '@types/pretty-hrtime': 1.0.0 - babel-loader: 8.2.2_105470dfa535e5f605a4a54ef7d81e87 + '@types/micromatch': 4.0.2 + '@types/node': 14.17.10 + '@types/pretty-hrtime': 1.0.1 + babel-loader: 8.2.2_be352a5a80662835a7707f972edfcfde babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.14.3 - chalk: 4.1.1 - core-js: 3.13.0 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.15.0 + chalk: 4.1.2 + core-js: 3.16.2 express: 4.17.1 file-system-cache: 1.0.5 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.2.10 + fork-ts-checker-webpack-plugin: 6.3.2 glob: 7.1.7 glob-base: 0.3.0 interpret: 2.2.0 @@ -5541,8 +4653,8 @@ packages: react: 16.14.0 react-dom: 16.14.0_react@16.14.0 resolve-from: 5.0.0 - ts-dedent: 2.1.1 - typescript: 4.1.3 + ts-dedent: 2.2.0 + typescript: 4.3.5 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -5551,8 +4663,8 @@ packages: - webpack-command dev: true - /@storybook/core-common/6.2.9_typescript@4.1.3: - resolution: {integrity: sha512-ve0Qb4EMit8jGibfZBprmaU2i4LtpB4vSMIzD9nB1YeBmw2cGhHubtmayZ0TwcV3fPQhtYH9wwRWuWyzzHyQyw==} + /@storybook/core-common/6.3.7_typescript@4.3.5: + resolution: {integrity: sha512-exLoqRPPsAefwyjbsQBLNFrlPCcv69Q/pclqmIm7FqAPR7f3CKP1rqsHY0PnemizTL/+cLX5S7mY90gI6wpNug==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -5561,42 +4673,42 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.14.3 - '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-proposal-decorators': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-export-default-from': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-object-rest-spread': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-optional-chaining': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-proposal-private-methods': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.3 - '@babel/plugin-transform-arrow-functions': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-block-scoping': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-classes': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-destructuring': 7.13.17_@babel+core@7.14.3 - '@babel/plugin-transform-for-of': 7.13.0_@babel+core@7.14.3 - '@babel/plugin-transform-parameters': 7.14.2_@babel+core@7.14.3 - '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.14.3 - '@babel/plugin-transform-spread': 7.13.0_@babel+core@7.14.3 - '@babel/preset-env': 7.14.2_@babel+core@7.14.3 - '@babel/preset-react': 7.13.13_@babel+core@7.14.3 - '@babel/preset-typescript': 7.13.0_@babel+core@7.14.3 - '@babel/register': 7.13.16_@babel+core@7.14.3 - '@storybook/node-logger': 6.2.9 + '@babel/core': 7.15.0 + '@babel/plugin-proposal-class-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-decorators': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-export-default-from': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-object-rest-spread': 7.14.7_@babel+core@7.15.0 + '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-private-methods': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-transform-arrow-functions': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-block-scoping': 7.15.3_@babel+core@7.15.0 + '@babel/plugin-transform-classes': 7.14.9_@babel+core@7.15.0 + '@babel/plugin-transform-destructuring': 7.14.7_@babel+core@7.15.0 + '@babel/plugin-transform-for-of': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-parameters': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-shorthand-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-spread': 7.14.6_@babel+core@7.15.0 + '@babel/preset-env': 7.15.0_@babel+core@7.15.0 + '@babel/preset-react': 7.14.5_@babel+core@7.15.0 + '@babel/preset-typescript': 7.15.0_@babel+core@7.15.0 + '@babel/register': 7.15.3_@babel+core@7.15.0 + '@storybook/node-logger': 6.3.7 '@storybook/semver': 7.3.2 '@types/glob-base': 0.3.0 - '@types/micromatch': 4.0.1 - '@types/node': 14.17.1 - '@types/pretty-hrtime': 1.0.0 - babel-loader: 8.2.2_105470dfa535e5f605a4a54ef7d81e87 + '@types/micromatch': 4.0.2 + '@types/node': 14.17.10 + '@types/pretty-hrtime': 1.0.1 + babel-loader: 8.2.2_be352a5a80662835a7707f972edfcfde babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.14.3 - chalk: 4.1.1 - core-js: 3.13.0 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.15.0 + chalk: 4.1.2 + core-js: 3.16.2 express: 4.17.1 file-system-cache: 1.0.5 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.2.10 + fork-ts-checker-webpack-plugin: 6.3.2 glob: 7.1.7 glob-base: 0.3.0 interpret: 2.2.0 @@ -5606,8 +4718,8 @@ packages: pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 resolve-from: 5.0.0 - ts-dedent: 2.1.1 - typescript: 4.1.3 + ts-dedent: 2.2.0 + typescript: 4.3.5 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -5616,166 +4728,134 @@ packages: - webpack-command dev: true - /@storybook/core-events/6.2.9: - resolution: {integrity: sha512-xQmbX/oYQK1QsAGN8hriXX5SUKOoTUe3L4dVaVHxJqy7MReRWJpprJmCpbAPJzWS6WCbDFfCM5kVEexHLOzJlQ==} + /@storybook/core-events/6.3.7: + resolution: {integrity: sha512-l5Hlhe+C/dqxjobemZ6DWBhTOhQoFF3F1Y4kjFGE7pGZl/mas4M72I5I/FUcYCmbk2fbLfZX8hzKkUqS1hdyLA==} dependencies: - core-js: 3.13.0 + core-js: 3.16.2 dev: true - /@storybook/core-server/6.2.9_57e9b9bc897643e588d334e009fcfb51: - resolution: {integrity: sha512-DzihO73pj1Ro0Y4tq9hjw2mLMUYeSRPrx7CndCOBxcTHCKQ8Kd7Dee3wJ49t5/19V7TW1+4lYR59GAy73FeOAQ==} + /@storybook/core-server/6.3.7_a02f71efdf210147d6c9ca1e04f97786: + resolution: {integrity: sha512-m5OPD/rmZA7KFewkXzXD46/i1ngUoFO4LWOiAY/wR6RQGjYXGMhSa5UYFF6MNwSbiGS5YieHkR5crB1HP47AhQ==} peerDependencies: - '@storybook/builder-webpack5': 6.2.9 + '@storybook/builder-webpack5': 6.3.7 + '@storybook/manager-webpack5': 6.3.7 react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 typescript: '*' peerDependenciesMeta: '@storybook/builder-webpack5': optional: true + '@storybook/manager-webpack5': + optional: true typescript: optional: true dependencies: - '@babel/core': 7.14.3 - '@babel/plugin-transform-template-literals': 7.13.0_@babel+core@7.14.3 - '@babel/preset-react': 7.13.13_@babel+core@7.14.3 - '@storybook/addons': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/builder-webpack4': 6.2.9_57e9b9bc897643e588d334e009fcfb51 - '@storybook/core-client': 6.2.9_5172b44f0d1f46ab4afc625a2a4cc77e - '@storybook/core-common': 6.2.9_57e9b9bc897643e588d334e009fcfb51 - '@storybook/node-logger': 6.2.9 + '@storybook/builder-webpack4': 6.3.7_8073bd74a106ff14517e8eecceb690e6 + '@storybook/core-client': 6.3.7_70d39b49be06a92d1ddadaf2d0a6de02 + '@storybook/core-common': 6.3.7_8073bd74a106ff14517e8eecceb690e6 + '@storybook/csf-tools': 6.3.7_@babel+core@7.15.0 + '@storybook/manager-webpack4': 6.3.7_8073bd74a106ff14517e8eecceb690e6 + '@storybook/node-logger': 6.3.7 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/ui': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@types/node': 14.17.1 - '@types/node-fetch': 2.5.10 - '@types/pretty-hrtime': 1.0.0 - '@types/webpack': 4.41.29 - airbnb-js-shims: 2.2.1 - babel-loader: 8.2.2_105470dfa535e5f605a4a54ef7d81e87 + '@types/node': 14.17.10 + '@types/node-fetch': 2.5.12 + '@types/pretty-hrtime': 1.0.1 + '@types/webpack': 4.41.30 better-opn: 2.1.1 boxen: 4.2.0 - case-sensitive-paths-webpack-plugin: 2.4.0 - chalk: 4.1.1 + chalk: 4.1.2 cli-table3: 0.6.0 commander: 6.2.1 - core-js: 3.13.0 + compression: 1.7.4 + core-js: 3.16.2 cpy: 8.1.2 - css-loader: 3.6.0_webpack@4.46.0 detect-port: 1.3.0 - dotenv-webpack: 1.8.0_webpack@4.46.0 express: 4.17.1 - file-loader: 6.2.0_webpack@4.46.0 file-system-cache: 1.0.5 - find-up: 5.0.0 fs-extra: 9.1.0 - global: 4.4.0 - html-webpack-plugin: 4.5.2_webpack@4.46.0 + globby: 11.0.4 ip: 1.1.5 node-fetch: 2.6.1 - pnp-webpack-plugin: 1.6.4_typescript@4.1.3 pretty-hrtime: 1.0.3 prompts: 2.4.1 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 - read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.7 - resolve-from: 5.0.0 + regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 - style-loader: 1.3.0_webpack@4.46.0 - telejson: 5.3.3 - terser-webpack-plugin: 3.1.0_webpack@4.46.0 - ts-dedent: 2.1.1 - typescript: 4.1.3 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.3.5 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: + - '@babel/core' - '@types/react' - supports-color - webpack-cli - webpack-command dev: true - /@storybook/core-server/6.2.9_typescript@4.1.3: - resolution: {integrity: sha512-DzihO73pj1Ro0Y4tq9hjw2mLMUYeSRPrx7CndCOBxcTHCKQ8Kd7Dee3wJ49t5/19V7TW1+4lYR59GAy73FeOAQ==} + /@storybook/core-server/6.3.7_f0b419a7e119055c71dcaf6063a7ba7a: + resolution: {integrity: sha512-m5OPD/rmZA7KFewkXzXD46/i1ngUoFO4LWOiAY/wR6RQGjYXGMhSa5UYFF6MNwSbiGS5YieHkR5crB1HP47AhQ==} peerDependencies: - '@storybook/builder-webpack5': 6.2.9 + '@storybook/builder-webpack5': 6.3.7 + '@storybook/manager-webpack5': 6.3.7 react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 typescript: '*' peerDependenciesMeta: '@storybook/builder-webpack5': optional: true + '@storybook/manager-webpack5': + optional: true typescript: optional: true dependencies: - '@babel/core': 7.14.3 - '@babel/plugin-transform-template-literals': 7.13.0_@babel+core@7.14.3 - '@babel/preset-react': 7.13.13_@babel+core@7.14.3 - '@storybook/addons': 6.2.9 - '@storybook/builder-webpack4': 6.2.9_typescript@4.1.3 - '@storybook/core-client': 6.2.9_typescript@4.1.3+webpack@4.46.0 - '@storybook/core-common': 6.2.9_typescript@4.1.3 - '@storybook/node-logger': 6.2.9 + '@storybook/builder-webpack4': 6.3.7_typescript@4.3.5 + '@storybook/core-client': 6.3.7_typescript@4.3.5+webpack@4.46.0 + '@storybook/core-common': 6.3.7_typescript@4.3.5 + '@storybook/csf-tools': 6.3.7_@babel+core@7.15.0 + '@storybook/manager-webpack4': 6.3.7_typescript@4.3.5 + '@storybook/node-logger': 6.3.7 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.2.9 - '@storybook/ui': 6.2.9 - '@types/node': 14.17.1 - '@types/node-fetch': 2.5.10 - '@types/pretty-hrtime': 1.0.0 - '@types/webpack': 4.41.29 - airbnb-js-shims: 2.2.1 - babel-loader: 8.2.2_105470dfa535e5f605a4a54ef7d81e87 + '@types/node': 14.17.10 + '@types/node-fetch': 2.5.12 + '@types/pretty-hrtime': 1.0.1 + '@types/webpack': 4.41.30 better-opn: 2.1.1 boxen: 4.2.0 - case-sensitive-paths-webpack-plugin: 2.4.0 - chalk: 4.1.1 + chalk: 4.1.2 cli-table3: 0.6.0 commander: 6.2.1 - core-js: 3.13.0 + compression: 1.7.4 + core-js: 3.16.2 cpy: 8.1.2 - css-loader: 3.6.0_webpack@4.46.0 detect-port: 1.3.0 - dotenv-webpack: 1.8.0_webpack@4.46.0 express: 4.17.1 - file-loader: 6.2.0_webpack@4.46.0 file-system-cache: 1.0.5 - find-up: 5.0.0 fs-extra: 9.1.0 - global: 4.4.0 - html-webpack-plugin: 4.5.2_webpack@4.46.0 + globby: 11.0.4 ip: 1.1.5 node-fetch: 2.6.1 - pnp-webpack-plugin: 1.6.4_typescript@4.1.3 pretty-hrtime: 1.0.3 prompts: 2.4.1 - read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.7 - resolve-from: 5.0.0 + regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 - style-loader: 1.3.0_webpack@4.46.0 - telejson: 5.3.3 - terser-webpack-plugin: 3.1.0_webpack@4.46.0 - ts-dedent: 2.1.1 - typescript: 4.1.3 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.3.5 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: + - '@babel/core' - '@types/react' - supports-color - webpack-cli - webpack-command dev: true - /@storybook/core/6.2.9_57e9b9bc897643e588d334e009fcfb51: - resolution: {integrity: sha512-pzbyjWvj0t8m0kR2pC9GQne4sZn7Y/zfcbm6/31CL+yhzOQjfJEj3n4ZFUlxikXqQJPg1aWfypfyaeaLL0QyuA==} + /@storybook/core/6.3.7_a02f71efdf210147d6c9ca1e04f97786: + resolution: {integrity: sha512-YTVLPXqgyBg7TALNxQ+cd+GtCm/NFjxr/qQ1mss1T9GCMR0IjE0d0trgOVHHLAO8jCVlK8DeuqZCCgZFTXulRw==} peerDependencies: - '@storybook/builder-webpack5': 6.2.9 + '@storybook/builder-webpack5': 6.3.7 react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 typescript: '*' @@ -5785,12 +4865,14 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.2.9_57e9b9bc897643e588d334e009fcfb51 - '@storybook/core-server': 6.2.9_57e9b9bc897643e588d334e009fcfb51 + '@storybook/core-client': 6.3.7_8073bd74a106ff14517e8eecceb690e6 + '@storybook/core-server': 6.3.7_a02f71efdf210147d6c9ca1e04f97786 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 - typescript: 4.1.3 + typescript: 4.3.5 transitivePeerDependencies: + - '@babel/core' + - '@storybook/manager-webpack5' - '@types/react' - supports-color - webpack @@ -5798,10 +4880,10 @@ packages: - webpack-command dev: true - /@storybook/core/6.2.9_typescript@4.1.3: - resolution: {integrity: sha512-pzbyjWvj0t8m0kR2pC9GQne4sZn7Y/zfcbm6/31CL+yhzOQjfJEj3n4ZFUlxikXqQJPg1aWfypfyaeaLL0QyuA==} + /@storybook/core/6.3.7_f0b419a7e119055c71dcaf6063a7ba7a: + resolution: {integrity: sha512-YTVLPXqgyBg7TALNxQ+cd+GtCm/NFjxr/qQ1mss1T9GCMR0IjE0d0trgOVHHLAO8jCVlK8DeuqZCCgZFTXulRw==} peerDependencies: - '@storybook/builder-webpack5': 6.2.9 + '@storybook/builder-webpack5': 6.3.7 react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 typescript: '*' @@ -5811,10 +4893,12 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.2.9_typescript@4.1.3 - '@storybook/core-server': 6.2.9_typescript@4.1.3 - typescript: 4.1.3 + '@storybook/core-client': 6.3.7_typescript@4.3.5 + '@storybook/core-server': 6.3.7_f0b419a7e119055c71dcaf6063a7ba7a + typescript: 4.3.5 transitivePeerDependencies: + - '@babel/core' + - '@storybook/manager-webpack5' - '@types/react' - supports-color - webpack @@ -5822,88 +4906,223 @@ packages: - webpack-command dev: true + /@storybook/csf-tools/6.3.7_@babel+core@7.15.0: + resolution: {integrity: sha512-A7yGsrYwh+vwVpmG8dHpEimX021RbZd9VzoREcILH56u8atssdh/rseljyWlRes3Sr4QgtLvDB7ggoJ+XDZH7w==} + dependencies: + '@babel/generator': 7.15.0 + '@babel/parser': 7.15.3 + '@babel/plugin-transform-react-jsx': 7.14.9_@babel+core@7.15.0 + '@babel/preset-env': 7.15.0_@babel+core@7.15.0 + '@babel/traverse': 7.15.0 + '@babel/types': 7.15.0 + '@mdx-js/mdx': 1.6.22 + '@storybook/csf': 0.0.1 + core-js: 3.16.2 + fs-extra: 9.1.0 + js-string-escape: 1.0.1 + lodash: 4.17.21 + prettier: 2.2.1 + regenerator-runtime: 0.13.9 + transitivePeerDependencies: + - '@babel/core' + - supports-color + dev: true + /@storybook/csf/0.0.1: resolution: {integrity: sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==} dependencies: lodash: 4.17.21 dev: true - /@storybook/node-logger/6.2.9: - resolution: {integrity: sha512-ryRBChWZf1A5hOVONErJZosS25IdMweoMVFAUAcj91iC0ynoSA6YL2jmoE71jQchxEXEgkDeRkX9lR/GlqFGZQ==} + /@storybook/manager-webpack4/6.3.7_8073bd74a106ff14517e8eecceb690e6: + resolution: {integrity: sha512-cwUdO3oklEtx6y+ZOl2zHvflICK85emiXBQGgRcCsnwWQRBZOMh+tCgOSZj4jmISVpT52RtT9woG4jKe15KBig==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.15.0 + '@babel/plugin-transform-template-literals': 7.14.5_@babel+core@7.15.0 + '@babel/preset-react': 7.14.5_@babel+core@7.15.0 + '@storybook/addons': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/core-client': 6.3.7_70d39b49be06a92d1ddadaf2d0a6de02 + '@storybook/core-common': 6.3.7_8073bd74a106ff14517e8eecceb690e6 + '@storybook/node-logger': 6.3.7 + '@storybook/theming': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/ui': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@types/node': 14.17.10 + '@types/webpack': 4.41.30 + babel-loader: 8.2.2_be352a5a80662835a7707f972edfcfde + case-sensitive-paths-webpack-plugin: 2.4.0 + chalk: 4.1.2 + core-js: 3.16.2 + css-loader: 3.6.0_webpack@4.46.0 + dotenv-webpack: 1.8.0_webpack@4.46.0 + express: 4.17.1 + file-loader: 6.2.0_webpack@4.46.0 + file-system-cache: 1.0.5 + find-up: 5.0.0 + fs-extra: 9.1.0 + html-webpack-plugin: 4.5.2_webpack@4.46.0 + node-fetch: 2.6.1 + pnp-webpack-plugin: 1.6.4_typescript@4.3.5 + 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_webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.3.5 + url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + util-deprecate: 1.0.2 + webpack: 4.46.0 + webpack-dev-middleware: 3.7.3_webpack@4.46.0 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - supports-color + - webpack-cli + - webpack-command + dev: true + + /@storybook/manager-webpack4/6.3.7_typescript@4.3.5: + resolution: {integrity: sha512-cwUdO3oklEtx6y+ZOl2zHvflICK85emiXBQGgRcCsnwWQRBZOMh+tCgOSZj4jmISVpT52RtT9woG4jKe15KBig==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.15.0 + '@babel/plugin-transform-template-literals': 7.14.5_@babel+core@7.15.0 + '@babel/preset-react': 7.14.5_@babel+core@7.15.0 + '@storybook/addons': 6.3.7 + '@storybook/core-client': 6.3.7_typescript@4.3.5+webpack@4.46.0 + '@storybook/core-common': 6.3.7_typescript@4.3.5 + '@storybook/node-logger': 6.3.7 + '@storybook/theming': 6.3.7 + '@storybook/ui': 6.3.7 + '@types/node': 14.17.10 + '@types/webpack': 4.41.30 + babel-loader: 8.2.2_be352a5a80662835a7707f972edfcfde + case-sensitive-paths-webpack-plugin: 2.4.0 + chalk: 4.1.2 + core-js: 3.16.2 + css-loader: 3.6.0_webpack@4.46.0 + dotenv-webpack: 1.8.0_webpack@4.46.0 + express: 4.17.1 + file-loader: 6.2.0_webpack@4.46.0 + file-system-cache: 1.0.5 + find-up: 5.0.0 + fs-extra: 9.1.0 + html-webpack-plugin: 4.5.2_webpack@4.46.0 + node-fetch: 2.6.1 + pnp-webpack-plugin: 1.6.4_typescript@4.3.5 + read-pkg-up: 7.0.1 + regenerator-runtime: 0.13.9 + resolve-from: 5.0.0 + style-loader: 1.3.0_webpack@4.46.0 + telejson: 5.3.3 + terser-webpack-plugin: 4.2.3_webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.3.5 + url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + util-deprecate: 1.0.2 + webpack: 4.46.0 + webpack-dev-middleware: 3.7.3_webpack@4.46.0 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - supports-color + - webpack-cli + - webpack-command + dev: true + + /@storybook/node-logger/6.3.7: + resolution: {integrity: sha512-YXHCblruRe6HcNefDOpuXJoaybHnnSryIVP9Z+gDv6OgLAMkyxccTIaQL9dbc/eI4ywgzAz4kD8t1RfVwXNVXw==} dependencies: - '@types/npmlog': 4.1.2 - chalk: 4.1.1 - core-js: 3.13.0 + '@types/npmlog': 4.1.3 + chalk: 4.1.2 + core-js: 3.16.2 npmlog: 4.1.2 pretty-hrtime: 1.0.3 dev: true - /@storybook/postinstall/6.2.9: - resolution: {integrity: sha512-HjAjXZV+WItonC7lVrfrUsQuRFZNz1g1lE0GgsEK2LdC5rAcD/JwJxjiWREwY+RGxKL9rpWgqyxVQajpIJRjhA==} + /@storybook/postinstall/6.3.7: + resolution: {integrity: sha512-HgTj7WdWo2cXrGfEhi5XYZA+G4vIzECtJHK22GEL9QxJth60Ah/dE94VqpTlyhSpzP74ZFUgr92+pP9o+j3CCw==} dependencies: - core-js: 3.13.0 + core-js: 3.16.2 dev: true - /@storybook/preact/6.2.9_692c377c5519f2a2696800bf2192657e: - resolution: {integrity: sha512-AnbRtJfIyI6AGIIaduBe2Fnr4HPldycWr1fadqpytm9LBMQsYRCzXy2+AtBIfa0O5YDVqDcKda/uBsj1tNJzqw==} + /@storybook/preact/6.3.7_a13982c5b38b6f6bf56b24269c60ed34: + resolution: {integrity: sha512-mP6+e1toCd59ALUNsiJWQN0CuOVV7faaMcAs21T+GJeU5igEWbRpe/ixKdMdu7RqHA9jAHOeMZfjSNhBkvnwAw==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: '@babel/core': '*' preact: ^8.0.0||^10.0.0 + webpack: '*' dependencies: - '@babel/core': 7.14.0 - '@babel/plugin-transform-react-jsx': 7.14.3_@babel+core@7.14.0 - '@storybook/addons': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/core': 6.2.9_57e9b9bc897643e588d334e009fcfb51 - '@storybook/core-common': 6.2.9_57e9b9bc897643e588d334e009fcfb51 - '@types/webpack-env': 1.16.0 - core-js: 3.13.0 + '@babel/core': 7.15.0 + '@babel/plugin-transform-react-jsx': 7.14.9_@babel+core@7.15.0 + '@storybook/addons': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/core': 6.3.7_a02f71efdf210147d6c9ca1e04f97786 + '@storybook/core-common': 6.3.7_8073bd74a106ff14517e8eecceb690e6 + '@types/webpack-env': 1.16.2 + core-js: 3.16.2 global: 4.4.0 - preact: 10.5.13 + preact: 10.5.14 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.7 - ts-dedent: 2.1.1 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 transitivePeerDependencies: - '@storybook/builder-webpack5' + - '@storybook/manager-webpack5' - '@types/react' - supports-color - typescript - - webpack - webpack-cli - webpack-command dev: true - /@storybook/router/6.2.9: - resolution: {integrity: sha512-7Bn1OFoItCl8whXRT8N1qp1Lky7kzXJ3aslWp5E8HcM8rxh4OYXfbaeiyJEJxBTGC5zxgY+tAEXHFjsAviFROg==} + /@storybook/router/6.3.7: + resolution: {integrity: sha512-6tthN8op7H0NoYoE1SkQFJKC42pC4tGaoPn7kEql8XGeUJnxPtVFjrnywlTrRnKuxZKIvbilQBAwDml97XH23Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: '@reach/router': 1.3.4 - '@storybook/client-logger': 6.2.9 - '@types/reach__router': 1.3.7 - core-js: 3.13.0 + '@storybook/client-logger': 6.3.7 + '@types/reach__router': 1.3.9 + core-js: 3.16.2 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 qs: 6.10.1 - ts-dedent: 2.1.1 + ts-dedent: 2.2.0 dev: true - /@storybook/router/6.2.9_react-dom@16.14.0+react@16.14.0: - resolution: {integrity: sha512-7Bn1OFoItCl8whXRT8N1qp1Lky7kzXJ3aslWp5E8HcM8rxh4OYXfbaeiyJEJxBTGC5zxgY+tAEXHFjsAviFROg==} + /@storybook/router/6.3.7_react-dom@16.14.0+react@16.14.0: + resolution: {integrity: sha512-6tthN8op7H0NoYoE1SkQFJKC42pC4tGaoPn7kEql8XGeUJnxPtVFjrnywlTrRnKuxZKIvbilQBAwDml97XH23Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: '@reach/router': 1.3.4_react-dom@16.14.0+react@16.14.0 - '@storybook/client-logger': 6.2.9 - '@types/reach__router': 1.3.7 - core-js: 3.13.0 + '@storybook/client-logger': 6.3.7 + '@types/reach__router': 1.3.9 + core-js: 3.16.2 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 @@ -5911,7 +5130,7 @@ packages: qs: 6.10.1 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 - ts-dedent: 2.1.1 + ts-dedent: 2.2.0 dev: true /@storybook/semver/7.3.2: @@ -5919,30 +5138,30 @@ packages: engines: {node: '>=10'} hasBin: true dependencies: - core-js: 3.13.0 + core-js: 3.16.2 find-up: 4.1.0 dev: true - /@storybook/source-loader/6.2.9: - resolution: {integrity: sha512-cx499g7BG2oeXvRFx45r0W0p2gKEy/e88WsUFnqqfMKZBJ8K0R/lx5DI0l1hq+TzSrE6uGe0/uPlaLkJNIro7g==} + /@storybook/source-loader/6.3.7: + resolution: {integrity: sha512-0xQTq90jwx7W7MJn/idEBCGPOyxi/3No5j+5YdfJsSGJRuMFH3jt6pGgdeZ4XA01cmmIX6bZ+fB9al6yAzs91w==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/addons': 6.2.9 - '@storybook/client-logger': 6.2.9 + '@storybook/addons': 6.3.7 + '@storybook/client-logger': 6.3.7 '@storybook/csf': 0.0.1 - core-js: 3.13.0 + core-js: 3.16.2 estraverse: 5.2.0 global: 4.4.0 loader-utils: 2.0.0 lodash: 4.17.21 prettier: 2.2.1 - regenerator-runtime: 0.13.7 + regenerator-runtime: 0.13.9 dev: true - /@storybook/theming/6.2.9: - resolution: {integrity: sha512-183oJW7AD7Fhqg5NT4ct3GJntwteAb9jZnQ6yhf9JSdY+fk8OhxRbPf7ov0au2gYACcGrWDd9K5pYQsvWlP5gA==} + /@storybook/theming/6.3.7: + resolution: {integrity: sha512-GXBdw18JJd5jLLcRonAZWvGGdwEXByxF1IFNDSOYCcpHWsMgTk4XoLjceu9MpXET04pVX51LbVPLCvMdggoohg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -5950,19 +5169,19 @@ packages: '@emotion/core': 10.1.1 '@emotion/is-prop-valid': 0.8.8 '@emotion/styled': 10.0.27_@emotion+core@10.1.1 - '@storybook/client-logger': 6.2.9 - core-js: 3.13.0 + '@storybook/client-logger': 6.3.7 + core-js: 3.16.2 deep-object-diff: 1.1.0 emotion-theming: 10.0.27_@emotion+core@10.1.1 global: 4.4.0 memoizerific: 1.11.3 - polished: 4.1.2 + polished: 4.1.3 resolve-from: 5.0.0 - ts-dedent: 2.1.1 + ts-dedent: 2.2.0 dev: true - /@storybook/theming/6.2.9_react-dom@16.14.0+react@16.14.0: - resolution: {integrity: sha512-183oJW7AD7Fhqg5NT4ct3GJntwteAb9jZnQ6yhf9JSdY+fk8OhxRbPf7ov0au2gYACcGrWDd9K5pYQsvWlP5gA==} + /@storybook/theming/6.3.7_react-dom@16.14.0+react@16.14.0: + resolution: {integrity: sha512-GXBdw18JJd5jLLcRonAZWvGGdwEXByxF1IFNDSOYCcpHWsMgTk4XoLjceu9MpXET04pVX51LbVPLCvMdggoohg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -5970,93 +5189,93 @@ packages: '@emotion/core': 10.1.1_react@16.14.0 '@emotion/is-prop-valid': 0.8.8 '@emotion/styled': 10.0.27_5f216699bc8c1f24088b3bf77b7cbbdf - '@storybook/client-logger': 6.2.9 - core-js: 3.13.0 + '@storybook/client-logger': 6.3.7 + core-js: 3.16.2 deep-object-diff: 1.1.0 emotion-theming: 10.0.27_5f216699bc8c1f24088b3bf77b7cbbdf global: 4.4.0 memoizerific: 1.11.3 - polished: 4.1.2 + polished: 4.1.3 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 resolve-from: 5.0.0 - ts-dedent: 2.1.1 + ts-dedent: 2.2.0 dev: true - /@storybook/ui/6.2.9: - resolution: {integrity: sha512-jq2xmw3reIqik/6ibUSbNKGR+Xvr9wkAEwexiOl+5WQ5BeYJpw4dmDmsFQf+SQuWaSEUUPolbzkakRQM778Kdg==} + /@storybook/ui/6.3.7: + resolution: {integrity: sha512-PBeRO8qtwAbtHvxUgNtz/ChUR6qnN+R37dMaIs3Y96jbks1fS2K9Mt7W5s1HnUbWbg2KsZMv9D4VYPBasY+Isw==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: '@emotion/core': 10.1.1 - '@storybook/addons': 6.2.9 - '@storybook/api': 6.2.9 - '@storybook/channels': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/components': 6.2.9 - '@storybook/core-events': 6.2.9 - '@storybook/router': 6.2.9 + '@storybook/addons': 6.3.7 + '@storybook/api': 6.3.7 + '@storybook/channels': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/components': 6.3.7 + '@storybook/core-events': 6.3.7 + '@storybook/router': 6.3.7 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.2.9 + '@storybook/theming': 6.3.7 '@types/markdown-to-jsx': 6.11.3 copy-to-clipboard: 3.3.1 - core-js: 3.13.0 - core-js-pure: 3.13.0 - downshift: 6.1.3 + core-js: 3.16.2 + core-js-pure: 3.16.2 + downshift: 6.1.7 emotion-theming: 10.0.27_@emotion+core@10.1.1 fuse.js: 3.6.1 global: 4.4.0 lodash: 4.17.21 markdown-to-jsx: 6.11.4 memoizerific: 1.11.3 - polished: 4.1.2 + polished: 4.1.3 qs: 6.10.1 react-draggable: 4.4.3 react-helmet-async: 1.0.9 react-sizeme: 3.0.1 - regenerator-runtime: 0.13.7 + regenerator-runtime: 0.13.9 resolve-from: 5.0.0 store2: 2.12.0 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/ui/6.2.9_react-dom@16.14.0+react@16.14.0: - resolution: {integrity: sha512-jq2xmw3reIqik/6ibUSbNKGR+Xvr9wkAEwexiOl+5WQ5BeYJpw4dmDmsFQf+SQuWaSEUUPolbzkakRQM778Kdg==} + /@storybook/ui/6.3.7_react-dom@16.14.0+react@16.14.0: + resolution: {integrity: sha512-PBeRO8qtwAbtHvxUgNtz/ChUR6qnN+R37dMaIs3Y96jbks1fS2K9Mt7W5s1HnUbWbg2KsZMv9D4VYPBasY+Isw==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: '@emotion/core': 10.1.1_react@16.14.0 - '@storybook/addons': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/api': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/channels': 6.2.9 - '@storybook/client-logger': 6.2.9 - '@storybook/components': 6.2.9_react-dom@16.14.0+react@16.14.0 - '@storybook/core-events': 6.2.9 - '@storybook/router': 6.2.9_react-dom@16.14.0+react@16.14.0 + '@storybook/addons': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/api': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/channels': 6.3.7 + '@storybook/client-logger': 6.3.7 + '@storybook/components': 6.3.7_react-dom@16.14.0+react@16.14.0 + '@storybook/core-events': 6.3.7 + '@storybook/router': 6.3.7_react-dom@16.14.0+react@16.14.0 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.2.9_react-dom@16.14.0+react@16.14.0 + '@storybook/theming': 6.3.7_react-dom@16.14.0+react@16.14.0 '@types/markdown-to-jsx': 6.11.3 copy-to-clipboard: 3.3.1 - core-js: 3.13.0 - core-js-pure: 3.13.0 - downshift: 6.1.3_react@16.14.0 + core-js: 3.16.2 + core-js-pure: 3.16.2 + downshift: 6.1.7_react@16.14.0 emotion-theming: 10.0.27_5f216699bc8c1f24088b3bf77b7cbbdf fuse.js: 3.6.1 global: 4.4.0 lodash: 4.17.21 markdown-to-jsx: 6.11.4_react@16.14.0 memoizerific: 1.11.3 - polished: 4.1.2 + polished: 4.1.3 qs: 6.10.1 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 react-draggable: 4.4.3 react-helmet-async: 1.0.9_react-dom@16.14.0+react@16.14.0 react-sizeme: 3.0.1_react-dom@16.14.0+react@16.14.0 - regenerator-runtime: 0.13.7 + regenerator-runtime: 0.13.9 resolve-from: 5.0.0 store2: 2.12.0 transitivePeerDependencies: @@ -6077,76 +5296,86 @@ packages: defer-to-connect: 1.1.3 dev: true - /@testing-library/dom/7.30.4: - resolution: {integrity: sha512-GObDVMaI4ARrZEXaRy4moolNAxWPKvEYNV/fa6Uc2eAzR/t4otS6A7EhrntPBIQLeehL9DbVhscvvv7gd6hWqA==} + /@testing-library/dom/7.31.2: + resolution: {integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==} engines: {node: '>=10'} dependencies: - '@babel/code-frame': 7.12.13 - '@babel/runtime': 7.14.0 - '@types/aria-query': 4.2.1 + '@babel/code-frame': 7.14.5 + '@babel/runtime': 7.15.3 + '@types/aria-query': 4.2.2 aria-query: 4.2.2 - chalk: 4.1.1 - dom-accessibility-api: 0.5.4 + chalk: 4.1.2 + dom-accessibility-api: 0.5.7 lz-string: 1.4.4 pretty-format: 26.6.2 dev: true - /@testing-library/preact/2.0.1_preact@10.5.13: + /@testing-library/preact/2.0.1_preact@10.5.14: resolution: {integrity: sha512-79kwVOY+3caoLgaPbiPzikjgY0Aya7Fc7TvGtR1upCnz2wrtmPDnN2t9vO7I7vDP2zoA+feSwOH5Q0BFErhaaQ==} engines: {node: '>= 10'} peerDependencies: preact: '>=10 || ^10.0.0-alpha.0 || ^10.0.0-beta.0' dependencies: - '@testing-library/dom': 7.30.4 - preact: 10.5.13 + '@testing-library/dom': 7.31.2 + preact: 10.5.14 + dev: true + + /@tootallnate/once/1.1.2: + resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} + engines: {node: '>= 6'} + dev: true + + /@trysound/sax/0.1.1: + resolution: {integrity: sha512-Z6DoceYb/1xSg5+e+ZlPZ9v0N16ZvZ+wYMraFue4HYrE4ttONKtsvruIRf6t9TBR0YvSOfi1hUU0fJfBLCDYow==} + engines: {node: '>=10.13.0'} dev: true /@types/argparse/1.0.38: resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==} dev: true - /@types/aria-query/4.2.1: - resolution: {integrity: sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg==} + /@types/aria-query/4.2.2: + resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} dev: true - /@types/babel__core/7.1.14: - resolution: {integrity: sha512-zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g==} + /@types/babel__core/7.1.15: + resolution: {integrity: sha512-bxlMKPDbY8x5h6HBwVzEOk2C8fb6SLfYQ5Jw3uBYuYF1lfWk/kbLd81la82vrIkBb0l+JdmrZaDikPrNxpS/Ew==} dependencies: - '@babel/parser': 7.14.1 - '@babel/types': 7.14.1 - '@types/babel__generator': 7.6.2 - '@types/babel__template': 7.4.0 - '@types/babel__traverse': 7.11.1 + '@babel/parser': 7.15.3 + '@babel/types': 7.15.0 + '@types/babel__generator': 7.6.3 + '@types/babel__template': 7.4.1 + '@types/babel__traverse': 7.14.2 dev: true - /@types/babel__generator/7.6.2: - resolution: {integrity: sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==} + /@types/babel__generator/7.6.3: + resolution: {integrity: sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==} dependencies: - '@babel/types': 7.14.1 + '@babel/types': 7.15.0 dev: true - /@types/babel__template/7.4.0: - resolution: {integrity: sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==} + /@types/babel__template/7.4.1: + resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.14.1 - '@babel/types': 7.14.1 + '@babel/parser': 7.15.3 + '@babel/types': 7.15.0 dev: true - /@types/babel__traverse/7.11.1: - resolution: {integrity: sha512-Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw==} + /@types/babel__traverse/7.14.2: + resolution: {integrity: sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==} dependencies: - '@babel/types': 7.14.1 + '@babel/types': 7.15.0 dev: true - /@types/braces/3.0.0: - resolution: {integrity: sha512-TbH79tcyi9FHwbyboOKeRachRq63mSuWYXOflsNO9ZyE5ClQ/JaozNKl+aWUq87qPNsXasXxi2AbgfwIJ+8GQw==} + /@types/braces/3.0.1: + resolution: {integrity: sha512-+euflG6ygo4bn0JHtn4pYqcXwRtLvElQ7/nnjDu7iYG56H0+OhCd7d6Ug0IE3WcFpZozBKW2+80FUbv5QGk5AQ==} dev: true /@types/chrome/0.0.128: resolution: {integrity: sha512-eGc599TDtersMBW1cSnExHm0IHrXrO5xdk6Sa2Dq30ED+hR1rpT1ez0NNcCgvGO52nmktGfyvd3Uyquzv3LL4g==} dependencies: - '@types/filesystem': 0.0.29 - '@types/har-format': 1.2.5 + '@types/filesystem': 0.0.32 + '@types/har-format': 1.2.7 dev: true /@types/color-convert/2.0.0: @@ -6163,57 +5392,53 @@ packages: resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} dev: true - /@types/estree/0.0.46: - resolution: {integrity: sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg==} - dev: true - - /@types/estree/0.0.47: - resolution: {integrity: sha512-c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg==} + /@types/estree/0.0.50: + resolution: {integrity: sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==} dev: true - /@types/filesystem/0.0.29: - resolution: {integrity: sha512-85/1KfRedmfPGsbK8YzeaQUyV1FQAvMPMTuWFQ5EkLd2w7szhNO96bk3Rh/SKmOfd9co2rCLf0Voy4o7ECBOvw==} + /@types/filesystem/0.0.32: + resolution: {integrity: sha512-Yuf4jR5YYMR2DVgwuCiP11s0xuVRyPKmz8vo6HBY3CGdeMj8af93CFZX+T82+VD1+UqHOxTq31lO7MI7lepBtQ==} dependencies: - '@types/filewriter': 0.0.28 + '@types/filewriter': 0.0.29 dev: true - /@types/filewriter/0.0.28: - resolution: {integrity: sha1-wFTor02d11205jq8dviFFocU1LM=} + /@types/filewriter/0.0.29: + resolution: {integrity: sha512-BsPXH/irW0ht0Ji6iw/jJaK8Lj3FJemon2gvEqHKpCdDCeemHa+rI3WBGq5z7cDMZgoLjY40oninGxqk+8NzNQ==} dev: true /@types/glob-base/0.3.0: resolution: {integrity: sha1-pYHWiDR+EOUN18F9byiAoQNUMZ0=} dev: true - /@types/glob/7.1.3: - resolution: {integrity: sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==} + /@types/glob/7.1.4: + resolution: {integrity: sha512-w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA==} dependencies: - '@types/minimatch': 3.0.4 - '@types/node': 14.14.44 + '@types/minimatch': 3.0.5 + '@types/node': 14.17.10 dev: true /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 14.14.44 + '@types/node': 14.17.10 dev: true - /@types/har-format/1.2.5: - resolution: {integrity: sha512-IG8AE1m2pWtPqQ7wXhFhy6Q59bwwnLwO36v5Rit2FrbXCIp8Sk8E2PfUCreyrdo17STwFSKDAkitVuVYbpEHvQ==} + /@types/har-format/1.2.7: + resolution: {integrity: sha512-/TPzUG0tJn5x1TUcVLlDx2LqbE58hyOzDVAc9kf8SpOEmguHjU6bKUyfqb211AdqLOmU/SNyXvLKPNP5qTlfRw==} dev: true - /@types/hast/2.3.1: - resolution: {integrity: sha512-viwwrB+6xGzw+G1eWpF9geV3fnsDgXqHG+cqgiHrvQfDUW5hzhCyV7Sy3UJxhfRFBsgky2SSW33qi/YrIkjX5Q==} + /@types/hast/2.3.2: + resolution: {integrity: sha512-Op5W7jYgZI7AWKY5wQ0/QNMzQM7dGQPyW1rXKNiymVCy5iTfdPuGu4HhYNOM2sIv8gUfIuIdcYlXmAepwaowow==} dependencies: - '@types/unist': 2.0.3 + '@types/unist': 2.0.6 dev: true - /@types/history/4.7.8: - resolution: {integrity: sha512-S78QIYirQcUoo6UJZx9CSP0O2ix9IaeAXwQi26Rhr/+mg7qqPy8TzaxHSUut7eGjL8WmLccT7/MXf304WjqHcA==} + /@types/history/4.7.9: + resolution: {integrity: sha512-MUc6zSmU3tEVnkQ78q0peeEjKWPUADMlC/t++2bI8WnAG2tvYRPIgHG8lWkXwqc8MsUF6Z2MOf+Mh5sazOmhiQ==} dev: true - /@types/html-minifier-terser/5.1.1: - resolution: {integrity: sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA==} + /@types/html-minifier-terser/5.1.2: + resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==} dev: true /@types/is-function/1.0.0: @@ -6230,14 +5455,14 @@ packages: '@types/istanbul-lib-coverage': 2.0.3 dev: true - /@types/istanbul-reports/3.0.0: - resolution: {integrity: sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==} + /@types/istanbul-reports/3.0.1: + resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} dependencies: '@types/istanbul-lib-report': 3.0.0 dev: true - /@types/jest/26.0.23: - resolution: {integrity: sha512-ZHLmWMJ9jJ9PTiT58juykZpL7KjwJywFN3Rr2pTSkyQfydf/rk22yS7W8p5DaVUMQ2BQC7oYiU3FjbTM/mYrOA==} + /@types/jest/26.0.24: + resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==} dependencies: jest-diff: 26.6.2 pretty-format: 26.6.2 @@ -6247,8 +5472,8 @@ packages: resolution: {integrity: sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==} dev: true - /@types/json-schema/7.0.8: - resolution: {integrity: sha512-YSBPTLTVm2e2OoQIDYx8HaeWJ5tTToLH67kXR7zYNGupXMEHa2++G8k+DczX2cFVgalypqtyZIcU19AFcmOpmg==} + /@types/json-schema/7.0.9: + resolution: {integrity: sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==} dev: true /@types/json5/0.0.29: @@ -6258,29 +5483,29 @@ packages: /@types/markdown-to-jsx/6.11.3: resolution: {integrity: sha512-30nFYpceM/ZEvhGiqWjm5quLUxNeld0HCzJEXMZZDpq53FPkS85mTwkWtCXzCqq8s5JYLgM5W392a02xn8Bdaw==} dependencies: - '@types/react': 17.0.7 + '@types/react': 17.0.19 dev: true - /@types/mdast/3.0.3: - resolution: {integrity: sha512-SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw==} + /@types/mdast/3.0.8: + resolution: {integrity: sha512-HdUXWDNtDenuVJFrV2xBCLEMiw1Vn7FMuJxqJC5oBvC2adA3pgtp6CPCIMQdz3pmWxGuJjT+hOp6FnOXy6dXoQ==} dependencies: - '@types/unist': 2.0.3 + '@types/unist': 2.0.6 dev: true - /@types/micromatch/4.0.1: - resolution: {integrity: sha512-my6fLBvpY70KattTNzYOK6KU1oR1+UCz9ug/JbcF5UrEmeCt9P7DV2t7L8+t18mMPINqGQCE4O8PLOPbI84gxw==} + /@types/micromatch/4.0.2: + resolution: {integrity: sha512-oqXqVb0ci19GtH0vOA/U2TmHTcRY9kuZl4mqUxe0QmJAlIW13kzhuK5pi1i9+ngav8FjpSb9FVS/GE00GLX1VA==} dependencies: - '@types/braces': 3.0.0 + '@types/braces': 3.0.1 dev: true - /@types/minimatch/3.0.4: - resolution: {integrity: sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA==} + /@types/minimatch/3.0.5: + resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} dev: true - /@types/node-fetch/2.5.10: - resolution: {integrity: sha512-IpkX0AasN44hgEad0gEF/V6EgR5n69VEqPEgnmoM8GsIGro3PowbWs4tR6IhxUTyPLpOn+fiGG6nrQhcmoCuIQ==} + /@types/node-fetch/2.5.12: + resolution: {integrity: sha512-MKgC4dlq4kKNa/mYrwpKfzQMB5X3ee5U6fSprkKpToBqBmX4nFZL9cW5jl6sWn+xpRJ7ypWh2yyqqr8UUCstSw==} dependencies: - '@types/node': 14.17.1 + '@types/node': 14.17.10 form-data: 3.0.1 dev: true @@ -6295,24 +5520,24 @@ packages: resolution: {integrity: sha512-dBPaxocOK6UVyvhbnpFIj2W+S+1cBTkHQbFQfeeJhoKFbzYcVUGHvddeWPSucKATb3F0+pgDq0i6ghEaZjsugA==} dev: true - /@types/node/14.14.44: - resolution: {integrity: sha512-+gaugz6Oce6ZInfI/tK4Pq5wIIkJMEJUu92RB3Eu93mtj4wjjjz9EB5mLp5s1pSsLXdC/CPut/xF20ZzAQJbTA==} - dev: true - /@types/node/14.17.1: resolution: {integrity: sha512-/tpUyFD7meeooTRwl3sYlihx2BrJE7q9XF71EguPFIySj9B7qgnRtHsHTho+0AUm4m1SvWGm6uSncrR94q6Vtw==} dev: true - /@types/normalize-package-data/2.4.0: - resolution: {integrity: sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==} + /@types/node/14.17.10: + resolution: {integrity: sha512-09x2d6kNBwjHgyh3jOUE2GE4DFoxDriDvWdu6mFhMP1ysynGYazt4ecZmJlL6/fe4Zi2vtYvTvtL7epjQQrBhA==} + dev: true + + /@types/normalize-package-data/2.4.1: + resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} dev: true - /@types/npmlog/4.1.2: - resolution: {integrity: sha512-4QQmOF5KlwfxJ5IGXFIudkeLCdMABz03RcUXu+LCb24zmln8QW6aDjuGl4d4XPVLf2j+FnjelHTP7dvceAFbhA==} + /@types/npmlog/4.1.3: + resolution: {integrity: sha512-1TcL7YDYCtnHmLhTWbum+IIwLlvpaHoEKS2KNIngEwLzwgDeHaebaEHHbQp8IqzNQ9IYiboLKUjAf7MZqG63+w==} dev: true - /@types/overlayscrollbars/1.12.0: - resolution: {integrity: sha512-h/pScHNKi4mb+TrJGDon8Yb06ujFG0mSg12wIO0sWMUF3dQIe2ExRRdNRviaNt9IjxIiOfnRr7FsQAdHwK4sMg==} + /@types/overlayscrollbars/1.12.1: + resolution: {integrity: sha512-V25YHbSoKQN35UasHf0EKD9U2vcmexRSp78qa8UglxFH8H3D+adEa9zGZwrqpH4TdvqeMrgMqVqsLB4woAryrQ==} dev: true /@types/parse-json/4.0.0: @@ -6323,115 +5548,119 @@ packages: resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==} dev: true - /@types/prettier/2.2.3: - resolution: {integrity: sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA==} + /@types/prettier/2.3.2: + resolution: {integrity: sha512-eI5Yrz3Qv4KPUa/nSIAi0h+qX0XyewOliug5F2QAtuRg6Kjg6jfmxe1GIwoIRhZspD1A0RP8ANrPwvEXXtRFog==} dev: true - /@types/pretty-hrtime/1.0.0: - resolution: {integrity: sha512-xl+5r2rcrxdLViAYkkiLMYsoUs3qEyrAnHFyEzYysgRxdVp3WbhysxIvJIxZp9FvZ2CYezh0TaHZorivH+voOQ==} + /@types/pretty-hrtime/1.0.1: + resolution: {integrity: sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==} dev: true - /@types/prop-types/15.7.3: - resolution: {integrity: sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==} + /@types/prop-types/15.7.4: + resolution: {integrity: sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==} dev: true - /@types/q/1.5.4: - resolution: {integrity: sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==} + /@types/q/1.5.5: + resolution: {integrity: sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==} dev: true - /@types/qs/6.9.6: - resolution: {integrity: sha512-0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA==} + /@types/qs/6.9.7: + resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} dev: true - /@types/reach__router/1.3.7: - resolution: {integrity: sha512-cyBEb8Ef3SJNH5NYEIDGPoMMmYUxROatuxbICusVRQIqZUB85UCt6R2Ok60tKS/TABJsJYaHyNTW3kqbpxlMjg==} + /@types/reach__router/1.3.9: + resolution: {integrity: sha512-N6rqQqTTAV/zKLfK3iq9Ww3wqCEhTZvsilhl0zI09zETdVq1QGmJH6+/xnj8AFUWIrle2Cqo+PGM/Ltr1vBb9w==} dependencies: - '@types/react': 17.0.7 + '@types/react': 17.0.19 dev: true /@types/react-syntax-highlighter/11.0.5: resolution: {integrity: sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==} dependencies: - '@types/react': 17.0.7 + '@types/react': 17.0.19 dev: true - /@types/react/17.0.7: - resolution: {integrity: sha512-lBc3fY20hRFQ/pXQT2XdtmpJeXZnRH8N+WPnEzEfPTzuKmaJTA7k/xGWHBaPvKceKpbf0ZnMlLWY/0sFZ5rfkw==} + /@types/react/17.0.19: + resolution: {integrity: sha512-sX1HisdB1/ZESixMTGnMxH9TDe8Sk709734fEQZzCV/4lSu9kJCPbo2PbTRoZM+53Pp0P10hYVyReUueGwUi4A==} dependencies: - '@types/prop-types': 15.7.3 - '@types/scheduler': 0.16.1 + '@types/prop-types': 15.7.4 + '@types/scheduler': 0.16.2 csstype: 3.0.8 dev: true - /@types/resolve/0.0.8: - resolution: {integrity: sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==} - dependencies: - '@types/node': 14.14.44 - dev: true - /@types/resolve/1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 14.14.34 + '@types/node': 14.17.10 dev: true - /@types/scheduler/0.16.1: - resolution: {integrity: sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==} + /@types/scheduler/0.16.2: + resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} dev: true /@types/source-list-map/0.1.2: resolution: {integrity: sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==} dev: true - /@types/stack-utils/2.0.0: - resolution: {integrity: sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==} + /@types/stack-utils/2.0.1: + resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} + dev: true + + /@types/tapable/1.0.8: + resolution: {integrity: sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==} dev: true - /@types/tapable/1.0.7: - resolution: {integrity: sha512-0VBprVqfgFD7Ehb2vd8Lh9TG3jP98gvr8rgehQqzztZNI7o8zS8Ad4jyZneKELphpuE212D8J70LnSNQSyO6bQ==} + /@types/trusted-types/2.0.2: + resolution: {integrity: sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==} dev: true - /@types/uglify-js/3.13.0: - resolution: {integrity: sha512-EGkrJD5Uy+Pg0NUR8uA4bJ5WMfljyad0G+784vLCNUkD+QwOJXUbBYExXfVGf7YtyzdQp3L/XMYcliB987kL5Q==} + /@types/uglify-js/3.13.1: + resolution: {integrity: sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==} dependencies: source-map: 0.6.1 dev: true - /@types/unist/2.0.3: - resolution: {integrity: sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==} + /@types/unist/2.0.6: + resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==} dev: true - /@types/webpack-env/1.16.0: - resolution: {integrity: sha512-Fx+NpfOO0CpeYX2g9bkvX8O5qh9wrU1sOF4g8sft4Mu7z+qfe387YlyY8w8daDyDsKY5vUxM0yxkAYnbkRbZEw==} + /@types/webpack-env/1.16.2: + resolution: {integrity: sha512-vKx7WNQNZDyJveYcHAm9ZxhqSGLYwoyLhrHjLBOkw3a7cT76sTdjgtwyijhk1MaHyRIuSztcVwrUOO/NEu68Dw==} dev: true - /@types/webpack-sources/2.1.0: - resolution: {integrity: sha512-LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg==} + /@types/webpack-sources/3.2.0: + resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} dependencies: - '@types/node': 14.17.1 + '@types/node': 14.17.10 '@types/source-list-map': 0.1.2 source-map: 0.7.3 dev: true - /@types/webpack/4.41.29: - resolution: {integrity: sha512-6pLaORaVNZxiB3FSHbyBiWM7QdazAWda1zvAq4SbZObZqHSDbWLi62iFdblVea6SK9eyBIVp5yHhKt/yNQdR7Q==} + /@types/webpack/4.41.30: + resolution: {integrity: sha512-GUHyY+pfuQ6haAfzu4S14F+R5iGRwN6b2FRNJY7U0NilmFAqbsOfK6j1HwuLBAqwRIT+pVdNDJGJ6e8rpp0KHA==} dependencies: - '@types/node': 14.17.1 - '@types/tapable': 1.0.7 - '@types/uglify-js': 3.13.0 - '@types/webpack-sources': 2.1.0 + '@types/node': 14.17.10 + '@types/tapable': 1.0.8 + '@types/uglify-js': 3.13.1 + '@types/webpack-sources': 3.2.0 anymatch: 3.1.2 source-map: 0.6.1 dev: true - /@types/yargs-parser/20.2.0: - resolution: {integrity: sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==} + /@types/yargs-parser/20.2.1: + resolution: {integrity: sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==} + dev: true + + /@types/yargs/15.0.14: + resolution: {integrity: sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==} + dependencies: + '@types/yargs-parser': 20.2.1 dev: true - /@types/yargs/15.0.13: - resolution: {integrity: sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==} + /@types/yargs/16.0.4: + resolution: {integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==} dependencies: - '@types/yargs-parser': 20.2.0 + '@types/yargs-parser': 20.2.1 dev: true /@typescript-eslint/eslint-plugin/4.14.0_980e7d90d2d08155204a38366bd3b934: @@ -6747,7 +5976,7 @@ packages: resolution: {integrity: sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==} engines: {node: '>= 0.6'} dependencies: - mime-types: 2.1.30 + mime-types: 2.1.32 negotiator: 0.6.2 dev: true @@ -6777,6 +6006,14 @@ packages: acorn: 7.4.1 dev: true + /acorn-jsx/5.3.2_acorn@7.4.1: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 7.4.1 + dev: true + /acorn-walk/6.2.0: resolution: {integrity: sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==} engines: {node: '>=0.4.0'} @@ -6787,8 +6024,8 @@ packages: engines: {node: '>=0.4.0'} dev: true - /acorn-walk/8.0.2: - resolution: {integrity: sha512-+bpA9MJsHdZ4bgfDcpk0ozQyhhVct7rzOmO0s1IIr0AGGgKBljss8n2zp11rRP2wid5VGeh04CgeKzgat5/25A==} + /acorn-walk/8.1.1: + resolution: {integrity: sha512-FbJdceMlPHEAWJOILDk1fXD8lnTlEIWFkqtfk+MvmL5q/qlHfN7GEHcsFZWt/Tea9jRNPWUZG4G976nqAAmU9w==} engines: {node: '>=0.4.0'} dev: true @@ -6810,14 +6047,8 @@ packages: hasBin: true dev: true - /acorn/8.1.0: - resolution: {integrity: sha512-LWCF/Wn0nfHOmJ9rzQApGnxnvgfROzGilS8936rqN/lfcYkY9MYZzdMqN+2NJ4SlTc+m5HiSa+kNfDtI64dwUA==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true - - /acorn/8.2.4: - resolution: {integrity: sha512-Ibt84YwBDDA890eDiDCEqcbwvHlBvzzDkU2cGBBDDI1QWT12jTiXIOn2CIw5KK4i6N5Z2HUxwYjzriDyqaqqZg==} + /acorn/8.4.1: + resolution: {integrity: sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==} engines: {node: '>=0.4.0'} hasBin: true dev: true @@ -6827,6 +6058,15 @@ packages: engines: {node: '>= 0.12.0'} dev: true + /agent-base/6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + dependencies: + debug: 4.3.2 + transitivePeerDependencies: + - supports-color + dev: true + /aggregate-error/3.1.0: resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} engines: {node: '>=8'} @@ -6845,16 +6085,16 @@ packages: es6-shim: 0.35.6 function.prototype.name: 1.1.4 globalthis: 1.0.2 - object.entries: 1.1.3 + object.entries: 1.1.4 object.fromentries: 2.0.4 object.getownpropertydescriptors: 2.1.2 - object.values: 1.1.3 + object.values: 1.1.4 promise.allsettled: 1.0.4 promise.prototype.finally: 3.1.2 string.prototype.matchall: 4.0.5 string.prototype.padend: 3.1.2 string.prototype.padstart: 3.1.2 - symbol.prototype.description: 1.0.4 + symbol.prototype.description: 1.0.5 dev: true /ajv-errors/1.0.1_ajv@6.12.6: @@ -6891,6 +6131,15 @@ packages: uri-js: 4.4.1 dev: true + /ajv/8.6.2: + resolution: {integrity: sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w==} + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 + dev: true + /alphanum-sort/1.0.2: resolution: {integrity: sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=} dev: true @@ -6958,8 +6207,8 @@ packages: color-convert: 2.0.1 dev: true - /ansi-styles/5.1.0: - resolution: {integrity: sha512-osxifZo3ar56+e8tdYreU6p8FZGciBHo5O0JoDAxMUqZuyNUb+yHEwYtJZ+Z32R459jEgtwVf1u8D7qYwU0l6w==} + /ansi-styles/5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} engines: {node: '>=10'} dev: true @@ -6978,20 +6227,12 @@ packages: normalize-path: 2.1.1 dev: true - /anymatch/3.1.1: - resolution: {integrity: sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==} - engines: {node: '>= 8'} - dependencies: - normalize-path: 3.0.0 - picomatch: 2.2.2 - dev: true - /anymatch/3.1.2: resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} engines: {node: '>= 8'} dependencies: normalize-path: 3.0.0 - picomatch: 2.2.3 + picomatch: 2.3.0 dev: true /app-root-dir/1.0.2: @@ -7030,8 +6271,8 @@ packages: resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} engines: {node: '>=6.0'} dependencies: - '@babel/runtime': 7.14.0 - '@babel/runtime-corejs3': 7.14.0 + '@babel/runtime': 7.15.3 + '@babel/runtime-corejs3': 7.15.3 dev: true /arr-diff/4.0.0: @@ -7053,10 +6294,6 @@ packages: resolution: {integrity: sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=} dev: true - /array-filter/1.0.0: - resolution: {integrity: sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=} - dev: true - /array-find-index/1.0.2: resolution: {integrity: sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=} engines: {node: '>=0.10.0'} @@ -7087,9 +6324,9 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.2 + es-abstract: 1.18.5 get-intrinsic: 1.1.1 - is-string: 1.0.6 + is-string: 1.0.7 dev: true /array-union/1.0.2: @@ -7114,13 +6351,24 @@ packages: engines: {node: '>=0.10.0'} dev: true + /array.prototype.filter/1.0.0: + resolution: {integrity: sha512-TfO1gz+tLm+Bswq0FBOXPqAchtCr2Rn48T8dLJoRFl8NoEosjZmzptmuo1X8aZBzZcqsR1W8U761tjACJtngTQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.3 + es-abstract: 1.18.5 + es-array-method-boxes-properly: 1.0.0 + is-string: 1.0.7 + dev: true + /array.prototype.flat/1.2.4: resolution: {integrity: sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.5 dev: true /array.prototype.flatmap/1.2.4: @@ -7129,7 +6377,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0 + es-abstract: 1.18.5 function-bind: 1.1.1 dev: true @@ -7139,9 +6387,9 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.2 + es-abstract: 1.18.5 es-array-method-boxes-properly: 1.0.0 - is-string: 1.0.6 + is-string: 1.0.7 dev: true /arrgv/1.0.2: @@ -7229,16 +6477,32 @@ packages: hasBin: true dev: true + /autoprefixer/10.3.1_postcss@8.3.6: + resolution: {integrity: sha512-L8AmtKzdiRyYg7BUXJTzigmhbQRCXFKz6SA1Lqo0+AR2FBbQ4aTAPFSDlOutnFkjhiz8my4agGXog1xlMjPJ6A==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.16.8 + caniuse-lite: 1.0.30001251 + colorette: 1.3.0 + fraction.js: 4.1.1 + normalize-range: 0.1.2 + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /autoprefixer/9.8.6: resolution: {integrity: sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==} hasBin: true dependencies: - browserslist: 4.16.6 - caniuse-lite: 1.0.30001223 - colorette: 1.2.2 + browserslist: 4.16.8 + caniuse-lite: 1.0.30001251 + colorette: 1.3.0 normalize-range: 0.1.2 num2fraction: 1.2.2 - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 4.1.0 dev: true @@ -7248,14 +6512,14 @@ packages: hasBin: true dependencies: '@concordance/react': 2.0.0 - acorn: 8.1.0 - acorn-walk: 8.0.2 - ansi-styles: 5.1.0 + acorn: 8.4.1 + acorn-walk: 8.1.1 + ansi-styles: 5.2.0 arrgv: 1.0.2 arrify: 2.0.1 callsites: 3.1.0 - chalk: 4.1.0 - chokidar: 3.5.1 + chalk: 4.1.2 + chokidar: 3.5.2 chunkd: 2.0.1 ci-info: 2.0.0 ci-parallel-vars: 1.0.1 @@ -7265,14 +6529,14 @@ packages: code-excerpt: 3.0.0 common-path-prefix: 3.0.0 concordance: 5.0.4 - convert-source-map: 1.7.0 + convert-source-map: 1.8.0 currently-unhandled: 0.4.1 - debug: 4.3.1 + debug: 4.3.2 del: 6.0.0 emittery: 0.8.1 equal-length: 1.0.1 figures: 3.2.0 - globby: 11.0.2 + globby: 11.0.4 ignore-by-default: 2.0.0 import-local: 3.0.2 indent-string: 4.0.0 @@ -7282,12 +6546,12 @@ packages: lodash: 4.17.21 matcher: 3.0.0 md5-hex: 3.0.1 - mem: 8.0.0 + mem: 8.1.1 ms: 2.1.3 - ora: 5.3.0 + ora: 5.4.1 p-event: 4.2.0 p-map: 4.0.0 - picomatch: 2.2.2 + picomatch: 2.3.0 pkg-conf: 3.1.0 plur: 4.0.0 pretty-ms: 7.0.1 @@ -7320,15 +6584,15 @@ packages: engines: {node: '>=4'} dev: true - /axe-core/4.2.1: - resolution: {integrity: sha512-evY7DN8qSIbsW2H/TWQ1bX3sXN1d4MNb5Vb4n7BzPuCwRHdkZ1H2eNLuSh73EoQqkGKUtju2G2HCcjCfhvZIAA==} + /axe-core/4.3.2: + resolution: {integrity: sha512-5LMaDRWm8ZFPAEdzTYmgjjEdj1YnQcpfrVajO/sn/LhbpGp0Y0H64c2hLZI1gRMxfA+w1S71Uc/nHaOXgcCvGg==} engines: {node: '>=4'} dev: true /axios/0.21.1: resolution: {integrity: sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==} dependencies: - follow-redirects: 1.14.0_debug@4.3.1 + follow-redirects: 1.14.2_debug@4.3.2 transitivePeerDependencies: - debug @@ -7346,13 +6610,6 @@ packages: webpack: 4.46.0 dev: true - /babel-extract-comments/1.0.0: - resolution: {integrity: sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==} - engines: {node: '>=4'} - dependencies: - babylon: 6.18.0 - dev: true - /babel-helper-builder-react-jsx/6.26.0: resolution: {integrity: sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=} dependencies: @@ -7361,67 +6618,71 @@ packages: esutils: 2.0.3 dev: true - /babel-jest/26.6.3_@babel+core@7.14.0: + /babel-jest/26.6.3_@babel+core@7.15.0: 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.14.0 + '@babel/core': 7.15.0 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 - '@types/babel__core': 7.1.14 + '@types/babel__core': 7.1.15 babel-plugin-istanbul: 6.0.0 - babel-preset-jest: 26.6.2_@babel+core@7.14.0 - chalk: 4.1.1 - graceful-fs: 4.2.6 + babel-preset-jest: 26.6.2_@babel+core@7.15.0 + chalk: 4.1.2 + graceful-fs: 4.2.8 slash: 3.0.0 transitivePeerDependencies: - supports-color dev: true - /babel-loader/8.2.2_105470dfa535e5f605a4a54ef7d81e87: - resolution: {integrity: sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==} - engines: {node: '>= 8.9'} + /babel-jest/27.0.6_@babel+core@7.15.0: + resolution: {integrity: sha512-iTJyYLNc4wRofASmofpOc5NK9QunwMk+TLFgGXsTFS8uEqmd8wdI7sga0FPe2oVH3b5Agt/EAK1QjPEuKL8VfA==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: - '@babel/core': ^7.0.0 - webpack: '>=2' + '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.14.3 - find-cache-dir: 3.3.1 - loader-utils: 1.4.0 - make-dir: 3.1.0 - schema-utils: 2.7.1 - webpack: 4.46.0 + '@babel/core': 7.15.0 + '@jest/transform': 27.0.6 + '@jest/types': 27.0.6 + '@types/babel__core': 7.1.15 + babel-plugin-istanbul: 6.0.0 + babel-preset-jest: 27.0.6_@babel+core@7.15.0 + chalk: 4.1.2 + graceful-fs: 4.2.8 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color dev: true - /babel-loader/8.2.2_62db0ddfe66b18ac47f4a847587d24ab: + /babel-loader/8.2.2_@babel+core@7.15.0: resolution: {integrity: sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 find-cache-dir: 3.3.1 loader-utils: 1.4.0 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 4.46.0 dev: true - /babel-loader/8.2.2_@babel+core@7.14.0: + /babel-loader/8.2.2_be352a5a80662835a7707f972edfcfde: resolution: {integrity: sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 find-cache-dir: 3.3.1 loader-utils: 1.4.0 make-dir: 3.1.0 schema-utils: 2.7.1 + webpack: 4.46.0 dev: true /babel-plugin-apply-mdx-type-prop/1.6.22_@babel+core@7.12.9: @@ -7443,13 +6704,13 @@ packages: /babel-plugin-emotion/10.2.2: resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==} dependencies: - '@babel/helper-module-imports': 7.13.12 + '@babel/helper-module-imports': 7.14.5 '@emotion/hash': 0.8.0 '@emotion/memoize': 0.7.4 '@emotion/serialize': 0.11.16 babel-plugin-macros: 2.8.0 babel-plugin-syntax-jsx: 6.18.0 - convert-source-map: 1.7.0 + convert-source-map: 1.8.0 escape-string-regexp: 1.0.5 find-root: 1.1.0 source-map: 0.5.7 @@ -7465,7 +6726,7 @@ packages: resolution: {integrity: sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==} engines: {node: '>=8'} dependencies: - '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-plugin-utils': 7.14.5 '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 4.0.3 @@ -7478,16 +6739,26 @@ packages: resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/template': 7.12.13 - '@babel/types': 7.14.1 - '@types/babel__core': 7.1.14 - '@types/babel__traverse': 7.11.1 + '@babel/template': 7.14.5 + '@babel/types': 7.15.0 + '@types/babel__core': 7.1.15 + '@types/babel__traverse': 7.14.2 + dev: true + + /babel-plugin-jest-hoist/27.0.6: + resolution: {integrity: sha512-CewFeM9Vv2gM7Yr9n5eyyLVPRSiBnk6lKZRjgwYnGKSl9M14TMn2vkN02wTF04OGuSDLEzlWiMzvjXuW9mB6Gw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + '@babel/template': 7.14.5 + '@babel/types': 7.15.0 + '@types/babel__core': 7.1.15 + '@types/babel__traverse': 7.14.2 dev: true /babel-plugin-macros/2.8.0: resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 cosmiconfig: 6.0.0 resolve: 1.20.0 dev: true @@ -7496,127 +6767,88 @@ packages: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 cosmiconfig: 7.0.0 resolve: 1.20.0 dev: true - /babel-plugin-polyfill-corejs2/0.2.0_@babel+core@7.14.0: - resolution: {integrity: sha512-9bNwiR0dS881c5SHnzCmmGlMkJLl0OUZvxrxHo9w/iNoRuqaPjqlvBf4HrovXtQs/au5yKkpcdgfT1cC5PAZwg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.14.0 - '@babel/core': 7.14.0 - '@babel/helper-define-polyfill-provider': 0.2.0_@babel+core@7.14.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - - /babel-plugin-polyfill-corejs2/0.2.1_@babel+core@7.14.3: - resolution: {integrity: sha512-hXGSPbr6IbjeMyGew+3uGIAkRjBFSOJ9FLDZNOfHuyJZCcoia4nd/72J0bSgvfytcVfUcP/dxEVcUhVJuQRtSw==} + /babel-plugin-polyfill-corejs2/0.2.2: + resolution: {integrity: sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.14.0 - '@babel/core': 7.14.3 - '@babel/helper-define-polyfill-provider': 0.2.1_@babel+core@7.14.3 + '@babel/compat-data': 7.15.0 + '@babel/helper-define-polyfill-provider': 0.2.3 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs2/0.2.2_@babel+core@7.14.0: + /babel-plugin-polyfill-corejs2/0.2.2_@babel+core@7.15.0: resolution: {integrity: sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.14.7 - '@babel/core': 7.14.0 - '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.14.0 + '@babel/compat-data': 7.15.0 + '@babel/core': 7.15.0 + '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.15.0 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.14.3: + /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.15.0: resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.14.3 - core-js-compat: 3.13.0 - transitivePeerDependencies: - - supports-color - dev: true - - /babel-plugin-polyfill-corejs3/0.2.0_@babel+core@7.14.0: - resolution: {integrity: sha512-zZyi7p3BCUyzNxLx8KV61zTINkkV65zVkDAFNZmrTCRVhjo1jAS+YLvDJ9Jgd/w2tsAviCwFHReYfxO3Iql8Yg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-define-polyfill-provider': 0.2.0_@babel+core@7.14.0 - core-js-compat: 3.12.0 - transitivePeerDependencies: - - supports-color - dev: true - - /babel-plugin-polyfill-corejs3/0.2.1_@babel+core@7.14.3: - resolution: {integrity: sha512-WZCqF3DLUhdTD/P381MDJfuP18hdCZ+iqJ+wHtzhWENpsiof284JJ1tMQg1CE+hfCWyG48F7e5gDMk2c3Laz7w==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.14.3 - '@babel/helper-define-polyfill-provider': 0.2.1_@babel+core@7.14.3 - core-js-compat: 3.13.0 + '@babel/core': 7.15.0 + '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.15.0 + core-js-compat: 3.16.2 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.2.3_@babel+core@7.14.0: - resolution: {integrity: sha512-rCOFzEIJpJEAU14XCcV/erIf/wZQMmMT5l5vXOpL5uoznyOGfDIjPj6FVytMvtzaKSTSVKouOCTPJ5OMUZH30g==} + /babel-plugin-polyfill-corejs3/0.2.4: + resolution: {integrity: sha512-z3HnJE5TY/j4EFEa/qpQMSbcUJZ5JQi+3UFjXzn6pQCmIKc5Ug5j98SuYyH+m4xQnvKlMDIW4plLfgyVnd0IcQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.14.0 - core-js-compat: 3.15.2 + '@babel/helper-define-polyfill-provider': 0.2.3 + core-js-compat: 3.16.2 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.2.0_@babel+core@7.14.0: - resolution: {integrity: sha512-J7vKbCuD2Xi/eEHxquHN14bXAW9CXtecwuLrOIDJtcZzTaPzV1VdEfoUf9AzcRBMolKUQKM9/GVojeh0hFiqMg==} + /babel-plugin-polyfill-corejs3/0.2.4_@babel+core@7.15.0: + resolution: {integrity: sha512-z3HnJE5TY/j4EFEa/qpQMSbcUJZ5JQi+3UFjXzn6pQCmIKc5Ug5j98SuYyH+m4xQnvKlMDIW4plLfgyVnd0IcQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-define-polyfill-provider': 0.2.0_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.15.0 + core-js-compat: 3.16.2 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.2.1_@babel+core@7.14.3: - resolution: {integrity: sha512-T3bYyL3Sll2EtC94v3f+fA8M28q7YPTOZdB++SRHjvYZTvtd+WorMUq3tDTD4Q7Kjk1LG0gGromslKjcO5p2TA==} + /babel-plugin-polyfill-regenerator/0.2.2: + resolution: {integrity: sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.3 - '@babel/helper-define-polyfill-provider': 0.2.1_@babel+core@7.14.3 + '@babel/helper-define-polyfill-provider': 0.2.3 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.2.2_@babel+core@7.14.0: + /babel-plugin-polyfill-regenerator/0.2.2_@babel+core@7.15.0: resolution: {integrity: sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.14.0 - '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.15.0 transitivePeerDependencies: - supports-color dev: true @@ -7625,17 +6857,6 @@ packages: resolution: {integrity: sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=} dev: true - /babel-plugin-syntax-object-rest-spread/6.13.0: - resolution: {integrity: sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=} - dev: true - - /babel-plugin-transform-object-rest-spread/6.26.0: - resolution: {integrity: sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=} - dependencies: - babel-plugin-syntax-object-rest-spread: 6.13.0 - babel-runtime: 6.26.0 - dev: true - /babel-plugin-transform-react-jsx/6.24.1: resolution: {integrity: sha1-hAoCjn30YN/DotKfDA2R9jduZqM=} dependencies: @@ -7648,35 +6869,46 @@ packages: resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.14.0: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.15.0: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.14.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.14.0 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.14.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.14.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.14.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-syntax-top-level-await': 7.12.13_@babel+core@7.14.0 - dev: true - - /babel-preset-jest/26.6.2_@babel+core@7.14.0: + '@babel/core': 7.15.0 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.15.0 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.15.0 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.15.0 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.15.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.15.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.15.0 + dev: true + + /babel-preset-jest/26.6.2_@babel+core@7.15.0: resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} engines: {node: '>= 10.14.2'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 babel-plugin-jest-hoist: 26.6.2 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.14.0 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.15.0 + dev: true + + /babel-preset-jest/27.0.6_@babel+core@7.15.0: + resolution: {integrity: sha512-WObA0/Biw2LrVVwZkF/2GqbOdzhKD6Fkdwhoy9ASIrOWr/zodcSpQh72JOkEn6NWyjmnPDjNSqaGN4KnpKzhXw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.15.0 + babel-plugin-jest-hoist: 27.0.6 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.15.0 dev: true /babel-runtime/6.26.0: @@ -7695,11 +6927,6 @@ packages: to-fast-properties: 1.0.3 dev: true - /babylon/6.18.0: - resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} - hasBin: true - dev: true - /bail/1.0.5: resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} dev: true @@ -7746,16 +6973,6 @@ packages: open: 7.4.2 dev: true - /bfj/6.1.2: - resolution: {integrity: sha512-BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw==} - engines: {node: '>= 6.0.0'} - dependencies: - bluebird: 3.7.2 - check-types: 8.0.3 - hoopy: 0.1.4 - tryer: 1.0.1 - dev: true - /big-integer/1.6.48: resolution: {integrity: sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w==} engines: {node: '>=0.6'} @@ -7855,13 +7072,13 @@ packages: widest-line: 3.1.0 dev: true - /boxen/5.0.0: - resolution: {integrity: sha512-5bvsqw+hhgUi3oYGK0Vf4WpIkyemp60WBInn7+WNfoISzAqk/HX4L7WNROq38E6UR/y3YADpv6pEm4BfkeEAdA==} + /boxen/5.0.1: + resolution: {integrity: sha512-49VBlw+PrWEF51aCmy7QIteYPIFZxSpvqBdP/2itCPPlJ49kj9zg/XPRFrdkne2W+CfwXUls8exMvu1RysZpKA==} engines: {node: '>=10'} dependencies: ansi-align: 3.0.0 camelcase: 6.2.0 - chalk: 4.1.0 + chalk: 4.1.2 cli-boxes: 2.2.1 string-width: 4.2.2 type-fest: 0.20.2 @@ -7962,27 +7179,34 @@ packages: pako: 1.0.11 dev: true + /browserlist/1.0.1: + resolution: {integrity: sha512-nYq9jiWv+qXcgrJxQzivfEc7Wo2GvAKkeRViE5L3cUJpq4SZO6NZR710I/8T+OjE5BPECbzpm8rpUkwslE3nTg==} + hasBin: true + dependencies: + chalk: 2.4.2 + dev: true + /browserslist/4.14.2: resolution: {integrity: sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001230 - electron-to-chromium: 1.3.738 + caniuse-lite: 1.0.30001251 + electron-to-chromium: 1.3.813 escalade: 3.1.1 - node-releases: 1.1.72 + node-releases: 1.1.75 dev: true - /browserslist/4.16.6: - resolution: {integrity: sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==} + /browserslist/4.16.8: + resolution: {integrity: sha512-sc2m9ohR/49sWEbPj14ZSSZqp+kbi16aLao42Hmn3Z8FpjuMaq2xCA2l4zl9ITfyzvnvyE0hcg62YkIGKxgaNQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001223 - colorette: 1.2.2 - electron-to-chromium: 1.3.727 + caniuse-lite: 1.0.30001251 + colorette: 1.3.0 + electron-to-chromium: 1.3.813 escalade: 3.1.1 - node-releases: 1.1.71 + node-releases: 1.1.75 dev: true /bser/2.1.1: @@ -7991,8 +7215,8 @@ packages: node-int64: 0.4.0 dev: true - /buffer-from/1.1.1: - resolution: {integrity: sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==} + /buffer-from/1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} /buffer-indexof/1.1.1: resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==} @@ -8046,8 +7270,8 @@ packages: bluebird: 3.7.2 chownr: 1.1.4 figgy-pudding: 3.5.2 - glob: 7.1.6 - graceful-fs: 4.2.6 + glob: 7.1.7 + graceful-fs: 4.2.8 infer-owner: 1.0.4 lru-cache: 5.1.1 mississippi: 3.0.0 @@ -8060,14 +7284,14 @@ packages: y18n: 4.0.3 dev: true - /cacache/15.0.6: - resolution: {integrity: sha512-g1WYDMct/jzW+JdWEyjaX2zoBkZ6ZT9VpOyp2I/VMtDsNLffNat3kqPFfi1eDRSK9/SuKGyORDHcQMcPF8sQ/w==} + /cacache/15.2.0: + resolution: {integrity: sha512-uKoJSHmnrqXgthDFx/IU6ED/5xd+NNGe+Bb+kLZy7Ku4P+BaiWEUflAKPZ7eAzsYGcsAGASJZsybXp+quEcHTw==} engines: {node: '>= 10'} dependencies: '@npmcli/move-file': 1.1.2 chownr: 2.0.0 fs-minipass: 2.1.0 - glob: 7.1.6 + glob: 7.1.7 infer-owner: 1.0.4 lru-cache: 6.0.0 minipass: 3.1.3 @@ -8079,7 +7303,7 @@ packages: promise-inflight: 1.0.1 rimraf: 3.0.2 ssri: 8.0.1 - tar: 6.1.0 + tar: 6.1.10 unique-filename: 1.1.1 dev: true @@ -8107,7 +7331,7 @@ packages: http-cache-semantics: 4.1.0 keyv: 3.1.0 lowercase-keys: 2.0.0 - normalize-url: 4.5.0 + normalize-url: 4.5.1 responselike: 1.0.2 dev: true @@ -8167,7 +7391,7 @@ packages: resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} dependencies: pascal-case: 3.1.2 - tslib: 2.2.0 + tslib: 2.3.1 dev: true /camelcase-css/2.0.1: @@ -8192,18 +7416,14 @@ packages: /caniuse-api/3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: - browserslist: 4.16.6 - caniuse-lite: 1.0.30001223 + browserslist: 4.16.8 + caniuse-lite: 1.0.30001251 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true - /caniuse-lite/1.0.30001223: - resolution: {integrity: sha512-k/RYs6zc/fjbxTjaWZemeSmOjO0JJV+KguOBA3NwPup8uzxM1cMhR2BD9XmO86GuqaqTCO8CgkgH9Rz//vdDiA==} - dev: true - - /caniuse-lite/1.0.30001230: - resolution: {integrity: sha512-5yBd5nWCBS+jWKTcHOzXwo5xzcj4ePE/yjtkZyUV1BTUmrBaA9MRGC+e7mxnqXSA90CmCA8L3eKLaSUkt099IQ==} + /caniuse-lite/1.0.30001251: + resolution: {integrity: sha512-HOe1r+9VkU4TFmnU70z+r7OLmtR+/chB1rdcJUeQlAinjEeb0cKL20tlAtOagNZhbrtLnCvV19B4FmF1rgzl6A==} dev: true /capture-exit/2.0.0: @@ -8269,8 +7489,8 @@ packages: supports-color: 7.2.0 dev: true - /chalk/4.1.1: - resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==} + /chalk/4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 @@ -8294,32 +7514,27 @@ packages: resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} dev: true - /check-types/8.0.3: - resolution: {integrity: sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==} - dev: true - - /cheerio-select-tmp/0.1.1: - resolution: {integrity: sha512-YYs5JvbpU19VYJyj+F7oYrIE2BOll1/hRU7rEy/5+v9BzkSo3bK81iAeeQEMI92vRIxz677m72UmJUiVwwgjfQ==} - deprecated: Use cheerio-select instead + /cheerio-select/1.5.0: + resolution: {integrity: sha512-qocaHPv5ypefh6YNxvnbABM07KMxExbtbfuJoIie3iZXX1ERwYmJcIiRrr9H05ucQP1k28dav8rpdDgjQd8drg==} dependencies: - css-select: 3.1.2 - css-what: 4.0.0 - domelementtype: 2.1.0 - domhandler: 4.0.0 - domutils: 2.4.4 + css-select: 4.1.3 + css-what: 5.0.1 + domelementtype: 2.2.0 + domhandler: 4.2.0 + domutils: 2.7.0 dev: true - /cheerio/1.0.0-rc.5: - resolution: {integrity: sha512-yoqps/VCaZgN4pfXtenwHROTp8NG6/Hlt4Jpz2FEP0ZJQ+ZUkVDd0hAPDNKhj3nakpfPt/CNs57yEtxD1bXQiw==} - engines: {node: '>= 0.12'} + /cheerio/1.0.0-rc.10: + resolution: {integrity: sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==} + engines: {node: '>= 6'} dependencies: - cheerio-select-tmp: 0.1.1 - dom-serializer: 1.2.0 - domhandler: 4.0.0 - entities: 2.1.0 - htmlparser2: 6.0.0 + cheerio-select: 1.5.0 + dom-serializer: 1.3.2 + domhandler: 4.2.0 + htmlparser2: 6.1.0 parse5: 6.0.1 parse5-htmlparser2-tree-adapter: 6.0.1 + tslib: 2.3.1 dev: true /chokidar/2.1.8: @@ -8341,17 +7556,17 @@ packages: fsevents: 1.2.13 dev: true - /chokidar/3.5.1: - resolution: {integrity: sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==} + /chokidar/3.5.2: + resolution: {integrity: sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==} engines: {node: '>= 8.10.0'} dependencies: - anymatch: 3.1.1 + anymatch: 3.1.2 braces: 3.0.2 glob-parent: 5.1.2 is-binary-path: 2.1.0 is-glob: 4.0.1 normalize-path: 3.0.0 - readdirp: 3.5.0 + readdirp: 3.6.0 optionalDependencies: fsevents: 2.3.2 dev: true @@ -8382,6 +7597,10 @@ packages: resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} dev: true + /ci-info/3.2.0: + resolution: {integrity: sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==} + dev: true + /ci-parallel-vars/1.0.1: resolution: {integrity: sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==} dev: true @@ -8440,11 +7659,6 @@ packages: restore-cursor: 3.1.0 dev: true - /cli-spinners/2.5.0: - resolution: {integrity: sha512-PC+AmIuK04E6aeSs/pUccSujsTzBhu4HzC2dL+CfJB/Jcc2qTRbEwZQDfIUpt2Xl8BodYBEq8w4fc0kU2I9DjQ==} - engines: {node: '>=6'} - dev: true - /cli-spinners/2.6.0: resolution: {integrity: sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q==} engines: {node: '>=6'} @@ -8468,15 +7682,6 @@ packages: string-width: 4.2.2 dev: true - /clipboard/2.0.8: - resolution: {integrity: sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ==} - dependencies: - good-listener: 1.2.2 - select: 1.1.2 - tiny-emitter: 2.1.0 - dev: true - optional: true - /cliui/5.0.0: resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} dependencies: @@ -8530,7 +7735,7 @@ packages: resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} engines: {node: '>= 4.0'} dependencies: - '@types/q': 1.5.4 + '@types/q': 1.5.5 chalk: 2.4.2 q: 1.5.1 dev: true @@ -8584,22 +7789,26 @@ packages: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} dev: true - /color-string/1.5.5: - resolution: {integrity: sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==} + /color-string/1.6.0: + resolution: {integrity: sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==} dependencies: color-name: 1.1.4 simple-swizzle: 0.2.2 dev: true - /color/3.1.3: - resolution: {integrity: sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==} + /color/3.2.1: + resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} dependencies: color-convert: 1.9.3 - color-string: 1.5.5 + color-string: 1.6.0 + dev: true + + /colord/2.7.0: + resolution: {integrity: sha512-pZJBqsHz+pYyw3zpX6ZRXWoCHM1/cvFikY9TV8G3zcejCaKE0lhankoj8iScyrrePA8C7yJ5FStfA9zbcOnw7Q==} dev: true - /colorette/1.2.2: - resolution: {integrity: sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==} + /colorette/1.3.0: + resolution: {integrity: sha512-ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w==} dev: true /colors/1.2.5: @@ -8645,6 +7854,11 @@ packages: engines: {node: '>= 6'} dev: true + /commander/7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + dev: true + /common-path-prefix/3.0.0: resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} dev: true @@ -8666,19 +7880,19 @@ packages: resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} engines: {node: '>= 0.6'} dependencies: - mime-db: 1.47.0 + mime-db: 1.49.0 dev: true - /compression-webpack-plugin/4.0.1_webpack@4.46.0: - resolution: {integrity: sha512-0mg6PgwTsUe5LEcUrOu3ob32vraDx2VdbMGAT1PARcOV+UJWDYZFdkSo6RbHoGQ061mmmkC7XpRKOlvwm/gzJQ==} + /compression-webpack-plugin/6.1.1_webpack@4.46.0: + resolution: {integrity: sha512-BEHft9M6lwOqVIQFMS/YJGmeCYXVOakC5KzQk05TFpMBlODByh1qNsZCWjUBxCQhUP9x0WfGidxTbGkjbWO/TQ==} engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 dependencies: - cacache: 15.0.6 + cacache: 15.2.0 find-cache-dir: 3.3.1 - schema-utils: 2.7.1 - serialize-javascript: 4.0.0 + schema-utils: 3.1.1 + serialize-javascript: 5.0.1 webpack: 4.46.0 webpack-sources: 1.4.3 dev: true @@ -8708,7 +7922,7 @@ packages: resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} engines: {'0': node >= 0.8} dependencies: - buffer-from: 1.1.1 + buffer-from: 1.1.2 inherits: 2.0.4 readable-stream: 2.3.7 typedarray: 0.0.6 @@ -8724,7 +7938,7 @@ packages: js-string-escape: 1.0.1 lodash: 4.17.21 md5-hex: 3.0.1 - semver: 7.3.4 + semver: 7.3.5 well-known-symbols: 2.0.0 dev: true @@ -8733,7 +7947,7 @@ packages: engines: {node: '>=8'} dependencies: dot-prop: 5.3.0 - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 make-dir: 3.1.0 unique-string: 2.0.0 write-file-atomic: 3.0.3 @@ -8789,6 +8003,12 @@ packages: safe-buffer: 5.1.2 dev: true + /convert-source-map/1.8.0: + resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} + dependencies: + safe-buffer: 5.1.2 + dev: true + /convert-to-spaces/1.0.2: resolution: {integrity: sha1-fj5Iu+bZl7FBfdyihoIEtNPYVxU=} engines: {node: '>= 4'} @@ -8825,55 +8045,35 @@ packages: toggle-selection: 1.0.6 dev: true - /copy-webpack-plugin/5.1.2_webpack@4.46.0: - resolution: {integrity: sha512-Uh7crJAco3AjBvgAy9Z75CjK8IG+gxaErro71THQ+vv/bl4HaQcpkexAY8KVW/T6D2W2IRr+couF/knIRkZMIQ==} - engines: {node: '>= 6.9.0'} + /copy-webpack-plugin/6.4.1_webpack@4.46.0: + resolution: {integrity: sha512-MXyPCjdPVx5iiWyl40Va3JGh27bKzOTNY3NjUTrosD2q7dR/cLD0013uqJ3BpFbUjyONINjb6qI7nDIJujrMbA==} + engines: {node: '>= 10.13.0'} peerDependencies: - webpack: ^4.0.0 || ^5.0.0 + webpack: ^4.37.0 || ^5.0.0 dependencies: - cacache: 12.0.4 - find-cache-dir: 2.1.0 - glob-parent: 3.1.0 - globby: 7.1.1 - is-glob: 4.0.1 - loader-utils: 1.4.0 - minimatch: 3.0.4 + cacache: 15.2.0 + fast-glob: 3.2.7 + find-cache-dir: 3.3.1 + glob-parent: 5.1.2 + globby: 11.0.4 + loader-utils: 2.0.0 normalize-path: 3.0.0 - p-limit: 2.3.0 - schema-utils: 1.0.0 - serialize-javascript: 4.0.0 + p-limit: 3.1.0 + schema-utils: 3.1.1 + serialize-javascript: 5.0.1 webpack: 4.46.0 - webpack-log: 2.0.0 - dev: true - - /core-js-compat/3.12.0: - resolution: {integrity: sha512-vvaN8EOvYBEjrr+MN3vCKrMNc/xdYZI+Rt/uPMROi4T5Hj8Fz6TiPQm2mrB9aZoQVW1lCFHYmMrv99aUct9mkg==} - dependencies: - browserslist: 4.16.6 - semver: 7.0.0 - dev: true - - /core-js-compat/3.13.0: - resolution: {integrity: sha512-jhbI2zpVskgfDC9mGRaDo1gagd0E0i/kYW0+WvibL/rafEHKAHO653hEXIxJHqRlRLITluXtRH3AGTL5qJmifQ==} - dependencies: - browserslist: 4.16.6 - semver: 7.0.0 + webpack-sources: 1.4.3 dev: true - /core-js-compat/3.15.2: - resolution: {integrity: sha512-Wp+BJVvwopjI+A1EFqm2dwUmWYXrvucmtIB2LgXn/Rb+gWPKYxtmb4GKHGKG/KGF1eK9jfjzT38DITbTOCX/SQ==} + /core-js-compat/3.16.2: + resolution: {integrity: sha512-4lUshXtBXsdmp8cDWh6KKiHUg40AjiuPD3bOWkNVsr1xkAhpUqCjaZ8lB1bKx9Gb5fXcbRbFJ4f4qpRIRTuJqQ==} dependencies: - browserslist: 4.16.6 + browserslist: 4.16.8 semver: 7.0.0 dev: true - /core-js-pure/3.12.0: - resolution: {integrity: sha512-j2y084taJU4VMUpwuC93l19tsPbTAtOpg6/do3UOwX4eUJbsFdhEaGRQfTYthn5rDubsB88YITtei0Kw46vEQQ==} - requiresBuild: true - dev: true - - /core-js-pure/3.13.0: - resolution: {integrity: sha512-7VTvXbsMxROvzPAVczLgfizR8CyYnvWPrb1eGrtlZAJfjQWEHLofVfCKljLHdpazTfpaziRORwUH/kfGDKvpdA==} + /core-js-pure/3.16.2: + resolution: {integrity: sha512-oxKe64UH049mJqrKkynWp6Vu0Rlm/BTXO/bJZuN2mmR3RtOFNepLlSWDd1eo16PzHpQAoNG97rLU1V/YxesJjw==} requiresBuild: true dev: true @@ -8883,8 +8083,8 @@ packages: requiresBuild: true dev: true - /core-js/3.13.0: - resolution: {integrity: sha512-iWDbiyha1M5vFwPFmQnvRv+tJzGbFAm6XimJUT0NgHYW3xZEs1SkCAcasWSVFxpI2Xb/V1DDJckq3v90+bQnog==} + /core-js/3.16.2: + resolution: {integrity: sha512-P0KPukO6OjMpjBtHSceAZEWlDD1M2Cpzpg6dBbrjFqFhBHe/BwhxaP820xKOjRn/lZRQirrCusIpLS/n2sgXLQ==} requiresBuild: true dev: true @@ -8928,7 +8128,7 @@ packages: resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==} engines: {node: '>=8'} dependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 make-dir: 3.1.0 nested-error-stacks: 2.1.0 p-event: 4.2.0 @@ -9008,7 +8208,7 @@ packages: jsdom: 12.2.0 minimatch: 3.0.4 parse5: 4.0.0 - postcss: 7.0.35 + postcss: 7.0.36 pretty-bytes: 4.0.2 webpack-log: 2.0.0 webpack-sources: 1.4.3 @@ -9065,11 +8265,6 @@ packages: randomfill: 1.0.4 dev: true - /crypto-random-string/1.0.0: - resolution: {integrity: sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=} - engines: {node: '>=4'} - dev: true - /crypto-random-string/2.0.0: resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} engines: {node: '>=8'} @@ -9079,11 +8274,25 @@ packages: resolution: {integrity: sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=} dev: true + /css-color-names/1.0.1: + resolution: {integrity: sha512-/loXYOch1qU1biStIFsHH8SxTmOseh1IJqFvy8IujXOm1h+QjUdDhkzOrR5HG8K8mlxREj0yfi8ewCHx0eMxzA==} + dev: true + /css-declaration-sorter/4.0.1: resolution: {integrity: sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==} engines: {node: '>4'} dependencies: - postcss: 7.0.35 + postcss: 7.0.36 + timsort: 0.3.0 + dev: true + + /css-declaration-sorter/6.1.1_postcss@8.3.6: + resolution: {integrity: sha512-BZ1aOuif2Sb7tQYY1GeCjG7F++8ggnwUkH5Ictw0mrdpqpEd+zWmcPdstnH2TItlb74FqR0DrVEieon221T/1Q==} + engines: {node: '>= 10'} + peerDependencies: + postcss: ^8.0.9 + dependencies: + postcss: 8.3.6 timsort: 0.3.0 dev: true @@ -9098,7 +8307,7 @@ packages: icss-utils: 4.1.1 loader-utils: 1.4.0 normalize-path: 3.0.0 - postcss: 7.0.35 + postcss: 7.0.36 postcss-modules-extract-imports: 2.0.0 postcss-modules-local-by-default: 3.0.3 postcss-modules-scope: 2.2.0 @@ -9109,6 +8318,25 @@ packages: webpack: 4.46.0 dev: true + /css-loader/5.2.7_webpack@4.46.0: + resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.27.0 || ^5.0.0 + dependencies: + icss-utils: 5.1.0_postcss@8.3.6 + loader-utils: 2.0.0 + postcss: 8.3.6 + postcss-modules-extract-imports: 3.0.0_postcss@8.3.6 + postcss-modules-local-by-default: 4.0.0_postcss@8.3.6 + postcss-modules-scope: 3.0.0_postcss@8.3.6 + postcss-modules-values: 4.0.0_postcss@8.3.6 + postcss-value-parser: 4.1.0 + schema-utils: 3.1.1 + semver: 7.3.5 + webpack: 4.46.0 + dev: true + /css-select-base-adapter/0.1.1: resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} dev: true @@ -9122,13 +8350,13 @@ packages: nth-check: 1.0.2 dev: true - /css-select/3.1.2: - resolution: {integrity: sha512-qmss1EihSuBNWNNhHjxzxSfJoFBM/lERB/Q4EnsJQQC62R2evJDW481091oAdOr9uh46/0n4nrg0It5cAnj1RA==} + /css-select/4.1.3: + resolution: {integrity: sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==} dependencies: boolbase: 1.0.0 - css-what: 4.0.0 - domhandler: 4.0.0 - domutils: 2.4.4 + css-what: 5.0.1 + domhandler: 4.2.0 + domutils: 2.7.0 nth-check: 2.0.0 dev: true @@ -9153,8 +8381,8 @@ packages: engines: {node: '>= 6'} dev: true - /css-what/4.0.0: - resolution: {integrity: sha512-teijzG7kwYfNVsUh2H/YN62xW3KK9YhXEgSlbxMlcyjPNvdKJqFx5lrwlJgoFP1ZHlB89iGDlo/JyshKeRhv5A==} + /css-what/5.0.1: + resolution: {integrity: sha512-FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg==} engines: {node: '>= 6'} dev: true @@ -9179,7 +8407,7 @@ packages: dependencies: css-declaration-sorter: 4.0.1 cssnano-util-raw-cache: 4.0.1 - postcss: 7.0.35 + postcss: 7.0.36 postcss-calc: 7.0.5 postcss-colormin: 4.0.3 postcss-convert-values: 4.0.1 @@ -9209,6 +8437,44 @@ packages: postcss-unique-selectors: 4.0.1 dev: true + /cssnano-preset-default/5.1.4_postcss@8.3.6: + resolution: {integrity: sha512-sPpQNDQBI3R/QsYxQvfB4mXeEcWuw0wGtKtmS5eg8wudyStYMgKOQT39G07EbW1LB56AOYrinRS9f0ig4Y3MhQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + css-declaration-sorter: 6.1.1_postcss@8.3.6 + cssnano-utils: 2.0.1_postcss@8.3.6 + postcss: 8.3.6 + postcss-calc: 8.0.0_postcss@8.3.6 + postcss-colormin: 5.2.0_postcss@8.3.6 + postcss-convert-values: 5.0.1_postcss@8.3.6 + postcss-discard-comments: 5.0.1_postcss@8.3.6 + postcss-discard-duplicates: 5.0.1_postcss@8.3.6 + postcss-discard-empty: 5.0.1_postcss@8.3.6 + postcss-discard-overridden: 5.0.1_postcss@8.3.6 + postcss-merge-longhand: 5.0.2_postcss@8.3.6 + postcss-merge-rules: 5.0.2_postcss@8.3.6 + postcss-minify-font-values: 5.0.1_postcss@8.3.6 + postcss-minify-gradients: 5.0.2_postcss@8.3.6 + postcss-minify-params: 5.0.1_postcss@8.3.6 + postcss-minify-selectors: 5.1.0_postcss@8.3.6 + postcss-normalize-charset: 5.0.1_postcss@8.3.6 + postcss-normalize-display-values: 5.0.1_postcss@8.3.6 + postcss-normalize-positions: 5.0.1_postcss@8.3.6 + postcss-normalize-repeat-style: 5.0.1_postcss@8.3.6 + postcss-normalize-string: 5.0.1_postcss@8.3.6 + postcss-normalize-timing-functions: 5.0.1_postcss@8.3.6 + postcss-normalize-unicode: 5.0.1_postcss@8.3.6 + postcss-normalize-url: 5.0.2_postcss@8.3.6 + postcss-normalize-whitespace: 5.0.1_postcss@8.3.6 + postcss-ordered-values: 5.0.2_postcss@8.3.6 + postcss-reduce-initial: 5.0.1_postcss@8.3.6 + postcss-reduce-transforms: 5.0.1_postcss@8.3.6 + postcss-svgo: 5.0.2_postcss@8.3.6 + postcss-unique-selectors: 5.0.1_postcss@8.3.6 + dev: true + /cssnano-util-get-arguments/4.0.0: resolution: {integrity: sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=} engines: {node: '>=6.9.0'} @@ -9223,7 +8489,7 @@ packages: resolution: {integrity: sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==} engines: {node: '>=6.9.0'} dependencies: - postcss: 7.0.35 + postcss: 7.0.36 dev: true /cssnano-util-same-parent/4.0.1: @@ -9231,6 +8497,15 @@ packages: engines: {node: '>=6.9.0'} dev: true + /cssnano-utils/2.0.1_postcss@8.3.6: + resolution: {integrity: sha512-i8vLRZTnEH9ubIyfdZCAdIdgnHAUeQeByEeQ2I7oTilvP9oHO6RScpeq3GsFUVqeB8uZgOQ9pw8utofNn32hhQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.3.6 + dev: true + /cssnano/4.1.11: resolution: {integrity: sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==} engines: {node: '>=6.9.0'} @@ -9238,7 +8513,20 @@ packages: cosmiconfig: 5.2.1 cssnano-preset-default: 4.0.8 is-resolvable: 1.1.0 - postcss: 7.0.35 + postcss: 7.0.36 + dev: true + + /cssnano/5.0.8_postcss@8.3.6: + resolution: {integrity: sha512-Lda7geZU0Yu+RZi2SGpjYuQz4HI4/1Y+BhdD0jL7NXAQ5larCzVn+PUGuZbDMYz904AXXCOgO5L1teSvgu7aFg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-preset-default: 5.1.4_postcss@8.3.6 + is-resolvable: 1.1.0 + lilconfig: 2.0.3 + postcss: 8.3.6 + yaml: 1.10.2 dev: true /csso/4.2.0: @@ -9313,11 +8601,11 @@ packages: dependencies: abab: 2.0.5 whatwg-mimetype: 2.3.0 - whatwg-url: 8.5.0 + whatwg-url: 8.7.0 dev: true - /date-fns/2.22.1: - resolution: {integrity: sha512-yUFPQjrxEmIsMqlHhAhmxkuH769baF21Kk+nZwZGyrMoyLA+LugaQtC0+Tqf9CBUUULWwUJt6Q5ySI3LJDDCGg==} + /date-fns/2.23.0: + resolution: {integrity: sha512-5ycpauovVyAk0kXNZz6ZoB9AYMZB4DObse7P3BPWmyEjXNORTI8EJ6X0uaSAq4sCHzM1uajzrkr6HnsLQpxGXA==} engines: {node: '>=0.11'} dev: false @@ -9352,8 +8640,8 @@ packages: ms: 2.1.2 dev: true - /debug/4.3.1_supports-color@6.1.0: - resolution: {integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==} + /debug/4.3.2: + resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -9362,10 +8650,9 @@ packages: optional: true dependencies: ms: 2.1.2 - supports-color: 6.1.0 dev: true - /debug/4.3.2: + /debug/4.3.2_supports-color@6.1.0: resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==} engines: {node: '>=6.0'} peerDependencies: @@ -9375,6 +8662,7 @@ packages: optional: true dependencies: ms: 2.1.2 + supports-color: 6.1.0 dev: true /decamelize/1.2.0: @@ -9382,8 +8670,8 @@ packages: engines: {node: '>=0.10.0'} dev: true - /decimal.js/10.2.1: - resolution: {integrity: sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==} + /decimal.js/10.3.1: + resolution: {integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==} dev: true /decode-uri-component/0.2.0: @@ -9401,9 +8689,9 @@ packages: /deep-equal/1.1.1: resolution: {integrity: sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==} dependencies: - is-arguments: 1.1.0 - is-date-object: 1.0.3 - is-regex: 1.1.2 + is-arguments: 1.1.1 + is-date-object: 1.0.5 + is-regex: 1.1.4 object-is: 1.1.5 object-keys: 1.1.1 regexp.prototype.flags: 1.3.1 @@ -9491,7 +8779,7 @@ packages: resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==} engines: {node: '>=6'} dependencies: - '@types/glob': 7.1.3 + '@types/glob': 7.1.4 globby: 6.1.0 is-path-cwd: 2.2.0 is-path-in-cwd: 2.1.0 @@ -9504,8 +8792,8 @@ packages: resolution: {integrity: sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==} engines: {node: '>=10'} dependencies: - globby: 11.0.2 - graceful-fs: 4.2.6 + globby: 11.0.4 + graceful-fs: 4.2.8 is-glob: 4.0.1 is-path-cwd: 2.2.0 is-path-inside: 3.0.3 @@ -9519,11 +8807,6 @@ packages: engines: {node: '>=0.4.0'} dev: true - /delegate/3.2.0: - resolution: {integrity: sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==} - dev: true - optional: true - /delegates/1.0.0: resolution: {integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=} dev: true @@ -9555,8 +8838,8 @@ packages: engines: {node: '>=8'} dev: true - /detect-node/2.0.5: - resolution: {integrity: sha512-qi86tE6hRcFHy8jI1m2VG+LaPUR1LhqDa5G8tVjuUXmOrpuAgqsA1pN0+ldgr3aKUH+QLI9hCY/OcRYisERejw==} + /detect-node/2.1.0: + resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} dev: true /detect-port-alt/1.1.6: @@ -9612,8 +8895,8 @@ packages: resolution: {integrity: sha1-s55/HabrCnW6nBcySzR1PEfgZU0=} dev: true - /dns-packet/1.3.1: - resolution: {integrity: sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==} + /dns-packet/1.3.4: + resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==} dependencies: ip: 1.1.5 safe-buffer: 5.2.1 @@ -9647,8 +8930,8 @@ packages: esutils: 2.0.3 dev: true - /dom-accessibility-api/0.5.4: - resolution: {integrity: sha512-TvrjBckDy2c6v6RLxPv5QXOnU+SmF9nBII5621Ve5fu6Z/BDrENurBEvlC1f44lKEUVqOpK4w9E5Idc5/EgkLQ==} + /dom-accessibility-api/0.5.7: + resolution: {integrity: sha512-ml3lJIq9YjUfM9TUnEPvEYWFSwivwIGBPKpewX7tii7fwCazA8yCioGdqQcNsItPpfFvSJ3VIdMQPj60LJhcQA==} dev: true /dom-converter/0.2.0: @@ -9664,12 +8947,12 @@ packages: entities: 2.2.0 dev: true - /dom-serializer/1.2.0: - resolution: {integrity: sha512-n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA==} + /dom-serializer/1.3.2: + resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==} dependencies: - domelementtype: 2.1.0 - domhandler: 4.0.0 - entities: 2.1.0 + domelementtype: 2.2.0 + domhandler: 4.2.0 + entities: 2.2.0 dev: true /dom-walk/0.1.2: @@ -9685,10 +8968,6 @@ packages: resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} dev: true - /domelementtype/2.1.0: - resolution: {integrity: sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==} - dev: true - /domelementtype/2.2.0: resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==} dev: true @@ -9706,17 +8985,11 @@ packages: webidl-conversions: 5.0.0 dev: true - /domhandler/2.4.2: - resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==} - dependencies: - domelementtype: 1.3.1 - dev: true - - /domhandler/4.0.0: - resolution: {integrity: sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA==} + /domhandler/4.2.0: + resolution: {integrity: sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==} engines: {node: '>= 4'} dependencies: - domelementtype: 2.1.0 + domelementtype: 2.2.0 dev: true /domutils/1.7.0: @@ -9726,19 +8999,19 @@ packages: domelementtype: 1.3.1 dev: true - /domutils/2.4.4: - resolution: {integrity: sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA==} + /domutils/2.7.0: + resolution: {integrity: sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg==} dependencies: - dom-serializer: 1.2.0 - domelementtype: 2.1.0 - domhandler: 4.0.0 + dom-serializer: 1.3.2 + domelementtype: 2.2.0 + domhandler: 4.2.0 dev: true /dot-case/3.0.4: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dependencies: no-case: 3.0.4 - tslib: 2.2.0 + tslib: 2.3.1 dev: true /dot-prop/5.3.0: @@ -9777,27 +9050,29 @@ packages: engines: {node: '>=10'} dev: true - /downshift/6.1.3: - resolution: {integrity: sha512-RA1MuaNcTbt0j+sVLhSs8R2oZbBXYAtdQP/V+uHhT3DoDteZzJPjlC+LQVm9T07Wpvo84QXaZtUCePLDTDwGXg==} + /downshift/6.1.7: + resolution: {integrity: sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==} peerDependencies: react: '>=16.12.0' dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 compute-scroll-into-view: 1.0.17 prop-types: 15.7.2 react-is: 17.0.2 + tslib: 2.3.1 dev: true - /downshift/6.1.3_react@16.14.0: - resolution: {integrity: sha512-RA1MuaNcTbt0j+sVLhSs8R2oZbBXYAtdQP/V+uHhT3DoDteZzJPjlC+LQVm9T07Wpvo84QXaZtUCePLDTDwGXg==} + /downshift/6.1.7_react@16.14.0: + resolution: {integrity: sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==} peerDependencies: react: '>=16.12.0' dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 compute-scroll-into-view: 1.0.17 prop-types: 15.7.2 react: 16.14.0 react-is: 17.0.2 + tslib: 2.3.1 dev: true /duplexer/0.1.2: @@ -9841,16 +9116,12 @@ packages: requiresBuild: true dev: true - /electron-to-chromium/1.3.727: - resolution: {integrity: sha512-Mfz4FIB4FSvEwBpDfdipRIrwd6uo8gUDoRDF4QEYb4h4tSuI3ov594OrjU6on042UlFHouIJpClDODGkPcBSbg==} - dev: true - - /electron-to-chromium/1.3.738: - resolution: {integrity: sha512-vCMf4gDOpEylPSLPLSwAEsz+R3ShP02Y3cAKMZvTqule3XcPp7tgc/0ESI7IS6ZeyBlGClE50N53fIOkcIVnpw==} + /electron-to-chromium/1.3.813: + resolution: {integrity: sha512-YcSRImHt6JZZ2sSuQ4Bzajtk98igQ0iKkksqlzZLzbh4p0OIyJRSvUbsgqfcR8txdfsoYCc4ym306t4p2kP/aw==} dev: true - /element-resize-detector/1.2.2: - resolution: {integrity: sha512-+LOXRkCJc4I5WhEJxIDjhmE3raF8jtOMBDqSCgZTMz2TX3oXAX5pE2+MDeopJlGdXzP7KzPbBJaUGfNaP9HG4A==} + /element-resize-detector/1.2.3: + resolution: {integrity: sha512-+dhNzUgLpq9ol5tyhoG7YLoXL3ssjfFW+0gpszXPwRU6NjGr1fVHMEAF8fVzIiRJq57Nre0RFeIjJwI8Nh2NmQ==} dependencies: batch-processor: 1.0.0 dev: true @@ -9909,7 +9180,7 @@ packages: '@emotion/core': ^10.0.27 react: '>=16.3.0' dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 '@emotion/core': 10.1.1_react@16.14.0 '@emotion/weak-memoize': 0.2.5 hoist-non-react-statics: 3.3.2 @@ -9922,7 +9193,7 @@ packages: '@emotion/core': ^10.0.27 react: '>=16.3.0' dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 '@emotion/core': 10.1.1 '@emotion/weak-memoize': 0.2.5 hoist-non-react-statics: 3.3.2 @@ -9949,7 +9220,7 @@ packages: resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==} engines: {node: '>=6.9.0'} dependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 memory-fs: 0.5.0 tapable: 1.1.3 dev: true @@ -9958,7 +9229,7 @@ packages: resolution: {integrity: sha512-F27oB3WuHDzvR2DOGNTaYy0D5o0cnrv8TeI482VM4kYgQd/FT9lUQwuNsJ0oOHtBUq7eiW5ytqzp7nBFknL+GA==} engines: {node: '>=10.13.0'} dependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 tapable: 2.2.0 dev: true @@ -9969,14 +9240,6 @@ packages: ansi-colors: 4.1.1 dev: true - /entities/1.1.2: - resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==} - dev: true - - /entities/2.1.0: - resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==} - dev: true - /entities/2.2.0: resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} dev: true @@ -9987,7 +9250,7 @@ packages: hasBin: true dev: true - /enzyme-adapter-preact-pure/3.1.0_enzyme@3.11.0+preact@10.5.13: + /enzyme-adapter-preact-pure/3.1.0_enzyme@3.11.0+preact@10.5.14: resolution: {integrity: sha512-IyhHVOe4TtgnQX/iF1PGvhNFXZCBJ8amRQ30Atb6actyelMh4tQAXEjj06FaO5c+frChgDw3YxtLxGEs1Mhv2A==} peerDependencies: enzyme: ^3.8.0 @@ -9995,41 +9258,41 @@ packages: dependencies: array.prototype.flatmap: 1.2.4 enzyme: 3.11.0 - preact: 10.5.13 + preact: 10.5.14 dev: true /enzyme-shallow-equal/1.0.4: resolution: {integrity: sha512-MttIwB8kKxypwHvRynuC3ahyNc+cFbR8mjVIltnmzQ0uKGqmsfO4bfBuLxb0beLNPhjblUEYvEbsg+VSygvF1Q==} dependencies: has: 1.0.3 - object-is: 1.1.4 + object-is: 1.1.5 dev: true /enzyme/3.11.0: resolution: {integrity: sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==} dependencies: array.prototype.flat: 1.2.4 - cheerio: 1.0.0-rc.5 + cheerio: 1.0.0-rc.10 enzyme-shallow-equal: 1.0.4 - function.prototype.name: 1.1.3 + function.prototype.name: 1.1.4 has: 1.0.3 - html-element-map: 1.2.0 - is-boolean-object: 1.1.0 - is-callable: 1.2.2 - is-number-object: 1.0.4 - is-regex: 1.1.1 - is-string: 1.0.5 + html-element-map: 1.3.1 + is-boolean-object: 1.1.2 + is-callable: 1.2.4 + is-number-object: 1.0.6 + is-regex: 1.1.4 + is-string: 1.0.7 is-subset: 0.1.1 lodash.escape: 4.0.1 lodash.isequal: 4.5.0 - object-inspect: 1.9.0 - object-is: 1.1.4 + object-inspect: 1.11.0 + object-is: 1.1.5 object.assign: 4.1.2 - object.entries: 1.1.3 - object.values: 1.1.2 + object.entries: 1.1.4 + object.values: 1.1.4 raf: 3.4.1 rst-selector-parser: 2.2.3 - string.prototype.trim: 1.2.3 + string.prototype.trim: 1.2.4 dev: true /equal-length/1.0.1: @@ -10067,28 +9330,6 @@ packages: string.prototype.trimstart: 1.0.3 dev: true - /es-abstract/1.18.0: - resolution: {integrity: sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - es-to-primitive: 1.2.1 - function-bind: 1.1.1 - get-intrinsic: 1.1.1 - has: 1.0.3 - has-symbols: 1.0.2 - is-callable: 1.2.3 - is-negative-zero: 2.0.1 - is-regex: 1.1.2 - is-string: 1.0.5 - object-inspect: 1.10.2 - object-keys: 1.1.1 - object.assign: 4.1.2 - string.prototype.trimend: 1.0.4 - string.prototype.trimstart: 1.0.4 - unbox-primitive: 1.0.1 - dev: true - /es-abstract/1.18.0-next.2: resolution: {integrity: sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==} engines: {node: '>= 0.4'} @@ -10109,8 +9350,8 @@ packages: string.prototype.trimstart: 1.0.3 dev: true - /es-abstract/1.18.2: - resolution: {integrity: sha512-byRiNIQXE6HWNySaU6JohoNXzYgbBjztwFnBLUTiJmWXjaU9bSq3urQLUlNLQ292tc+gc07zYZXNZjaOoAX3sw==} + /es-abstract/1.18.5: + resolution: {integrity: sha512-DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 @@ -10119,11 +9360,12 @@ packages: get-intrinsic: 1.1.1 has: 1.0.3 has-symbols: 1.0.2 - is-callable: 1.2.3 + internal-slot: 1.0.3 + is-callable: 1.2.4 is-negative-zero: 2.0.1 - is-regex: 1.1.3 - is-string: 1.0.6 - object-inspect: 1.10.3 + is-regex: 1.1.4 + is-string: 1.0.7 + object-inspect: 1.11.0 object-keys: 1.1.1 object.assign: 4.1.2 string.prototype.trimend: 1.0.4 @@ -10141,10 +9383,10 @@ packages: call-bind: 1.0.2 get-intrinsic: 1.1.1 has-symbols: 1.0.2 - is-arguments: 1.1.0 + is-arguments: 1.1.1 is-map: 2.0.2 is-set: 2.0.2 - is-string: 1.0.6 + is-string: 1.0.7 isarray: 2.0.5 dev: true @@ -10152,9 +9394,9 @@ packages: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} dependencies: - is-callable: 1.2.3 - is-date-object: 1.0.3 - is-symbol: 1.0.3 + is-callable: 1.2.4 + is-date-object: 1.0.5 + is-symbol: 1.0.4 dev: true /es5-shim/4.5.15: @@ -10170,6 +9412,12 @@ packages: resolution: {integrity: sha512-EmTr31wppcaIAgblChZiuN/l9Y7DPyw8Xtbg7fIVngn6zMW+IEBJDJngeKC3x6wr0V/vcA2wqeFnaw1bFJbDdA==} dev: true + /esbuild/0.12.21: + resolution: {integrity: sha512-7hyXbU3g94aREufI/5nls7Xcc+RGQeZWZApm6hoBaFvt2BPtpT4TjFMQ9Tb1jU8XyBGz00ShmiyflCogphMHFQ==} + hasBin: true + requiresBuild: true + dev: true + /esbuild/0.9.2: resolution: {integrity: sha512-xE3oOILjnmN8PSjkG3lT9NBbd1DbxNqolJ5qNyrLhDWsFef3yTp/KTQz1C/x7BYFKbtrr9foYtKA6KA1zuNAUQ==} hasBin: true @@ -10493,10 +9741,6 @@ packages: engines: {node: '>=4.0'} dev: true - /estree-walker/0.6.1: - resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} - dev: true - /estree-walker/1.0.1: resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} dev: true @@ -10562,7 +9806,7 @@ packages: cross-spawn: 7.0.3 get-stream: 5.2.0 human-signals: 1.1.1 - is-stream: 2.0.0 + is-stream: 2.0.1 merge-stream: 2.0.0 npm-run-path: 4.0.1 onetime: 5.1.2 @@ -10623,7 +9867,7 @@ packages: on-finished: 2.3.0 parseurl: 1.3.3 path-to-regexp: 0.1.7 - proxy-addr: 2.0.6 + proxy-addr: 2.0.7 qs: 6.7.0 range-parser: 1.2.1 safe-buffer: 5.1.2 @@ -10713,6 +9957,17 @@ packages: picomatch: 2.2.2 dev: true + /fast-glob/3.2.7: + resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} + engines: {node: '>=8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.4 + dev: true + /fast-json-stable-stringify/2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} dev: true @@ -10727,14 +9982,20 @@ packages: reusify: 1.0.4 dev: true + /fastq/1.12.0: + resolution: {integrity: sha512-VNX0QkHK3RsXVKr9KrlUv/FoTa0NdbYoHHl7uXHv2rzyHSlxjdNAKug2twd9luJxpcyNeAgf5iPPMutJO67Dfg==} + dependencies: + reusify: 1.0.4 + dev: true + /fault/1.0.4: resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==} dependencies: format: 0.2.2 dev: true - /faye-websocket/0.11.3: - resolution: {integrity: sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==} + /faye-websocket/0.11.4: + resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} engines: {node: '>=0.8.0'} dependencies: websocket-driver: 0.7.4 @@ -10775,7 +10036,7 @@ packages: webpack: ^4.0.0 || ^5.0.0 dependencies: loader-utils: 2.0.0 - schema-utils: 3.0.0 + schema-utils: 3.1.1 webpack: 4.46.0 dev: true @@ -10792,11 +10053,6 @@ packages: dev: true optional: true - /filesize/3.6.1: - resolution: {integrity: sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==} - engines: {node: '>= 0.4.0'} - dev: true - /filesize/6.1.0: resolution: {integrity: sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==} engines: {node: '>= 0.4.0'} @@ -10910,8 +10166,8 @@ packages: readable-stream: 2.3.7 dev: true - /follow-redirects/1.14.0_debug@4.3.1: - resolution: {integrity: sha512-0vRwd7RKQBTt+mgu87mtYeofLFZpTas2S9zY+jIeuLJMNvudIgF52nr19q40HOwH5RrhWIPuj9puybzSJiRrVg==} + /follow-redirects/1.14.2_debug@4.3.2: + resolution: {integrity: sha512-yLR6WaE2lbF0x4K2qE2p9PEXKLDjUjnR/xmjS3wHAYxtlsI9MLLBJUZirAHKzUZDGLxje7w/cXR49WOUo4rbsA==} engines: {node: '>=4.0'} peerDependencies: debug: '*' @@ -10919,12 +10175,12 @@ packages: debug: optional: true dependencies: - debug: 4.3.1_supports-color@6.1.0 + debug: 4.3.2_supports-color@6.1.0 /for-each/0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} dependencies: - is-callable: 1.2.3 + is-callable: 1.2.4 dev: true /for-in/1.0.2: @@ -10948,7 +10204,7 @@ packages: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} dependencies: - '@babel/code-frame': 7.12.13 + '@babel/code-frame': 7.14.5 chalk: 2.4.2 micromatch: 3.1.10 minimatch: 3.0.4 @@ -10957,14 +10213,14 @@ packages: worker-rpc: 0.1.1 dev: true - /fork-ts-checker-webpack-plugin/6.2.10: - resolution: {integrity: sha512-HveFCHWSH2WlYU1tU3PkrupvW8lNFMTfH3Jk0TfC2mtktE9ibHGcifhCsCFvj+kqlDfNIlwmNLiNqR9jnSA7OQ==} + /fork-ts-checker-webpack-plugin/6.3.2: + resolution: {integrity: sha512-L3n1lrV20pRa7ocAuM2YW4Ux1yHM8+dV4shqPdHf1xoeG5KQhp3o0YySvNsBKBISQOCN4N2Db9DV4xYN6xXwyQ==} engines: {node: '>=10', yarn: '>=1.0.0'} dependencies: - '@babel/code-frame': 7.12.13 - '@types/json-schema': 7.0.7 - chalk: 4.1.1 - chokidar: 3.5.1 + '@babel/code-frame': 7.14.5 + '@types/json-schema': 7.0.9 + chalk: 4.1.2 + chokidar: 3.5.2 cosmiconfig: 6.0.0 deepmerge: 4.2.2 fs-extra: 9.1.0 @@ -10982,7 +10238,7 @@ packages: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 - mime-types: 2.1.30 + mime-types: 2.1.32 dev: true /form-data/3.0.1: @@ -10991,7 +10247,7 @@ packages: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 - mime-types: 2.1.30 + mime-types: 2.1.32 dev: true /format/0.2.2: @@ -10999,11 +10255,15 @@ packages: engines: {node: '>=0.4.x'} dev: true - /forwarded/0.1.2: - resolution: {integrity: sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=} + /forwarded/0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} engines: {node: '>= 0.6'} dev: true + /fraction.js/4.1.1: + resolution: {integrity: sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg==} + dev: true + /fragment-cache/0.2.1: resolution: {integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=} engines: {node: '>=0.10.0'} @@ -11030,7 +10290,7 @@ packages: /fs-extra/0.30.0: resolution: {integrity: sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=} dependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 jsonfile: 2.4.0 klaw: 1.3.1 path-is-absolute: 1.0.1 @@ -11040,7 +10300,7 @@ packages: /fs-extra/4.0.3: resolution: {integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==} dependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 jsonfile: 4.0.0 universalify: 0.1.2 dev: true @@ -11054,21 +10314,12 @@ packages: universalify: 0.1.2 dev: true - /fs-extra/8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} - dependencies: - graceful-fs: 4.2.6 - jsonfile: 4.0.0 - universalify: 0.1.2 - dev: true - /fs-extra/9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} engines: {node: '>=10'} dependencies: at-least-node: 1.0.0 - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 jsonfile: 6.1.0 universalify: 2.0.0 dev: true @@ -11093,7 +10344,7 @@ packages: /fs-write-stream-atomic/1.0.10: resolution: {integrity: sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=} dependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 iferr: 0.1.5 imurmurhash: 0.1.4 readable-stream: 2.3.7 @@ -11111,7 +10362,7 @@ packages: requiresBuild: true dependencies: bindings: 1.5.0 - nan: 2.14.2 + nan: 2.15.0 dev: true optional: true @@ -11134,23 +10385,13 @@ packages: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} dev: true - /function.prototype.name/1.1.3: - resolution: {integrity: sha512-H51qkbNSp8mtkJt+nyW1gyStBiKZxfRqySNUR99ylq6BPXHKI4SEvIlTKp4odLfjRKJV04DFWMU3G/YRlQOsag==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 - functions-have-names: 1.2.2 - dev: true - /function.prototype.name/1.1.4: resolution: {integrity: sha512-iqy1pIotY/RmhdFZygSSlW0wko2yxkSCKqsuv4pr8QESohpYyG/Z7B/XXvPRKTJS//960rgguE5mSRUsDdaJrQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.2 + es-abstract: 1.18.5 functions-have-names: 1.2.2 dev: true @@ -11234,6 +10475,14 @@ packages: pump: 3.0.0 dev: true + /get-symbol-description/1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.1 + dev: true + /get-value/2.0.6: resolution: {integrity: sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=} engines: {node: '>=0.10.0'} @@ -11262,7 +10511,7 @@ packages: engines: {node: '>=4'} dependencies: mkdirp: 0.5.5 - tar: 4.4.13 + tar: 4.4.19 dev: true /glob-base/0.3.0: @@ -11306,7 +10555,7 @@ packages: peerDependencies: glob: '*' dependencies: - '@types/glob': 7.1.3 + '@types/glob': 7.1.4 glob: 7.1.7 dev: true @@ -11336,13 +10585,6 @@ packages: path-is-absolute: 1.0.1 dev: true - /global-dirs/2.1.0: - resolution: {integrity: sha512-MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ==} - engines: {node: '>=8'} - dependencies: - ini: 1.3.7 - dev: true - /global-dirs/3.0.0: resolution: {integrity: sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==} engines: {node: '>=10'} @@ -11398,7 +10640,7 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.2.5 + fast-glob: 3.2.7 ignore: 5.1.8 merge2: 1.4.1 slash: 3.0.0 @@ -11416,34 +10658,34 @@ packages: slash: 3.0.0 dev: true + /globby/11.0.4: + resolution: {integrity: sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==} + engines: {node: '>=10'} + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.7 + ignore: 5.1.8 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + /globby/6.1.0: resolution: {integrity: sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=} engines: {node: '>=0.10.0'} dependencies: array-union: 1.0.2 - glob: 7.1.6 + glob: 7.1.7 object-assign: 4.1.1 pify: 2.3.0 pinkie-promise: 2.0.1 dev: true - /globby/7.1.1: - resolution: {integrity: sha1-+yzP+UAfhgCUXfral0QMypcrhoA=} - engines: {node: '>=4'} - dependencies: - array-union: 1.0.2 - dir-glob: 2.2.2 - glob: 7.1.6 - ignore: 3.3.10 - pify: 3.0.0 - slash: 1.0.0 - dev: true - /globby/9.2.0: resolution: {integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==} engines: {node: '>=6'} dependencies: - '@types/glob': 7.1.3 + '@types/glob': 7.1.4 array-union: 1.0.2 dir-glob: 2.2.2 fast-glob: 2.2.7 @@ -11453,13 +10695,6 @@ packages: slash: 2.0.0 dev: true - /good-listener/1.2.2: - resolution: {integrity: sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=} - dependencies: - delegate: 3.2.0 - dev: true - optional: true - /got/9.6.0: resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} engines: {node: '>=8.6'} @@ -11481,8 +10716,8 @@ packages: resolution: {integrity: sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==} dev: true - /graceful-fs/4.2.6: - resolution: {integrity: sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==} + /graceful-fs/4.2.8: + resolution: {integrity: sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==} dev: true /growly/1.3.0: @@ -11502,6 +10737,13 @@ packages: pify: 4.0.1 dev: true + /gzip-size/6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} + dependencies: + duplexer: 0.1.2 + dev: true + /handle-thing/2.0.1: resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} dev: true @@ -11573,6 +10815,13 @@ packages: engines: {node: '>= 0.4'} dev: true + /has-tostringtag/1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.2 + dev: true + /has-unicode/2.0.1: resolution: {integrity: sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=} dev: true @@ -11647,7 +10896,7 @@ packages: /hast-to-hyperscript/9.0.1: resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==} dependencies: - '@types/unist': 2.0.3 + '@types/unist': 2.0.6 comma-separated-tokens: 1.0.8 property-information: 5.6.0 space-separated-tokens: 1.1.5 @@ -11674,7 +10923,7 @@ packages: /hast-util-raw/6.0.1: resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==} dependencies: - '@types/hast': 2.3.1 + '@types/hast': 2.3.2 hast-util-from-parse5: 6.0.1 hast-util-to-parse5: 6.0.0 html-void-elements: 1.0.5 @@ -11699,7 +10948,7 @@ packages: /hastscript/6.0.0: resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} dependencies: - '@types/hast': 2.3.1 + '@types/hast': 2.3.2 comma-separated-tokens: 1.0.8 hast-util-parse-selector: 2.2.5 property-information: 5.6.0 @@ -11715,20 +10964,20 @@ packages: resolution: {integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==} dev: true - /highlight.js/10.7.2: - resolution: {integrity: sha512-oFLl873u4usRM9K63j4ME9u3etNF0PLiJhSQ8rdfuL51Wn3zkD6drf9ZW0dOzjnZI22YYG24z30JcmfCZjMgYg==} + /highlight.js/10.7.3: + resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} dev: true /history/4.10.1: resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 loose-envify: 1.4.0 resolve-pathname: 3.0.0 tiny-invariant: 1.1.0 tiny-warning: 1.0.3 value-equal: 1.0.1 - dev: true + dev: false /hmac-drbg/1.0.1: resolution: {integrity: sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=} @@ -11744,13 +10993,8 @@ packages: react-is: 16.13.1 dev: true - /hoopy/0.1.4: - resolution: {integrity: sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==} - engines: {node: '>= 6.0.0'} - dev: true - - /hosted-git-info/2.8.8: - resolution: {integrity: sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==} + /hosted-git-info/2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} dev: true /hpack.js/2.1.6: @@ -11770,10 +11014,11 @@ packages: resolution: {integrity: sha1-wc56MWjIxmFAM6S194d/OyJfnDg=} dev: true - /html-element-map/1.2.0: - resolution: {integrity: sha512-0uXq8HsuG1v2TmQ8QkIhzbrqeskE4kn52Q18QJ9iAA/SnHoEKXWiUxHQtclRsCFWEUD2So34X+0+pZZu862nnw==} + /html-element-map/1.3.1: + resolution: {integrity: sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==} dependencies: - array-filter: 1.0.0 + array.prototype.filter: 1.0.0 + call-bind: 1.0.2 dev: true /html-encoding-sniffer/1.0.2: @@ -11862,9 +11107,9 @@ packages: peerDependencies: webpack: ^4.0.0 || ^5.0.0 dependencies: - '@types/html-minifier-terser': 5.1.1 - '@types/tapable': 1.0.7 - '@types/webpack': 4.41.29 + '@types/html-minifier-terser': 5.1.2 + '@types/tapable': 1.0.8 + '@types/webpack': 4.41.30 html-minifier-terser: 5.1.1 loader-utils: 1.4.0 lodash: 4.17.21 @@ -11874,24 +11119,13 @@ packages: webpack: 4.46.0 dev: true - /htmlparser2/3.10.1: - resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==} - dependencies: - domelementtype: 1.3.1 - domhandler: 2.4.2 - domutils: 1.7.0 - entities: 1.1.2 - inherits: 2.0.4 - readable-stream: 3.6.0 - dev: true - - /htmlparser2/6.0.0: - resolution: {integrity: sha512-numTQtDZMoh78zJpaNdJ9MXb2cv5G3jwUoe3dMQODubZvLoGvTE/Ofp6sHvH8OGKcN/8A47pGLi/k58xHP/Tfw==} + /htmlparser2/6.1.0: + resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} dependencies: - domelementtype: 2.1.0 - domhandler: 4.0.0 - domutils: 2.4.4 - entities: 2.1.0 + domelementtype: 2.2.0 + domhandler: 4.2.0 + domutils: 2.7.0 + entities: 2.2.0 dev: true /http-cache-semantics/4.1.0: @@ -11938,11 +11172,22 @@ packages: resolution: {integrity: sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==} dev: true - /http-proxy-middleware/0.19.1_debug@4.3.1: + /http-proxy-agent/4.0.1: + resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} + engines: {node: '>= 6'} + dependencies: + '@tootallnate/once': 1.1.2 + agent-base: 6.0.2 + debug: 4.3.2 + transitivePeerDependencies: + - supports-color + dev: true + + /http-proxy-middleware/0.19.1_debug@4.3.2: resolution: {integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==} engines: {node: '>=4.0.0'} dependencies: - http-proxy: 1.18.1_debug@4.3.1 + http-proxy: 1.18.1_debug@4.3.2 is-glob: 4.0.1 lodash: 4.17.21 micromatch: 3.1.10 @@ -11950,12 +11195,12 @@ packages: - debug dev: true - /http-proxy/1.18.1_debug@4.3.1: + /http-proxy/1.18.1_debug@4.3.2: resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} engines: {node: '>=8.0.0'} dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.14.0_debug@4.3.1 + follow-redirects: 1.14.2_debug@4.3.2 requires-port: 1.0.0 transitivePeerDependencies: - debug @@ -11974,6 +11219,16 @@ packages: resolution: {integrity: sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=} dev: true + /https-proxy-agent/5.0.0: + resolution: {integrity: sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==} + engines: {node: '>= 6'} + dependencies: + agent-base: 6.0.2 + debug: 4.3.2 + transitivePeerDependencies: + - supports-color + dev: true + /human-signals/1.1.1: resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} engines: {node: '>=8.12.0'} @@ -11997,7 +11252,20 @@ packages: resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==} engines: {node: '>= 6'} dependencies: - postcss: 7.0.35 + postcss: 7.0.36 + dev: true + + /icss-utils/5.1.0_postcss@8.3.6: + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.3.6 + dev: true + + /idb/6.1.2: + resolution: {integrity: sha512-1DNDVu3yDhAZkFDlJf0t7r+GLZ248F5pTAtA7V0oVG3yjmV125qZOx3g0XpAEkGZVYQiFDAsSOnGet2bhugc3w==} dev: true /identity-obj-proxy/3.0.0: @@ -12020,10 +11288,6 @@ packages: engines: {node: '>=10 <11 || >=12 <13 || >=14'} dev: true - /ignore/3.3.10: - resolution: {integrity: sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==} - dev: true - /ignore/4.0.6: resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} engines: {node: '>= 4'} @@ -12038,11 +11302,11 @@ packages: resolution: {integrity: sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==} dev: true - /import-cwd/2.1.0: - resolution: {integrity: sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=} - engines: {node: '>=4'} + /import-cwd/3.0.0: + resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} + engines: {node: '>=8'} dependencies: - import-from: 2.1.0 + import-from: 3.0.0 dev: true /import-fresh/2.0.0: @@ -12061,11 +11325,11 @@ packages: resolve-from: 4.0.0 dev: true - /import-from/2.1.0: - resolution: {integrity: sha1-M1238qev/VOqpHHUuAId7ja387E=} - engines: {node: '>=4'} + /import-from/3.0.0: + resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} + engines: {node: '>=8'} dependencies: - resolve-from: 3.0.0 + resolve-from: 5.0.0 dev: true /import-lazy/2.1.0: @@ -12133,10 +11397,6 @@ packages: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} dev: true - /ini/1.3.7: - resolution: {integrity: sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ==} - dev: true - /ini/1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} dev: true @@ -12206,8 +11466,8 @@ packages: engines: {node: '>= 0.10'} dev: true - /irregular-plurals/3.2.0: - resolution: {integrity: sha512-YqTdPLfwP7YFN0SsD3QUVCkm9ZG2VzOXv3DOrw5G5mkMbVwptTwVcFv7/C0vOpBmgTxAeTG19XpUs1E522LW9Q==} + /irregular-plurals/3.3.0: + resolution: {integrity: sha512-MVBLKUTangM3EfRPFROhmWQQKRDsrgI83J8GS3jXy+OwYqiR2/aoWndYQ5416jLE3uaGgLH7ncme3X9y09gZ3g==} engines: {node: '>=8'} dev: true @@ -12246,11 +11506,12 @@ packages: is-decimal: 1.0.4 dev: true - /is-arguments/1.1.0: - resolution: {integrity: sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==} + /is-arguments/1.1.1: + resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 + has-tostringtag: 1.0.0 dev: true /is-arrayish/0.2.1: @@ -12261,8 +11522,10 @@ packages: resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} dev: true - /is-bigint/1.0.2: - resolution: {integrity: sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==} + /is-bigint/1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + dependencies: + has-bigints: 1.0.1 dev: true /is-binary-path/1.0.1: @@ -12279,11 +11542,12 @@ packages: binary-extensions: 2.2.0 dev: true - /is-boolean-object/1.1.0: - resolution: {integrity: sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==} + /is-boolean-object/1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 + has-tostringtag: 1.0.0 dev: true /is-buffer/1.1.6: @@ -12300,8 +11564,8 @@ packages: engines: {node: '>= 0.4'} dev: true - /is-callable/1.2.3: - resolution: {integrity: sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==} + /is-callable/1.2.4: + resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} engines: {node: '>= 0.4'} dev: true @@ -12312,6 +11576,13 @@ packages: ci-info: 2.0.0 dev: true + /is-ci/3.0.0: + resolution: {integrity: sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ==} + hasBin: true + dependencies: + ci-info: 3.2.0 + dev: true + /is-color-stop/1.1.0: resolution: {integrity: sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=} dependencies: @@ -12329,8 +11600,8 @@ packages: has: 1.0.3 dev: true - /is-core-module/2.3.0: - resolution: {integrity: sha512-xSphU2KG9867tsYdLD4RWQ1VqdFl4HTO9Thf3I/3dLEfr0dbPTWKsuCKrgqMljg4nPE+Gq0VCnzT3gr0CyBmsw==} + /is-core-module/2.6.0: + resolution: {integrity: sha512-wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ==} dependencies: has: 1.0.3 dev: true @@ -12349,9 +11620,11 @@ packages: kind-of: 6.0.3 dev: true - /is-date-object/1.0.3: - resolution: {integrity: sha512-tDpEUInNcy2Yw3lNSepK3Wdw1RnXLcIVienz6Ou631Acl15cJyRWK4dgA1vCmOEgIbtOV0W7MHg+AR2Gdg1NXQ==} + /is-date-object/1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 dev: true /is-decimal/1.0.4: @@ -12471,14 +11744,6 @@ packages: resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} dev: true - /is-installed-globally/0.3.2: - resolution: {integrity: sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==} - engines: {node: '>=8'} - dependencies: - global-dirs: 2.1.0 - is-path-inside: 3.0.3 - dev: true - /is-installed-globally/0.4.0: resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} engines: {node: '>=10'} @@ -12505,19 +11770,16 @@ packages: engines: {node: '>= 0.4'} dev: true - /is-npm/4.0.0: - resolution: {integrity: sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig==} - engines: {node: '>=8'} - dev: true - /is-npm/5.0.0: resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} engines: {node: '>=10'} dev: true - /is-number-object/1.0.4: - resolution: {integrity: sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==} + /is-number-object/1.0.6: + resolution: {integrity: sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==} engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 dev: true /is-number/3.0.0: @@ -12570,11 +11832,6 @@ packages: engines: {node: '>=8'} dev: true - /is-plain-obj/1.1.0: - resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=} - engines: {node: '>=0.10.0'} - dev: true - /is-plain-obj/2.1.0: resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} engines: {node: '>=8'} @@ -12608,7 +11865,7 @@ packages: /is-reference/1.2.1: resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} dependencies: - '@types/estree': 0.0.46 + '@types/estree': 0.0.50 dev: true /is-regex/1.1.1: @@ -12618,20 +11875,12 @@ packages: has-symbols: 1.0.1 dev: true - /is-regex/1.1.2: - resolution: {integrity: sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - has-symbols: 1.0.2 - dev: true - - /is-regex/1.1.3: - resolution: {integrity: sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==} + /is-regex/1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - has-symbols: 1.0.2 + has-tostringtag: 1.0.0 dev: true /is-regexp/1.0.0: @@ -12662,27 +11911,27 @@ packages: engines: {node: '>=8'} dev: true + /is-stream/2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + dev: true + /is-string/1.0.5: resolution: {integrity: sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==} engines: {node: '>= 0.4'} dev: true - /is-string/1.0.6: - resolution: {integrity: sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==} + /is-string/1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 dev: true /is-subset/0.1.1: resolution: {integrity: sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=} dev: true - /is-symbol/1.0.3: - resolution: {integrity: sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==} - engines: {node: '>= 0.4'} - dependencies: - has-symbols: 1.0.2 - dev: true - /is-symbol/1.0.4: resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} engines: {node: '>= 0.4'} @@ -12694,6 +11943,11 @@ packages: resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=} dev: true + /is-unicode-supported/0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + dev: true + /is-whitespace-character/1.0.4: resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} dev: true @@ -12783,7 +12037,7 @@ packages: resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.0.0 semver: 6.3.0 @@ -12817,7 +12071,7 @@ packages: resolution: {integrity: sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==} engines: {node: '>=8'} dependencies: - debug: 4.3.1 + debug: 4.3.2 istanbul-lib-coverage: 3.0.0 source-map: 0.6.1 transitivePeerDependencies: @@ -12863,9 +12117,9 @@ packages: '@jest/core': 26.6.3 '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 - chalk: 4.1.1 + chalk: 4.1.2 exit: 0.1.2 - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 import-local: 3.0.2 is-ci: 2.0.0 jest-config: 26.6.3 @@ -12890,14 +12144,14 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.14.0 + '@babel/core': 7.15.0 '@jest/test-sequencer': 26.6.3 '@jest/types': 26.6.2 - babel-jest: 26.6.3_@babel+core@7.14.0 - chalk: 4.1.1 + babel-jest: 26.6.3_@babel+core@7.15.0 + chalk: 4.1.2 deepmerge: 4.2.2 - glob: 7.1.6 - graceful-fs: 4.2.6 + glob: 7.1.7 + graceful-fs: 4.2.8 jest-environment-jsdom: 26.6.2 jest-environment-node: 26.6.2 jest-get-type: 26.3.0 @@ -12919,7 +12173,7 @@ packages: resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} engines: {node: '>= 10.14.2'} dependencies: - chalk: 4.1.1 + chalk: 4.1.2 diff-sequences: 26.6.2 jest-get-type: 26.3.0 pretty-format: 26.6.2 @@ -12937,7 +12191,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - chalk: 4.1.1 + chalk: 4.1.2 jest-get-type: 26.3.0 jest-util: 26.6.2 pretty-format: 26.6.2 @@ -12950,13 +12204,14 @@ packages: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 14.14.44 + '@types/node': 14.17.10 jest-mock: 26.6.2 jest-util: 26.6.2 - jsdom: 16.5.3 + jsdom: 16.7.0 transitivePeerDependencies: - bufferutil - canvas + - supports-color - utf-8-validate dev: true @@ -12967,7 +12222,7 @@ packages: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 14.14.44 + '@types/node': 14.17.10 jest-mock: 26.6.2 jest-util: 26.6.2 dev: true @@ -12983,10 +12238,10 @@ packages: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.5 - '@types/node': 14.14.44 + '@types/node': 14.17.10 anymatch: 3.1.2 fb-watchman: 2.0.1 - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 jest-regex-util: 26.0.0 jest-serializer: 26.6.2 jest-util: 26.6.2 @@ -12998,17 +12253,37 @@ packages: fsevents: 2.3.2 dev: true + /jest-haste-map/27.0.6: + resolution: {integrity: sha512-4ldjPXX9h8doB2JlRzg9oAZ2p6/GpQUNAeiYXqcpmrKbP0Qev0wdZlxSMOmz8mPOEnt4h6qIzXFLDi8RScX/1w==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + '@jest/types': 27.0.6 + '@types/graceful-fs': 4.1.5 + '@types/node': 14.17.10 + anymatch: 3.1.2 + fb-watchman: 2.0.1 + graceful-fs: 4.2.8 + jest-regex-util: 27.0.6 + jest-serializer: 27.0.6 + jest-util: 27.0.6 + jest-worker: 27.0.6 + micromatch: 4.0.4 + walker: 1.0.7 + optionalDependencies: + fsevents: 2.3.2 + dev: true + /jest-jasmine2/26.6.3: resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/traverse': 7.14.0 + '@babel/traverse': 7.15.0 '@jest/environment': 26.6.2 '@jest/source-map': 26.6.2 '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 14.14.44 - chalk: 4.1.1 + '@types/node': 14.17.10 + chalk: 4.1.2 co: 4.6.0 expect: 26.6.2 is-generator-fn: 2.1.0 @@ -13040,7 +12315,7 @@ packages: resolution: {integrity: sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==} engines: {node: '>= 10.14.2'} dependencies: - chalk: 4.1.1 + chalk: 4.1.2 jest-diff: 26.6.2 jest-get-type: 26.3.0 pretty-format: 26.6.2 @@ -13050,23 +12325,38 @@ packages: resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/code-frame': 7.12.13 + '@babel/code-frame': 7.14.5 '@jest/types': 26.6.2 - '@types/stack-utils': 2.0.0 - chalk: 4.1.1 - graceful-fs: 4.2.6 + '@types/stack-utils': 2.0.1 + chalk: 4.1.2 + graceful-fs: 4.2.8 micromatch: 4.0.4 pretty-format: 26.6.2 slash: 3.0.0 stack-utils: 2.0.3 dev: true + /jest-message-util/27.0.6: + resolution: {integrity: sha512-rBxIs2XK7rGy+zGxgi+UJKP6WqQ+KrBbD1YMj517HYN3v2BG66t3Xan3FWqYHKZwjdB700KiAJ+iES9a0M+ixw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + '@babel/code-frame': 7.14.5 + '@jest/types': 27.0.6 + '@types/stack-utils': 2.0.1 + chalk: 4.1.2 + graceful-fs: 4.2.8 + micromatch: 4.0.4 + pretty-format: 27.0.6 + slash: 3.0.0 + stack-utils: 2.0.3 + dev: true + /jest-mock/26.6.2: resolution: {integrity: sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==} engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 14.14.44 + '@types/node': 14.17.10 dev: true /jest-pnp-resolver/1.2.2_jest-resolve@26.6.2: @@ -13081,25 +12371,25 @@ packages: jest-resolve: 26.6.2 dev: true - /jest-preset-preact/4.0.3_669f037bdb6c36f0a67e918c516dafdd: - resolution: {integrity: sha512-520N1zfwmiszgBXBXVUP+ZaBjgzGWXrSA1tY7IWoCXo4F1OgJ8a+QWhc5Z5DGiTqencL3m9WpYhaEiOnciuZTg==} + /jest-preset-preact/4.0.5_9b3f24ae35a87c3c82fffbe3fdf70e1e: + resolution: {integrity: sha512-MnU7mfpnwopJkdx0WoEyRmrNDIvRN+w6sOur0zEhaRYYMo0gJM7UdZHWTV8k6uo0+ypY+m0kQW6kMukUx4v8JQ==} peerDependencies: - jest: 26.x + jest: 26.x || 27.x preact: 10.x preact-render-to-string: 5.x dependencies: - '@babel/core': 7.14.0 - '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.14.0 - '@babel/plugin-transform-react-jsx': 7.13.12_@babel+core@7.14.0 - '@babel/preset-env': 7.14.1_@babel+core@7.14.0 - '@babel/preset-typescript': 7.13.0_@babel+core@7.14.0 - babel-jest: 26.6.3_@babel+core@7.14.0 + '@babel/core': 7.15.0 + '@babel/plugin-proposal-class-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-react-jsx': 7.14.9_@babel+core@7.15.0 + '@babel/preset-env': 7.15.0_@babel+core@7.15.0 + '@babel/preset-typescript': 7.15.0_@babel+core@7.15.0 + babel-jest: 27.0.6_@babel+core@7.15.0 identity-obj-proxy: 3.0.0 isomorphic-unfetch: 3.1.0 jest: 26.6.3 - jest-watch-typeahead: 0.6.3_jest@26.6.3 - preact: 10.5.13 - preact-render-to-string: 5.1.19_preact@10.5.13 + jest-watch-typeahead: 0.6.4_jest@26.6.3 + preact: 10.5.14 + preact-render-to-string: 5.1.19_preact@10.5.14 transitivePeerDependencies: - supports-color dev: true @@ -13109,6 +12399,11 @@ packages: engines: {node: '>= 10.14.2'} dev: true + /jest-regex-util/27.0.6: + resolution: {integrity: sha512-SUhPzBsGa1IKm8hx2F4NfTGGp+r7BXJ4CulsZ1k2kI+mGLG+lxGrs76veN2LF/aUdGosJBzKgXmNCw+BzFqBDQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dev: true + /jest-resolve-dependencies/26.6.3: resolution: {integrity: sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==} engines: {node: '>= 10.14.2'} @@ -13123,8 +12418,8 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - chalk: 4.1.1 - graceful-fs: 4.2.6 + chalk: 4.1.2 + graceful-fs: 4.2.8 jest-pnp-resolver: 1.2.2_jest-resolve@26.6.2 jest-util: 26.6.2 read-pkg-up: 7.0.1 @@ -13140,11 +12435,11 @@ packages: '@jest/environment': 26.6.2 '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 14.14.44 - chalk: 4.1.1 + '@types/node': 14.17.10 + chalk: 4.1.2 emittery: 0.7.2 exit: 0.1.2 - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 jest-config: 26.6.3 jest-docblock: 26.0.0 jest-haste-map: 26.6.2 @@ -13177,13 +12472,13 @@ packages: '@jest/test-result': 26.6.2 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 - '@types/yargs': 15.0.13 - chalk: 4.1.1 + '@types/yargs': 15.0.14 + chalk: 4.1.2 cjs-module-lexer: 0.6.0 collect-v8-coverage: 1.0.1 exit: 0.1.2 - glob: 7.1.6 - graceful-fs: 4.2.6 + glob: 7.1.7 + graceful-fs: 4.2.8 jest-config: 26.6.3 jest-haste-map: 26.6.2 jest-message-util: 26.6.2 @@ -13208,21 +12503,29 @@ packages: resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} engines: {node: '>= 10.14.2'} dependencies: - '@types/node': 14.14.44 - graceful-fs: 4.2.6 + '@types/node': 14.17.10 + graceful-fs: 4.2.8 + dev: true + + /jest-serializer/27.0.6: + resolution: {integrity: sha512-PtGdVK9EGC7dsaziskfqaAPib6wTViY3G8E5wz9tLVPhHyiDNTZn/xjZ4khAw+09QkoOVpn7vF5nPSN6dtBexA==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + '@types/node': 14.17.10 + graceful-fs: 4.2.8 dev: true /jest-snapshot/26.6.2: resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/types': 7.14.1 + '@babel/types': 7.15.0 '@jest/types': 26.6.2 - '@types/babel__traverse': 7.11.1 - '@types/prettier': 2.2.3 - chalk: 4.1.1 + '@types/babel__traverse': 7.14.2 + '@types/prettier': 2.3.2 + chalk: 4.1.2 expect: 26.6.2 - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 jest-diff: 26.6.2 jest-get-type: 26.3.0 jest-haste-map: 26.6.2 @@ -13239,36 +12542,48 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 14.14.44 - chalk: 4.1.1 - graceful-fs: 4.2.6 + '@types/node': 14.17.10 + chalk: 4.1.2 + graceful-fs: 4.2.8 is-ci: 2.0.0 micromatch: 4.0.4 dev: true + /jest-util/27.0.6: + resolution: {integrity: sha512-1JjlaIh+C65H/F7D11GNkGDDZtDfMEM8EBXsvd+l/cxtgQ6QhxuloOaiayt89DxUvDarbVhqI98HhgrM1yliFQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + '@jest/types': 27.0.6 + '@types/node': 14.17.10 + chalk: 4.1.2 + graceful-fs: 4.2.8 + is-ci: 3.0.0 + picomatch: 2.3.0 + dev: true + /jest-validate/26.6.2: resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 camelcase: 6.2.0 - chalk: 4.1.1 + chalk: 4.1.2 jest-get-type: 26.3.0 leven: 3.1.0 pretty-format: 26.6.2 dev: true - /jest-watch-typeahead/0.6.3_jest@26.6.3: - resolution: {integrity: sha512-rM+2m2U/7o4VeXxA3rcEWbbKq8K/aGjAwCgmqsthPV1AqLb5NNACzS+tDCD11bdQ8MrN+H3uN61Y9qFiJgtZPw==} + /jest-watch-typeahead/0.6.4_jest@26.6.3: + resolution: {integrity: sha512-tGxriteVJqonyrDj/xZHa0E2glKMiglMLQqISLCjxLUfeueRBh9VoRF2FKQyYO2xOqrWDTg7781zUejx411ZXA==} engines: {node: '>=10'} peerDependencies: - jest: ^26.0.0 + jest: ^26.0.0 || ^27.0.0 dependencies: ansi-escapes: 4.3.2 - chalk: 4.1.1 + chalk: 4.1.2 jest: 26.6.3 - jest-regex-util: 26.0.0 - jest-watcher: 26.6.2 + jest-regex-util: 27.0.6 + jest-watcher: 27.0.6 slash: 3.0.0 string-length: 4.0.2 strip-ansi: 6.0.0 @@ -13280,30 +12595,44 @@ packages: dependencies: '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 14.14.44 + '@types/node': 14.17.10 ansi-escapes: 4.3.2 - chalk: 4.1.1 + chalk: 4.1.2 jest-util: 26.6.2 string-length: 4.0.2 dev: true - /jest-worker/24.9.0: - resolution: {integrity: sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==} - engines: {node: '>= 6'} + /jest-watcher/27.0.6: + resolution: {integrity: sha512-/jIoKBhAP00/iMGnTwUBLgvxkn7vsOweDrOTSPzc7X9uOyUtJIDthQBTI1EXz90bdkrxorUZVhJwiB69gcHtYQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - merge-stream: 2.0.0 - supports-color: 6.1.0 + '@jest/test-result': 27.0.6 + '@jest/types': 27.0.6 + '@types/node': 14.17.10 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + jest-util: 27.0.6 + string-length: 4.0.2 dev: true /jest-worker/26.6.2: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 14.17.1 + '@types/node': 14.17.10 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true + /jest-worker/27.0.6: + resolution: {integrity: sha512-qupxcj/dRuA3xHPMUd40gr2EaAurFbkwzOh7wfPaeE9id7hyjURRQoqNfHifHK3XjJU6YJJUQKILGUnwGPEOCA==} + engines: {node: '>= 10.13.0'} + dependencies: + '@types/node': 14.17.10 + merge-stream: 2.0.0 + supports-color: 8.1.1 + dev: true + /jest/26.6.3: resolution: {integrity: sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==} engines: {node: '>= 10.14.2'} @@ -13331,7 +12660,6 @@ packages: /js-tokens/4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - dev: true /js-yaml/3.14.1: resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} @@ -13372,12 +12700,12 @@ packages: whatwg-encoding: 1.0.5 whatwg-mimetype: 2.3.0 whatwg-url: 7.1.0 - ws: 6.2.1 + ws: 6.2.2 xml-name-validator: 3.0.0 dev: true - /jsdom/16.5.3: - resolution: {integrity: sha512-Qj1H+PEvUsOtdPJ056ewXM4UJPCi4hhLA8wpiz9F2YvsRBhuFsXxtrIFAgGBDynQA9isAMGE91PfUYbdMPXuTA==} + /jsdom/16.7.0: + resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} engines: {node: '>=10'} peerDependencies: canvas: ^2.5.0 @@ -13386,20 +12714,21 @@ packages: optional: true dependencies: abab: 2.0.5 - acorn: 8.2.4 + acorn: 8.4.1 acorn-globals: 6.0.0 cssom: 0.4.4 cssstyle: 2.3.0 data-urls: 2.0.0 - decimal.js: 10.2.1 + decimal.js: 10.3.1 domexception: 2.0.1 escodegen: 2.0.0 + form-data: 3.0.1 html-encoding-sniffer: 2.0.1 + http-proxy-agent: 4.0.1 + https-proxy-agent: 5.0.0 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.0 parse5: 6.0.1 - request: 2.88.2 - request-promise-native: 1.0.9_request@2.88.2 saxes: 5.0.1 symbol-tree: 3.2.4 tough-cookie: 4.0.0 @@ -13408,11 +12737,12 @@ packages: webidl-conversions: 6.1.0 whatwg-encoding: 1.0.5 whatwg-mimetype: 2.3.0 - whatwg-url: 8.5.0 - ws: 7.4.5 + whatwg-url: 8.7.0 + ws: 7.5.3 xml-name-validator: 3.0.0 transitivePeerDependencies: - bufferutil + - supports-color - utf-8-validate dev: true @@ -13451,6 +12781,10 @@ packages: resolution: {integrity: sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=} dev: true + /json-schema/0.3.0: + resolution: {integrity: sha512-TYfxx36xfl52Rf1LU9HyWSLGPdYLL+SQ8/E/0yVyKG8wCCDaSrhPap0vEdlsZWRaS6tnKKLPGiEJGiREVC8kxQ==} + dev: true + /json-stable-stringify-without-jsonify/1.0.1: resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} dev: true @@ -13494,13 +12828,13 @@ packages: /jsonfile/2.4.0: resolution: {integrity: sha1-NzaitCi4e72gzIO1P6PWM6NcKug=} optionalDependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 dev: true /jsonfile/4.0.0: resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=} optionalDependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 dev: true /jsonfile/6.1.0: @@ -13508,7 +12842,12 @@ packages: dependencies: universalify: 2.0.0 optionalDependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 + dev: true + + /jsonpointer/4.1.0: + resolution: {integrity: sha512-CXcRvMyTlnR53xMcKnuMzfCA5i/nfblTnnr74CZb6C4vG39eu6w51t7nKmU5MfLfbTgGItliNyjO/ciNPDqClg==} + engines: {node: '>=0.10.0'} dev: true /jsprim/1.4.1: @@ -13571,7 +12910,7 @@ packages: /klaw/1.3.1: resolution: {integrity: sha1-QIhDO0azsbolnXh4XY6W9zugJDk=} optionalDependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 dev: true /kleur/3.0.3: @@ -13617,9 +12956,9 @@ packages: resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 app-root-dir: 1.0.2 - core-js: 3.13.0 + core-js: 3.16.2 dotenv: 8.6.0 dotenv-expand: 5.1.0 dev: true @@ -13645,6 +12984,11 @@ packages: type-check: 0.4.0 dev: true + /lilconfig/2.0.3: + resolution: {integrity: sha512-EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg==} + engines: {node: '>=10'} + dev: true + /lines-and-columns/1.1.6: resolution: {integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=} dev: true @@ -13663,7 +13007,7 @@ packages: resolution: {integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==} engines: {node: '>=6'} dependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 parse-json: 4.0.0 pify: 4.0.1 strip-bom: 3.0.0 @@ -13732,10 +13076,6 @@ packages: p-locate: 5.0.0 dev: true - /lodash._reinterpolate/3.0.0: - resolution: {integrity: sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=} - dev: true - /lodash.debounce/4.0.8: resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=} dev: true @@ -13764,19 +13104,6 @@ packages: resolution: {integrity: sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=} dev: true - /lodash.template/4.5.0: - resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} - dependencies: - lodash._reinterpolate: 3.0.0 - lodash.templatesettings: 4.2.0 - dev: true - - /lodash.templatesettings/4.2.0: - resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} - dependencies: - lodash._reinterpolate: 3.0.0 - dev: true - /lodash.uniq/4.5.0: resolution: {integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=} dev: true @@ -13789,18 +13116,12 @@ packages: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} dev: true - /log-symbols/3.0.0: - resolution: {integrity: sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==} - engines: {node: '>=8'} - dependencies: - chalk: 2.4.2 - dev: true - - /log-symbols/4.0.0: - resolution: {integrity: sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==} + /log-symbols/4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} dependencies: - chalk: 4.1.0 + chalk: 4.1.2 + is-unicode-supported: 0.1.0 dev: true /loglevel/1.7.1: @@ -13813,7 +13134,6 @@ packages: hasBin: true dependencies: js-tokens: 4.0.0 - dev: true /lower-case/1.1.4: resolution: {integrity: sha1-miyr0bno4K6ZOkv31YdcOcQujqw=} @@ -13822,7 +13142,7 @@ packages: /lower-case/2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: - tslib: 2.2.0 + tslib: 2.3.1 dev: true /lowercase-keys/1.0.1: @@ -13839,7 +13159,7 @@ packages: resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==} dependencies: fault: 1.0.4 - highlight.js: 10.7.2 + highlight.js: 10.7.3 dev: true /lru-cache/4.1.5: @@ -14005,8 +13325,8 @@ packages: /mdast-util-to-hast/10.0.1: resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==} dependencies: - '@types/mdast': 3.0.3 - '@types/unist': 2.0.3 + '@types/mdast': 3.0.8 + '@types/unist': 2.0.6 mdast-util-definitions: 4.0.0 mdurl: 1.0.1 unist-builder: 2.0.3 @@ -14036,8 +13356,8 @@ packages: engines: {node: '>= 0.6'} dev: true - /mem/8.0.0: - resolution: {integrity: sha512-qrcJOe6uD+EW8Wrci1Vdiua/15Xw3n/QnaNXE7varnB6InxSk7nu3/i5jfy3S6kWxr8WYJ6R1o0afMUtvorTsA==} + /mem/8.1.1: + resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} engines: {node: '>=10'} dependencies: map-age-cleaner: 0.1.3 @@ -14137,16 +13457,16 @@ packages: brorand: 1.1.0 dev: true - /mime-db/1.47.0: - resolution: {integrity: sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==} + /mime-db/1.49.0: + resolution: {integrity: sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA==} engines: {node: '>= 0.6'} dev: true - /mime-types/2.1.30: - resolution: {integrity: sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==} + /mime-types/2.1.32: + resolution: {integrity: sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==} engines: {node: '>= 0.6'} dependencies: - mime-db: 1.47.0 + mime-db: 1.49.0 dev: true /mime/1.6.0: @@ -14182,15 +13502,14 @@ packages: dom-walk: 0.1.2 dev: true - /mini-css-extract-plugin/0.9.0_webpack@4.46.0: - resolution: {integrity: sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A==} - engines: {node: '>= 6.9.0'} + /mini-css-extract-plugin/1.6.2_webpack@4.46.0: + resolution: {integrity: sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==} + engines: {node: '>= 10.13.0'} peerDependencies: - webpack: ^4.4.0 + webpack: ^4.4.0 || ^5.0.0 dependencies: - loader-utils: 1.4.0 - normalize-url: 1.9.1 - schema-utils: 1.0.0 + loader-utils: 2.0.0 + schema-utils: 3.1.1 webpack: 4.46.0 webpack-sources: 1.4.3 dev: true @@ -14348,18 +13667,20 @@ packages: resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==} hasBin: true dependencies: - dns-packet: 1.3.1 + dns-packet: 1.3.4 thunky: 1.1.0 dev: true - /mute-stream/0.0.8: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + /nan/2.15.0: + resolution: {integrity: sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==} dev: true + optional: true - /nan/2.14.2: - resolution: {integrity: sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==} + /nanoid/3.1.25: + resolution: {integrity: sha512-rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true dev: true - optional: true /nanomatch/1.2.13: resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} @@ -14425,7 +13746,7 @@ packages: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} dependencies: lower-case: 2.0.2 - tslib: 2.2.0 + tslib: 2.3.1 dev: true /node-fetch/2.6.1: @@ -14494,16 +13815,13 @@ packages: process-on-spawn: 1.0.0 dev: true - /node-releases/1.1.71: - resolution: {integrity: sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==} - dev: true - - /node-releases/1.1.72: - resolution: {integrity: sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw==} + /node-releases/1.1.75: + resolution: {integrity: sha512-Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw==} dev: true /nodent-compiler/3.2.13: resolution: {integrity: sha512-nzzWPXZwSdsWie34om+4dLrT/5l1nT/+ig1v06xuSgMtieJVAnMQFuZihUwREM+M7dFso9YoHfDmweexEXXrrw==} + engines: {'0': n, '1': o, '2': d, '3': e, '4': ' ', '5': '>', '6': '=', '7': ' ', '8': '0', '9': ., '10': '1', '11': '0', '12': ., '13': '0'} dependencies: acorn: 5.7.4 acorn-es7-plugin: 1.1.7 @@ -14531,7 +13849,7 @@ packages: /normalize-package-data/2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: - hosted-git-info: 2.8.8 + hosted-git-info: 2.8.9 resolve: 1.20.0 semver: 5.7.1 validate-npm-package-license: 3.0.4 @@ -14554,26 +13872,21 @@ packages: engines: {node: '>=0.10.0'} dev: true - /normalize-url/1.9.1: - resolution: {integrity: sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=} - engines: {node: '>=4'} - dependencies: - object-assign: 4.1.1 - prepend-http: 1.0.4 - query-string: 4.3.4 - sort-keys: 1.1.2 - dev: true - /normalize-url/3.3.0: resolution: {integrity: sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==} engines: {node: '>=6'} dev: true - /normalize-url/4.5.0: - resolution: {integrity: sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==} + /normalize-url/4.5.1: + resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} engines: {node: '>=8'} dev: true + /normalize-url/6.1.0: + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} + dev: true + /npm-run-path/2.0.2: resolution: {integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=} engines: {node: '>=4'} @@ -14676,26 +13989,14 @@ packages: kind-of: 3.2.2 dev: true - /object-inspect/1.10.2: - resolution: {integrity: sha512-gz58rdPpadwztRrPjZE9DZLOABUpTGdcANUgOwBFO1C+HZZhePoP83M65WGDmbpwFYJSWqavbl4SgDn4k8RYTA==} - dev: true - - /object-inspect/1.10.3: - resolution: {integrity: sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==} + /object-inspect/1.11.0: + resolution: {integrity: sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==} dev: true /object-inspect/1.9.0: resolution: {integrity: sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==} dev: true - /object-is/1.1.4: - resolution: {integrity: sha512-1ZvAZ4wlF7IyPVOcE1Omikt7UpaFlOQq0HlSti+ZvDH3UiD2brwGMwDbyV43jao2bKJ+4+WdPJHSd7kgzKYVqg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - dev: true - /object-is/1.1.5: resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} engines: {node: '>= 0.4'} @@ -14736,6 +14037,15 @@ packages: has: 1.0.3 dev: true + /object.entries/1.1.4: + resolution: {integrity: sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.3 + es-abstract: 1.18.5 + dev: true + /object.fromentries/2.0.3: resolution: {integrity: sha512-IDUSMXs6LOSJBWE++L0lzIbSqHl9KDCfff2x/JSEIDtEUavUnyMYC2ZGay/04Zq4UT8lvd4xNhU4/YHKibAOlw==} engines: {node: '>= 0.4'} @@ -14752,7 +14062,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.2 + es-abstract: 1.18.5 has: 1.0.3 dev: true @@ -14762,7 +14072,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0 + es-abstract: 1.18.5 dev: true /object.pick/1.3.0: @@ -14782,14 +14092,13 @@ packages: has: 1.0.3 dev: true - /object.values/1.1.3: - resolution: {integrity: sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==} + /object.values/1.1.4: + resolution: {integrity: sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0 - has: 1.0.3 + es-abstract: 1.18.5 dev: true /obuf/1.1.2: @@ -14847,13 +14156,14 @@ packages: is-wsl: 1.1.0 dev: true - /optimize-css-assets-webpack-plugin/5.0.4_webpack@4.46.0: - resolution: {integrity: sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==} + /optimize-css-assets-webpack-plugin/6.0.1_webpack@4.46.0: + resolution: {integrity: sha512-BshV2UZPfggZLdUfN3zFBbG4sl/DynUI+YCB6fRRDWaqO2OiWN8GPcp4Y0/fEV6B3k9Hzyk3czve3V/8B/SzKQ==} peerDependencies: webpack: ^4.0.0 dependencies: - cssnano: 4.1.11 + cssnano: 5.0.8_postcss@8.3.6 last-call-webpack-plugin: 3.0.0 + postcss: 8.3.6 webpack: 4.46.0 dev: true @@ -14881,30 +14191,17 @@ packages: word-wrap: 1.2.3 dev: true - /ora/4.1.1: - resolution: {integrity: sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==} - engines: {node: '>=8'} - dependencies: - chalk: 3.0.0 - cli-cursor: 3.1.0 - cli-spinners: 2.6.0 - is-interactive: 1.0.0 - log-symbols: 3.0.0 - mute-stream: 0.0.8 - strip-ansi: 6.0.0 - wcwidth: 1.0.1 - dev: true - - /ora/5.3.0: - resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==} + /ora/5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} engines: {node: '>=10'} dependencies: bl: 4.1.0 - chalk: 4.1.0 + chalk: 4.1.2 cli-cursor: 3.1.0 - cli-spinners: 2.5.0 + cli-spinners: 2.6.0 is-interactive: 1.0.0 - log-symbols: 4.0.0 + is-unicode-supported: 0.1.0 + log-symbols: 4.1.0 strip-ansi: 6.0.0 wcwidth: 1.0.1 dev: true @@ -14912,7 +14209,7 @@ packages: /original/1.0.2: resolution: {integrity: sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==} dependencies: - url-parse: 1.5.1 + url-parse: 1.5.3 dev: true /os-browserify/0.3.0: @@ -15098,7 +14395,7 @@ packages: resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} dependencies: dot-case: 3.0.4 - tslib: 2.2.0 + tslib: 2.3.1 dev: true /parent-module/1.0.1: @@ -15148,7 +14445,7 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.12.13 + '@babel/code-frame': 7.14.5 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.1.6 @@ -15186,7 +14483,7 @@ packages: resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} dependencies: no-case: 3.0.4 - tslib: 2.2.0 + tslib: 2.3.1 dev: true /pascalcase/0.1.1: @@ -15235,6 +14532,10 @@ packages: resolution: {integrity: sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==} dev: true + /path-parse/1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + dev: true + /path-to-regexp/0.1.7: resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=} dev: true @@ -15278,11 +14579,6 @@ packages: engines: {node: '>=8.6'} dev: true - /picomatch/2.2.3: - resolution: {integrity: sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==} - engines: {node: '>=8.6'} - dev: true - /picomatch/2.3.0: resolution: {integrity: sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==} engines: {node: '>=8.6'} @@ -15369,18 +14665,27 @@ packages: resolution: {integrity: sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==} engines: {node: '>=10'} dependencies: - irregular-plurals: 3.2.0 + irregular-plurals: 3.3.0 dev: true /pn/1.1.0: resolution: {integrity: sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==} dev: true - /pnp-webpack-plugin/1.6.4_typescript@4.1.3: + /pnp-webpack-plugin/1.6.4_typescript@4.3.5: resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0_typescript@4.1.3 + ts-pnp: 1.2.0_typescript@4.3.5 + transitivePeerDependencies: + - typescript + dev: true + + /pnp-webpack-plugin/1.7.0_typescript@4.3.5: + resolution: {integrity: sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==} + engines: {node: '>=6'} + dependencies: + ts-pnp: 1.2.0_typescript@4.3.5 transitivePeerDependencies: - typescript dev: true @@ -15394,11 +14699,11 @@ packages: nomnom: 1.8.1 dev: true - /polished/4.1.2: - resolution: {integrity: sha512-jq4t3PJUpVRcveC53nnbEX35VyQI05x3tniwp26WFdm1dwaNUBHAi5awa/roBlwQxx1uRhwNSYeAi/aMbfiJCQ==} + /polished/4.1.3: + resolution: {integrity: sha512-ocPAcVBUOryJEKe0z2KLd1l9EBa1r5mSwlKpExmrLzsnIzJo4axsoU9O2BjOTkDGDT4mZ0WFE5XKTlR3nLnZOA==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 dev: true /portfinder/1.0.28: @@ -15418,8 +14723,18 @@ packages: /postcss-calc/7.0.5: resolution: {integrity: sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==} dependencies: - postcss: 7.0.35 - postcss-selector-parser: 6.0.5 + postcss: 7.0.36 + postcss-selector-parser: 6.0.6 + postcss-value-parser: 4.1.0 + dev: true + + /postcss-calc/8.0.0_postcss@8.3.6: + resolution: {integrity: sha512-5NglwDrcbiy8XXfPM11F3HeC6hoT9W7GUH/Zi5U/p7u3Irv4rHhdDcIZwG0llHXV4ftsBjpfWMXAnXNl4lnt8g==} + peerDependencies: + postcss: ^8.2.2 + dependencies: + postcss: 8.3.6 + postcss-selector-parser: 6.0.6 postcss-value-parser: 4.1.0 dev: true @@ -15427,74 +14742,145 @@ packages: resolution: {integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.16.6 - color: 3.1.3 + browserslist: 4.16.8 + color: 3.2.1 has: 1.0.3 - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 dev: true + /postcss-colormin/5.2.0_postcss@8.3.6: + resolution: {integrity: sha512-+HC6GfWU3upe5/mqmxuqYZ9B2Wl4lcoUUNkoaX59nEWV4EtADCMiBqui111Bu8R8IvaZTmqmxrqOAqjbHIwXPw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.16.8 + caniuse-api: 3.0.0 + colord: 2.7.0 + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /postcss-convert-values/4.0.1: resolution: {integrity: sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==} engines: {node: '>=6.9.0'} dependencies: - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 dev: true + /postcss-convert-values/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-C3zR1Do2BkKkCgC0g3sF8TS0koF2G+mN8xxayZx3f10cIRmTaAnpgpRQZjNekTZxM2ciSPoh2IWJm0VZx8NoQg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /postcss-discard-comments/4.0.2: resolution: {integrity: sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==} engines: {node: '>=6.9.0'} dependencies: - postcss: 7.0.35 + postcss: 7.0.36 + dev: true + + /postcss-discard-comments/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.3.6 dev: true /postcss-discard-duplicates/4.0.2: resolution: {integrity: sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==} engines: {node: '>=6.9.0'} dependencies: - postcss: 7.0.35 + postcss: 7.0.36 + dev: true + + /postcss-discard-duplicates/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.3.6 dev: true /postcss-discard-empty/4.0.1: resolution: {integrity: sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==} engines: {node: '>=6.9.0'} dependencies: - postcss: 7.0.35 + postcss: 7.0.36 + dev: true + + /postcss-discard-empty/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.3.6 dev: true /postcss-discard-overridden/4.0.1: resolution: {integrity: sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==} engines: {node: '>=6.9.0'} dependencies: - postcss: 7.0.35 + postcss: 7.0.36 + dev: true + + /postcss-discard-overridden/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-Y28H7y93L2BpJhrdUR2SR2fnSsT+3TVx1NmVQLbcnZWwIUpJ7mfcTC6Za9M2PG6w8j7UQRfzxqn8jU2VwFxo3Q==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.3.6 dev: true /postcss-flexbugs-fixes/4.2.1: resolution: {integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==} dependencies: - postcss: 7.0.35 + postcss: 7.0.36 dev: true - /postcss-load-config/2.1.2: - resolution: {integrity: sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==} - engines: {node: '>= 4'} + /postcss-load-config/3.1.0: + resolution: {integrity: sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g==} + engines: {node: '>= 10'} + peerDependencies: + ts-node: '>=9.0.0' + peerDependenciesMeta: + ts-node: + optional: true dependencies: - cosmiconfig: 5.2.1 - import-cwd: 2.1.0 + import-cwd: 3.0.0 + lilconfig: 2.0.3 + yaml: 1.10.2 dev: true - /postcss-loader/3.0.0: - resolution: {integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==} - engines: {node: '>= 6'} + /postcss-loader/4.3.0_postcss@7.0.36+webpack@4.46.0: + 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: - loader-utils: 1.4.0 - postcss: 7.0.35 - postcss-load-config: 2.1.2 - schema-utils: 1.0.0 + cosmiconfig: 7.0.0 + klona: 2.0.4 + loader-utils: 2.0.0 + postcss: 7.0.36 + schema-utils: 3.1.1 + semver: 7.3.5 + webpack: 4.46.0 dev: true - /postcss-loader/4.3.0_postcss@7.0.35+webpack@4.46.0: + /postcss-loader/4.3.0_postcss@8.3.6+webpack@4.46.0: resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -15504,8 +14890,8 @@ packages: cosmiconfig: 7.0.0 klona: 2.0.4 loader-utils: 2.0.0 - postcss: 7.0.35 - schema-utils: 3.0.0 + postcss: 8.3.6 + schema-utils: 3.1.1 semver: 7.3.5 webpack: 4.46.0 dev: true @@ -15515,68 +14901,150 @@ packages: engines: {node: '>=6.9.0'} dependencies: css-color-names: 0.0.4 - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 stylehacks: 4.0.3 dev: true + /postcss-merge-longhand/5.0.2_postcss@8.3.6: + resolution: {integrity: sha512-BMlg9AXSI5G9TBT0Lo/H3PfUy63P84rVz3BjCFE9e9Y9RXQZD3+h3YO1kgTNsNJy7bBc1YQp8DmSnwLIW5VPcw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + css-color-names: 1.0.1 + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + stylehacks: 5.0.1_postcss@8.3.6 + dev: true + /postcss-merge-rules/4.0.3: resolution: {integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.16.6 + browserslist: 4.16.8 caniuse-api: 3.0.0 cssnano-util-same-parent: 4.0.1 - postcss: 7.0.35 + postcss: 7.0.36 postcss-selector-parser: 3.1.2 vendors: 1.0.4 dev: true + /postcss-merge-rules/5.0.2_postcss@8.3.6: + resolution: {integrity: sha512-5K+Md7S3GwBewfB4rjDeol6V/RZ8S+v4B66Zk2gChRqLTCC8yjnHQ601omj9TKftS19OPGqZ/XzoqpzNQQLwbg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.16.8 + caniuse-api: 3.0.0 + cssnano-utils: 2.0.1_postcss@8.3.6 + postcss: 8.3.6 + postcss-selector-parser: 6.0.6 + vendors: 1.0.4 + dev: true + /postcss-minify-font-values/4.0.2: resolution: {integrity: sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==} engines: {node: '>=6.9.0'} dependencies: - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 dev: true + /postcss-minify-font-values/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-7JS4qIsnqaxk+FXY1E8dHBDmraYFWmuL6cgt0T1SWGRO5bzJf8sUoelwa4P88LEWJZweHevAiDKxHlofuvtIoA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /postcss-minify-gradients/4.0.2: resolution: {integrity: sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==} engines: {node: '>=6.9.0'} dependencies: cssnano-util-get-arguments: 4.0.0 is-color-stop: 1.1.0 - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 dev: true + /postcss-minify-gradients/5.0.2_postcss@8.3.6: + resolution: {integrity: sha512-7Do9JP+wqSD6Prittitt2zDLrfzP9pqKs2EcLX7HJYxsxCOwrrcLt4x/ctQTsiOw+/8HYotAoqNkrzItL19SdQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + colord: 2.7.0 + cssnano-utils: 2.0.1_postcss@8.3.6 + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /postcss-minify-params/4.0.2: resolution: {integrity: sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==} engines: {node: '>=6.9.0'} dependencies: alphanum-sort: 1.0.2 - browserslist: 4.16.6 + browserslist: 4.16.8 cssnano-util-get-arguments: 4.0.0 - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 uniqs: 2.0.0 dev: true + /postcss-minify-params/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-4RUC4k2A/Q9mGco1Z8ODc7h+A0z7L7X2ypO1B6V8057eVK6mZ6xwz6QN64nHuHLbqbclkX1wyzRnIrdZehTEHw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + alphanum-sort: 1.0.2 + browserslist: 4.16.8 + cssnano-utils: 2.0.1_postcss@8.3.6 + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + uniqs: 2.0.0 + dev: true + /postcss-minify-selectors/4.0.2: resolution: {integrity: sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==} engines: {node: '>=6.9.0'} dependencies: alphanum-sort: 1.0.2 has: 1.0.3 - postcss: 7.0.35 + postcss: 7.0.36 postcss-selector-parser: 3.1.2 dev: true + /postcss-minify-selectors/5.1.0_postcss@8.3.6: + resolution: {integrity: sha512-NzGBXDa7aPsAcijXZeagnJBKBPMYLaJJzB8CQh6ncvyl2sIndLVWfbcDi0SBjRWk5VqEjXvf8tYwzoKf4Z07og==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + alphanum-sort: 1.0.2 + postcss: 8.3.6 + postcss-selector-parser: 6.0.6 + dev: true + /postcss-modules-extract-imports/2.0.0: resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==} engines: {node: '>= 6'} dependencies: - postcss: 7.0.35 + postcss: 7.0.36 + dev: true + + /postcss-modules-extract-imports/3.0.0_postcss@8.3.6: + resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.3.6 dev: true /postcss-modules-local-by-default/3.0.3: @@ -15584,8 +15052,20 @@ packages: engines: {node: '>= 6'} dependencies: icss-utils: 4.1.1 - postcss: 7.0.35 - postcss-selector-parser: 6.0.5 + postcss: 7.0.36 + postcss-selector-parser: 6.0.6 + postcss-value-parser: 4.1.0 + dev: true + + /postcss-modules-local-by-default/4.0.0_postcss@8.3.6: + resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + icss-utils: 5.1.0_postcss@8.3.6 + postcss: 8.3.6 + postcss-selector-parser: 6.0.6 postcss-value-parser: 4.1.0 dev: true @@ -15593,22 +15073,51 @@ packages: resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==} engines: {node: '>= 6'} dependencies: - postcss: 7.0.35 - postcss-selector-parser: 6.0.5 + postcss: 7.0.36 + postcss-selector-parser: 6.0.6 + dev: true + + /postcss-modules-scope/3.0.0_postcss@8.3.6: + resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.3.6 + postcss-selector-parser: 6.0.6 dev: true /postcss-modules-values/3.0.0: resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==} dependencies: icss-utils: 4.1.1 - postcss: 7.0.35 + postcss: 7.0.36 + dev: true + + /postcss-modules-values/4.0.0_postcss@8.3.6: + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + icss-utils: 5.1.0_postcss@8.3.6 + postcss: 8.3.6 dev: true /postcss-normalize-charset/4.0.1: resolution: {integrity: sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==} engines: {node: '>=6.9.0'} dependencies: - postcss: 7.0.35 + postcss: 7.0.36 + dev: true + + /postcss-normalize-charset/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.3.6 dev: true /postcss-normalize-display-values/4.0.2: @@ -15616,92 +15125,200 @@ packages: engines: {node: '>=6.9.0'} dependencies: cssnano-util-get-match: 4.0.0 - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 dev: true + /postcss-normalize-display-values/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-uupdvWk88kLDXi5HEyI9IaAJTE3/Djbcrqq8YgjvAVuzgVuqIk3SuJWUisT2gaJbZm1H9g5k2w1xXilM3x8DjQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-utils: 2.0.1_postcss@8.3.6 + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /postcss-normalize-positions/4.0.2: resolution: {integrity: sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==} engines: {node: '>=6.9.0'} dependencies: cssnano-util-get-arguments: 4.0.0 has: 1.0.3 - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 dev: true + /postcss-normalize-positions/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-rvzWAJai5xej9yWqlCb1OWLd9JjW2Ex2BCPzUJrbaXmtKtgfL8dBMOOMTX6TnvQMtjk3ei1Lswcs78qKO1Skrg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /postcss-normalize-repeat-style/4.0.2: resolution: {integrity: sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==} engines: {node: '>=6.9.0'} dependencies: cssnano-util-get-arguments: 4.0.0 cssnano-util-get-match: 4.0.0 - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 dev: true + /postcss-normalize-repeat-style/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-syZ2itq0HTQjj4QtXZOeefomckiV5TaUO6ReIEabCh3wgDs4Mr01pkif0MeVwKyU/LHEkPJnpwFKRxqWA/7O3w==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-utils: 2.0.1_postcss@8.3.6 + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /postcss-normalize-string/4.0.2: resolution: {integrity: sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==} engines: {node: '>=6.9.0'} dependencies: has: 1.0.3 - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 dev: true + /postcss-normalize-string/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-Ic8GaQ3jPMVl1OEn2U//2pm93AXUcF3wz+OriskdZ1AOuYV25OdgS7w9Xu2LO5cGyhHCgn8dMXh9bO7vi3i9pA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /postcss-normalize-timing-functions/4.0.2: resolution: {integrity: sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==} engines: {node: '>=6.9.0'} dependencies: cssnano-util-get-match: 4.0.0 - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 dev: true + /postcss-normalize-timing-functions/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-cPcBdVN5OsWCNEo5hiXfLUnXfTGtSFiBU9SK8k7ii8UD7OLuznzgNRYkLZow11BkQiiqMcgPyh4ZqXEEUrtQ1Q==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-utils: 2.0.1_postcss@8.3.6 + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /postcss-normalize-unicode/4.0.1: resolution: {integrity: sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.16.6 - postcss: 7.0.35 + browserslist: 4.16.8 + postcss: 7.0.36 postcss-value-parser: 3.3.1 dev: true + /postcss-normalize-unicode/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-kAtYD6V3pK0beqrU90gpCQB7g6AOfP/2KIPCVBKJM2EheVsBQmx/Iof+9zR9NFKLAx4Pr9mDhogB27pmn354nA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.16.8 + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /postcss-normalize-url/4.0.1: resolution: {integrity: sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==} engines: {node: '>=6.9.0'} dependencies: is-absolute-url: 2.1.0 normalize-url: 3.3.0 - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 dev: true + /postcss-normalize-url/5.0.2_postcss@8.3.6: + resolution: {integrity: sha512-k4jLTPUxREQ5bpajFQZpx8bCF2UrlqOTzP9kEqcEnOfwsRshWs2+oAFIHfDQB8GO2PaUaSE0NlTAYtbluZTlHQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + is-absolute-url: 3.0.3 + normalize-url: 6.1.0 + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /postcss-normalize-whitespace/4.0.2: resolution: {integrity: sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==} engines: {node: '>=6.9.0'} dependencies: - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 dev: true + /postcss-normalize-whitespace/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-iPklmI5SBnRvwceb/XH568yyzK0qRVuAG+a1HFUsFRf11lEJTiQQa03a4RSCQvLKdcpX7XsI1Gen9LuLoqwiqA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /postcss-ordered-values/4.1.2: resolution: {integrity: sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==} engines: {node: '>=6.9.0'} dependencies: cssnano-util-get-arguments: 4.0.0 - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 dev: true + /postcss-ordered-values/5.0.2_postcss@8.3.6: + resolution: {integrity: sha512-8AFYDSOYWebJYLyJi3fyjl6CqMEG/UVworjiyK1r573I56kb3e879sCJLGvR3merj+fAdPpVplXKQZv+ey6CgQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-utils: 2.0.1_postcss@8.3.6 + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /postcss-reduce-initial/4.0.3: resolution: {integrity: sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.16.6 + browserslist: 4.16.8 caniuse-api: 3.0.0 has: 1.0.3 - postcss: 7.0.35 + postcss: 7.0.36 + dev: true + + /postcss-reduce-initial/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-zlCZPKLLTMAqA3ZWH57HlbCjkD55LX9dsRyxlls+wfuRfqCi5mSlZVan0heX5cHr154Dq9AfbH70LyhrSAezJw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.16.8 + caniuse-api: 3.0.0 + postcss: 8.3.6 dev: true /postcss-reduce-transforms/4.0.2: @@ -15710,10 +15327,21 @@ packages: dependencies: cssnano-util-get-match: 4.0.0 has: 1.0.3 - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 dev: true + /postcss-reduce-transforms/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-a//FjoPeFkRuAguPscTVmRQUODP+f3ke2HqFNgGPwdYnpeC29RZdCBvGRGTsKpMURb/I3p6jdKoBQ2zI+9Q7kA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-utils: 2.0.1_postcss@8.3.6 + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + dev: true + /postcss-selector-parser/3.1.2: resolution: {integrity: sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==} engines: {node: '>=8'} @@ -15723,8 +15351,8 @@ packages: uniq: 1.0.1 dev: true - /postcss-selector-parser/6.0.5: - resolution: {integrity: sha512-aFYPoYmXbZ1V6HZaSvat08M97A8HqO6Pjz+PiNpw/DhuRrC72XWAdp3hL6wusDCN31sSmcZyMGa2hZEuX+Xfhg==} + /postcss-selector-parser/6.0.6: + resolution: {integrity: sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==} engines: {node: '>=4'} dependencies: cssesc: 3.0.0 @@ -15735,17 +15363,40 @@ packages: resolution: {integrity: sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==} engines: {node: '>=6.9.0'} dependencies: - postcss: 7.0.35 + postcss: 7.0.36 postcss-value-parser: 3.3.1 svgo: 1.3.2 dev: true + /postcss-svgo/5.0.2_postcss@8.3.6: + resolution: {integrity: sha512-YzQuFLZu3U3aheizD+B1joQ94vzPfE6BNUcSYuceNxlVnKKsOtdo6hL9/zyC168Q8EwfLSgaDSalsUGa9f2C0A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.3.6 + postcss-value-parser: 4.1.0 + svgo: 2.4.0 + dev: true + /postcss-unique-selectors/4.0.1: resolution: {integrity: sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==} engines: {node: '>=6.9.0'} dependencies: alphanum-sort: 1.0.2 - postcss: 7.0.35 + postcss: 7.0.36 + uniqs: 2.0.0 + dev: true + + /postcss-unique-selectors/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-gwi1NhHV4FMmPn+qwBNuot1sG1t2OmacLQ/AX29lzyggnjd+MnVD5uqQmpXO3J17KGL2WAxQruj1qTd3H0gG/w==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + alphanum-sort: 1.0.2 + postcss: 8.3.6 + postcss-selector-parser: 6.0.6 uniqs: 2.0.0 dev: true @@ -15757,8 +15408,8 @@ packages: resolution: {integrity: sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==} dev: true - /postcss/7.0.35: - resolution: {integrity: sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==} + /postcss/7.0.36: + resolution: {integrity: sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==} engines: {node: '>=6.0.0'} dependencies: chalk: 2.4.2 @@ -15766,37 +15417,58 @@ packages: supports-color: 6.1.0 dev: true - /preact-cli/3.0.5_c069246dc1d99535ac277c76f8ef56e0: - resolution: {integrity: sha512-Oc9HOjwX/3Zk1eXkmP7TMmtqbaROl7F0RWZ2Ni5Q/grmx3yBLJmarkUcOSKabkI/Usw2dU3RVju32Q3Pvy5qIw==} - engines: {node: '>=8'} + /postcss/8.3.6: + resolution: {integrity: sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + colorette: 1.3.0 + nanoid: 3.1.25 + source-map-js: 0.6.2 + dev: true + + /preact-cli/3.2.2_517d24bd855b57d7e424aceed04e063b: + resolution: {integrity: sha512-42aUanAb/AqHHvnfb/IwJw9UhY5iuHkGRBv3TrTsQMrq0Ee8Z84r+HS8wjGI0aHHb0R8tnHI0hhllWgmNhjB/Q==} + engines: {node: '>=12'} hasBin: true peerDependencies: + less-loader: ^7.3.0 preact: '*' preact-render-to-string: '*' + sass-loader: ^10.2.0 + stylus-loader: ^4.3.3 + peerDependenciesMeta: + less-loader: + optional: true + sass-loader: + optional: true + stylus-loader: + optional: true dependencies: - '@babel/core': 7.14.0 - '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.14.0 - '@babel/plugin-proposal-decorators': 7.13.15_@babel+core@7.14.0 - '@babel/plugin-proposal-object-rest-spread': 7.13.8_@babel+core@7.14.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.0 - '@babel/plugin-transform-object-assign': 7.12.13_@babel+core@7.14.0 - '@babel/plugin-transform-react-jsx': 7.13.12_@babel+core@7.14.0 - '@babel/preset-env': 7.14.1_@babel+core@7.14.0 - '@babel/preset-typescript': 7.13.0_@babel+core@7.14.0 - '@preact/async-loader': 3.0.1_preact@10.5.13 - '@prefresh/webpack': 1.1.0_preact@10.5.13+webpack@4.46.0 - autoprefixer: 9.8.6 + '@babel/core': 7.15.0 + '@babel/plugin-proposal-class-properties': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-decorators': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-proposal-object-rest-spread': 7.14.7_@babel+core@7.15.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.15.0 + '@babel/plugin-transform-object-assign': 7.14.5_@babel+core@7.15.0 + '@babel/plugin-transform-react-jsx': 7.14.9_@babel+core@7.15.0 + '@babel/preset-env': 7.15.0_@babel+core@7.15.0 + '@babel/preset-typescript': 7.15.0_@babel+core@7.15.0 + '@preact/async-loader': 3.0.1_preact@10.5.14 + '@prefresh/babel-plugin': 0.4.1 + '@prefresh/webpack': 3.3.2_b4d84c08f02729896cbfdece19209372 + autoprefixer: 10.3.1_postcss@8.3.6 babel-esm-plugin: 0.9.0_webpack@4.46.0 - babel-loader: 8.2.2_62db0ddfe66b18ac47f4a847587d24ab - babel-plugin-macros: 2.8.0 + babel-loader: 8.2.2_be352a5a80662835a7707f972edfcfde + babel-plugin-macros: 3.1.0 babel-plugin-transform-react-remove-prop-types: 0.4.24 - browserslist: 4.16.6 - compression-webpack-plugin: 4.0.1_webpack@4.46.0 + browserlist: 1.0.1 + browserslist: 4.16.8 + compression-webpack-plugin: 6.1.1_webpack@4.46.0 console-clear: 1.1.1 - copy-webpack-plugin: 5.1.2_webpack@4.46.0 + copy-webpack-plugin: 6.4.1_webpack@4.46.0 critters-webpack-plugin: 2.5.0 cross-spawn-promise: 0.10.2 - css-loader: 3.6.0_webpack@4.46.0 + css-loader: 5.2.7_webpack@4.46.0 ejs-loader: 0.5.0 envinfo: 7.8.1 esm: 3.2.25 @@ -15805,79 +15477,83 @@ packages: fork-ts-checker-webpack-plugin: 4.1.6 get-port: 5.1.1 gittar: 0.1.1 - glob: 7.1.6 + glob: 7.1.7 html-webpack-exclude-assets-plugin: 0.0.7 html-webpack-plugin: 3.2.0_webpack@4.46.0 ip: 1.1.5 isomorphic-unfetch: 3.1.0 kleur: 4.1.4 loader-utils: 2.0.0 - mini-css-extract-plugin: 0.9.0_webpack@4.46.0 + mini-css-extract-plugin: 1.6.2_webpack@4.46.0 minimatch: 3.0.4 native-url: 0.3.4 - optimize-css-assets-webpack-plugin: 5.0.4_webpack@4.46.0 - ora: 4.1.1 - postcss-load-config: 2.1.2 - postcss-loader: 3.0.0 - preact: 10.5.13 - preact-render-to-string: 5.1.19_preact@10.5.13 + optimize-css-assets-webpack-plugin: 6.0.1_webpack@4.46.0 + ora: 5.4.1 + pnp-webpack-plugin: 1.7.0_typescript@4.3.5 + postcss: 8.3.6 + postcss-load-config: 3.1.0 + postcss-loader: 4.3.0_postcss@8.3.6+webpack@4.46.0 + preact: 10.5.14 + preact-render-to-string: 5.1.19_preact@10.5.14 progress-bar-webpack-plugin: 2.1.0_webpack@4.46.0 promise-polyfill: 8.2.0 prompts: 2.4.1 raw-loader: 4.0.2_webpack@4.46.0 - react-refresh: 0.8.3 - require-relative: 0.8.7 - resolve-from: 5.0.0 + react-refresh: 0.10.0 rimraf: 3.0.2 sade: 1.7.4 - size-plugin: 2.0.2_webpack@4.46.0 + size-plugin: 3.0.0_webpack@4.46.0 source-map: 0.7.3 stack-trace: 0.0.10 - style-loader: 1.3.0_webpack@4.46.0 - terser-webpack-plugin: 3.1.0_webpack@4.46.0 - typescript: 3.9.9 - update-notifier: 4.1.3 + style-loader: 2.0.0_webpack@4.46.0 + terser-webpack-plugin: 4.2.3_webpack@4.46.0 + typescript: 4.3.5 + update-notifier: 5.1.0 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 validate-npm-package-name: 3.0.0 webpack: 4.46.0 - webpack-bundle-analyzer: 3.9.0 + webpack-bundle-analyzer: 4.4.2 webpack-dev-server: 3.11.2_webpack@4.46.0 - webpack-fix-style-only-entries: 0.5.2 - webpack-merge: 4.2.2 + webpack-fix-style-only-entries: 0.6.1 + webpack-merge: 5.8.0 webpack-plugin-replace: 1.2.0 which: 2.0.2 - workbox-cacheable-response: 5.1.4 - workbox-core: 5.1.4 - workbox-precaching: 5.1.4 - workbox-routing: 5.1.4 - workbox-strategies: 5.1.4 - workbox-webpack-plugin: 5.1.4_webpack@4.46.0 + workbox-cacheable-response: 6.2.4 + workbox-core: 6.2.4 + workbox-precaching: 6.2.4 + workbox-routing: 6.2.4 + workbox-strategies: 6.2.4 + workbox-webpack-plugin: 6.2.4_webpack@4.46.0 transitivePeerDependencies: + - '@types/babel__core' + - bufferutil - debug - supports-color + - ts-node + - utf-8-validate - webpack-cli - webpack-command dev: true - /preact-render-to-string/5.1.19_preact@10.5.13: + /preact-render-to-string/5.1.19_preact@10.5.14: resolution: {integrity: sha512-bj8sn/oytIKO6RtOGSS/1+5CrQyRSC99eLUnEVbqUa6MzJX5dYh7wu9bmT0d6lm/Vea21k9KhCQwvr2sYN3rrQ==} peerDependencies: preact: '>=10' dependencies: - preact: 10.5.13 + preact: 10.5.14 pretty-format: 3.8.0 dev: true - /preact-router/3.2.1_preact@10.5.13: + /preact-router/3.2.1_preact@10.5.14: resolution: {integrity: sha512-KEN2VN1DxUlTwzW5IFkF13YIA2OdQ2OvgJTkQREF+AA2NrHRLaGbB68EjS4IeZOa1shvQ1FvEm3bSLta4sXBhg==} peerDependencies: preact: '>=10' dependencies: - preact: 10.5.13 + preact: 10.5.14 dev: false - /preact/10.5.13: - resolution: {integrity: sha512-q/vlKIGNwzTLu+jCcvywgGrt+H/1P/oIRSD6mV4ln3hmlC+Aa34C7yfPI4+5bzW8pONyVXYS7SvXosy2dKKtWQ==} + /preact/10.5.14: + resolution: {integrity: sha512-KojoltCrshZ099ksUZ2OQKfbH66uquFoxHSbnwKbTJHeQNvx42EmC7wQVWNuDt6vC5s3nudRHFtKbpY4ijKlaQ==} dev: false /prelude-ls/1.1.2: @@ -15890,11 +15566,6 @@ packages: engines: {node: '>= 0.8.0'} dev: true - /prepend-http/1.0.4: - resolution: {integrity: sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=} - engines: {node: '>=0.10.0'} - dev: true - /prepend-http/2.0.0: resolution: {integrity: sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=} engines: {node: '>=4'} @@ -15920,7 +15591,7 @@ packages: resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==} dependencies: lodash: 4.17.21 - renderkid: 2.0.5 + renderkid: 2.0.7 dev: true /pretty-format/26.6.2: @@ -15933,6 +15604,16 @@ packages: react-is: 17.0.2 dev: true + /pretty-format/27.0.6: + resolution: {integrity: sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + '@jest/types': 27.0.6 + ansi-regex: 5.0.0 + ansi-styles: 5.2.0 + react-is: 17.0.2 + dev: true + /pretty-format/3.8.0: resolution: {integrity: sha1-v77VbV6ad2ZF9LH/eqGjrE+jw4U=} dev: true @@ -15949,10 +15630,8 @@ packages: parse-ms: 2.1.0 dev: true - /prismjs/1.23.0: - resolution: {integrity: sha512-c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA==} - optionalDependencies: - clipboard: 2.0.8 + /prismjs/1.24.1: + resolution: {integrity: sha512-mNPsedLuk90RVJioIky8ANZEwYm5w9LcvCXrxHlwf4fNVSn8jEipMybMkWUyyF0JhnC+C4VcOVSBuHRKs1L5Ow==} dev: true /process-nextick-args/2.0.1: @@ -16001,7 +15680,7 @@ packages: array.prototype.map: 1.0.3 call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.2 + es-abstract: 1.18.5 get-intrinsic: 1.1.1 iterate-value: 1.0.2 dev: true @@ -16011,7 +15690,7 @@ packages: engines: {node: '>= 0.4'} dependencies: define-properties: 1.1.3 - es-abstract: 1.18.2 + es-abstract: 1.18.5 function-bind: 1.1.1 dev: true @@ -16045,11 +15724,11 @@ packages: xtend: 4.0.2 dev: true - /proxy-addr/2.0.6: - resolution: {integrity: sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==} + /proxy-addr/2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} engines: {node: '>= 0.10'} dependencies: - forwarded: 0.1.2 + forwarded: 0.2.0 ipaddr.js: 1.9.1 dev: true @@ -16140,14 +15819,6 @@ packages: engines: {node: '>=0.6'} dev: true - /query-string/4.3.4: - resolution: {integrity: sha1-u7aTucqRXCMlFbIosaArYJBD2+s=} - engines: {node: '>=0.10.0'} - dependencies: - object-assign: 4.1.1 - strict-uri-encode: 1.1.0 - dev: true - /querystring-es3/0.2.1: resolution: {integrity: sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=} engines: {node: '>=0.4.x'} @@ -16156,19 +15827,21 @@ packages: /querystring/0.2.0: resolution: {integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=} engines: {node: '>=0.4.x'} + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. dev: true /querystring/0.2.1: resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} engines: {node: '>=0.4.x'} + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. dev: true /querystringify/2.2.0: resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} dev: true - /queue-microtask/1.2.2: - resolution: {integrity: sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg==} + /queue-microtask/1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} dev: true /raf/3.4.1: @@ -16228,7 +15901,7 @@ packages: webpack: ^4.0.0 || ^5.0.0 dependencies: loader-utils: 2.0.0 - schema-utils: 3.0.0 + schema-utils: 3.1.1 webpack: 4.46.0 dev: true @@ -16242,15 +15915,15 @@ packages: strip-json-comments: 2.0.1 dev: true - /react-colorful/5.2.0: - resolution: {integrity: sha512-SJXywyc9oew0rOp7xjmtStiJ5N4Mk2RYc/1OptlaEnbuCz9PvILmRotoHfowdmO142HASUSgKdngL4WOHo/TnQ==} + /react-colorful/5.3.0: + resolution: {integrity: sha512-zWE5E88zmjPXFhv6mGnRZqKin9s5vip1O3IIGynY9EhZxN8MATUxZkT3e/9OwTEm4DjQBXc6PFWP6AetY+Px+A==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' dev: true - /react-colorful/5.2.0_react-dom@16.14.0+react@16.14.0: - resolution: {integrity: sha512-SJXywyc9oew0rOp7xjmtStiJ5N4Mk2RYc/1OptlaEnbuCz9PvILmRotoHfowdmO142HASUSgKdngL4WOHo/TnQ==} + /react-colorful/5.3.0_react-dom@16.14.0+react@16.14.0: + resolution: {integrity: sha512-zWE5E88zmjPXFhv6mGnRZqKin9s5vip1O3IIGynY9EhZxN8MATUxZkT3e/9OwTEm4DjQBXc6PFWP6AetY+Px+A==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -16332,7 +16005,7 @@ packages: react: ^16.6.0 || ^17.0.0 react-dom: ^16.6.0 || ^17.0.0 dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 invariant: 2.2.4 prop-types: 15.7.2 react-fast-compare: 3.2.0 @@ -16345,7 +16018,7 @@ packages: react: ^16.6.0 || ^17.0.0 react-dom: ^16.6.0 || ^17.0.0 dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 invariant: 2.2.4 prop-types: 15.7.2 react: 16.14.0 @@ -16359,7 +16032,7 @@ packages: peerDependencies: react: ^16.8.4 || ^17.0.0 dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 is-dom: 1.1.0 prop-types: 15.7.2 dev: true @@ -16382,9 +16055,9 @@ packages: react: ^16.6.0 || ^17.0.0 react-dom: ^16.6.0 || ^17.0.0 dependencies: - '@babel/runtime': 7.14.0 - '@popperjs/core': 2.9.2 - react-popper: 2.2.5_@popperjs+core@2.9.2 + '@babel/runtime': 7.15.3 + '@popperjs/core': 2.9.3 + react-popper: 2.2.5_@popperjs+core@2.9.3 dev: true /react-popper-tooltip/3.1.1_react-dom@16.14.0+react@16.14.0: @@ -16393,38 +16066,38 @@ packages: react: ^16.6.0 || ^17.0.0 react-dom: ^16.6.0 || ^17.0.0 dependencies: - '@babel/runtime': 7.14.0 - '@popperjs/core': 2.9.2 + '@babel/runtime': 7.15.3 + '@popperjs/core': 2.9.3 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 - react-popper: 2.2.5_8548d99834c2e663160c36c7d0931260 + react-popper: 2.2.5_6bb145cab7dfe893f5ebfae476998f0c dev: true - /react-popper/2.2.5_8548d99834c2e663160c36c7d0931260: + /react-popper/2.2.5_6bb145cab7dfe893f5ebfae476998f0c: resolution: {integrity: sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==} peerDependencies: '@popperjs/core': ^2.0.0 react: ^16.8.0 || ^17 dependencies: - '@popperjs/core': 2.9.2 + '@popperjs/core': 2.9.3 react: 16.14.0 react-fast-compare: 3.2.0 warning: 4.0.3 dev: true - /react-popper/2.2.5_@popperjs+core@2.9.2: + /react-popper/2.2.5_@popperjs+core@2.9.3: resolution: {integrity: sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==} peerDependencies: '@popperjs/core': ^2.0.0 react: ^16.8.0 || ^17 dependencies: - '@popperjs/core': 2.9.2 + '@popperjs/core': 2.9.3 react-fast-compare: 3.2.0 warning: 4.0.3 dev: true - /react-refresh/0.8.3: - resolution: {integrity: sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==} + /react-refresh/0.10.0: + resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==} engines: {node: '>=0.10.0'} dev: true @@ -16434,7 +16107,7 @@ packages: react: ^0.14.0 || ^15.0.0-0 || ^16.0.0 || ^17.0.0 react-dom: ^0.14.0 || ^15.0.0-0 || ^16.0.0 || ^17.0.0 dependencies: - element-resize-detector: 1.2.2 + element-resize-detector: 1.2.3 invariant: 2.2.4 shallowequal: 1.1.0 throttle-debounce: 3.0.1 @@ -16446,7 +16119,7 @@ packages: react: ^0.14.0 || ^15.0.0-0 || ^16.0.0 || ^17.0.0 react-dom: ^0.14.0 || ^15.0.0-0 || ^16.0.0 || ^17.0.0 dependencies: - element-resize-detector: 1.2.2 + element-resize-detector: 1.2.3 invariant: 2.2.4 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 @@ -16459,11 +16132,11 @@ packages: peerDependencies: react: '>= 0.14.0' dependencies: - '@babel/runtime': 7.14.0 - highlight.js: 10.7.2 + '@babel/runtime': 7.15.3 + highlight.js: 10.7.3 lowlight: 1.20.0 - prismjs: 1.23.0 - refractor: 3.3.1 + prismjs: 1.24.1 + refractor: 3.4.0 dev: true /react-syntax-highlighter/13.5.3_react@16.14.0: @@ -16471,34 +16144,34 @@ packages: peerDependencies: react: '>= 0.14.0' dependencies: - '@babel/runtime': 7.14.0 - highlight.js: 10.7.2 + '@babel/runtime': 7.15.3 + highlight.js: 10.7.3 lowlight: 1.20.0 - prismjs: 1.23.0 + prismjs: 1.24.1 react: 16.14.0 - refractor: 3.3.1 + refractor: 3.4.0 dev: true - /react-textarea-autosize/8.3.2: - resolution: {integrity: sha512-JrMWVgQSaExQByP3ggI1eA8zF4mF0+ddVuX7acUeK2V7bmrpjVOY72vmLz2IXFJSAXoY3D80nEzrn0GWajWK3Q==} + /react-textarea-autosize/8.3.3: + resolution: {integrity: sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==} engines: {node: '>=10'} peerDependencies: react: ^16.8.0 || ^17.0.0 dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 use-composed-ref: 1.1.0 use-latest: 1.2.0 transitivePeerDependencies: - '@types/react' dev: true - /react-textarea-autosize/8.3.2_react@16.14.0: - resolution: {integrity: sha512-JrMWVgQSaExQByP3ggI1eA8zF4mF0+ddVuX7acUeK2V7bmrpjVOY72vmLz2IXFJSAXoY3D80nEzrn0GWajWK3Q==} + /react-textarea-autosize/8.3.3_react@16.14.0: + resolution: {integrity: sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==} engines: {node: '>=10'} peerDependencies: react: ^16.8.0 || ^17.0.0 dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 react: 16.14.0 use-composed-ref: 1.1.0_react@16.14.0 use-latest: 1.2.0_react@16.14.0 @@ -16545,7 +16218,7 @@ packages: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} dependencies: - '@types/normalize-package-data': 2.4.0 + '@types/normalize-package-data': 2.4.1 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 @@ -16576,16 +16249,16 @@ packages: resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} engines: {node: '>=0.10'} dependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 micromatch: 3.1.10 readable-stream: 2.3.7 dev: true - /readdirp/3.5.0: - resolution: {integrity: sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==} + /readdirp/3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} dependencies: - picomatch: 2.2.2 + picomatch: 2.3.0 dev: true /rechoir/0.6.2: @@ -16602,12 +16275,12 @@ packages: minimatch: 3.0.4 dev: true - /refractor/3.3.1: - resolution: {integrity: sha512-vaN6R56kLMuBszHSWlwTpcZ8KTMG6aUCok4GrxYDT20UIOXxOc5o6oDc8tNTzSlH3m2sI+Eu9Jo2kVdDcUTWYw==} + /refractor/3.4.0: + resolution: {integrity: sha512-dBeD02lC5eytm9Gld2Mx0cMcnR+zhSnsTfPpWqFaMgUMJfC9A6bcN3Br/NaXrnBJcuxnLFR90k1jrkaSyV8umg==} dependencies: hastscript: 6.0.0 parse-entities: 2.0.0 - prismjs: 1.23.0 + prismjs: 1.24.1 dev: true /regenerate-unicode-properties/8.2.0: @@ -16629,10 +16302,13 @@ packages: resolution: {integrity: sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==} dev: true + /regenerator-runtime/0.13.9: + resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} + /regenerator-transform/0.14.5: resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==} dependencies: - '@babel/runtime': 7.14.0 + '@babel/runtime': 7.15.3 dev: true /regex-not/1.0.2: @@ -16755,8 +16431,8 @@ packages: xtend: 4.0.2 dev: true - /remark-slug/6.0.0: - resolution: {integrity: sha512-ln67v5BrGKHpETnm6z6adlJPhESFJwfuZZ3jrmi+lKTzeZxh2tzFzUfDD4Pm2hRGOarHLuGToO86MNMZ/hA67Q==} + /remark-slug/6.1.0: + resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} dependencies: github-slugger: 1.3.0 mdast-util-to-string: 1.1.0 @@ -16773,12 +16449,12 @@ packages: resolution: {integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8=} dev: true - /renderkid/2.0.5: - resolution: {integrity: sha512-ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ==} + /renderkid/2.0.7: + resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==} dependencies: - css-select: 2.1.0 + css-select: 4.1.3 dom-converter: 0.2.0 - htmlparser2: 3.10.1 + htmlparser2: 6.1.0 lodash: 4.17.21 strip-ansi: 3.0.1 dev: true @@ -16833,7 +16509,7 @@ packages: is-typedarray: 1.0.0 isstream: 0.1.2 json-stringify-safe: 5.0.1 - mime-types: 2.1.30 + mime-types: 2.1.32 oauth-sign: 0.9.0 performance-now: 2.1.0 qs: 6.5.2 @@ -16857,10 +16533,6 @@ packages: resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} dev: true - /require-relative/0.8.7: - resolution: {integrity: sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4=} - dev: true - /requires-port/1.0.0: resolution: {integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=} dev: true @@ -16896,7 +16568,7 @@ packages: /resolve-pathname/3.0.0: resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} - dev: true + dev: false /resolve-url/0.2.1: resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=} @@ -16919,8 +16591,8 @@ packages: /resolve/1.20.0: resolution: {integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==} dependencies: - is-core-module: 2.3.0 - path-parse: 1.0.6 + is-core-module: 2.6.0 + path-parse: 1.0.7 dev: true /responselike/1.0.2: @@ -16964,14 +16636,14 @@ packages: resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} hasBin: true dependencies: - glob: 7.1.6 + glob: 7.1.7 dev: true /rimraf/3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true dependencies: - glob: 7.1.6 + glob: 7.1.7 dev: true /ripemd160/2.0.2: @@ -16981,27 +16653,14 @@ packages: inherits: 2.0.4 dev: true - /rollup-plugin-babel/4.4.0_@babel+core@7.14.0+rollup@1.32.1: - resolution: {integrity: sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==} - deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-babel. - peerDependencies: - '@babel/core': 7 || ^7.0.0-rc.2 - rollup: '>=0.60.0 <3' - dependencies: - '@babel/core': 7.14.0 - '@babel/helper-module-imports': 7.13.12 - rollup: 1.32.1 - rollup-pluginutils: 2.8.2 - dev: true - - /rollup-plugin-css-only/3.1.0_rollup@2.37.1: + /rollup-plugin-css-only/3.1.0_rollup@2.56.2: resolution: {integrity: sha512-TYMOE5uoD76vpj+RTkQLzC9cQtbnJNktHPB507FzRWBVaofg7KhIqq1kGbcVOadARSozWF883Ho9KpSPKH8gqA==} engines: {node: '>=10.12.0'} peerDependencies: rollup: 1 || 2 dependencies: - '@rollup/pluginutils': 4.1.0_rollup@2.37.1 - rollup: 2.37.1 + '@rollup/pluginutils': 4.1.1 + rollup: 2.56.2 dev: true /rollup-plugin-ignore/1.0.9: @@ -17040,17 +16699,20 @@ packages: source-map-resolve: 0.6.0 dev: true - /rollup-plugin-terser/5.3.1_rollup@1.32.1: - resolution: {integrity: sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==} + /rollup-plugin-sourcemaps/0.6.3_87d168520bd21f84b7cb8eb331bc7479: + resolution: {integrity: sha512-paFu+nT1xvuO1tPFYXGe+XnQvg4Hjqv/eIhG8i5EspfYYPBKL57X7iVbfv55aNVASg3dzWvES9dmWsL2KhfByw==} + engines: {node: '>=10.0.0'} peerDependencies: - rollup: '>=0.66.0 <3' + '@types/node': '>=10.0.0' + rollup: '>=0.31.2' + peerDependenciesMeta: + '@types/node': + optional: true dependencies: - '@babel/code-frame': 7.12.13 - jest-worker: 24.9.0 - rollup: 1.32.1 - rollup-pluginutils: 2.8.2 - serialize-javascript: 4.0.0 - terser: 4.8.0 + '@rollup/pluginutils': 3.1.0_rollup@2.56.2 + '@types/node': 14.17.10 + rollup: 2.56.2 + source-map-resolve: 0.6.0 dev: true /rollup-plugin-terser/7.0.2_rollup@2.37.1: @@ -17077,19 +16739,16 @@ packages: terser: 5.4.0 dev: true - /rollup-pluginutils/2.8.2: - resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} - dependencies: - estree-walker: 0.6.1 - dev: true - - /rollup/1.32.1: - resolution: {integrity: sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==} - hasBin: true + /rollup-plugin-terser/7.0.2_rollup@2.56.2: + resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} + peerDependencies: + rollup: ^2.0.0 dependencies: - '@types/estree': 0.0.47 - '@types/node': 14.14.44 - acorn: 7.4.1 + '@babel/code-frame': 7.14.5 + jest-worker: 26.6.2 + rollup: 2.56.2 + serialize-javascript: 4.0.0 + terser: 5.7.1 dev: true /rollup/2.37.1: @@ -17108,6 +16767,14 @@ packages: fsevents: 2.3.2 dev: true + /rollup/2.56.2: + resolution: {integrity: sha512-s8H00ZsRi29M2/lGdm1u8DJpJ9ML8SUOpVVBd33XNeEeL3NVaTiUcSBHzBdF3eAyR0l7VSpsuoVUGrRHq7aPwQ==} + engines: {node: '>=10.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + /rst-selector-parser/2.2.3: resolution: {integrity: sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=} dependencies: @@ -17123,7 +16790,7 @@ packages: /run-parallel/1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: - queue-microtask: 1.2.2 + queue-microtask: 1.2.3 dev: true /run-queue/1.0.3: @@ -17164,6 +16831,7 @@ packages: /sane/4.1.0: resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==} engines: {node: 6.* || 8.* || >= 10.*} + deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added hasBin: true dependencies: '@cnakazawa/watch': 1.0.4 @@ -17215,7 +16883,7 @@ packages: resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} engines: {node: '>= 8.9.0'} dependencies: - '@types/json-schema': 7.0.7 + '@types/json-schema': 7.0.9 ajv: 6.12.6 ajv-keywords: 3.5.2_ajv@6.12.6 dev: true @@ -17224,16 +16892,16 @@ packages: resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} engines: {node: '>= 8.9.0'} dependencies: - '@types/json-schema': 7.0.8 + '@types/json-schema': 7.0.9 ajv: 6.12.6 ajv-keywords: 3.5.2_ajv@6.12.6 dev: true - /schema-utils/3.0.0: - resolution: {integrity: sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==} + /schema-utils/3.1.1: + resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==} engines: {node: '>= 10.13.0'} dependencies: - '@types/json-schema': 7.0.7 + '@types/json-schema': 7.0.9 ajv: 6.12.6 ajv-keywords: 3.5.2_ajv@6.12.6 dev: true @@ -17242,11 +16910,6 @@ packages: resolution: {integrity: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=} dev: true - /select/1.1.2: - resolution: {integrity: sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=} - dev: true - optional: true - /selfsigned/1.10.11: resolution: {integrity: sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==} dependencies: @@ -17323,6 +16986,12 @@ packages: randombytes: 2.1.0 dev: true + /serialize-javascript/5.0.1: + resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==} + dependencies: + randombytes: 2.1.0 + dev: true + /serve-favicon/2.5.0: resolution: {integrity: sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=} engines: {node: '>= 0.8.0'} @@ -17343,7 +17012,7 @@ packages: debug: 2.6.9 escape-html: 1.0.3 http-errors: 1.6.3 - mime-types: 2.1.30 + mime-types: 2.1.32 parseurl: 1.3.3 dev: true @@ -17472,7 +17141,7 @@ packages: dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.1 - object-inspect: 1.10.3 + object-inspect: 1.11.0 dev: true /signal-exit/3.0.3: @@ -17485,12 +17154,21 @@ packages: is-arrayish: 0.3.2 dev: true + /sirv/1.0.14: + resolution: {integrity: sha512-czTFDFjK9lXj0u9mJ3OmJoXFztoilYS+NdRPcJoT182w44wSEkHSiO7A2517GLJ8wKM4GjCm2OXE66Dhngbzjg==} + engines: {node: '>= 10'} + dependencies: + '@polka/url': 1.0.0-next.17 + mime: 2.5.2 + totalist: 1.1.0 + dev: true + /sisteransi/1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} dev: true - /size-plugin/2.0.2_webpack@4.46.0: - resolution: {integrity: sha512-pnPH6XX3TcdXTk6qsaKI6pXuOuKCpepJFTj96vjHcW/mY2zd1LhqNu7qsdkMnZS1LnA+PHaJ2C+uNveg32Loqg==} + /size-plugin/3.0.0_webpack@4.46.0: + resolution: {integrity: sha512-RPMSkgbvmS1e5XUwPNFZre7DLqcK9MhWARIm8UmGLgbUCAs173JLI6DPHco68wvo0cUdft8+GGRaJtNl5RWfew==} peerDependencies: webpack: '*' dependencies: @@ -17498,8 +17176,7 @@ packages: chalk: 2.4.2 ci-env: 1.16.0 escape-string-regexp: 1.0.5 - glob: 7.1.6 - gzip-size: 5.1.1 + glob: 7.1.7 minimatch: 3.0.4 pretty-bytes: 5.6.0 util.promisify: 1.1.1 @@ -17508,11 +17185,6 @@ packages: - debug dev: true - /slash/1.0.0: - resolution: {integrity: sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=} - engines: {node: '>=0.10.0'} - dev: true - /slash/2.0.0: resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} engines: {node: '>=6'} @@ -17576,31 +17248,29 @@ packages: dependencies: debug: 3.2.7 eventsource: 1.1.0 - faye-websocket: 0.11.3 + faye-websocket: 0.11.4 inherits: 2.0.4 json3: 3.3.3 - url-parse: 1.5.1 + url-parse: 1.5.3 dev: true /sockjs/0.3.21: resolution: {integrity: sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==} dependencies: - faye-websocket: 0.11.3 + faye-websocket: 0.11.4 uuid: 3.4.0 websocket-driver: 0.7.4 dev: true - /sort-keys/1.1.2: - resolution: {integrity: sha1-RBttTTRnmPG05J6JIK37oOVD+a0=} - engines: {node: '>=0.10.0'} - dependencies: - is-plain-obj: 1.1.0 - dev: true - /source-list-map/2.0.1: resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} dev: true + /source-map-js/0.6.2: + resolution: {integrity: sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==} + engines: {node: '>=0.10.0'} + dev: true + /source-map-resolve/0.5.3: resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} dependencies: @@ -17621,7 +17291,7 @@ packages: /source-map-support/0.5.19: resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} dependencies: - buffer-from: 1.1.1 + buffer-from: 1.1.2 source-map: 0.6.1 /source-map-url/0.4.1: @@ -17642,6 +17312,13 @@ packages: engines: {node: '>= 8'} dev: true + /source-map/0.8.0-beta.0: + resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} + engines: {node: '>= 8'} + dependencies: + whatwg-url: 7.1.0 + dev: true + /sourcemap-codec/1.4.8: resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} dev: true @@ -17666,7 +17343,7 @@ packages: resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.7 + spdx-license-ids: 3.0.10 dev: true /spdx-exceptions/2.3.0: @@ -17677,18 +17354,18 @@ packages: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.7 + spdx-license-ids: 3.0.10 dev: true - /spdx-license-ids/3.0.7: - resolution: {integrity: sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==} + /spdx-license-ids/3.0.10: + resolution: {integrity: sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==} dev: true /spdy-transport/3.0.0_supports-color@6.1.0: resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} dependencies: - debug: 4.3.1_supports-color@6.1.0 - detect-node: 2.0.5 + debug: 4.3.2_supports-color@6.1.0 + detect-node: 2.1.0 hpack.js: 2.1.6 obuf: 1.1.2 readable-stream: 3.6.0 @@ -17701,7 +17378,7 @@ packages: resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} engines: {node: '>=6.0.0'} dependencies: - debug: 4.3.1_supports-color@6.1.0 + debug: 4.3.2_supports-color@6.1.0 handle-thing: 2.0.1 http-deceiver: 1.2.7 select-hose: 2.0.0 @@ -17791,6 +17468,21 @@ packages: resolution: {integrity: sha512-7t+/wpKLanLzSnQPX8WAcuLCCeuSHoWdQuh9SB3xD0kNOM38DNf+0Oa+wmvxmYueRzkmh6IcdKFtvTa+ecgPDw==} dev: true + /storybook-addon-outline/1.4.1: + resolution: {integrity: sha512-Qvv9X86CoONbi+kYY78zQcTGmCgFaewYnOVR6WL7aOFJoW7TrLiIc/O4hH5X9PsEPZFqjfXEPUPENWVUQim6yw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@storybook/addons': 6.3.7 + '@storybook/api': 6.3.7 + '@storybook/components': 6.3.7 + '@storybook/core-events': 6.3.7 + ts-dedent: 2.2.0 + transitivePeerDependencies: + - '@types/react' + dev: true + /storybook-dark-mode/1.0.8: resolution: {integrity: sha512-uY6yTSd1vYE0YwlON50u+iIoNF/fmMj59ww1cpd/naUcmOmCjwawViKFG5YjichwdR/yJ5ybWRUF0tnRQfaSiw==} peerDependencies: @@ -17832,11 +17524,6 @@ packages: resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==} dev: true - /strict-uri-encode/1.1.0: - resolution: {integrity: sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=} - engines: {node: '>=0.10.0'} - dev: true - /string-argv/0.3.1: resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==} engines: {node: '>=0.6.19'} @@ -17903,7 +17590,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.2 + es-abstract: 1.18.5 get-intrinsic: 1.1.1 has-symbols: 1.0.2 internal-slot: 1.0.3 @@ -17917,7 +17604,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.2 + es-abstract: 1.18.5 dev: true /string.prototype.padstart/3.1.2: @@ -17926,16 +17613,16 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.2 + es-abstract: 1.18.5 dev: true - /string.prototype.trim/1.2.3: - resolution: {integrity: sha512-16IL9pIBA5asNOSukPfxX2W68BaBvxyiRK16H3RA/lWW9BDosh+w7f+LhomPHpXJ82QEe7w7/rY/S1CV97raLg==} + /string.prototype.trim/1.2.4: + resolution: {integrity: sha512-hWCk/iqf7lp0/AgTF7/ddO1IWtSNPASjlzCicV5irAVdE1grjsneK26YG6xACMBEdCvO8fUST0UzDMh/2Qy+9Q==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.5 dev: true /string.prototype.trimend/1.0.3: @@ -18024,12 +17711,9 @@ packages: engines: {node: '>=8'} dev: true - /strip-comments/1.0.2: - resolution: {integrity: sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==} - engines: {node: '>=4'} - dependencies: - babel-extract-comments: 1.0.0 - babel-plugin-transform-object-rest-spread: 6.26.0 + /strip-comments/2.0.1: + resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==} + engines: {node: '>=10'} dev: true /strip-eof/1.0.0: @@ -18063,6 +17747,17 @@ packages: webpack: 4.46.0 dev: true + /style-loader/2.0.0_webpack@4.46.0: + resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + loader-utils: 2.0.0 + schema-utils: 3.1.1 + webpack: 4.46.0 + dev: true + /style-to-object/0.3.0: resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} dependencies: @@ -18073,11 +17768,22 @@ packages: resolution: {integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.16.6 - postcss: 7.0.35 + browserslist: 4.16.8 + postcss: 7.0.36 postcss-selector-parser: 3.1.2 dev: true + /stylehacks/5.0.1_postcss@8.3.6: + resolution: {integrity: sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.16.8 + postcss: 8.3.6 + postcss-selector-parser: 6.0.6 + dev: true + /stylis/3.5.4: resolution: {integrity: sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==} dev: true @@ -18114,6 +17820,13 @@ packages: has-flag: 4.0.0 dev: true + /supports-color/8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + dependencies: + has-flag: 4.0.0 + dev: true + /supports-hyperlinks/2.2.0: resolution: {integrity: sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==} engines: {node: '>=8'} @@ -18135,23 +17848,37 @@ packages: csso: 4.2.0 js-yaml: 3.14.1 mkdirp: 0.5.5 - object.values: 1.1.3 + object.values: 1.1.4 sax: 1.2.4 stable: 0.1.8 unquote: 1.1.1 util.promisify: 1.0.1 dev: true + /svgo/2.4.0: + resolution: {integrity: sha512-W25S1UUm9Lm9VnE0TvCzL7aso/NCzDEaXLaElCUO/KaVitw0+IBicSVfM1L1c0YHK5TOFh73yQ2naCpVHEQ/OQ==} + engines: {node: '>=10.13.0'} + hasBin: true + dependencies: + '@trysound/sax': 0.1.1 + colorette: 1.3.0 + commander: 7.2.0 + css-select: 4.1.3 + css-tree: 1.1.3 + csso: 4.2.0 + stable: 0.1.8 + dev: true + /symbol-tree/3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} dev: true - /symbol.prototype.description/1.0.4: - resolution: {integrity: sha512-fZkHwJ8ZNRVRzF/+/2OtygyyH06CjC0YZAQRHu9jKKw8RXlJpbizEHvGRUu22Qkg182wJk1ugb5Aovcv3UPrww==} + /symbol.prototype.description/1.0.5: + resolution: {integrity: sha512-x738iXRYsrAt9WBhRCVG5BtIC3B7CUkFwbHW2zOvGtwM33s7JjrCDyq8V0zgMYVb5ymsL8+qkzzpANH63CPQaQ==} engines: {node: '>= 0.11.15'} dependencies: call-bind: 1.0.2 - es-abstract: 1.18.2 + get-symbol-description: 1.0.0 has-symbols: 1.0.2 object.getownpropertydescriptors: 2.1.2 dev: true @@ -18176,8 +17903,8 @@ packages: engines: {node: '>=6'} dev: true - /tar/4.4.13: - resolution: {integrity: sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==} + /tar/4.4.19: + resolution: {integrity: sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==} engines: {node: '>=4.5'} dependencies: chownr: 1.1.4 @@ -18189,8 +17916,8 @@ packages: yallist: 3.1.1 dev: true - /tar/6.1.0: - resolution: {integrity: sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==} + /tar/6.1.10: + resolution: {integrity: sha512-kvvfiVvjGMxeUNB6MyYv5z7vhfFRwbwCXJAeL0/lnbrttBVqcMOnpHUf0X42LrPMR8mMpgapkJMchFH4FSHzNA==} engines: {node: '>= 10'} dependencies: chownr: 2.0.0 @@ -18207,30 +17934,26 @@ packages: '@types/is-function': 1.0.0 global: 4.4.0 is-function: 1.0.2 - is-regex: 1.1.3 + is-regex: 1.1.4 is-symbol: 1.0.4 isobject: 4.0.0 lodash: 4.17.21 memoizerific: 1.11.3 dev: true - /temp-dir/1.0.0: - resolution: {integrity: sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=} - engines: {node: '>=4'} - dev: true - /temp-dir/2.0.0: resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} engines: {node: '>=8'} dev: true - /tempy/0.3.0: - resolution: {integrity: sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==} - engines: {node: '>=8'} + /tempy/0.6.0: + resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==} + engines: {node: '>=10'} dependencies: - temp-dir: 1.0.0 - type-fest: 0.3.1 - unique-string: 1.0.0 + is-stream: 2.0.1 + temp-dir: 2.0.0 + type-fest: 0.16.0 + unique-string: 2.0.0 dev: true /term-size/2.2.1: @@ -18264,20 +17987,20 @@ packages: worker-farm: 1.7.0 dev: true - /terser-webpack-plugin/3.1.0_webpack@4.46.0: - resolution: {integrity: sha512-cjdZte66fYkZ65rQ2oJfrdCAkkhJA7YLYk5eGOcGCSGlq0ieZupRdjedSQXYknMPo2IveQL+tPdrxUkERENCFA==} + /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'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 dependencies: - cacache: 15.0.6 + cacache: 15.2.0 find-cache-dir: 3.3.1 jest-worker: 26.6.2 p-limit: 3.1.0 - schema-utils: 2.7.1 - serialize-javascript: 4.0.0 + schema-utils: 3.1.1 + serialize-javascript: 5.0.1 source-map: 0.6.1 - terser: 4.8.0 + terser: 5.7.1 webpack: 4.46.0 webpack-sources: 1.4.3 dev: true @@ -18302,12 +18025,22 @@ packages: source-map-support: 0.5.19 dev: true + /terser/5.7.1: + resolution: {integrity: sha512-b3e+d5JbHAe/JSjwsC3Zn55wsBIM7AsHLjKxT31kGCldgbpFePaFo+PiddtO6uwRZWRw7sPXmAN8dTW61xmnSg==} + engines: {node: '>=10'} + hasBin: true + dependencies: + commander: 2.20.3 + source-map: 0.7.3 + source-map-support: 0.5.19 + dev: true + /test-exclude/6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} dependencies: '@istanbuljs/schema': 0.1.3 - glob: 7.1.6 + glob: 7.1.7 minimatch: 3.0.4 dev: true @@ -18351,18 +18084,13 @@ packages: resolution: {integrity: sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=} dev: true - /tiny-emitter/2.1.0: - resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==} - dev: true - optional: true - /tiny-invariant/1.1.0: resolution: {integrity: sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==} - dev: true + dev: false /tiny-warning/1.0.3: resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} - dev: true + dev: false /tmpl/1.0.4: resolution: {integrity: sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=} @@ -18432,6 +18160,11 @@ packages: resolution: {integrity: sha1-LmhELZ9k7HILjMieZEOsbKqVACk=} dev: true + /totalist/1.1.0: + resolution: {integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==} + engines: {node: '>=6'} + dev: true + /tough-cookie/2.5.0: resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} engines: {node: '>=0.8'} @@ -18455,8 +18188,8 @@ packages: punycode: 2.1.1 dev: true - /tr46/2.0.2: - resolution: {integrity: sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==} + /tr46/2.1.0: + resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} engines: {node: '>=8'} dependencies: punycode: 2.1.1 @@ -18479,12 +18212,8 @@ packages: resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} dev: true - /tryer/1.0.1: - resolution: {integrity: sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==} - dev: true - - /ts-dedent/2.1.1: - resolution: {integrity: sha512-riHuwnzAUCfdIeTBNUq7+Yj+ANnrMXo/7+Z74dIdudS7ys2k8aSGMzpJRMFDF7CLwUTbtvi1ZZff/Wl+XxmqIA==} + /ts-dedent/2.2.0: + resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} engines: {node: '>=6.10'} dev: true @@ -18492,7 +18221,7 @@ packages: resolution: {integrity: sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w==} dev: true - /ts-pnp/1.2.0_typescript@4.1.3: + /ts-pnp/1.2.0_typescript@4.3.5: resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} engines: {node: '>=6'} peerDependencies: @@ -18501,7 +18230,7 @@ packages: typescript: optional: true dependencies: - typescript: 4.1.3 + typescript: 4.3.5 dev: true /tsconfig-paths/3.9.0: @@ -18523,6 +18252,10 @@ packages: /tslib/2.2.0: resolution: {integrity: sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==} + dev: false + + /tslib/2.3.1: + resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} /tsutils/3.19.1_typescript@4.1.3: resolution: {integrity: sha512-GEdoBf5XI324lu7ycad7s6laADfnAqCw6wLGI+knxvw9vsIYBaJfYdmeCEG3FMMUiSm3OGgNb+m6utsWf5h9Vw==} @@ -18572,6 +18305,11 @@ packages: engines: {node: '>=10'} dev: true + /type-fest/0.16.0: + resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} + engines: {node: '>=10'} + dev: true + /type-fest/0.20.2: resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} engines: {node: '>=10'} @@ -18602,7 +18340,7 @@ packages: engines: {node: '>= 0.6'} dependencies: media-typer: 0.3.0 - mime-types: 2.1.30 + mime-types: 2.1.32 dev: true /typedarray-to-buffer/3.1.5: @@ -18641,12 +18379,6 @@ packages: typescript: 4.1.3 dev: true - /typescript/3.9.9: - resolution: {integrity: sha512-kdMjTiekY+z/ubJCATUPlRDl39vXYiMV9iyeMuEuXZh2we6zz80uovNN2WlAxmmdE/Z/YQe+EbOEXB5RHEED3w==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - /typescript/4.1.3: resolution: {integrity: sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg==} engines: {node: '>=4.2.0'} @@ -18659,6 +18391,12 @@ packages: hasBin: true dev: true + /typescript/4.3.5: + resolution: {integrity: sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==} + engines: {node: '>=4.2.0'} + hasBin: true + dev: true + /uglify-js/3.12.5: resolution: {integrity: sha512-SgpgScL4T7Hj/w/GexjnBHi3Ien9WS1Rpfg5y91WXMj9SY997ZCQU76mH4TpLwwfmMvoOU8wiaRkIf6NaH3mtg==} engines: {node: '>=0.8.0'} @@ -18763,13 +18501,6 @@ packages: imurmurhash: 0.1.4 dev: true - /unique-string/1.0.0: - resolution: {integrity: sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=} - engines: {node: '>=4'} - dependencies: - crypto-random-string: 1.0.0 - dev: true - /unique-string/2.0.0: resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} engines: {node: '>=8'} @@ -18808,20 +18539,20 @@ packages: /unist-util-stringify-position/2.0.3: resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} dependencies: - '@types/unist': 2.0.3 + '@types/unist': 2.0.6 dev: true /unist-util-visit-parents/3.1.1: resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} dependencies: - '@types/unist': 2.0.3 + '@types/unist': 2.0.6 unist-util-is: 4.1.0 dev: true /unist-util-visit/2.0.3: resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} dependencies: - '@types/unist': 2.0.3 + '@types/unist': 2.0.6 unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 dev: true @@ -18858,31 +18589,12 @@ packages: engines: {node: '>=4'} dev: true - /update-notifier/4.1.3: - resolution: {integrity: sha512-Yld6Z0RyCYGB6ckIjffGOSOmHXj1gMeE7aROz4MG+XMkmixBX4jUngrGXNYz7wPKBmtoD4MnBa2Anu7RSKht/A==} - engines: {node: '>=8'} - dependencies: - boxen: 4.2.0 - chalk: 3.0.0 - configstore: 5.0.1 - has-yarn: 2.1.0 - import-lazy: 2.1.0 - is-ci: 2.0.0 - is-installed-globally: 0.3.2 - is-npm: 4.0.0 - is-yarn-global: 0.3.0 - latest-version: 5.1.0 - pupa: 2.1.1 - semver-diff: 3.1.1 - xdg-basedir: 4.0.0 - dev: true - /update-notifier/5.1.0: resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} engines: {node: '>=10'} dependencies: - boxen: 5.0.0 - chalk: 4.1.0 + boxen: 5.0.1 + chalk: 4.1.2 configstore: 5.0.1 has-yarn: 2.1.0 import-lazy: 2.1.0 @@ -18892,7 +18604,7 @@ packages: is-yarn-global: 0.3.0 latest-version: 5.1.0 pupa: 2.1.1 - semver: 7.3.4 + semver: 7.3.5 semver-diff: 3.1.1 xdg-basedir: 4.0.0 dev: true @@ -18924,8 +18636,8 @@ packages: dependencies: file-loader: 6.2.0_webpack@4.46.0 loader-utils: 2.0.0 - mime-types: 2.1.30 - schema-utils: 3.0.0 + mime-types: 2.1.32 + schema-utils: 3.1.1 webpack: 4.46.0 dev: true @@ -18936,8 +18648,8 @@ packages: prepend-http: 2.0.0 dev: true - /url-parse/1.5.1: - resolution: {integrity: sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q==} + /url-parse/1.5.3: + resolution: {integrity: sha512-IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ==} dependencies: querystringify: 2.2.0 requires-port: 1.0.0 @@ -19034,7 +18746,7 @@ packages: resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} dependencies: define-properties: 1.1.3 - es-abstract: 1.18.0 + es-abstract: 1.18.5 has-symbols: 1.0.2 object.getownpropertydescriptors: 2.1.2 dev: true @@ -19076,6 +18788,7 @@ packages: /uuid/3.4.0: resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} + deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. hasBin: true dev: true @@ -19094,7 +18807,7 @@ packages: engines: {node: '>=10.10.0'} dependencies: '@types/istanbul-lib-coverage': 2.0.3 - convert-source-map: 1.7.0 + convert-source-map: 1.8.0 source-map: 0.7.3 dev: true @@ -19118,7 +18831,7 @@ packages: /value-equal/1.0.1: resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} - dev: true + dev: false /vary/1.1.2: resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=} @@ -19145,14 +18858,14 @@ packages: /vfile-message/2.0.4: resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} dependencies: - '@types/unist': 2.0.3 + '@types/unist': 2.0.6 unist-util-stringify-position: 2.0.3 dev: true /vfile/4.2.1: resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} dependencies: - '@types/unist': 2.0.3 + '@types/unist': 2.0.6 is-buffer: 2.0.5 unist-util-stringify-position: 2.0.3 vfile-message: 2.0.4 @@ -19201,10 +18914,10 @@ packages: /watchpack/1.7.5: resolution: {integrity: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==} dependencies: - graceful-fs: 4.2.6 + graceful-fs: 4.2.8 neo-async: 2.6.2 optionalDependencies: - chokidar: 3.5.1 + chokidar: 3.5.2 watchpack-chokidar2: 2.0.1 dev: true @@ -19238,24 +18951,23 @@ packages: engines: {node: '>=10.4'} dev: true - /webpack-bundle-analyzer/3.9.0: - resolution: {integrity: sha512-Ob8amZfCm3rMB1ScjQVlbYYUEJyEjdEtQ92jqiFUYt5VkEeO2v5UMbv49P/gnmCZm3A6yaFQzCBvpZqN4MUsdA==} - engines: {node: '>= 6.14.4'} + /webpack-bundle-analyzer/4.4.2: + resolution: {integrity: sha512-PIagMYhlEzFfhMYOzs5gFT55DkUdkyrJi/SxJp8EF3YMWhS+T9vvs2EoTetpk5qb6VsCq02eXTlRDOydRhDFAQ==} + engines: {node: '>= 10.13.0'} hasBin: true dependencies: - acorn: 7.4.1 - acorn-walk: 7.2.0 - bfj: 6.1.2 - chalk: 2.4.2 - commander: 2.20.3 - ejs: 2.7.4 - express: 4.17.1 - filesize: 3.6.1 - gzip-size: 5.1.1 + acorn: 8.4.1 + acorn-walk: 8.1.1 + chalk: 4.1.2 + commander: 6.2.1 + gzip-size: 6.0.0 lodash: 4.17.21 - mkdirp: 0.5.5 opener: 1.5.2 - ws: 6.2.1 + sirv: 1.0.14 + ws: 7.5.3 + transitivePeerDependencies: + - bufferutil + - utf-8-validate dev: true /webpack-dev-middleware/3.7.3_webpack@4.46.0: @@ -19288,11 +19000,11 @@ packages: chokidar: 2.1.8 compression: 1.7.4 connect-history-api-fallback: 1.6.0 - debug: 4.3.1_supports-color@6.1.0 + debug: 4.3.2_supports-color@6.1.0 del: 4.1.1 express: 4.17.1 html-entities: 1.4.0 - http-proxy-middleware: 0.19.1_debug@4.3.1 + http-proxy-middleware: 0.19.1_debug@4.3.2 import-local: 2.0.0 internal-ip: 4.3.0 ip: 1.1.5 @@ -19315,7 +19027,7 @@ packages: webpack: 4.46.0 webpack-dev-middleware: 3.7.3_webpack@4.46.0 webpack-log: 2.0.0 - ws: 6.2.1 + ws: 6.2.2 yargs: 13.3.2 dev: true @@ -19328,8 +19040,8 @@ packages: webpack: 4.46.0 dev: true - /webpack-fix-style-only-entries/0.5.2: - resolution: {integrity: sha512-BlJyvvLSmQmvVY+sWbXMoS3qkcglXDKB16sM3Mao0Ce5oeGF6goyLZ2g89gWk29pA0/CDS6En8aNAMIPMOk3wQ==} + /webpack-fix-style-only-entries/0.6.1: + resolution: {integrity: sha512-wyIhoxS3DD3Fr9JA8hQPA+ZmaWnqPxx12Nv166wcsI/0fbReqyEtiIk2llOFYIg57WVS3XX5cZJxw2ji70R0sA==} dev: true /webpack-hot-middleware/2.25.0: @@ -19349,10 +19061,12 @@ packages: uuid: 3.4.0 dev: true - /webpack-merge/4.2.2: - resolution: {integrity: sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==} + /webpack-merge/5.8.0: + resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==} + engines: {node: '>=10.0.0'} dependencies: - lodash: 4.17.21 + clone-deep: 4.0.1 + wildcard: 2.0.0 dev: true /webpack-plugin-replace/1.2.0: @@ -19448,23 +19162,23 @@ packages: webidl-conversions: 4.0.2 dev: true - /whatwg-url/8.5.0: - resolution: {integrity: sha512-fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg==} + /whatwg-url/8.7.0: + resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} engines: {node: '>=10'} dependencies: lodash: 4.17.21 - tr46: 2.0.2 + tr46: 2.1.0 webidl-conversions: 6.1.0 dev: true /which-boxed-primitive/1.0.2: resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: - is-bigint: 1.0.2 - is-boolean-object: 1.1.0 - is-number-object: 1.0.4 - is-string: 1.0.5 - is-symbol: 1.0.3 + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.6 + is-string: 1.0.7 + is-symbol: 1.0.4 dev: true /which-module/2.0.0: @@ -19499,6 +19213,10 @@ packages: string-width: 4.2.2 dev: true + /wildcard/2.0.0: + resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==} + dev: true + /word-wrap/1.2.3: resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} engines: {node: '>=0.10.0'} @@ -19508,150 +19226,169 @@ packages: resolution: {integrity: sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=} dev: true - /workbox-background-sync/5.1.4: - resolution: {integrity: sha512-AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA==} + /workbox-background-sync/6.2.4: + resolution: {integrity: sha512-uoGgm1PZU6THRzXKlMEntrdA4Xkp6SCfxI7re4heN+yGrtAZq6zMKYhZmsdeW+YGnXS3y5xj7WV03b5TDgLh6A==} dependencies: - workbox-core: 5.1.4 + idb: 6.1.2 + workbox-core: 6.2.4 dev: true - /workbox-broadcast-update/5.1.4: - resolution: {integrity: sha512-HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA==} + /workbox-broadcast-update/6.2.4: + resolution: {integrity: sha512-0EpML2lbxNkiZUoap4BJDA0Hfz36MhtUd/rRhFvF6YWoRbTQ8tc6tMaRgM1EBIUmIN2OX9qQlkqe5SGGt4lfXQ==} dependencies: - workbox-core: 5.1.4 + workbox-core: 6.2.4 dev: true - /workbox-build/5.1.4: - resolution: {integrity: sha512-xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow==} - engines: {node: '>=8.0.0'} + /workbox-build/6.2.4: + resolution: {integrity: sha512-01ZbY1BHi+yYvu4yDGZBw9xm1bWyZW0QGWPxiksvSPAsNH/z/NwgtWW14YEroFyG98mmXb7pufWlwl40zE1KTw==} + engines: {node: '>=10.0.0'} dependencies: - '@babel/core': 7.14.0 - '@babel/preset-env': 7.14.1_@babel+core@7.14.0 - '@babel/runtime': 7.14.0 - '@hapi/joi': 15.1.1 - '@rollup/plugin-node-resolve': 7.1.3_rollup@1.32.1 - '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 + '@apideck/better-ajv-errors': 0.2.5_ajv@8.6.2 + '@babel/core': 7.15.0 + '@babel/preset-env': 7.15.0_@babel+core@7.15.0 + '@babel/runtime': 7.15.3 + '@rollup/plugin-babel': 5.3.0_@babel+core@7.15.0+rollup@2.56.2 + '@rollup/plugin-node-resolve': 11.2.1_rollup@2.56.2 + '@rollup/plugin-replace': 2.4.2_rollup@2.56.2 '@surma/rollup-plugin-off-main-thread': 1.4.2 + ajv: 8.6.2 common-tags: 1.8.0 fast-json-stable-stringify: 2.1.0 - fs-extra: 8.1.0 - glob: 7.1.6 - lodash.template: 4.5.0 + fs-extra: 9.1.0 + glob: 7.1.7 + lodash: 4.17.21 pretty-bytes: 5.6.0 - rollup: 1.32.1 - rollup-plugin-babel: 4.4.0_@babel+core@7.14.0+rollup@1.32.1 - rollup-plugin-terser: 5.3.1_rollup@1.32.1 - source-map: 0.7.3 + rollup: 2.56.2 + rollup-plugin-terser: 7.0.2_rollup@2.56.2 + source-map: 0.8.0-beta.0 source-map-url: 0.4.1 stringify-object: 3.3.0 - strip-comments: 1.0.2 - tempy: 0.3.0 + strip-comments: 2.0.1 + tempy: 0.6.0 upath: 1.2.0 - workbox-background-sync: 5.1.4 - workbox-broadcast-update: 5.1.4 - workbox-cacheable-response: 5.1.4 - workbox-core: 5.1.4 - workbox-expiration: 5.1.4 - workbox-google-analytics: 5.1.4 - workbox-navigation-preload: 5.1.4 - workbox-precaching: 5.1.4 - workbox-range-requests: 5.1.4 - workbox-routing: 5.1.4 - workbox-strategies: 5.1.4 - workbox-streams: 5.1.4 - workbox-sw: 5.1.4 - workbox-window: 5.1.4 + workbox-background-sync: 6.2.4 + workbox-broadcast-update: 6.2.4 + workbox-cacheable-response: 6.2.4 + workbox-core: 6.2.4 + workbox-expiration: 6.2.4 + workbox-google-analytics: 6.2.4 + workbox-navigation-preload: 6.2.4 + workbox-precaching: 6.2.4 + workbox-range-requests: 6.2.4 + workbox-recipes: 6.2.4 + workbox-routing: 6.2.4 + workbox-strategies: 6.2.4 + workbox-streams: 6.2.4 + workbox-sw: 6.2.4 + workbox-window: 6.2.4 transitivePeerDependencies: + - '@types/babel__core' - supports-color dev: true - /workbox-cacheable-response/5.1.4: - resolution: {integrity: sha512-0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA==} + /workbox-cacheable-response/6.2.4: + resolution: {integrity: sha512-KZSzAOmgWsrk15Wu+geCUSGLIyyzHaORKjH5JnR6qcVZAsm0JXUu2m2OZGqjQ+/eyQwrGdXXqAMW+4wQvTXccg==} dependencies: - workbox-core: 5.1.4 + workbox-core: 6.2.4 dev: true - /workbox-core/5.1.4: - resolution: {integrity: sha512-+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg==} + /workbox-core/6.2.4: + resolution: {integrity: sha512-Nu8X4R4Is3g8uzEJ6qwbW2CGVpzntW/cSf8OfsQGIKQR0nt84FAKzP2cLDaNLp3L/iV9TuhZgCTZzkMiap5/OQ==} dev: true - /workbox-expiration/5.1.4: - resolution: {integrity: sha512-oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ==} + /workbox-expiration/6.2.4: + resolution: {integrity: sha512-EdOBLunrE3+Ff50y7AYDbiwtiLDvB+oEIkL1Wd9G5d176YVqFfgPfMRzJQ7fN+Yy2NfmsFME0Bw+dQruYekWsQ==} dependencies: - workbox-core: 5.1.4 + idb: 6.1.2 + workbox-core: 6.2.4 dev: true - /workbox-google-analytics/5.1.4: - resolution: {integrity: sha512-0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA==} + /workbox-google-analytics/6.2.4: + resolution: {integrity: sha512-+PWmTouoGGcDupaxM193F2NmgrF597Pyt9eHIDxfed+x+JSSeUkETlbAKwB8rnBHkAjs8JQcvStEP/IpueNKpQ==} dependencies: - workbox-background-sync: 5.1.4 - workbox-core: 5.1.4 - workbox-routing: 5.1.4 - workbox-strategies: 5.1.4 + workbox-background-sync: 6.2.4 + workbox-core: 6.2.4 + workbox-routing: 6.2.4 + workbox-strategies: 6.2.4 dev: true - /workbox-navigation-preload/5.1.4: - resolution: {integrity: sha512-Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ==} + /workbox-navigation-preload/6.2.4: + resolution: {integrity: sha512-y2dOSsaSdEimqhCmBIFR6kBp+GZbtNtWCBaMFwfKxTAul2uyllKcTKBHnZ9IzxULue6o6voV+I2U8Y8tO8n+eA==} dependencies: - workbox-core: 5.1.4 + workbox-core: 6.2.4 dev: true - /workbox-precaching/5.1.4: - resolution: {integrity: sha512-gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA==} + /workbox-precaching/6.2.4: + resolution: {integrity: sha512-7POznbVc8EG/mkbXzeb94x3B1VJruPgXvXFgS0NJ3GRugkO4ULs/DpIIb+ycs7uJIKY9EzLS7VXvElr3rMSozQ==} dependencies: - workbox-core: 5.1.4 + workbox-core: 6.2.4 + workbox-routing: 6.2.4 + workbox-strategies: 6.2.4 dev: true - /workbox-range-requests/5.1.4: - resolution: {integrity: sha512-1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw==} + /workbox-range-requests/6.2.4: + resolution: {integrity: sha512-q4jjTXD1QOKbrHnzV3nxdZtIpOiVoIP5QyVmjuJrybVnAZurtyKcqirTQcAcT/zlTvgwm07zcTTk9o/zIB6DmA==} dependencies: - workbox-core: 5.1.4 + workbox-core: 6.2.4 dev: true - /workbox-routing/5.1.4: - resolution: {integrity: sha512-8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw==} + /workbox-recipes/6.2.4: + resolution: {integrity: sha512-z7oECGrt940dw1Bv0xIDJEXY1xARiaxsIedeJOutZFkbgaC/yWG61VTr/hmkeJ8Nx6jnY6W7Rc0iOUvg4sePag==} dependencies: - workbox-core: 5.1.4 + workbox-cacheable-response: 6.2.4 + workbox-core: 6.2.4 + workbox-expiration: 6.2.4 + workbox-precaching: 6.2.4 + workbox-routing: 6.2.4 + workbox-strategies: 6.2.4 dev: true - /workbox-strategies/5.1.4: - resolution: {integrity: sha512-VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA==} + /workbox-routing/6.2.4: + resolution: {integrity: sha512-jHnOmpeH4MOWR4eXv6l608npD2y6IFv7yFJ1bT9/RbB8wq2vXHXJQ0ExTZRTWGbVltSG22wEU+MQ8VebDDwDeg==} dependencies: - workbox-core: 5.1.4 - workbox-routing: 5.1.4 + workbox-core: 6.2.4 dev: true - /workbox-streams/5.1.4: - resolution: {integrity: sha512-xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw==} + /workbox-strategies/6.2.4: + resolution: {integrity: sha512-DKgGC3ruceDuu2o+Ae5qmJy0p0q21mFP+RrkdqKrjyf2u8cJvvtvt1eIt4nevKc5BESiKxmhC2h+TZpOSzUDvA==} dependencies: - workbox-core: 5.1.4 - workbox-routing: 5.1.4 + workbox-core: 6.2.4 dev: true - /workbox-sw/5.1.4: - resolution: {integrity: sha512-9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA==} + /workbox-streams/6.2.4: + resolution: {integrity: sha512-yG6zV7S2NmYT6koyb7/DoPsyUAat9kD+rOmjP2SbBCtJdLu6ZIi1lgN4/rOkxEby/+Xb4OE4RmCSIZdMyjEmhQ==} + dependencies: + workbox-core: 6.2.4 + workbox-routing: 6.2.4 dev: true - /workbox-webpack-plugin/5.1.4_webpack@4.46.0: - resolution: {integrity: sha512-PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ==} - engines: {node: '>=8.0.0'} + /workbox-sw/6.2.4: + resolution: {integrity: sha512-OlWLHNNM+j44sN2OaVXnVcf2wwhJUzcHlXrTrbWDu1JWnrQJ/rLicdc/sbxkZoyE0EbQm7Xr1BXcOjsB7PNlXQ==} + dev: true + + /workbox-webpack-plugin/6.2.4_webpack@4.46.0: + resolution: {integrity: sha512-G6yeOZDYEbtqgNasqwxHFnma0Vp237kMxpsf8JV/YIhvhUuMwnh1WKv4VnFeqmYaWW/ITx0qj92IEMWB/O1mAA==} + engines: {node: '>=10.0.0'} peerDependencies: - webpack: ^4.0.0 + webpack: ^4.4.0 || ^5.9.0 dependencies: - '@babel/runtime': 7.14.0 fast-json-stable-stringify: 2.1.0 + pretty-bytes: 5.6.0 source-map-url: 0.4.1 upath: 1.2.0 webpack: 4.46.0 webpack-sources: 1.4.3 - workbox-build: 5.1.4 + workbox-build: 6.2.4 transitivePeerDependencies: + - '@types/babel__core' - supports-color dev: true - /workbox-window/5.1.4: - resolution: {integrity: sha512-vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw==} + /workbox-window/6.2.4: + resolution: {integrity: sha512-9jD6THkwGEASj1YP56ZBHYJ147733FoGpJlMamYk38k/EBFE75oc6K3Vs2tGOBx5ZGq54+mHSStnlrtFG3IiOg==} dependencies: - workbox-core: 5.1.4 + '@types/trusted-types': 2.0.2 + workbox-core: 6.2.4 dev: true /worker-farm/1.7.0: @@ -19706,14 +19443,14 @@ packages: typedarray-to-buffer: 3.1.5 dev: true - /ws/6.2.1: - resolution: {integrity: sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==} + /ws/6.2.2: + resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==} dependencies: async-limiter: 1.0.1 dev: true - /ws/7.4.5: - resolution: {integrity: sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==} + /ws/7.5.3: + resolution: {integrity: sha512-kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg==} engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 @@ -19747,8 +19484,8 @@ packages: resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} dev: true - /y18n/5.0.5: - resolution: {integrity: sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==} + /y18n/5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} dev: true @@ -19784,8 +19521,8 @@ packages: decamelize: 1.2.0 dev: true - /yargs-parser/20.2.7: - resolution: {integrity: sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==} + /yargs-parser/20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} engines: {node: '>=10'} dev: true @@ -19830,8 +19567,8 @@ packages: get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.2 - y18n: 5.0.5 - yargs-parser: 20.2.7 + y18n: 5.0.8 + yargs-parser: 20.2.9 dev: true /yocto-queue/0.1.0: diff --git a/vendor b/vendor index f26125e03..38acabfa6 160000 --- a/vendor +++ b/vendor @@ -1 +1 @@ -Subproject commit f26125e039143b92dc0d84e7775f508ab0cdcaa8 +Subproject commit 38acabfa6089ab8ac469c12b5f55022fb96935e5 -- cgit v1.2.3