commit b38595a7114174038a195cbf70449123a07b9cda parent b63efaaed60b46d911ec64df31485b913af0a7d1 Author: Sebastian <sebasjm@gmail.com> Date: Tue, 16 Mar 2021 10:39:46 -0300 build single html with all assets Diffstat:
43 files changed, 1896 insertions(+), 1700 deletions(-)
diff --git a/packages/frontend/.gitignore b/packages/frontend/.gitignore @@ -2,3 +2,4 @@ /size-plugin.json /storybook-static /docs +/single diff --git a/packages/frontend/package.json b/packages/frontend/package.json @@ -6,13 +6,15 @@ "scripts": { "build": "preact build --no-sw --no-esm", "compile": "tsc", - "serve": "sirv build --port ${PORT:=8080} --cors --single --no-sw --no-esm", + "serve": "sirv build --port ${PORT:=8080} --cors --single", "dev": "preact watch --port ${PORT:=8080} --no-sw --no-esm", "lint-check": "eslint 'src/**/*.{js,jsx,ts,tsx}'", "lint-fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'", "test": "jest ./tests", "typedoc": "typedoc src", - "clean": "rimraf build storybook-static docs", + "clean": "rimraf build storybook-static docs single", + "build-single": "preact build --no-sw --no-esm -c preact.single-config.js --dest single && sh remove-link-stylesheet.sh", + "serve-single": "sirv single --port ${PORT:=8080} --cors --single", "build-storybook": "build-storybook", "storybook": "start-storybook -p 6006" }, @@ -41,32 +43,33 @@ }, "dependencies": { "axios": "^0.21.1", - "date-fns": "^2.17.0", + "date-fns": "^2.19.0", "messageformat": "^2.3.0", - "preact": "^10.3.1", + "preact": "^10.5.13", "preact-messages": "workspace:*", "preact-router": "^3.2.1", - "swr": "^0.4.1", - "yup": "^0.32.8" + "swr": "^0.4.2", + "yup": "^0.32.9" }, "devDependencies": { - "@babel/core": "^7.12.13", + "@babel/core": "^7.13.10", "@babel/plugin-transform-react-jsx-source": "^7.12.13", "@creativebulma/bulma-tooltip": "^1.2.0", - "@storybook/addon-a11y": "^6.1.17", - "@storybook/addon-actions": "^6.1.16", - "@storybook/addon-essentials": "^6.1.16", - "@storybook/addon-links": "^6.1.16", - "@storybook/preact": "^6.1.16", + "@storybook/addon-a11y": "^6.1.21", + "@storybook/addon-actions": "^6.1.21", + "@storybook/addon-essentials": "^6.1.21", + "@storybook/addon-links": "^6.1.21", + "@storybook/preact": "^6.1.21", "@storybook/preset-scss": "^1.0.3", "@testing-library/preact": "^2.0.1", "@testing-library/preact-hooks": "^1.1.0", - "@types/enzyme": "^3.10.5", - "@types/jest": "^26.0.8", - "@typescript-eslint/eslint-plugin": "^4.15.1", - "@typescript-eslint/parser": "^4.15.1", + "@types/enzyme": "^3.10.8", + "@types/jest": "^26.0.20", + "@typescript-eslint/eslint-plugin": "^4.18.0", + "@typescript-eslint/parser": "^4.18.0", "ava": "^3.15.0", "babel-loader": "^8.2.2", + "base64-inline-loader": "^1.1.1", "bulma": "^0.9.2", "bulma-checkbox": "^1.1.1", "bulma-radio": "^1.1.1", @@ -76,20 +79,25 @@ "dotenv": "^8.2.0", "enzyme": "^3.11.0", "enzyme-adapter-preact-pure": "^3.0.0", - "eslint": "^7.20.0", - "eslint-config-preact": "^1.1.1", + "eslint": "^7.22.0", + "eslint-config-preact": "^1.1.3", "eslint-plugin-header": "^3.1.1", - "jest": "^26.2.2", + "html-webpack-inline-chunk-plugin": "^1.1.1", + "html-webpack-inline-source-plugin": "0.0.10", + "html-webpack-skip-assets-plugin": "^1.0.1", + "inline-chunk-html-plugin": "^1.1.1", + "jest": "^26.6.3", "jest-preset-preact": "^4.0.2", "messageformat-po-loader": "^0.3.0", "node-sass": "^5.0.0", "preact-cli": "^3.0.5", - "preact-render-to-string": "^5.1.4", + "preact-render-to-string": "^5.1.16", "rimraf": "^3.0.2", "sass-loader": "10.1.1", - "sirv-cli": "^1.0.0-next.3", - "typedoc": "^0.20.25", - "typescript": "^4.1.3" + "script-ext-html-webpack-plugin": "^2.1.5", + "sirv-cli": "^1.0.11", + "typedoc": "^0.20.32", + "typescript": "^4.2.3" }, "jest": { "preset": "jest-preset-preact", diff --git a/packages/frontend/preact.config.js b/packages/frontend/preact.config.js @@ -21,30 +21,38 @@ import { DefinePlugin } from 'webpack'; +import pack from './package.json'; + export default { - webpack(config, env, helpers, options) { - config.node.process = 'mock' - config.plugins.push( - new DefinePlugin({ - 'process.env.__VERSION__': JSON.stringify(require("./package.json").version), - }), - ); - config.resolve.extensions.push('.po'); - config.module.rules.push({ - enforce: 'pre', - test: /\.po$/, - use: [{ - loader: 'messageformat-po-loader', - options: { - biDiSupport: false, - defaultCharset: null, - defaultLocale: 'en', - forceContext: false, - pluralFunction: null, - verbose: false - } - }], - }); - - } + webpack(config, env, helpers, options) { + // ensure that process.env will not be undefined on runtime + config.node.process = 'mock' + + // add __VERSION__ to be use in the html + config.plugins.push( + new DefinePlugin({ + 'process.env.__VERSION__': JSON.stringify(pack.version), + }), + ); + + // allow import for gettext files + config.resolve.extensions.push('.po'); + // transform .po format into messageformat + config.module.rules.push({ + enforce: 'pre', + test: /\.po$/, + use: [{ + loader: 'messageformat-po-loader', + options: { + biDiSupport: false, + defaultCharset: null, + defaultLocale: 'en', + forceContext: false, + pluralFunction: null, + verbose: false + } + }], + }); + + } } diff --git a/packages/frontend/preact.single-config.js b/packages/frontend/preact.single-config.js @@ -0,0 +1,55 @@ +/* + This file is part of GNU Taler + (C) 2021 Taler Systems S.A. + + GNU Taler is free software; you can redistribute it and/or modify it under the + terms of the GNU General Public License as published by the Free Software + Foundation; either version 3, or (at your option) any later version. + + GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with + GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/> + */ + +/** +* +* @author Sebastian Javier Marchano (sebasjm) +*/ + +import defaultConfig from './preact.config' + +export default { + webpack(config, env, helpers, options) { + defaultConfig.webpack(config, env, helpers, options) + + //1. check no file is under /routers or /component/{routers,async} to prevent async components + // https://github.com/preactjs/preact-cli#route-based-code-splitting + + //2. remove devtools to prevent sourcemaps + config.devtool = false + + //3. change assetLoader to load assets inline + const loaders = helpers.getLoaders(config) + const assetsLoader = loaders.find(lo => lo.rule.test.test('something.woff')) + if (assetsLoader) { + assetsLoader.rule.use = 'base64-inline-loader' + assetsLoader.rule.loader = undefined + } + + //4. remove critters + //critters remove the css bundle from htmlWebpackPlugin.files.css + //for now, pushing all the content into the html is enough + const crittersWrapper = helpers.getPluginsByName(config, 'Critters') + if (crittersWrapper && crittersWrapper.length > 0) { + const [{ index }] = crittersWrapper + config.plugins.splice(index, 1) + } + + //5. remove favicon from src/assets + + //last, after building remove the mysterious link to stylesheet with remove-link-stylesheet.sh + } +} diff --git a/packages/frontend/remove-link-stylesheet.sh b/packages/frontend/remove-link-stylesheet.sh @@ -0,0 +1,6 @@ +FILE=$(ls single/bundle.*.css) +BUNDLE=${FILE#single} +grep -q '<link href="'$BUNDLE'" rel="stylesheet">' single/index.html || { echo bundle $BUNDLE not found in index.html; exit 1; } +echo Removing link from index.html +sed 's_<link href="'$BUNDLE'" rel="stylesheet">__' -i single/index.html +echo done diff --git a/packages/frontend/src/AdminRoutes.tsx b/packages/frontend/src/AdminRoutes.tsx @@ -18,9 +18,9 @@ import Router, { route, Route } from "preact-router"; import { useMessageTemplate } from "preact-messages"; import { Notification } from "./utils/types"; -import InstanceListPage from './routes/admin/list'; -import InstanceCreatePage from "./routes/admin/create"; -import NotFoundPage from './routes/notfound'; +import InstanceListPage from './paths/admin/list'; +import InstanceCreatePage from "./paths/admin/create"; +import NotFoundPage from './paths/notfound'; export enum AdminPaths { list_instances = '/instances', diff --git a/packages/frontend/src/ApplicationReadyRoutes.tsx b/packages/frontend/src/ApplicationReadyRoutes.tsx @@ -24,7 +24,7 @@ import { Notification } from "./utils/types"; import { useBackendContext } from './context/backend'; import { useBackendInstances } from "./hooks/backend"; import { InstanceRoutes } from "./InstanceRoutes"; -import LoginPage from './routes/login'; +import LoginPage from './paths/login'; import { INSTANCE_ID_LOOKUP } from './utils/constants'; import { NotYetReadyAppMenu, Menu } from './components/menu'; import { AdminRoutes } from './AdminRoutes'; diff --git a/packages/frontend/src/InstanceRoutes.tsx b/packages/frontend/src/InstanceRoutes.tsx @@ -28,28 +28,28 @@ import { InstanceContextProvider, useBackendContext } from './context/backend'; import { SwrError } from "./hooks/backend"; import { Notification } from './utils/types'; -import LoginPage from './routes/login'; -import InstanceUpdatePage from "./routes/instance/update"; -import DetailPage from './routes/instance/details'; -import NotFoundPage from './routes/notfound'; +import LoginPage from './paths/login'; +import InstanceUpdatePage from "./paths/instance/update"; +import DetailPage from './paths/instance/details'; +import NotFoundPage from './paths/notfound'; -import ProductListPage from './routes/instance/products/list' -import ProductCreatePage from './routes/instance/products/create' -import ProductUpdatePage from './routes/instance/products/update' +import ProductListPage from './paths/instance/products/list' +import ProductCreatePage from './paths/instance/products/create' +import ProductUpdatePage from './paths/instance/products/update' -import OrderListPage from './routes/instance/orders/list' -import OrderCreatePage from './routes/instance/orders/create' -import OrderUpdatePage from './routes/instance/orders/update' +import OrderListPage from './paths/instance/orders/list' +import OrderCreatePage from './paths/instance/orders/create' +import OrderUpdatePage from './paths/instance/orders/update' -import TipListPage from './routes/instance/tips/list' -import TipCreatePage from './routes/instance/tips/create' -import TipUpdatePage from './routes/instance/tips/update' +import TipListPage from './paths/instance/tips/list' +import TipCreatePage from './paths/instance/tips/create' +import TipUpdatePage from './paths/instance/tips/update' -import TransferListPage from './routes/instance/transfers/list' -import TransferCreatePage from './routes/instance/transfers/create' +import TransferListPage from './paths/instance/transfers/list' +import TransferCreatePage from './paths/instance/transfers/create' // import { AdminRoutes } from './AdminRoutes'; -import InstanceListPage from './routes/admin/list'; -import InstanceCreatePage from "./routes/admin/create"; +import InstanceListPage from './paths/admin/list'; +import InstanceCreatePage from "./paths/admin/create"; export enum InstancePaths { details = '/', diff --git a/packages/frontend/src/assets/favicon.ico b/packages/frontend/src/assets/favicon.ico Binary files differ. diff --git a/packages/frontend/src/components/menu/index.tsx b/packages/frontend/src/components/menu/index.tsx @@ -14,7 +14,7 @@ GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/> */ - import { h, VNode } from "preact"; + import { ComponentChildren, Fragment, h, VNode } from "preact"; import { useEffect, useState } from "preact/hooks"; import { AdminPaths } from "../../AdminRoutes"; import { InstancePaths } from "../../InstanceRoutes"; @@ -59,6 +59,12 @@ onLogout?: () => void; } +function WithTitle({title,children}:{title:string, children:ComponentChildren}):VNode { + useEffect(() => { + document.title = `Taler Backoffice: ${title}` + }, [title]) + return <Fragment>{children}</Fragment> +} export function Menu({ onLogout, title, instance, admin }: MenuProps): VNode { const [mobileOpen, setMobileOpen] = useState(false) @@ -66,15 +72,12 @@ return <Match>{({ path }: any) => { const titleWithSubtitle = title ? title : (!admin ? getInstanceTitle(path, instance) : getAdminTitle(path)) - useEffect(() => { - document.title = 'Taler Backoffice: ' + titleWithSubtitle - }, [titleWithSubtitle]) - - return ( + return (<WithTitle title=""> <div class={mobileOpen ? "has-aside-mobile-expanded" : ""} onClick={() => setMobileOpen(false)}> <NavigationBar onMobileMenu={() => setMobileOpen(!mobileOpen)} title={titleWithSubtitle} /> {onLogout && <Sidebar onLogout={onLogout} admin={admin} instance={instance} mobile={mobileOpen} />} </div> + </WithTitle> ) }}</Match> @@ -89,7 +92,7 @@ const [mobileOpen, setMobileOpen] = useState(false) useEffect(() => { - document.title = 'Taler Backoffice: ' + title + document.title = `Taler Backoffice: ${title}` }, [title]) return <div class={mobileOpen ? "has-aside-mobile-expanded" : ""} onClick={() => setMobileOpen(false)}> diff --git a/packages/frontend/src/index.tsx b/packages/frontend/src/index.tsx @@ -34,7 +34,7 @@ import { BackendContextProvider, ConfigContextProvider, useBackendContext } from import { useBackendConfig } from "./hooks/backend"; import { hasKey, onTranslationError } from "./utils/functions"; -import LoginPage from './routes/login'; +import LoginPage from './paths/login'; import { ApplicationReadyRoutes } from "./ApplicationReadyRoutes"; import { NotYetReadyAppMenu } from "./components/menu"; diff --git a/packages/frontend/src/routes/admin/create/Create.stories.tsx b/packages/frontend/src/paths/admin/create/Create.stories.tsx diff --git a/packages/frontend/src/routes/admin/create/CreatePage.tsx b/packages/frontend/src/paths/admin/create/CreatePage.tsx diff --git a/packages/frontend/src/routes/admin/create/index.tsx b/packages/frontend/src/paths/admin/create/index.tsx diff --git a/packages/frontend/src/routes/admin/list/Table.tsx b/packages/frontend/src/paths/admin/list/Table.tsx diff --git a/packages/frontend/src/routes/admin/list/View.stories.tsx b/packages/frontend/src/paths/admin/list/View.stories.tsx diff --git a/packages/frontend/src/routes/admin/list/View.tsx b/packages/frontend/src/paths/admin/list/View.tsx diff --git a/packages/frontend/src/routes/admin/list/index.tsx b/packages/frontend/src/paths/admin/list/index.tsx diff --git a/packages/frontend/src/routes/instance/details/DetailPage.tsx b/packages/frontend/src/paths/instance/details/DetailPage.tsx diff --git a/packages/frontend/src/routes/instance/details/index.tsx b/packages/frontend/src/paths/instance/details/index.tsx diff --git a/packages/frontend/src/routes/instance/orders/create/index.tsx b/packages/frontend/src/paths/instance/orders/create/index.tsx diff --git a/packages/frontend/src/routes/instance/orders/list/Table.tsx b/packages/frontend/src/paths/instance/orders/list/Table.tsx diff --git a/packages/frontend/src/routes/instance/orders/list/index.tsx b/packages/frontend/src/paths/instance/orders/list/index.tsx diff --git a/packages/frontend/src/routes/instance/orders/update/index.tsx b/packages/frontend/src/paths/instance/orders/update/index.tsx diff --git a/packages/frontend/src/routes/instance/products/create/index.tsx b/packages/frontend/src/paths/instance/products/create/index.tsx diff --git a/packages/frontend/src/routes/instance/products/list/Table.tsx b/packages/frontend/src/paths/instance/products/list/Table.tsx diff --git a/packages/frontend/src/routes/instance/products/list/index.tsx b/packages/frontend/src/paths/instance/products/list/index.tsx diff --git a/packages/frontend/src/routes/instance/products/update/index.tsx b/packages/frontend/src/paths/instance/products/update/index.tsx diff --git a/packages/frontend/src/routes/instance/tips/create/index.tsx b/packages/frontend/src/paths/instance/tips/create/index.tsx diff --git a/packages/frontend/src/routes/instance/tips/list/Table.tsx b/packages/frontend/src/paths/instance/tips/list/Table.tsx diff --git a/packages/frontend/src/routes/instance/tips/list/index.tsx b/packages/frontend/src/paths/instance/tips/list/index.tsx diff --git a/packages/frontend/src/routes/instance/tips/update/index.tsx b/packages/frontend/src/paths/instance/tips/update/index.tsx diff --git a/packages/frontend/src/routes/instance/transfers/create/index.tsx b/packages/frontend/src/paths/instance/transfers/create/index.tsx diff --git a/packages/frontend/src/routes/instance/transfers/list/Table.tsx b/packages/frontend/src/paths/instance/transfers/list/Table.tsx diff --git a/packages/frontend/src/routes/instance/transfers/list/index.tsx b/packages/frontend/src/paths/instance/transfers/list/index.tsx diff --git a/packages/frontend/src/routes/instance/transfers/update/index.tsx b/packages/frontend/src/paths/instance/transfers/update/index.tsx diff --git a/packages/frontend/src/routes/instance/update/UpdatePage.tsx b/packages/frontend/src/paths/instance/update/UpdatePage.tsx diff --git a/packages/frontend/src/routes/instance/update/index.tsx b/packages/frontend/src/paths/instance/update/index.tsx diff --git a/packages/frontend/src/routes/login/index.tsx b/packages/frontend/src/paths/login/index.tsx diff --git a/packages/frontend/src/routes/notfound/index.tsx b/packages/frontend/src/paths/notfound/index.tsx diff --git a/packages/frontend/src/template.html b/packages/frontend/src/template.html @@ -2,14 +2,34 @@ <html lang="en" class="has-aside-left has-aside-mobile-transition has-navbar-fixed-top has-aside-expanded"> <head> <meta charset="utf-8"> - <title><% preact.title %></title> + <title><%= htmlWebpackPlugin.options.title %></title> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta name="mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes"> - <link rel="apple-touch-icon" href="/assets/icons/apple-touch-icon.png"> - <% preact.headEnd %> + + <link rel="icon" href="data:;base64,AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAQAABILAAASCwAAAAAAAAAAAAD///////////////////////////////////////////////////////////////////////////////////////////////////7//v38//78/P/+/fz//vz7///+/v/+/f3//vz7///+/v/+/fz//v38///////////////////////+/v3///7+/////////////////////////////////////////////////////////v3//v79///////+/v3///////r28v/ct5//06SG/9Gffv/Xqo7/7N/V/9e2nf/bsJb/6uDW/9Sskf/euKH/+/j2///////+/v3//////+3azv+/eE3/2rWd/9Kkhv/Vr5T/48i2/8J+VP/Qn3//3ryn/795Tf/WrpP/2LCW/8B6T//w4Nb///////Pn4P+/d0v/9u3n/+7d0v/EhV7//v///+HDr//fxLD/zph2/+TJt//8/Pv/woBX//Lm3f/y5dz/v3hN//bu6f/JjGn/4sW0///////Df1j/8OLZ//v6+P+/elH/+vj1//jy7f+/elL//////+zYzP/Eg13//////967p//MlHT/wn5X///////v4Nb/yY1s///////jw7H/06KG////////////z5t9/+fNvf//////x4pn//Pp4v/8+vn/w39X/8WEX///////5s/A/9CbfP//////27Oc/9y2n////////////9itlf/gu6f//////86Vdf/r2Mz//////8SCXP/Df1j//////+7d0v/KkG7//////+HBrf/VpYr////////////RnoH/5sq6///////Ii2n/8ubf//39/P/Cf1j/xohk/+bNvv//////wn5W//Tq4//58/D/wHxV//7+/f/59fH/v3xU//39/P/w4Nf/xIFb///////hw7H/yo9t/+/f1f/AeU3/+/n2/+nSxP/FhmD//////9qzm//Upon/4MSx/96+qf//////xINc/+3bz//48e3/v3hN//Pn3///////6M+//752S//gw6//06aK/8J+VP/kzLr/zZd1/8OCWv/q18r/17KZ/9Ooi//fv6r/v3dK/+vWyP///////v39///////27un/1aeK/9Opjv/m1cf/1KCC/9a0nP/n08T/0Jx8/82YdP/QnHz/16yR//jx7P///////v39///////+/f3///7+///////+//7//v7+///////+/v7//v/+/////////////////////////v7//v79///////////////////+/v/+/Pv//v39///+/v/+/Pv///7+//7+/f/+/Pv//v39//79/P/+/Pv///7+////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==" /> + <link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon" /> + + <% if (htmlWebpackPlugin.options.manifest.theme_color) { %> + <meta name="theme-color" content="<%= htmlWebpackPlugin.options.manifest.theme_color %>"> + <% } %> + + <% for (const index in htmlWebpackPlugin.files.css) { %> + <% const file = htmlWebpackPlugin.files.css[index] %> + <style data-href='<%= file %>' > + <%= compilation.assets[file.substr(htmlWebpackPlugin.files.publicPath.length)].source() %> + </style> + <% } %> + </head> <body> - <% preact.bodyEnd %> + + <script> + <%= compilation.assets[htmlWebpackPlugin.files.chunks["polyfills"].entry.substr(htmlWebpackPlugin.files.publicPath.length)].source() %> + </script> + <script> + <%= compilation.assets[htmlWebpackPlugin.files.chunks["bundle"].entry.substr(htmlWebpackPlugin.files.publicPath.length)].source() %> + </script> + </body> </html> diff --git a/packages/preact-messages/package.json b/packages/preact-messages/package.json @@ -35,8 +35,8 @@ "preact": ">=10.3.0" }, "dependencies": { - "preact": "^10.5.12", - "typescript": "^4.1.5" + "preact": "^10.5.13", + "typescript": "^4.2.3" }, "devDependencies": { "rimraf": "^3.0.2" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml @@ -4,31 +4,32 @@ importers: packages/frontend: dependencies: axios: 0.21.1 - date-fns: 2.17.0 + date-fns: 2.19.0 messageformat: 2.3.0 - preact: 10.5.12 + preact: 10.5.13 preact-messages: link:../preact-messages - preact-router: 3.2.1_preact@10.5.12 + preact-router: 3.2.1_preact@10.5.13 swr: 0.4.2 yup: 0.32.9 devDependencies: - '@babel/core': 7.12.16 - '@babel/plugin-transform-react-jsx-source': 7.12.13_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/plugin-transform-react-jsx-source': 7.12.13_@babel+core@7.13.10 '@creativebulma/bulma-tooltip': 1.2.0 - '@storybook/addon-a11y': 6.1.18 - '@storybook/addon-actions': 6.1.18 - '@storybook/addon-essentials': 6.1.18_ac9545e36b33c9a18485afb60d9dc47a - '@storybook/addon-links': 6.1.18 - '@storybook/preact': 6.1.18_633e2c5a26ee585db6941d5c18fc6687 + '@storybook/addon-a11y': 6.1.21 + '@storybook/addon-actions': 6.1.21 + '@storybook/addon-essentials': 6.1.21_3cdc1a633f41b3bfee032462d333a1b7 + '@storybook/addon-links': 6.1.21 + '@storybook/preact': 6.1.21_33d2f29cc99c3064cf15374ee3b35a2a '@storybook/preset-scss': 1.0.3_sass-loader@10.1.1 - '@testing-library/preact': 2.0.1_preact@10.5.12 - '@testing-library/preact-hooks': 1.1.0_368c9f1500877413beac8052be555e33 + '@testing-library/preact': 2.0.1_preact@10.5.13 + '@testing-library/preact-hooks': 1.1.0_8a3b8354086a0a31d950b2aa8b26d524 '@types/enzyme': 3.10.8 '@types/jest': 26.0.20 - '@typescript-eslint/eslint-plugin': 4.15.1_dd080f2a8fb4d0ac76cfb4c7062ee728 - '@typescript-eslint/parser': 4.15.1_eslint@7.20.0+typescript@4.1.5 + '@typescript-eslint/eslint-plugin': 4.18.0_ef0f217f6395606fd8bbe7b0291eff7e + '@typescript-eslint/parser': 4.18.0_eslint@7.22.0+typescript@4.2.3 ava: 3.15.0 - babel-loader: 8.2.2_@babel+core@7.12.16 + babel-loader: 8.2.2_@babel+core@7.13.10 + base64-inline-loader: 1.1.1 bulma: 0.9.2 bulma-checkbox: 1.1.1 bulma-radio: 1.1.1 @@ -37,260 +38,289 @@ importers: bulma-upload-control: 1.2.0 dotenv: 8.2.0 enzyme: 3.11.0 - enzyme-adapter-preact-pure: 3.0.0_enzyme@3.11.0+preact@10.5.12 - eslint: 7.20.0 - eslint-config-preact: 1.1.3_eslint@7.20.0+typescript@4.1.5 - eslint-plugin-header: 3.1.1_eslint@7.20.0 + enzyme-adapter-preact-pure: 3.0.0_enzyme@3.11.0+preact@10.5.13 + eslint: 7.22.0 + eslint-config-preact: 1.1.3_eslint@7.22.0+typescript@4.2.3 + eslint-plugin-header: 3.1.1_eslint@7.22.0 + html-webpack-inline-chunk-plugin: 1.1.1 + html-webpack-inline-source-plugin: 0.0.10 + html-webpack-skip-assets-plugin: 1.0.1 + inline-chunk-html-plugin: 1.1.1 jest: 26.6.3 - jest-preset-preact: 4.0.2_120c6743da4bd73ebdbf5629f89f97bc + jest-preset-preact: 4.0.2_493569fdee6cc9af7c4a84b8e8806063 messageformat-po-loader: 0.3.0_messageformat@2.3.0 node-sass: 5.0.0 - preact-cli: 3.0.5_2abf32adaded329872bb8e69d10f8425 - preact-render-to-string: 5.1.12_preact@10.5.12 + preact-cli: 3.0.5_5ba117d350dffefc029551565eae09b5 + preact-render-to-string: 5.1.16_preact@10.5.13 rimraf: 3.0.2 sass-loader: 10.1.1_node-sass@5.0.0 + script-ext-html-webpack-plugin: 2.1.5 sirv-cli: 1.0.11 - typedoc: 0.20.25_typescript@4.1.5 - typescript: 4.1.5 + typedoc: 0.20.32_typescript@4.2.3 + typescript: 4.2.3 specifiers: - '@babel/core': ^7.12.13 + '@babel/core': ^7.13.10 '@babel/plugin-transform-react-jsx-source': ^7.12.13 '@creativebulma/bulma-tooltip': ^1.2.0 - '@storybook/addon-a11y': ^6.1.17 - '@storybook/addon-actions': ^6.1.16 - '@storybook/addon-essentials': ^6.1.16 - '@storybook/addon-links': ^6.1.16 - '@storybook/preact': ^6.1.16 + '@storybook/addon-a11y': ^6.1.21 + '@storybook/addon-actions': ^6.1.21 + '@storybook/addon-essentials': ^6.1.21 + '@storybook/addon-links': ^6.1.21 + '@storybook/preact': ^6.1.21 '@storybook/preset-scss': ^1.0.3 '@testing-library/preact': ^2.0.1 '@testing-library/preact-hooks': ^1.1.0 - '@types/enzyme': ^3.10.5 - '@types/jest': ^26.0.8 - '@typescript-eslint/eslint-plugin': ^4.15.1 - '@typescript-eslint/parser': ^4.15.1 + '@types/enzyme': ^3.10.8 + '@types/jest': ^26.0.20 + '@typescript-eslint/eslint-plugin': ^4.18.0 + '@typescript-eslint/parser': ^4.18.0 ava: ^3.15.0 axios: ^0.21.1 babel-loader: ^8.2.2 + base64-inline-loader: ^1.1.1 bulma: ^0.9.2 bulma-checkbox: ^1.1.1 bulma-radio: ^1.1.1 bulma-responsive-tables: ^1.2.3 bulma-switch-control: ^1.1.1 bulma-upload-control: ^1.2.0 - date-fns: ^2.17.0 + date-fns: ^2.19.0 dotenv: ^8.2.0 enzyme: ^3.11.0 enzyme-adapter-preact-pure: ^3.0.0 - eslint: ^7.20.0 - eslint-config-preact: ^1.1.1 + eslint: ^7.22.0 + eslint-config-preact: ^1.1.3 eslint-plugin-header: ^3.1.1 - jest: ^26.2.2 + html-webpack-inline-chunk-plugin: ^1.1.1 + html-webpack-inline-source-plugin: 0.0.10 + html-webpack-skip-assets-plugin: ^1.0.1 + inline-chunk-html-plugin: ^1.1.1 + jest: ^26.6.3 jest-preset-preact: ^4.0.2 messageformat: ^2.3.0 messageformat-po-loader: ^0.3.0 node-sass: ^5.0.0 - preact: ^10.3.1 + preact: ^10.5.13 preact-cli: ^3.0.5 preact-messages: workspace:* - preact-render-to-string: ^5.1.4 + preact-render-to-string: ^5.1.16 preact-router: ^3.2.1 rimraf: ^3.0.2 sass-loader: 10.1.1 - sirv-cli: ^1.0.0-next.3 - swr: ^0.4.1 - typedoc: ^0.20.25 - typescript: ^4.1.3 - yup: ^0.32.8 + script-ext-html-webpack-plugin: ^2.1.5 + sirv-cli: ^1.0.11 + swr: ^0.4.2 + typedoc: ^0.20.32 + typescript: ^4.2.3 + yup: ^0.32.9 packages/preact-messages: dependencies: - preact: 10.5.12 - typescript: 4.1.5 + preact: 10.5.13 + typescript: 4.2.3 devDependencies: rimraf: 3.0.2 specifiers: - preact: ^10.5.12 + preact: ^10.5.13 rimraf: ^3.0.2 - typescript: ^4.1.5 + typescript: ^4.2.3 lockfileVersion: 5.2 packages: + /@babel/code-frame/7.10.4: + dependencies: + '@babel/highlight': 7.13.10 + dev: true + resolution: + integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== /@babel/code-frame/7.12.11: dependencies: - '@babel/highlight': 7.12.13 + '@babel/highlight': 7.13.10 dev: true resolution: integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== /@babel/code-frame/7.12.13: dependencies: - '@babel/highlight': 7.12.13 + '@babel/highlight': 7.13.10 dev: true resolution: integrity: sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g== - /@babel/code-frame/7.8.3: - dependencies: - '@babel/highlight': 7.12.13 + /@babel/compat-data/7.13.11: dev: true resolution: - integrity: sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== - /@babel/compat-data/7.12.13: - dev: true - resolution: - integrity: sha512-U/hshG5R+SIoW7HVWIdmy1cB7s3ki+r3FpyEZiCgpi4tFgPnX/vynY80ZGSASOIrUM6O7VxOgCZgdt7h97bUGg== - /@babel/core/7.12.16: + integrity: sha512-BwKEkO+2a67DcFeS3RLl0Z3Gs2OvdXewuWjc1Hfokhb5eQWP9YRYH1/+VrVZvql2CfjOiNGqSAFOYt4lsqTHzg== + /@babel/core/7.12.9: dependencies: '@babel/code-frame': 7.12.13 - '@babel/generator': 7.12.15 - '@babel/helper-module-transforms': 7.12.13 - '@babel/helpers': 7.12.13 - '@babel/parser': 7.12.16 + '@babel/generator': 7.13.9 + '@babel/helper-module-transforms': 7.13.0 + '@babel/helpers': 7.13.10 + '@babel/parser': 7.13.11 '@babel/template': 7.12.13 - '@babel/traverse': 7.12.13 - '@babel/types': 7.12.13 + '@babel/traverse': 7.13.0 + '@babel/types': 7.13.0 convert-source-map: 1.7.0 debug: 4.3.1 gensync: 1.0.0-beta.2 json5: 2.2.0 - lodash: 4.17.20 + lodash: 4.17.21 + resolve: 1.20.0 semver: 5.7.1 source-map: 0.5.7 dev: true engines: node: '>=6.9.0' resolution: - integrity: sha512-t/hHIB504wWceOeaOoONOhu+gX+hpjfeN6YRBT209X/4sibZQfSF1I0HFRRlBe97UZZosGx5XwUg1ZgNbelmNw== - /@babel/core/7.12.9: + integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ== + /@babel/core/7.13.10: dependencies: '@babel/code-frame': 7.12.13 - '@babel/generator': 7.12.15 - '@babel/helper-module-transforms': 7.12.13 - '@babel/helpers': 7.12.13 - '@babel/parser': 7.12.16 + '@babel/generator': 7.13.9 + '@babel/helper-compilation-targets': 7.13.10_@babel+core@7.13.10 + '@babel/helper-module-transforms': 7.13.0 + '@babel/helpers': 7.13.10 + '@babel/parser': 7.13.11 '@babel/template': 7.12.13 - '@babel/traverse': 7.12.13 - '@babel/types': 7.12.13 + '@babel/traverse': 7.13.0 + '@babel/types': 7.13.0 convert-source-map: 1.7.0 debug: 4.3.1 gensync: 1.0.0-beta.2 json5: 2.2.0 - lodash: 4.17.20 - resolve: 1.20.0 - semver: 5.7.1 + lodash: 4.17.21 + semver: 6.3.0 source-map: 0.5.7 dev: true engines: node: '>=6.9.0' resolution: - integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ== - /@babel/generator/7.12.15: + integrity: sha512-bfIYcT0BdKeAZrovpMqX2Mx5NrgAckGbwT982AkdS5GNfn3KMGiprlBAtmBcFZRUmpaufS6WZFP8trvx8ptFDw== + /@babel/generator/7.13.9: dependencies: - '@babel/types': 7.12.13 + '@babel/types': 7.13.0 jsesc: 2.5.2 source-map: 0.5.7 dev: true resolution: - integrity: sha512-6F2xHxBiFXWNSGb7vyCUTBF8RCLY66rS0zEPcP8t/nQyXjha5EuK4z7H5o7fWG8B4M7y6mqVWq1J+1PuwRhecQ== + integrity: sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw== /@babel/helper-annotate-as-pure/7.12.13: dependencies: - '@babel/types': 7.12.13 + '@babel/types': 7.13.0 dev: true resolution: integrity: sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw== /@babel/helper-builder-binary-assignment-operator-visitor/7.12.13: dependencies: - '@babel/helper-explode-assignable-expression': 7.12.13 - '@babel/types': 7.12.13 + '@babel/helper-explode-assignable-expression': 7.13.0 + '@babel/types': 7.13.0 dev: true resolution: integrity: sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA== - /@babel/helper-compilation-targets/7.12.16_@babel+core@7.12.16: + /@babel/helper-compilation-targets/7.13.10_@babel+core@7.13.10: dependencies: - '@babel/compat-data': 7.12.13 - '@babel/core': 7.12.16 - '@babel/helper-validator-option': 7.12.16 + '@babel/compat-data': 7.13.11 + '@babel/core': 7.13.10 + '@babel/helper-validator-option': 7.12.17 browserslist: 4.16.3 - semver: 5.7.1 + semver: 6.3.0 dev: true peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-dBHNEEaZx7F3KoUYqagIhRIeqyyuI65xMndMZ3WwGwEBI609I4TleYQHcrS627vbKyNTXqShoN+fvYD9HuQxAg== - /@babel/helper-create-class-features-plugin/7.12.16_@babel+core@7.12.16: + integrity: sha512-/Xju7Qg1GQO4mHZ/Kcs6Au7gfafgZnwm+a7sy/ow/tV1sHeraRUHbjdat8/UvDor4Tez+siGKDk6zIKtCPKVJA== + /@babel/helper-create-class-features-plugin/7.13.11_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 '@babel/helper-function-name': 7.12.13 - '@babel/helper-member-expression-to-functions': 7.12.16 + '@babel/helper-member-expression-to-functions': 7.13.0 '@babel/helper-optimise-call-expression': 7.12.13 - '@babel/helper-replace-supers': 7.12.13 + '@babel/helper-replace-supers': 7.13.0 '@babel/helper-split-export-declaration': 7.12.13 dev: true peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-KbSEj8l9zYkMVHpQqM3wJNxS1d9h3U9vm/uE5tpjMbaj3lTp+0noe3KPsV5dSD9jxKnf9jO9Ip9FX5PKNZCKow== - /@babel/helper-create-regexp-features-plugin/7.12.16_@babel+core@7.12.16: + integrity: sha512-ays0I7XYq9xbjCSvT+EvysLgfc3tOkwCULHjrnscGT3A9qD4sk3wXnJ3of0MAWsWGjdinFvajHU2smYuqXKMrw== + /@babel/helper-create-regexp-features-plugin/7.12.17_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 '@babel/helper-annotate-as-pure': 7.12.13 regexpu-core: 4.7.1 dev: true peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-jAcQ1biDYZBdaAxB4yg46/XirgX7jBDiMHDbwYQOgtViLBXGxJpZQ24jutmBqAIB/q+AwB6j+NbBXjKxEY8vqg== - /@babel/helper-explode-assignable-expression/7.12.13: + integrity: sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg== + /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.13.10: dependencies: - '@babel/types': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-compilation-targets': 7.13.10_@babel+core@7.13.10 + '@babel/helper-module-imports': 7.12.13 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/traverse': 7.13.0 + debug: 4.3.1 + lodash.debounce: 4.0.8 + resolve: 1.20.0 + semver: 6.3.0 + dev: true + peerDependencies: + '@babel/core': ^7.4.0-0 + resolution: + integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg== + /@babel/helper-explode-assignable-expression/7.13.0: + dependencies: + '@babel/types': 7.13.0 dev: true resolution: - integrity: sha512-5loeRNvMo9mx1dA/d6yNi+YiKziJZFylZnCo1nmFF4qPU4yJ14abhWESuSMQSlQxWdxdOFzxXjk/PpfudTtYyw== + integrity: sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA== /@babel/helper-function-name/7.12.13: dependencies: '@babel/helper-get-function-arity': 7.12.13 '@babel/template': 7.12.13 - '@babel/types': 7.12.13 + '@babel/types': 7.13.0 dev: true resolution: integrity: sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA== /@babel/helper-get-function-arity/7.12.13: dependencies: - '@babel/types': 7.12.13 + '@babel/types': 7.13.0 dev: true resolution: integrity: sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg== - /@babel/helper-hoist-variables/7.12.13: + /@babel/helper-hoist-variables/7.13.0: dependencies: - '@babel/types': 7.12.13 + '@babel/traverse': 7.13.0 + '@babel/types': 7.13.0 dev: true resolution: - integrity: sha512-KSC5XSj5HreRhYQtZ3cnSnQwDzgnbdUDEFsxkN0m6Q3WrCRt72xrnZ8+h+pX7YxM7hr87zIO3a/v5p/H3TrnVw== - /@babel/helper-member-expression-to-functions/7.12.16: + integrity: sha512-0kBzvXiIKfsCA0y6cFEIJf4OdzfpRuNk4+YTeHZpGGc666SATFKTz6sRncwFnQk7/ugJ4dSrCj6iJuvW4Qwr2g== + /@babel/helper-member-expression-to-functions/7.13.0: dependencies: - '@babel/types': 7.12.13 + '@babel/types': 7.13.0 dev: true resolution: - integrity: sha512-zYoZC1uvebBFmj1wFAlXwt35JLEgecefATtKp20xalwEK8vHAixLBXTGxNrVGEmTT+gzOThUgr8UEdgtalc1BQ== + integrity: sha512-yvRf8Ivk62JwisqV1rFRMxiSMDGnN6KH1/mDMmIrij4jztpQNRoHqqMG3U6apYbGRPJpgPalhva9Yd06HlUxJQ== /@babel/helper-module-imports/7.12.13: dependencies: - '@babel/types': 7.12.13 + '@babel/types': 7.13.0 dev: true resolution: integrity: sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g== - /@babel/helper-module-transforms/7.12.13: + /@babel/helper-module-transforms/7.13.0: dependencies: '@babel/helper-module-imports': 7.12.13 - '@babel/helper-replace-supers': 7.12.13 + '@babel/helper-replace-supers': 7.13.0 '@babel/helper-simple-access': 7.12.13 '@babel/helper-split-export-declaration': 7.12.13 '@babel/helper-validator-identifier': 7.12.11 '@babel/template': 7.12.13 - '@babel/traverse': 7.12.13 - '@babel/types': 7.12.13 - lodash: 4.17.20 + '@babel/traverse': 7.13.0 + '@babel/types': 7.13.0 + lodash: 4.17.21 dev: true resolution: - integrity: sha512-acKF7EjqOR67ASIlDTupwkKM1eUisNAjaSduo5Cz+793ikfnpe7p4Q7B7EWU2PCoSTPWsQkR7hRUWEIZPiVLGA== + integrity: sha512-Ls8/VBwH577+pw7Ku1QkUWIyRRNHpYlts7+qSqBBFCW3I8QteB9DxfcZ5YJpOwH6Ihe/wn8ch7fMGOP1OhEIvw== /@babel/helper-optimise-call-expression/7.12.13: dependencies: - '@babel/types': 7.12.13 + '@babel/types': 7.13.0 dev: true resolution: integrity: sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA== @@ -298,42 +328,42 @@ packages: dev: true resolution: integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== - /@babel/helper-plugin-utils/7.12.13: + /@babel/helper-plugin-utils/7.13.0: dev: true resolution: - integrity: sha512-C+10MXCXJLiR6IeG9+Wiejt9jmtFpxUc3MQqCmPY8hfCjyUGl9kT+B2okzEZrtykiwrc4dbCPdDoz0A/HQbDaA== - /@babel/helper-remap-async-to-generator/7.12.13: + integrity: sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ== + /@babel/helper-remap-async-to-generator/7.13.0: dependencies: '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-wrap-function': 7.12.13 - '@babel/types': 7.12.13 + '@babel/helper-wrap-function': 7.13.0 + '@babel/types': 7.13.0 dev: true resolution: - integrity: sha512-Qa6PU9vNcj1NZacZZI1Mvwt+gXDH6CTfgAkSjeRMLE8HxtDK76+YDId6NQR+z7Rgd5arhD2cIbS74r0SxD6PDA== - /@babel/helper-replace-supers/7.12.13: + integrity: sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg== + /@babel/helper-replace-supers/7.13.0: dependencies: - '@babel/helper-member-expression-to-functions': 7.12.16 + '@babel/helper-member-expression-to-functions': 7.13.0 '@babel/helper-optimise-call-expression': 7.12.13 - '@babel/traverse': 7.12.13 - '@babel/types': 7.12.13 + '@babel/traverse': 7.13.0 + '@babel/types': 7.13.0 dev: true resolution: - integrity: sha512-pctAOIAMVStI2TMLhozPKbf5yTEXc0OJa0eENheb4w09SrgOWEs+P4nTOZYJQCqs8JlErGLDPDJTiGIp3ygbLg== + integrity: sha512-Segd5me1+Pz+rmN/NFBOplMbZG3SqRJOBlY+mA0SxAv6rjj7zJqr1AVr3SfzUVTLCv7ZLU5FycOM/SBGuLPbZw== /@babel/helper-simple-access/7.12.13: dependencies: - '@babel/types': 7.12.13 + '@babel/types': 7.13.0 dev: true resolution: integrity: sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA== /@babel/helper-skip-transparent-expression-wrappers/7.12.1: dependencies: - '@babel/types': 7.12.13 + '@babel/types': 7.13.0 dev: true resolution: integrity: sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA== /@babel/helper-split-export-declaration/7.12.13: dependencies: - '@babel/types': 7.12.13 + '@babel/types': 7.13.0 dev: true resolution: integrity: sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg== @@ -341,202 +371,204 @@ packages: dev: true resolution: integrity: sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== - /@babel/helper-validator-option/7.12.16: + /@babel/helper-validator-option/7.12.17: dev: true resolution: - integrity: sha512-uCgsDBPUQDvzr11ePPo4TVEocxj8RXjUVSC/Y8N1YpVAI/XDdUwGJu78xmlGhTxj2ntaWM7n9LQdRtyhOzT2YQ== - /@babel/helper-wrap-function/7.12.13: + integrity: sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw== + /@babel/helper-wrap-function/7.13.0: dependencies: '@babel/helper-function-name': 7.12.13 '@babel/template': 7.12.13 - '@babel/traverse': 7.12.13 - '@babel/types': 7.12.13 + '@babel/traverse': 7.13.0 + '@babel/types': 7.13.0 dev: true resolution: - integrity: sha512-t0aZFEmBJ1LojdtJnhOaQEVejnzYhyjWHSsNSNo8vOYRbAJNh6r6GQF7pd36SqG7OKGbn+AewVQ/0IfYfIuGdw== - /@babel/helpers/7.12.13: + integrity: sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA== + /@babel/helpers/7.13.10: dependencies: '@babel/template': 7.12.13 - '@babel/traverse': 7.12.13 - '@babel/types': 7.12.13 + '@babel/traverse': 7.13.0 + '@babel/types': 7.13.0 dev: true resolution: - integrity: sha512-oohVzLRZ3GQEk4Cjhfs9YkJA4TdIDTObdBEZGrd6F/T0GPSnuV6l22eMcxlvcvzVIPH3VTtxbseudM1zIE+rPQ== - /@babel/highlight/7.12.13: + integrity: sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ== + /@babel/highlight/7.13.10: dependencies: '@babel/helper-validator-identifier': 7.12.11 chalk: 2.4.2 js-tokens: 4.0.0 dev: true resolution: - integrity: sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww== - /@babel/parser/7.12.16: + integrity: sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg== + /@babel/parser/7.13.11: dev: true engines: node: '>=6.0.0' hasBin: true resolution: - integrity: sha512-c/+u9cqV6F0+4Hpq01jnJO+GLp2DdT63ppz9Xa+6cHaajM9VFzK/iDXiKK65YtpeVwu+ctfS6iqlMqRgQRzeCw== - /@babel/plugin-proposal-async-generator-functions/7.12.13_@babel+core@7.12.16: + integrity: sha512-PhuoqeHoO9fc4ffMEVk4qb/w/s2iOSWohvbHxLtxui0eBg3Lg5gN1U8wp1V1u61hOWkPQJJyJzGH6Y+grwkq8Q== + /@babel/plugin-proposal-async-generator-functions/7.13.8_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/helper-remap-async-to-generator': 7.12.13 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@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.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-1KH46Hx4WqP77f978+5Ye/VUbuwQld2hph70yaw2hXS2v7ER2f3nlpNMu909HO2rbvP0NKLlMVDPh9KXklVMhA== - /@babel/plugin-proposal-class-properties/7.12.13_@babel+core@7.12.16: + integrity: sha512-rPBnhj+WgoSmgq+4gQUtXx/vOcU+UYtjy1AA/aeD61Hwj410fwYyqfUcRP3lR8ucgliVJL/G7sXcNUecC75IXA== + /@babel/plugin-proposal-class-properties/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-create-class-features-plugin': 7.12.16_@babel+core@7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-create-class-features-plugin': 7.13.11_@babel+core@7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-8SCJ0Ddrpwv4T7Gwb33EmW1V9PY5lggTO+A8WjyIwxrSHDUyBw4MtF96ifn1n8H806YlxbVCoKXbbmzD6RD+cA== - /@babel/plugin-proposal-decorators/7.12.13_@babel+core@7.12.16: + integrity: sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg== + /@babel/plugin-proposal-decorators/7.13.5_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-create-class-features-plugin': 7.12.16_@babel+core@7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/plugin-syntax-decorators': 7.12.13_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/helper-create-class-features-plugin': 7.13.11_@babel+core@7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/plugin-syntax-decorators': 7.12.13_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-x2aOr5w4ARJoYHFKoG2iEUL/Xe99JAJXjAasHijXp3/KgaetJXGE62SmHgsW3Tia/XUT5AxF2YC0F+JyhPY/0Q== - /@babel/plugin-proposal-dynamic-import/7.12.16_@babel+core@7.12.16: + integrity: sha512-i0GDfVNuoapwiheevUOuSW67mInqJ8qw7uWfpjNVeHMn143kXblEy/bmL9AdZ/0yf/4BMQeWXezK0tQIvNPqag== + /@babel/plugin-proposal-dynamic-import/7.13.8_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-yiDkYFapVxNOCcBfLnsb/qdsliroM+vc3LHiZwS4gh7pFjo5Xq3BDhYBNn3H3ao+hWPvqeeTdU+s+FIvokov+w== - /@babel/plugin-proposal-export-default-from/7.12.13_@babel+core@7.12.16: + integrity: sha512-ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ== + /@babel/plugin-proposal-export-default-from/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/plugin-syntax-export-default-from': 7.12.13_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/plugin-syntax-export-default-from': 7.12.13_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-idIsBT+DGXdOHL82U+8bwX4goHm/z10g8sGGrQroh+HCRcm7mDv/luaGdWJQMTuCX2FsdXS7X0Nyyzp4znAPJA== - /@babel/plugin-proposal-export-namespace-from/7.12.13_@babel+core@7.12.16: + /@babel/plugin-proposal-export-namespace-from/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw== - /@babel/plugin-proposal-json-strings/7.12.13_@babel+core@7.12.16: + /@babel/plugin-proposal-json-strings/7.13.8_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-v9eEi4GiORDg8x+Dmi5r8ibOe0VXoKDeNPYcTTxdGN4eOWikrJfDJCJrr1l5gKGvsNyGJbrfMftC2dTL6oz7pg== - /@babel/plugin-proposal-logical-assignment-operators/7.12.13_@babel+core@7.12.16: + integrity: sha512-w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q== + /@babel/plugin-proposal-logical-assignment-operators/7.13.8_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-fqmiD3Lz7jVdK6kabeSr1PZlWSUVqSitmHEe3Z00dtGTKieWnX9beafvavc32kjORa5Bai4QNHgFDwWJP+WtSQ== - /@babel/plugin-proposal-nullish-coalescing-operator/7.12.13_@babel+core@7.12.16: + integrity: sha512-aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A== + /@babel/plugin-proposal-nullish-coalescing-operator/7.13.8_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Qoxpy+OxhDBI5kRqliJFAl4uWXk3Bn24WeFstPH0iLymFehSAUR8MHpqU7njyXv/qbo7oN6yTy5bfCmXdKpo1Q== - /@babel/plugin-proposal-numeric-separator/7.12.13_@babel+core@7.12.16: + integrity: sha512-iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A== + /@babel/plugin-proposal-numeric-separator/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w== - /@babel/plugin-proposal-object-rest-spread/7.12.13_@babel+core@7.12.16: - dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-transform-parameters': 7.12.13_@babel+core@7.12.16 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-WvA1okB/0OS/N3Ldb3sziSrXg6sRphsBgqiccfcQq7woEn5wQLNX82Oc4PlaFcdwcWHuQXAtb8ftbS8Fbsg/sg== /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9: dependencies: '@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.12.13_@babel+core@7.12.9 + '@babel/plugin-transform-parameters': 7.13.0_@babel+core@7.12.9 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== - /@babel/plugin-proposal-optional-catch-binding/7.12.13_@babel+core@7.12.16: + /@babel/plugin-proposal-object-rest-spread/7.13.8_@babel+core@7.13.10: + dependencies: + '@babel/compat-data': 7.13.11 + '@babel/core': 7.13.10 + '@babel/helper-compilation-targets': 7.13.10_@babel+core@7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-transform-parameters': 7.13.0_@babel+core@7.13.10 + dev: true + peerDependencies: + '@babel/core': ^7.0.0-0 + resolution: + integrity: sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g== + /@babel/plugin-proposal-optional-catch-binding/7.13.8_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-9+MIm6msl9sHWg58NvqpNpLtuFbmpFYk37x8kgnGzAHvX35E1FyAwSUt5hIkSoWJFSAH+iwU8bJ4fcD1zKXOzg== - /@babel/plugin-proposal-optional-chaining/7.12.16_@babel+core@7.12.16: + integrity: sha512-0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA== + /@babel/plugin-proposal-optional-chaining/7.13.8_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@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.12.16 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-O3ohPwOhkwji5Mckb7F/PJpJVJY3DpPsrt/F0Bk40+QMk9QpAIqeGusHWqu/mYqsM8oBa6TziL/2mbERWsUZjg== - /@babel/plugin-proposal-private-methods/7.12.13_@babel+core@7.12.16: + integrity: sha512-hpbBwbTgd7Cz1QryvwJZRo1U0k1q8uyBmeXOSQUjdg/A2TASkhR/rz7AyqZ/kS8kbpsNA80rOYbxySBJAqmhhQ== + /@babel/plugin-proposal-private-methods/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-create-class-features-plugin': 7.12.16_@babel+core@7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-create-class-features-plugin': 7.13.11_@babel+core@7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-sV0V57uUwpauixvR7s2o75LmwJI6JECwm5oPUY5beZB1nBl2i37hc7CJGqB5G+58fur5Y6ugvl3LRONk5x34rg== - /@babel/plugin-proposal-unicode-property-regex/7.12.13_@babel+core@7.12.16: + integrity: sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q== + /@babel/plugin-proposal-unicode-property-regex/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-create-regexp-features-plugin': 7.12.16_@babel+core@7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-create-regexp-features-plugin': 7.12.17_@babel+core@7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true engines: node: '>=4' @@ -544,91 +576,91 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg== - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.16: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.12.16: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.12.16: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - /@babel/plugin-syntax-decorators/7.12.13_@babel+core@7.12.16: + /@babel/plugin-syntax-decorators/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Rw6aIXGuqDLr6/LoBBYE57nKOzQpz/aDkKlMqEwH+Vp0MXbG6H/TfRjaY343LKxzAKAMXIHsQ8JzaZKuDZ9MwA== - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.16: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - /@babel/plugin-syntax-export-default-from/7.12.13_@babel+core@7.12.16: + /@babel/plugin-syntax-export-default-from/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-gVry0zqoums0hA+EniCYK3gABhjYSLX1dVuwYpPw9DrLNA4/GovXySHVg4FGRsZht09ON/5C2NVx3keq+qqVGQ== - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.16: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.16: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.16: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - /@babel/plugin-syntax-jsx/7.12.13_@babel+core@7.12.16: + /@babel/plugin-syntax-jsx/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 @@ -637,600 +669,602 @@ packages: /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9: dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.16: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.16: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.16: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.16: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.16: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.16: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - /@babel/plugin-syntax-top-level-await/7.12.13_@babel+core@7.12.16: + /@babel/plugin-syntax-top-level-await/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ== - /@babel/plugin-syntax-typescript/7.12.13_@babel+core@7.12.16: + /@babel/plugin-syntax-typescript/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w== - /@babel/plugin-transform-arrow-functions/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-arrow-functions/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-tBtuN6qtCTd+iHzVZVOMNp+L04iIJBpqkdY42tWbmjIT5wvR2kx7gxMBsyhQtFzHwBbyGi9h8J8r9HgnOpQHxg== - /@babel/plugin-transform-async-to-generator/7.12.13_@babel+core@7.12.16: + integrity: sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg== + /@babel/plugin-transform-async-to-generator/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 '@babel/helper-module-imports': 7.12.13 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/helper-remap-async-to-generator': 7.12.13 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-remap-async-to-generator': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-psM9QHcHaDr+HZpRuJcE1PXESuGWSCcbiGFFhhwfzdbTxaGDVzuVtdNYliAwcRo3GFg0Bc8MmI+AvIGYIJG04A== - /@babel/plugin-transform-block-scoped-functions/7.12.13_@babel+core@7.12.16: + integrity: sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg== + /@babel/plugin-transform-block-scoped-functions/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg== - /@babel/plugin-transform-block-scoping/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-block-scoping/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ== - /@babel/plugin-transform-classes/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-classes/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 '@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.12.13 - '@babel/helper-replace-supers': 7.12.13 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-replace-supers': 7.13.0 '@babel/helper-split-export-declaration': 7.12.13 globals: 11.12.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-cqZlMlhCC1rVnxE5ZGMtIb896ijL90xppMiuWXcwcOAuFczynpd3KYemb91XFFPi3wJSe/OcrX9lXoowatkkxA== - /@babel/plugin-transform-computed-properties/7.12.13_@babel+core@7.12.16: + integrity: sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g== + /@babel/plugin-transform-computed-properties/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-dDfuROUPGK1mTtLKyDPUavmj2b6kFu82SmgpztBFEO974KMjJT+Ytj3/oWsTUMBmgPcp9J5Pc1SlcAYRpJ2hRA== - /@babel/plugin-transform-destructuring/7.12.13_@babel+core@7.12.16: + integrity: sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg== + /@babel/plugin-transform-destructuring/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Dn83KykIFzjhA3FDPA1z4N+yfF3btDGhjnJwxIj0T43tP0flCujnU8fKgEkf0C1biIpSv9NZegPBQ1J6jYkwvQ== - /@babel/plugin-transform-dotall-regex/7.12.13_@babel+core@7.12.16: + integrity: sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA== + /@babel/plugin-transform-dotall-regex/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-create-regexp-features-plugin': 7.12.16_@babel+core@7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-create-regexp-features-plugin': 7.12.17_@babel+core@7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ== - /@babel/plugin-transform-duplicate-keys/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-duplicate-keys/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ== - /@babel/plugin-transform-exponentiation-operator/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-exponentiation-operator/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 '@babel/helper-builder-binary-assignment-operator-visitor': 7.12.13 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA== - /@babel/plugin-transform-for-of/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-for-of/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-xCbdgSzXYmHGyVX3+BsQjcd4hv4vA/FDy7Kc8eOpzKmBBPEOTurt0w5fCRQaGl+GSBORKgJdstQ1rHl4jbNseQ== - /@babel/plugin-transform-function-name/7.12.13_@babel+core@7.12.16: + integrity: sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg== + /@babel/plugin-transform-function-name/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 '@babel/helper-function-name': 7.12.13 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ== - /@babel/plugin-transform-literals/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-literals/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ== - /@babel/plugin-transform-member-expression-literals/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-member-expression-literals/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg== - /@babel/plugin-transform-modules-amd/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-modules-amd/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-module-transforms': 7.12.13 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-module-transforms': 7.13.0 + '@babel/helper-plugin-utils': 7.13.0 babel-plugin-dynamic-import-node: 2.3.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-JHLOU0o81m5UqG0Ulz/fPC68/v+UTuGTWaZBUwpEk1fYQ1D9LfKV6MPn4ttJKqRo5Lm460fkzjLTL4EHvCprvA== - /@babel/plugin-transform-modules-commonjs/7.12.13_@babel+core@7.12.16: + integrity: sha512-EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ== + /@babel/plugin-transform-modules-commonjs/7.13.8_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-module-transforms': 7.12.13 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-module-transforms': 7.13.0 + '@babel/helper-plugin-utils': 7.13.0 '@babel/helper-simple-access': 7.12.13 babel-plugin-dynamic-import-node: 2.3.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-OGQoeVXVi1259HjuoDnsQMlMkT9UkZT9TpXAsqWplS/M0N1g3TJAn/ByOCeQu7mfjc5WpSsRU+jV1Hd89ts0kQ== - /@babel/plugin-transform-modules-systemjs/7.12.13_@babel+core@7.12.16: + integrity: sha512-9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw== + /@babel/plugin-transform-modules-systemjs/7.13.8_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-hoist-variables': 7.12.13 - '@babel/helper-module-transforms': 7.12.13 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-hoist-variables': 7.13.0 + '@babel/helper-module-transforms': 7.13.0 + '@babel/helper-plugin-utils': 7.13.0 '@babel/helper-validator-identifier': 7.12.11 babel-plugin-dynamic-import-node: 2.3.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-aHfVjhZ8QekaNF/5aNdStCGzwTbU7SI5hUybBKlMzqIMC7w7Ho8hx5a4R/DkTHfRfLwHGGxSpFt9BfxKCoXKoA== - /@babel/plugin-transform-modules-umd/7.12.13_@babel+core@7.12.16: + integrity: sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A== + /@babel/plugin-transform-modules-umd/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-module-transforms': 7.12.13 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-module-transforms': 7.13.0 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-BgZndyABRML4z6ibpi7Z98m4EVLFI9tVsZDADC14AElFaNHHBcJIovflJ6wtCqFxwy2YJ1tJhGRsr0yLPKoN+w== - /@babel/plugin-transform-named-capturing-groups-regex/7.12.13_@babel+core@7.12.16: + integrity: sha512-D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw== + /@babel/plugin-transform-named-capturing-groups-regex/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-create-regexp-features-plugin': 7.12.16_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/helper-create-regexp-features-plugin': 7.12.17_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0 resolution: integrity: sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA== - /@babel/plugin-transform-new-target/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-new-target/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ== - /@babel/plugin-transform-object-assign/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-object-assign/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-4QxDMc0lAOkIBSfCrnSGbAJ+4epDBF2XXwcLXuBcG1xl9u7LrktNVD4+LwhL47XuKVPQ7R25e/WdcV+h97HyZA== - /@babel/plugin-transform-object-super/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-object-super/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/helper-replace-supers': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-replace-supers': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ== - /@babel/plugin-transform-parameters/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-parameters/7.13.0_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-e7QqwZalNiBRHCpJg/P8s/VJeSRYgmtWySs1JwvfwPqhBbiWfOcHDKdeAi6oAyIimoKWBlwc8oTgbZHdhCoVZA== - /@babel/plugin-transform-parameters/7.12.13_@babel+core@7.12.9: + integrity: sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw== + /@babel/plugin-transform-parameters/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-e7QqwZalNiBRHCpJg/P8s/VJeSRYgmtWySs1JwvfwPqhBbiWfOcHDKdeAi6oAyIimoKWBlwc8oTgbZHdhCoVZA== - /@babel/plugin-transform-property-literals/7.12.13_@babel+core@7.12.16: + integrity: sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw== + /@babel/plugin-transform-property-literals/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A== - /@babel/plugin-transform-react-display-name/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-react-display-name/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA== - /@babel/plugin-transform-react-jsx-development/7.12.16_@babel+core@7.12.16: + /@babel/plugin-transform-react-jsx-development/7.12.17_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/plugin-transform-react-jsx': 7.12.16_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/plugin-transform-react-jsx': 7.12.17_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-GOp5SkMC4zhHwLbOSYhF+WpIZSf5bGzaKQTT9jWkemJRDM/CE6FtPydXjEYO3pHcna2Zjvg4mQ1lfjOR/4jsaQ== - /@babel/plugin-transform-react-jsx-source/7.12.13_@babel+core@7.12.16: + integrity: sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ== + /@babel/plugin-transform-react-jsx-source/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q== - /@babel/plugin-transform-react-jsx/7.12.16_@babel+core@7.12.16: + /@babel/plugin-transform-react-jsx/7.12.17_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 '@babel/helper-annotate-as-pure': 7.12.13 '@babel/helper-module-imports': 7.12.13 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/plugin-syntax-jsx': 7.12.13_@babel+core@7.12.16 - '@babel/types': 7.12.13 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/plugin-syntax-jsx': 7.12.13_@babel+core@7.13.10 + '@babel/types': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-dNu0vAbIk8OkqJfGtYF6ADk6jagoyAl+Ks5aoltbAlfoKv8d6yooi3j+kObeSQaCj9PgN6KMZPB90wWyek5TmQ== - /@babel/plugin-transform-react-pure-annotations/7.12.1_@babel+core@7.12.16: + integrity: sha512-mwaVNcXV+l6qJOuRhpdTEj8sT/Z0owAVWf9QujTZ0d2ye9X/K+MTOTSizcgKOj18PGnTc/7g1I4+cIUjsKhBcw== + /@babel/plugin-transform-react-pure-annotations/7.12.1_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 '@babel/helper-annotate-as-pure': 7.12.13 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg== - /@babel/plugin-transform-regenerator/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-regenerator/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 regenerator-transform: 0.14.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA== - /@babel/plugin-transform-reserved-words/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-reserved-words/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg== - /@babel/plugin-transform-shorthand-properties/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-shorthand-properties/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw== - /@babel/plugin-transform-spread/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-spread/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-dUCrqPIowjqk5pXsx1zPftSq4sT0aCeZVAxhdgs3AMgyaDmoUT0G+5h3Dzja27t76aUEIJWlFgPJqJ/d4dbTtg== - /@babel/plugin-transform-sticky-regex/7.12.13_@babel+core@7.12.16: + integrity: sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg== + /@babel/plugin-transform-sticky-regex/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg== - /@babel/plugin-transform-template-literals/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-template-literals/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-arIKlWYUgmNsF28EyfmiQHJLJFlAJNYkuQO10jL46ggjBpeb2re1P9K9YGxNJB45BqTbaslVysXDYm/g3sN/Qg== - /@babel/plugin-transform-typeof-symbol/7.12.13_@babel+core@7.12.16: + integrity: sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw== + /@babel/plugin-transform-typeof-symbol/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ== - /@babel/plugin-transform-typescript/7.12.16_@babel+core@7.12.16: + /@babel/plugin-transform-typescript/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-create-class-features-plugin': 7.12.16_@babel+core@7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/plugin-syntax-typescript': 7.12.13_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/helper-create-class-features-plugin': 7.13.11_@babel+core@7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/plugin-syntax-typescript': 7.12.13_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-88hep+B6dtDOiEqtRzwHp2TYO+CN8nbAV3eh5OpBGPsedug9J6y1JwLKzXRIGGQZDC8NlpxpQMIIxcfIW96Wgw== - /@babel/plugin-transform-unicode-escapes/7.12.13_@babel+core@7.12.16: + integrity: sha512-elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ== + /@babel/plugin-transform-unicode-escapes/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw== - /@babel/plugin-transform-unicode-regex/7.12.13_@babel+core@7.12.16: + /@babel/plugin-transform-unicode-regex/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-create-regexp-features-plugin': 7.12.16_@babel+core@7.12.16 - '@babel/helper-plugin-utils': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-create-regexp-features-plugin': 7.12.17_@babel+core@7.13.10 + '@babel/helper-plugin-utils': 7.13.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA== - /@babel/preset-env/7.12.16_@babel+core@7.12.16: - dependencies: - '@babel/compat-data': 7.12.13 - '@babel/core': 7.12.16 - '@babel/helper-compilation-targets': 7.12.16_@babel+core@7.12.16 - '@babel/helper-module-imports': 7.12.13 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/helper-validator-option': 7.12.16 - '@babel/plugin-proposal-async-generator-functions': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-class-properties': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-dynamic-import': 7.12.16_@babel+core@7.12.16 - '@babel/plugin-proposal-export-namespace-from': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-json-strings': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-logical-assignment-operators': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-numeric-separator': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-object-rest-spread': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-optional-catch-binding': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-optional-chaining': 7.12.16_@babel+core@7.12.16 - '@babel/plugin-proposal-private-methods': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-unicode-property-regex': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.16 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.16 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.16 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-syntax-top-level-await': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-arrow-functions': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-async-to-generator': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-block-scoped-functions': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-block-scoping': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-classes': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-computed-properties': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-destructuring': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-dotall-regex': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-duplicate-keys': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-exponentiation-operator': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-for-of': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-function-name': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-literals': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-member-expression-literals': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-modules-amd': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-modules-commonjs': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-modules-systemjs': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-modules-umd': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-named-capturing-groups-regex': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-new-target': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-object-super': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-parameters': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-property-literals': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-regenerator': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-reserved-words': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-spread': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-sticky-regex': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-template-literals': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-typeof-symbol': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-unicode-escapes': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-unicode-regex': 7.12.13_@babel+core@7.12.16 - '@babel/preset-modules': 0.1.4_@babel+core@7.12.16 - '@babel/types': 7.12.13 - core-js-compat: 3.8.3 - semver: 5.7.1 + /@babel/preset-env/7.13.10_@babel+core@7.13.10: + dependencies: + '@babel/compat-data': 7.13.11 + '@babel/core': 7.13.10 + '@babel/helper-compilation-targets': 7.13.10_@babel+core@7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-validator-option': 7.12.17 + '@babel/plugin-proposal-async-generator-functions': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-proposal-dynamic-import': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-proposal-export-namespace-from': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-proposal-json-strings': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-proposal-logical-assignment-operators': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-proposal-numeric-separator': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-proposal-object-rest-spread': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-proposal-optional-catch-binding': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-proposal-optional-chaining': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-proposal-private-methods': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-proposal-unicode-property-regex': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.13.10 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.13.10 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.13.10 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-syntax-top-level-await': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-arrow-functions': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-async-to-generator': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-block-scoped-functions': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-block-scoping': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-classes': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-computed-properties': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-destructuring': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-dotall-regex': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-duplicate-keys': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-exponentiation-operator': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-for-of': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-function-name': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-literals': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-member-expression-literals': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-modules-amd': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-modules-commonjs': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-transform-modules-systemjs': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-transform-modules-umd': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-named-capturing-groups-regex': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-new-target': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-object-super': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-parameters': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-property-literals': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-regenerator': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-reserved-words': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-spread': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-sticky-regex': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-template-literals': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-typeof-symbol': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-unicode-escapes': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-unicode-regex': 7.12.13_@babel+core@7.13.10 + '@babel/preset-modules': 0.1.4_@babel+core@7.13.10 + '@babel/types': 7.13.0 + babel-plugin-polyfill-corejs2: 0.1.10_@babel+core@7.13.10 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.13.10 + babel-plugin-polyfill-regenerator: 0.1.6_@babel+core@7.13.10 + core-js-compat: 3.9.1 + semver: 6.3.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-BXCAXy8RE/TzX416pD2hsVdkWo0G+tYd16pwnRV4Sc0fRwTLRS/Ssv8G5RLXUGQv7g4FG7TXkdDJxCjQ5I+Zjg== - /@babel/preset-modules/0.1.4_@babel+core@7.12.16: + integrity: sha512-nOsTScuoRghRtUsRr/c69d042ysfPHcu+KOB4A9aAO9eJYqrkat+LF8G1yp1HD18QiwixT2CisZTr/0b3YZPXQ== + /@babel/preset-modules/0.1.4_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/plugin-proposal-unicode-property-regex': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-dotall-regex': 7.12.13_@babel+core@7.12.16 - '@babel/types': 7.12.13 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/plugin-proposal-unicode-property-regex': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-dotall-regex': 7.12.13_@babel+core@7.13.10 + '@babel/types': 7.13.0 esutils: 2.0.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== - /@babel/preset-react/7.12.13_@babel+core@7.12.16: + /@babel/preset-react/7.12.13_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/plugin-transform-react-display-name': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-react-jsx': 7.12.16_@babel+core@7.12.16 - '@babel/plugin-transform-react-jsx-development': 7.12.16_@babel+core@7.12.16 - '@babel/plugin-transform-react-pure-annotations': 7.12.1_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/plugin-transform-react-display-name': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-react-jsx': 7.12.17_@babel+core@7.13.10 + '@babel/plugin-transform-react-jsx-development': 7.12.17_@babel+core@7.13.10 + '@babel/plugin-transform-react-pure-annotations': 7.12.1_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-TYM0V9z6Abb6dj1K7i5NrEhA13oS5ujUYQYDfqIBXYHOc2c2VkFgc+q9kyssIyUfy4/hEwqrgSlJ/Qgv8zJLsA== - /@babel/preset-typescript/7.12.16_@babel+core@7.12.16: + /@babel/preset-typescript/7.13.0_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 - '@babel/helper-plugin-utils': 7.12.13 - '@babel/helper-validator-option': 7.12.16 - '@babel/plugin-transform-typescript': 7.12.16_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/helper-plugin-utils': 7.13.0 + '@babel/helper-validator-option': 7.12.17 + '@babel/plugin-transform-typescript': 7.13.0_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-IrYNrpDSuQfNHeqh7gsJsO35xTGyAyGkI1VxOpBEADFtxCqZ77a1RHbJqM3YJhroj7qMkNMkNtcw0lqeZUrzow== - /@babel/register/7.12.13_@babel+core@7.12.16: + integrity: sha512-LXJwxrHy0N3f6gIJlYbLta1D9BDtHpQeqwzM0LIfjDlr6UE/D5Mc7W4iDiQzaE+ks0sTjT26ArcHWnJVt0QiHw== + /@babel/register/7.13.8_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 find-cache-dir: 2.1.0 - lodash: 4.17.20 + lodash: 4.17.21 make-dir: 2.1.0 pirates: 4.0.1 source-map-support: 0.5.19 @@ -1238,49 +1272,49 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-fnCeRXj970S9seY+973oPALQg61TRvAaW0nRDe1f4ytKqM3fZgsNXewTZWmqZedg74LFIRpg/11dsrPZZvYs2g== - /@babel/runtime-corejs3/7.12.13: + integrity: sha512-yCVtABcmvQjRsX2elcZFUV5Q5kDDpHdtXKKku22hNDma60lYuhKmtp1ykZ/okRCPLT2bR5S+cA1kvtBdAFlDTQ== + /@babel/runtime-corejs3/7.13.10: dependencies: - core-js-pure: 3.8.3 + core-js-pure: 3.9.1 regenerator-runtime: 0.13.7 dev: true resolution: - integrity: sha512-8fSpqYRETHATtNitsCXq8QQbKJP31/KnDl2Wz2Vtui9nKzjss2ysuZtyVsWjBtvkeEFo346gkwjYPab1hvrXkQ== - /@babel/runtime/7.12.13: + integrity: sha512-x/XYVQ1h684pp1mJwOV4CyvqZXqbc8CMsMGUnAbuc82ZCdv1U63w5RSUzgDSXQHG5Rps/kiksH6g2D5BuaKyXg== + /@babel/runtime/7.13.10: dependencies: regenerator-runtime: 0.13.7 resolution: - integrity: sha512-8+3UMPBrjFa/6TtKi/7sehPKqfAm4g6K+YQjyyFOLUTxzOngcRZTlAVY8sc2CORJYqdHQY8gRPHmn+qo15rCBw== + integrity: sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw== /@babel/template/7.12.13: dependencies: '@babel/code-frame': 7.12.13 - '@babel/parser': 7.12.16 - '@babel/types': 7.12.13 + '@babel/parser': 7.13.11 + '@babel/types': 7.13.0 dev: true resolution: integrity: sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA== - /@babel/traverse/7.12.13: + /@babel/traverse/7.13.0: dependencies: '@babel/code-frame': 7.12.13 - '@babel/generator': 7.12.15 + '@babel/generator': 7.13.9 '@babel/helper-function-name': 7.12.13 '@babel/helper-split-export-declaration': 7.12.13 - '@babel/parser': 7.12.16 - '@babel/types': 7.12.13 + '@babel/parser': 7.13.11 + '@babel/types': 7.13.0 debug: 4.3.1 globals: 11.12.0 - lodash: 4.17.20 + lodash: 4.17.21 dev: true resolution: - integrity: sha512-3Zb4w7eE/OslI0fTp8c7b286/cQps3+vdLW3UcwC8VSJC6GbKn55aeVVu2QJNuCDoeKyptLOFrPq8WqZZBodyA== - /@babel/types/7.12.13: + integrity: sha512-xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ== + /@babel/types/7.13.0: dependencies: '@babel/helper-validator-identifier': 7.12.11 - lodash: 4.17.20 + lodash: 4.17.21 to-fast-properties: 2.0.0 dev: true resolution: - integrity: sha512-oKrdZTld2im1z8bDwTOQvUbxKwE+854zc16qWZQlcTqMN00pWxHQ4ZeOq0yDMnisOpRykH2/5Qqcrk/OlbAjiQ== + integrity: sha512-hE+HE8rnG1Z6Wzo+MhaKE5lM5eMx71T4EHJgku2E3xIfaULhDcxiiRxUYgwX8qwP1BBSlag+TdGOt6JAidIZTA== /@base2/pretty-print-object/1.0.0: dev: true resolution: @@ -1322,7 +1356,7 @@ packages: integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ== /@emotion/core/10.1.1: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 '@emotion/cache': 10.0.29 '@emotion/css': 10.0.27 '@emotion/serialize': 0.11.16 @@ -1335,7 +1369,7 @@ packages: integrity: sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA== /@emotion/core/10.1.1_react@16.13.1: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 '@emotion/cache': 10.0.29 '@emotion/css': 10.0.27 '@emotion/serialize': 0.11.16 @@ -1375,7 +1409,7 @@ packages: '@emotion/memoize': 0.7.4 '@emotion/unitless': 0.7.5 '@emotion/utils': 0.11.3 - csstype: 2.6.15 + csstype: 2.6.16 dev: true resolution: integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg== @@ -1385,7 +1419,7 @@ packages: integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA== /@emotion/styled-base/10.0.31_88480db83d3b7400155217a2792cf198: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 '@emotion/core': 10.1.1_react@16.13.1 '@emotion/is-prop-valid': 0.8.8 '@emotion/serialize': 0.11.16 @@ -1399,7 +1433,7 @@ packages: integrity: sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ== /@emotion/styled-base/10.0.31_@emotion+core@10.1.1: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 '@emotion/core': 10.1.1 '@emotion/is-prop-valid': 0.8.8 '@emotion/serialize': 0.11.16 @@ -1449,7 +1483,7 @@ packages: dev: true resolution: integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== - /@eslint/eslintrc/0.3.0: + /@eslint/eslintrc/0.4.0: dependencies: ajv: 6.12.6 debug: 4.3.1 @@ -1458,14 +1492,13 @@ packages: ignore: 4.0.6 import-fresh: 3.3.0 js-yaml: 3.14.1 - lodash: 4.17.20 minimatch: 3.0.4 strip-json-comments: 3.1.1 dev: true engines: node: ^10.12.0 || >=12.0.0 resolution: - integrity: sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg== + integrity: sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog== /@hapi/address/2.1.4: deprecated: Moved to 'npm install @sideway/address' dev: true @@ -1533,7 +1566,7 @@ packages: /@jest/console/26.6.2: dependencies: '@jest/types': 26.6.2 - '@types/node': 14.14.28 + '@types/node': 14.14.35 chalk: 4.1.0 jest-message-util: 26.6.2 jest-util: 26.6.2 @@ -1550,7 +1583,7 @@ packages: '@jest/test-result': 26.6.2 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 14.14.28 + '@types/node': 14.14.35 ansi-escapes: 4.3.1 chalk: 4.1.0 exit: 0.1.2 @@ -1582,7 +1615,7 @@ packages: dependencies: '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 14.14.28 + '@types/node': 14.14.35 jest-mock: 26.6.2 dev: true engines: @@ -1593,7 +1626,7 @@ packages: dependencies: '@jest/types': 26.6.2 '@sinonjs/fake-timers': 6.0.1 - '@types/node': 14.14.28 + '@types/node': 14.14.35 jest-message-util: 26.6.2 jest-mock: 26.6.2 jest-util: 26.6.2 @@ -1642,7 +1675,7 @@ packages: engines: node: '>= 10.14.2' optionalDependencies: - node-notifier: 8.0.1 + node-notifier: 8.0.2 resolution: integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw== /@jest/source-map/26.6.2: @@ -1680,7 +1713,7 @@ packages: integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw== /@jest/transform/26.6.2: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.0.0 chalk: 4.1.0 @@ -1704,7 +1737,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.3 '@types/istanbul-reports': 3.0.0 - '@types/node': 14.14.28 + '@types/node': 14.14.35 '@types/yargs': 15.0.13 chalk: 4.1.0 dev: true @@ -1795,7 +1828,7 @@ packages: /@nodelib/fs.walk/1.2.6: dependencies: '@nodelib/fs.scandir': 2.1.4 - fastq: 1.10.1 + fastq: 1.11.0 dev: true engines: node: '>= 8' @@ -1814,15 +1847,15 @@ packages: dev: true resolution: integrity: sha512-3NsZsJIA/22P3QUyrEDNA2D133H4j224twJrdipXN38dpnIOzAbUDtOwkcJ5pXmn75w7LSQDjA4tO9dm1XlqlA== - /@popperjs/core/2.7.0: + /@popperjs/core/2.9.1: dev: true resolution: - integrity: sha512-V3WyEc8ZyAuOQ2fpFuTuYYOd2tV4NePeSdxaHYgYAOs7ERLxlcFi2XsmgI5LJFdAUmJKXsg8jaIiVTkTHQygQw== - /@preact/async-loader/3.0.1_preact@10.5.12: + integrity: sha512-DvJbbn3dUgMxDnJLH+RZQPnXak1h4ZVYQ7CWiFWjQwBFkVajT4rfw2PdpHLTSTwxrYfnoEXkuBiwkDm6tPMQeA== + /@preact/async-loader/3.0.1_preact@10.5.13: dependencies: kleur: 4.1.4 loader-utils: 2.0.0 - preact: 10.5.12 + preact: 10.5.13 dev: true engines: node: '>=8' @@ -1830,9 +1863,9 @@ packages: preact: '>= 10.0.0' resolution: integrity: sha512-BoUN24hxEfAQYnWjliAmkZLuliv+ONQi7AWn+/+VOJHTIHmbFiXrvmSxITf7PDkKiK0a5xy4OErZtVVLlk96Tg== - /@prefresh/core/0.8.1_preact@10.5.12: + /@prefresh/core/0.8.1_preact@10.5.13: dependencies: - preact: 10.5.12 + preact: 10.5.13 dev: true peerDependencies: preact: ^10.0.0 @@ -1842,11 +1875,11 @@ packages: dev: true resolution: integrity: sha512-9kLzPWN4teeiKuc+Rle3SF/hyx5lzo35X4rHr+kQXnJT+BaEb1ymDWIHGkv85xjnw8+l6I1r1H7JB4BHOMJfmg== - /@prefresh/webpack/1.1.0_preact@10.5.12+webpack@4.46.0: + /@prefresh/webpack/1.1.0_preact@10.5.13+webpack@4.46.0: dependencies: - '@prefresh/core': 0.8.1_preact@10.5.12 + '@prefresh/core': 0.8.1_preact@10.5.13 '@prefresh/utils': 0.3.1 - preact: 10.5.12 + preact: 10.5.13 webpack: 4.46.0 dev: true peerDependencies: @@ -1895,7 +1928,7 @@ packages: rollup: ^1.20.0||^2.0.0 resolution: integrity: sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q== - /@rollup/plugin-replace/2.3.4_rollup@1.32.1: + /@rollup/plugin-replace/2.4.1_rollup@1.32.1: dependencies: '@rollup/pluginutils': 3.1.0_rollup@1.32.1 magic-string: 0.25.7 @@ -1904,7 +1937,7 @@ packages: peerDependencies: rollup: ^1.20.0 || ^2.0.0 resolution: - integrity: sha512-waBhMzyAtjCL1GwZes2jaE9MjuQ/DQF2BatH3fRivUF3z0JBFrU0U6iBNC/4WR+2rLKhaAhPWDNPYp4mI6RqdQ== + integrity: sha512-XwC1oK5rrtRJ0tn1ioLHS6OV5JTluJF7QE1J/q1hN3bquwjnVxjtMyY9iCnoyH9DQbf92CxajB3o98wZbP3oAQ== /@rollup/pluginutils/3.1.0_rollup@1.32.1: dependencies: '@types/estree': 0.0.39 @@ -1936,20 +1969,20 @@ packages: dev: true resolution: integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA== - /@storybook/addon-a11y/6.1.18: - dependencies: - '@storybook/addons': 6.1.18 - '@storybook/api': 6.1.18 - '@storybook/channels': 6.1.18 - '@storybook/client-api': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/components': 6.1.18 - '@storybook/core-events': 6.1.18 - '@storybook/theming': 6.1.18 - axe-core: 4.1.2 - core-js: 3.8.3 + /@storybook/addon-a11y/6.1.21: + dependencies: + '@storybook/addons': 6.1.21 + '@storybook/api': 6.1.21 + '@storybook/channels': 6.1.21 + '@storybook/client-api': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/components': 6.1.21 + '@storybook/core-events': 6.1.21 + '@storybook/theming': 6.1.21 + axe-core: 4.1.3 + core-js: 3.9.1 global: 4.4.0 - lodash: 4.17.20 + lodash: 4.17.21 react-sizeme: 2.6.12 regenerator-runtime: 0.13.7 ts-dedent: 2.0.0 @@ -1964,19 +1997,19 @@ packages: react-dom: optional: true resolution: - integrity: sha512-zaIHwGU5vluDWYmthoF0TQYpoLdL1gX1kT/3kCmo2lFNwGyr0HewX3aar7HAImsUn/s3ksweZrW5iv394bDK8w== - /@storybook/addon-actions/6.1.18: + integrity: sha512-FTHQ0QdPhL+0D/E/og/xkT6tIEEOSCgCV+eX9UcDn3shnxVAHEHbqJ7Yf1fF5B/nRx+ptY57c9O64vIFd7UMHg== + /@storybook/addon-actions/6.1.21: dependencies: - '@storybook/addons': 6.1.18 - '@storybook/api': 6.1.18 - '@storybook/client-api': 6.1.18 - '@storybook/components': 6.1.18 - '@storybook/core-events': 6.1.18 - '@storybook/theming': 6.1.18 - core-js: 3.8.3 + '@storybook/addons': 6.1.21 + '@storybook/api': 6.1.21 + '@storybook/client-api': 6.1.21 + '@storybook/components': 6.1.21 + '@storybook/core-events': 6.1.21 + '@storybook/theming': 6.1.21 + core-js: 3.9.1 fast-deep-equal: 3.1.3 global: 4.4.0 - lodash: 4.17.20 + lodash: 4.17.21 polished: 3.7.1 prop-types: 15.7.2 react-inspector: 5.1.0 @@ -1994,16 +2027,16 @@ packages: react-dom: optional: true resolution: - integrity: sha512-05p52RWst3jS5txwqplLZFWuZ89PMtsHojxs4rWRQ6mrgPwiTE0MUl+S1wMihabLm9CYUUJ0/41QNb2Uv0+hhw== - /@storybook/addon-backgrounds/6.1.18: + integrity: sha512-H+nhSgK3X5L+JfArsC9ufvgJzQwPN9UXBxhMl74faEDCo9RGmq9ywNcjn9XlZGGnJ3jCaYrI/T1u0J7F6PBrTA== + /@storybook/addon-backgrounds/6.1.21: dependencies: - '@storybook/addons': 6.1.18 - '@storybook/api': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/components': 6.1.18 - '@storybook/core-events': 6.1.18 - '@storybook/theming': 6.1.18 - core-js: 3.8.3 + '@storybook/addons': 6.1.21 + '@storybook/api': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/components': 6.1.21 + '@storybook/core-events': 6.1.21 + '@storybook/theming': 6.1.21 + core-js: 3.9.1 global: 4.4.0 memoizerific: 1.11.3 regenerator-runtime: 0.13.7 @@ -2019,16 +2052,16 @@ packages: react-dom: optional: true resolution: - integrity: sha512-8qgA1oKyplJQNtdTsf88zxa/q+YN25C0VCRe8HoL1r5gE7n7qf0bQofq+aMv11upbVNxdFXcoABEyiq/CfTX0g== - /@storybook/addon-controls/6.1.18: + integrity: sha512-4kJB6UcrqOo8fjm1BnfEOvw8ysPSfzIn2j5Q7h3WzoQF0VbU62+EQLTznluFfMjJ1I2FMCTz8YcwDOZn1FNlig== + /@storybook/addon-controls/6.1.21: dependencies: - '@storybook/addons': 6.1.18 - '@storybook/api': 6.1.18 - '@storybook/client-api': 6.1.18 - '@storybook/components': 6.1.18 - '@storybook/node-logger': 6.1.18 - '@storybook/theming': 6.1.18 - core-js: 3.8.3 + '@storybook/addons': 6.1.21 + '@storybook/api': 6.1.21 + '@storybook/client-api': 6.1.21 + '@storybook/components': 6.1.21 + '@storybook/node-logger': 6.1.21 + '@storybook/theming': 6.1.21 + core-js: 3.9.1 ts-dedent: 2.0.0 dev: true peerDependencies: @@ -2040,42 +2073,42 @@ packages: react-dom: optional: true resolution: - integrity: sha512-I3dI6L5up03Uiw1RMVN0HVUgHlfN4CTgI8tex6L49dERUlcDSrfq417DXGvq8ipxHUnb/+0CVYkJ7p6TWzc3yQ== - /@storybook/addon-docs/6.1.18_f75097cf4d02f5e06048775a3dabe18b: + integrity: sha512-IJgZWD2E9eLKj8DJLA9lT63N4jPfVneFJ05gnPco01ZJCEiDAo7babP5Ns2UTJDUaQEtX0m04UoIkidcteWKsA== + /@storybook/addon-docs/6.1.21_e3b524194e2d8f70e24a30575473f1b7: dependencies: - '@babel/core': 7.12.16 - '@babel/generator': 7.12.15 - '@babel/parser': 7.12.16 - '@babel/plugin-transform-react-jsx': 7.12.16_@babel+core@7.12.16 - '@babel/preset-env': 7.12.16_@babel+core@7.12.16 + '@babel/core': 7.13.10 + '@babel/generator': 7.13.9 + '@babel/parser': 7.13.11 + '@babel/plugin-transform-react-jsx': 7.12.17_@babel+core@7.13.10 + '@babel/preset-env': 7.13.10_@babel+core@7.13.10 '@jest/transform': 26.6.2 '@mdx-js/loader': 1.6.22 '@mdx-js/mdx': 1.6.22 '@mdx-js/react': 1.6.22 - '@storybook/addons': 6.1.18 - '@storybook/api': 6.1.18 - '@storybook/client-api': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/components': 6.1.18 - '@storybook/core': 6.1.18_typescript@4.1.5 - '@storybook/core-events': 6.1.18 + '@storybook/addons': 6.1.21 + '@storybook/api': 6.1.21 + '@storybook/client-api': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/components': 6.1.21 + '@storybook/core': 6.1.21_typescript@4.2.3 + '@storybook/core-events': 6.1.21 '@storybook/csf': 0.0.1 - '@storybook/node-logger': 6.1.18 - '@storybook/postinstall': 6.1.18 - '@storybook/source-loader': 6.1.18 - '@storybook/theming': 6.1.18 + '@storybook/node-logger': 6.1.21 + '@storybook/postinstall': 6.1.21 + '@storybook/source-loader': 6.1.21 + '@storybook/theming': 6.1.21 acorn: 7.4.1 acorn-jsx: 5.3.1_acorn@7.4.1 acorn-walk: 7.2.0 - babel-loader: 8.2.2_@babel+core@7.12.16 - core-js: 3.8.3 + babel-loader: 8.2.2_@babel+core@7.13.10 + core-js: 3.9.1 doctrine: 3.0.0 escodegen: 1.14.3 fast-deep-equal: 3.1.3 global: 4.4.0 html-tags: 3.1.0 js-string-escape: 1.0.1 - lodash: 4.17.20 + lodash: 4.17.21 prettier: 2.0.5 prop-types: 15.7.2 react-element-to-jsx-string: 14.3.2 @@ -2086,7 +2119,7 @@ packages: util-deprecate: 1.0.2 dev: true peerDependencies: - '@storybook/vue': 6.1.18 + '@storybook/vue': 6.1.21 babel-loader: ^8.0.0 react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -2108,27 +2141,27 @@ packages: webpack: optional: true resolution: - integrity: sha512-7aTKD5+WULiMQ9zBqQ81sHSNBcayhFZWfH19P/ikR3UqBj1gsWjNH8l8vGVbaJiV+z53pmnnGfCYGq1HkL9oCA== - /@storybook/addon-essentials/6.1.18_ac9545e36b33c9a18485afb60d9dc47a: - dependencies: - '@babel/core': 7.12.16 - '@storybook/addon-actions': 6.1.18 - '@storybook/addon-backgrounds': 6.1.18 - '@storybook/addon-controls': 6.1.18 - '@storybook/addon-docs': 6.1.18_f75097cf4d02f5e06048775a3dabe18b - '@storybook/addon-toolbars': 6.1.18 - '@storybook/addon-viewport': 6.1.18 - '@storybook/addons': 6.1.18 - '@storybook/api': 6.1.18 - '@storybook/node-logger': 6.1.18 - babel-loader: 8.2.2_@babel+core@7.12.16 - core-js: 3.8.3 + integrity: sha512-MvTmxrOSo+zZ5MaMx9LVWM8DlvVHeryCJKPJx8BYCEN38r8mIK7uCFYok8oMPmACrVe0MfXOdJCm1HKkBKjsMg== + /@storybook/addon-essentials/6.1.21_3cdc1a633f41b3bfee032462d333a1b7: + dependencies: + '@babel/core': 7.13.10 + '@storybook/addon-actions': 6.1.21 + '@storybook/addon-backgrounds': 6.1.21 + '@storybook/addon-controls': 6.1.21 + '@storybook/addon-docs': 6.1.21_e3b524194e2d8f70e24a30575473f1b7 + '@storybook/addon-toolbars': 6.1.21 + '@storybook/addon-viewport': 6.1.21 + '@storybook/addons': 6.1.21 + '@storybook/api': 6.1.21 + '@storybook/node-logger': 6.1.21 + babel-loader: 8.2.2_@babel+core@7.13.10 + core-js: 3.9.1 regenerator-runtime: 0.13.7 ts-dedent: 2.0.0 dev: true peerDependencies: '@babel/core': ^7.9.6 - '@storybook/vue': 6.1.18 + '@storybook/vue': 6.1.21 babel-loader: ^8.0.0 react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -2144,16 +2177,16 @@ packages: webpack: optional: true resolution: - integrity: sha512-c+/wM8ZHm2bv1penZJpbpDmdm7HQUxXadLKI/jtyW/87pc3yhFLZZDwPeoMtJDI1pVfWOO2IOP4LiX9cRf53uQ== - /@storybook/addon-links/6.1.18: + integrity: sha512-kdQ/hnfwwodWVFvMdvSbhOyLv/cUJyhgVRyIamrURP9I0OlWhpOAHhwMjAT2KKceutN3UjNpSCqFNSL4dMu25g== + /@storybook/addon-links/6.1.21: dependencies: - '@storybook/addons': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/core-events': 6.1.18 + '@storybook/addons': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/core-events': 6.1.21 '@storybook/csf': 0.0.1 - '@storybook/router': 6.1.18 - '@types/qs': 6.9.5 - core-js: 3.8.3 + '@storybook/router': 6.1.21 + '@types/qs': 6.9.6 + core-js: 3.9.1 global: 4.4.0 prop-types: 15.7.2 qs: 6.9.6 @@ -2169,14 +2202,14 @@ packages: react-dom: optional: true resolution: - integrity: sha512-FgDxmkpHT+3dq/XT2zU77mdSCxTqQVR0ivdFZNXQ8bATbQg7byp7YOGwy3fqMBYYdQDp9K/VStc3YLpbo+R49g== - /@storybook/addon-toolbars/6.1.18: + integrity: sha512-DFPK6aYs9VIs1tO0PJ+mBwg64ZLv6NcVwFJ083ghCj/hR+0+3NRox+oRHXCWq7RHtnJeU4VKEiRx2EpE9L9Bkg== + /@storybook/addon-toolbars/6.1.21: dependencies: - '@storybook/addons': 6.1.18 - '@storybook/api': 6.1.18 - '@storybook/client-api': 6.1.18 - '@storybook/components': 6.1.18 - core-js: 3.8.3 + '@storybook/addons': 6.1.21 + '@storybook/api': 6.1.21 + '@storybook/client-api': 6.1.21 + '@storybook/components': 6.1.21 + core-js: 3.9.1 dev: true peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -2187,16 +2220,16 @@ packages: react-dom: optional: true resolution: - integrity: sha512-+a/H80OJ+2eCymGLlvMUmGh3AVpy5bGsw5b4AROvz1iYyYoMEJz0/Bi+VwU6bjHXn8I4Aqj727Al4XNYZtFU+A== - /@storybook/addon-viewport/6.1.18: + integrity: sha512-89NtiqLT3ltb7Jb7rAug7jnWIDh6SxXa9i3mOoKEIcvuRJEmxGLF1Z79A+zXOJOKBUEEUgfJCtVS2lixakgwKA== + /@storybook/addon-viewport/6.1.21: dependencies: - '@storybook/addons': 6.1.18 - '@storybook/api': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/components': 6.1.18 - '@storybook/core-events': 6.1.18 - '@storybook/theming': 6.1.18 - core-js: 3.8.3 + '@storybook/addons': 6.1.21 + '@storybook/api': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/components': 6.1.21 + '@storybook/core-events': 6.1.21 + '@storybook/theming': 6.1.21 + core-js: 3.9.1 global: 4.4.0 memoizerific: 1.11.3 prop-types: 15.7.2 @@ -2211,16 +2244,16 @@ packages: react-dom: optional: true resolution: - integrity: sha512-Sf3RhdAekmfkrcU8gFbgJFCEuo4uJmGIPaHIBuBUYxc/IT1Iz7b4k6WwPh+Dd0K6hro/2ZeWSiFTM4af17uNZw== - /@storybook/addons/6.1.18: + integrity: sha512-FrQk0BXCI4HdbBn9+8b+Cp2HvsweZkgW/joKfcF2vVLoasUBB4bl+9uU3HV/3a08glgjPl24caDMPgoRKS90WQ== + /@storybook/addons/6.1.21: dependencies: - '@storybook/api': 6.1.18 - '@storybook/channels': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/core-events': 6.1.18 - '@storybook/router': 6.1.18 - '@storybook/theming': 6.1.18 - core-js: 3.8.3 + '@storybook/api': 6.1.21 + '@storybook/channels': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/core-events': 6.1.21 + '@storybook/router': 6.1.21 + '@storybook/theming': 6.1.21 + core-js: 3.9.1 global: 4.4.0 regenerator-runtime: 0.13.7 dev: true @@ -2228,16 +2261,16 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-sI/ifk3RLswItRUejt4tCi3IMS9oBUd2NK4Kns1PF+x4NIry/yuOeE/de3Dz5tPjJhg9jJuBDLhxEaqRFq3Uzg== - /@storybook/addons/6.1.18_react-dom@16.13.1+react@16.13.1: + integrity: sha512-xo5TGu9EZVCqgh3D1veVnfuGzyKDWWsvOMo18phVqRxj21G3/+hScVyfIYwNTv7Ys5/Ahp9JxJUMXL3V3ny+tw== + /@storybook/addons/6.1.21_react-dom@16.13.1+react@16.13.1: dependencies: - '@storybook/api': 6.1.18_react-dom@16.13.1+react@16.13.1 - '@storybook/channels': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/core-events': 6.1.18 - '@storybook/router': 6.1.18_react-dom@16.13.1+react@16.13.1 - '@storybook/theming': 6.1.18_react-dom@16.13.1+react@16.13.1 - core-js: 3.8.3 + '@storybook/api': 6.1.21_react-dom@16.13.1+react@16.13.1 + '@storybook/channels': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/core-events': 6.1.21 + '@storybook/router': 6.1.21_react-dom@16.13.1+react@16.13.1 + '@storybook/theming': 6.1.21_react-dom@16.13.1+react@16.13.1 + core-js: 3.9.1 global: 4.4.0 react: 16.13.1 react-dom: 16.13.1_react@16.13.1 @@ -2247,22 +2280,22 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-sI/ifk3RLswItRUejt4tCi3IMS9oBUd2NK4Kns1PF+x4NIry/yuOeE/de3Dz5tPjJhg9jJuBDLhxEaqRFq3Uzg== - /@storybook/api/6.1.18: + integrity: sha512-xo5TGu9EZVCqgh3D1veVnfuGzyKDWWsvOMo18phVqRxj21G3/+hScVyfIYwNTv7Ys5/Ahp9JxJUMXL3V3ny+tw== + /@storybook/api/6.1.21: dependencies: '@reach/router': 1.3.4 - '@storybook/channels': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/core-events': 6.1.18 + '@storybook/channels': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/core-events': 6.1.21 '@storybook/csf': 0.0.1 - '@storybook/router': 6.1.18 + '@storybook/router': 6.1.21 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.1.18 + '@storybook/theming': 6.1.21 '@types/reach__router': 1.3.7 - core-js: 3.8.3 + core-js: 3.9.1 fast-deep-equal: 3.1.3 global: 4.4.0 - lodash: 4.17.20 + lodash: 4.17.21 memoizerific: 1.11.3 regenerator-runtime: 0.13.7 store2: 2.12.0 @@ -2274,22 +2307,22 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-VfntmrMEijkbdNDncpr9bv2RXVn12hCui1YcK3S6bCXnMi/OFp6aO5+jrb/GZqqZzLeVK005N1HTE2Ivq1IBJg== - /@storybook/api/6.1.18_react-dom@16.13.1+react@16.13.1: + integrity: sha512-QjZk70VSXMw/wPPoWdMp5Bl9VmkfmGhIz8PALrFLLEZHjzptpfZE2qkGEEJHG0NAksFUv6NxGki2/632dzR7Ug== + /@storybook/api/6.1.21_react-dom@16.13.1+react@16.13.1: dependencies: '@reach/router': 1.3.4_react-dom@16.13.1+react@16.13.1 - '@storybook/channels': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/core-events': 6.1.18 + '@storybook/channels': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/core-events': 6.1.21 '@storybook/csf': 0.0.1 - '@storybook/router': 6.1.18_react-dom@16.13.1+react@16.13.1 + '@storybook/router': 6.1.21_react-dom@16.13.1+react@16.13.1 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.1.18_react-dom@16.13.1+react@16.13.1 + '@storybook/theming': 6.1.21_react-dom@16.13.1+react@16.13.1 '@types/reach__router': 1.3.7 - core-js: 3.8.3 + core-js: 3.9.1 fast-deep-equal: 3.1.3 global: 4.4.0 - lodash: 4.17.20 + lodash: 4.17.21 memoizerific: 1.11.3 react: 16.13.1 react-dom: 16.13.1_react@16.13.1 @@ -2303,40 +2336,40 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-VfntmrMEijkbdNDncpr9bv2RXVn12hCui1YcK3S6bCXnMi/OFp6aO5+jrb/GZqqZzLeVK005N1HTE2Ivq1IBJg== - /@storybook/channel-postmessage/6.1.18: + integrity: sha512-QjZk70VSXMw/wPPoWdMp5Bl9VmkfmGhIz8PALrFLLEZHjzptpfZE2qkGEEJHG0NAksFUv6NxGki2/632dzR7Ug== + /@storybook/channel-postmessage/6.1.21: dependencies: - '@storybook/channels': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/core-events': 6.1.18 - core-js: 3.8.3 + '@storybook/channels': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/core-events': 6.1.21 + core-js: 3.9.1 global: 4.4.0 qs: 6.9.6 telejson: 5.1.0 dev: true resolution: - integrity: sha512-49Tae2wwY+b2BL6b+Z+tqM/k8pX5ox/SE23ahtWtovrp/OHOYoXrMXTYuU8MA58xqjR4QhB4KjVB5e0V/iQxYQ== - /@storybook/channels/6.1.18: + integrity: sha512-SuI/ffqcPT02VNda32k8V0D4XpLm5bIy8CLIs0OAnQg+zt5KjGBpQBngk3q4EaAiOoAhbMWAQiUzRUXfrgkgXg== + /@storybook/channels/6.1.21: dependencies: - core-js: 3.8.3 + core-js: 3.9.1 ts-dedent: 2.0.0 util-deprecate: 1.0.2 dev: true resolution: - integrity: sha512-XMuHD15B7SWpUJgaTP/6Axa66bykObN1YBcyZ2mOqBVQK4DVf51yI/zp/4ZndgE/MxG5uqVWuOEDOJvSAENREw== - /@storybook/client-api/6.1.18: + integrity: sha512-7WoizMjyHqCyvcWncLexSg9FLPIErWAZL4NvluEthwsHSO2sDybn9mh1pzsFHdYMuTP6ml06Zt9ayWMtIveHDg== + /@storybook/client-api/6.1.21: dependencies: - '@storybook/addons': 6.1.18 - '@storybook/channel-postmessage': 6.1.18 - '@storybook/channels': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/core-events': 6.1.18 + '@storybook/addons': 6.1.21 + '@storybook/channel-postmessage': 6.1.21 + '@storybook/channels': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/core-events': 6.1.21 '@storybook/csf': 0.0.1 - '@types/qs': 6.9.5 + '@types/qs': 6.9.6 '@types/webpack-env': 1.16.0 - core-js: 3.8.3 + core-js: 3.9.1 global: 4.4.0 - lodash: 4.17.20 + lodash: 4.17.21 memoizerific: 1.11.3 qs: 6.9.6 regenerator-runtime: 0.13.7 @@ -2349,20 +2382,20 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-iwHLrirUFM4zQuzrKD+mN14F8/IdpMz4aYRBRDHf/FbG9F0dM27RF8S9a3y7thhAVPiNNT8HJ4YO0ZMTdZ5idg== - /@storybook/client-api/6.1.18_react-dom@16.13.1+react@16.13.1: + integrity: sha512-uLFXQ5z1LLWYnw1w+YUJPzIPRVlwCCvM2Si37aHDZn1F3fnbMg+huEhEqIQ1TTTw3wiJoTeGuShYvqyaiNwq/w== + /@storybook/client-api/6.1.21_react-dom@16.13.1+react@16.13.1: dependencies: - '@storybook/addons': 6.1.18_react-dom@16.13.1+react@16.13.1 - '@storybook/channel-postmessage': 6.1.18 - '@storybook/channels': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/core-events': 6.1.18 + '@storybook/addons': 6.1.21_react-dom@16.13.1+react@16.13.1 + '@storybook/channel-postmessage': 6.1.21 + '@storybook/channels': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/core-events': 6.1.21 '@storybook/csf': 0.0.1 - '@types/qs': 6.9.5 + '@types/qs': 6.9.6 '@types/webpack-env': 1.16.0 - core-js: 3.8.3 + core-js: 3.9.1 global: 4.4.0 - lodash: 4.17.20 + lodash: 4.17.21 memoizerific: 1.11.3 qs: 6.9.6 react: 16.13.1 @@ -2377,27 +2410,27 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-iwHLrirUFM4zQuzrKD+mN14F8/IdpMz4aYRBRDHf/FbG9F0dM27RF8S9a3y7thhAVPiNNT8HJ4YO0ZMTdZ5idg== - /@storybook/client-logger/6.1.18: + integrity: sha512-uLFXQ5z1LLWYnw1w+YUJPzIPRVlwCCvM2Si37aHDZn1F3fnbMg+huEhEqIQ1TTTw3wiJoTeGuShYvqyaiNwq/w== + /@storybook/client-logger/6.1.21: dependencies: - core-js: 3.8.3 + core-js: 3.9.1 global: 4.4.0 dev: true resolution: - integrity: sha512-o+lXoi61SLgNbDGrfDJsUdkbc2eDzNL1DMkSenksis7kiblOsBzO+7S0UiguyQ/gku2wYyksGx71A/TzE5JsgQ== - /@storybook/components/6.1.18: + integrity: sha512-QJV+gnVM2fQ4M7lSkRLCXkOw/RU+aEtUefo9TAnXxPHK3UGG+DyvLmha6fHGaz9GAcFxyWtgqCyVOhMe03Q35g== + /@storybook/components/6.1.21: dependencies: - '@popperjs/core': 2.7.0 - '@storybook/client-logger': 6.1.18 + '@popperjs/core': 2.9.1 + '@storybook/client-logger': 6.1.21 '@storybook/csf': 0.0.1 - '@storybook/theming': 6.1.18 + '@storybook/theming': 6.1.21 '@types/overlayscrollbars': 1.12.0 '@types/react-color': 3.0.4 '@types/react-syntax-highlighter': 11.0.4 - core-js: 3.8.3 + core-js: 3.9.1 fast-deep-equal: 3.1.3 global: 4.4.0 - lodash: 4.17.20 + lodash: 4.17.21 markdown-to-jsx: 6.11.4 memoizerific: 1.11.3 overlayscrollbars: 1.13.1 @@ -2405,27 +2438,28 @@ packages: react-color: 2.19.3 react-popper-tooltip: 3.1.1 react-syntax-highlighter: 13.5.3 - react-textarea-autosize: 8.3.1 + react-textarea-autosize: 8.3.2 + regenerator-runtime: 0.13.7 ts-dedent: 2.0.0 dev: true peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-YUF/JpkZ6ghcxm26V6zOXl4iS2OOhNhfCp1CxVBu+71k78nziOQdxBmT0aG0LXzZ+WSF8pMiXzvBTrei+YTxyg== - /@storybook/components/6.1.18_react-dom@16.13.1+react@16.13.1: + integrity: sha512-2NjkyS1yeYXlRY7azt88woqd6eqJA00oloIxgMAFLVpRmvFxoHalY61wNrvxl2QSu9cNofp984AbGc8gPbizBA== + /@storybook/components/6.1.21_react-dom@16.13.1+react@16.13.1: dependencies: - '@popperjs/core': 2.7.0 - '@storybook/client-logger': 6.1.18 + '@popperjs/core': 2.9.1 + '@storybook/client-logger': 6.1.21 '@storybook/csf': 0.0.1 - '@storybook/theming': 6.1.18_react-dom@16.13.1+react@16.13.1 + '@storybook/theming': 6.1.21_react-dom@16.13.1+react@16.13.1 '@types/overlayscrollbars': 1.12.0 '@types/react-color': 3.0.4 '@types/react-syntax-highlighter': 11.0.4 - core-js: 3.8.3 + core-js: 3.9.1 fast-deep-equal: 3.1.3 global: 4.4.0 - lodash: 4.17.20 + lodash: 4.17.21 markdown-to-jsx: 6.11.4_react@16.13.1 memoizerific: 1.11.3 overlayscrollbars: 1.13.1 @@ -2435,76 +2469,77 @@ packages: react-dom: 16.13.1_react@16.13.1 react-popper-tooltip: 3.1.1_react-dom@16.13.1+react@16.13.1 react-syntax-highlighter: 13.5.3_react@16.13.1 - react-textarea-autosize: 8.3.1_react@16.13.1 + react-textarea-autosize: 8.3.2_react@16.13.1 + regenerator-runtime: 0.13.7 ts-dedent: 2.0.0 dev: true peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-YUF/JpkZ6ghcxm26V6zOXl4iS2OOhNhfCp1CxVBu+71k78nziOQdxBmT0aG0LXzZ+WSF8pMiXzvBTrei+YTxyg== - /@storybook/core-events/6.1.18: - dependencies: - core-js: 3.8.3 - dev: true - resolution: - integrity: sha512-FdhDTsL8u9759jJ4nDthen5x8+mpmdMXIXat1HYL1RNgjXZFRUiwcWha8ELQFVTgpjJ9U5ZTF8C5B0B1W47Etw== - /@storybook/core/6.1.18_47ca5a4291666cb40874093ca99289c8: - dependencies: - '@babel/core': 7.12.16 - '@babel/plugin-proposal-class-properties': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-decorators': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-export-default-from': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-object-rest-spread': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-optional-chaining': 7.12.16_@babel+core@7.12.16 - '@babel/plugin-proposal-private-methods': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-transform-arrow-functions': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-block-scoping': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-classes': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-destructuring': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-for-of': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-parameters': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-spread': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-template-literals': 7.12.13_@babel+core@7.12.16 - '@babel/preset-env': 7.12.16_@babel+core@7.12.16 - '@babel/preset-react': 7.12.13_@babel+core@7.12.16 - '@babel/preset-typescript': 7.12.16_@babel+core@7.12.16 - '@babel/register': 7.12.13_@babel+core@7.12.16 - '@storybook/addons': 6.1.18_react-dom@16.13.1+react@16.13.1 - '@storybook/api': 6.1.18_react-dom@16.13.1+react@16.13.1 - '@storybook/channel-postmessage': 6.1.18 - '@storybook/channels': 6.1.18 - '@storybook/client-api': 6.1.18_react-dom@16.13.1+react@16.13.1 - '@storybook/client-logger': 6.1.18 - '@storybook/components': 6.1.18_react-dom@16.13.1+react@16.13.1 - '@storybook/core-events': 6.1.18 + integrity: sha512-2NjkyS1yeYXlRY7azt88woqd6eqJA00oloIxgMAFLVpRmvFxoHalY61wNrvxl2QSu9cNofp984AbGc8gPbizBA== + /@storybook/core-events/6.1.21: + dependencies: + core-js: 3.9.1 + dev: true + resolution: + integrity: sha512-KWqnh1C7M1pT//WfQb3AD60yTR8jL48AfaeLGto2gO9VK7VVgj/EGsrXZP/GTL90ygyExbbBI5gkr7EBTu/HYw== + /@storybook/core/6.1.21_1c0c7f0ed5610b0823907d2ef88d6cdb: + dependencies: + '@babel/core': 7.13.10 + '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-proposal-decorators': 7.13.5_@babel+core@7.13.10 + '@babel/plugin-proposal-export-default-from': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-proposal-object-rest-spread': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-proposal-optional-chaining': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-proposal-private-methods': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-transform-arrow-functions': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-block-scoping': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-classes': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-destructuring': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-for-of': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-parameters': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-spread': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-template-literals': 7.13.0_@babel+core@7.13.10 + '@babel/preset-env': 7.13.10_@babel+core@7.13.10 + '@babel/preset-react': 7.12.13_@babel+core@7.13.10 + '@babel/preset-typescript': 7.13.0_@babel+core@7.13.10 + '@babel/register': 7.13.8_@babel+core@7.13.10 + '@storybook/addons': 6.1.21_react-dom@16.13.1+react@16.13.1 + '@storybook/api': 6.1.21_react-dom@16.13.1+react@16.13.1 + '@storybook/channel-postmessage': 6.1.21 + '@storybook/channels': 6.1.21 + '@storybook/client-api': 6.1.21_react-dom@16.13.1+react@16.13.1 + '@storybook/client-logger': 6.1.21 + '@storybook/components': 6.1.21_react-dom@16.13.1+react@16.13.1 + '@storybook/core-events': 6.1.21 '@storybook/csf': 0.0.1 - '@storybook/node-logger': 6.1.18 - '@storybook/router': 6.1.18_react-dom@16.13.1+react@16.13.1 + '@storybook/node-logger': 6.1.21 + '@storybook/router': 6.1.21_react-dom@16.13.1+react@16.13.1 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.1.18_react-dom@16.13.1+react@16.13.1 - '@storybook/ui': 6.1.18_react-dom@16.13.1+react@16.13.1 + '@storybook/theming': 6.1.21_react-dom@16.13.1+react@16.13.1 + '@storybook/ui': 6.1.21_react-dom@16.13.1+react@16.13.1 '@types/glob-base': 0.3.0 '@types/micromatch': 4.0.1 '@types/node-fetch': 2.5.8 airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.14 autoprefixer: 9.8.6 - babel-loader: 8.2.2_8040e036044e91f985695d7556bc5dad + babel-loader: 8.2.2_c68979f8893c692eeb1a0b70960ae2d4 babel-plugin-emotion: 10.2.2 babel-plugin-macros: 2.8.0 babel-preset-minify: 0.5.1 better-opn: 2.1.1 boxen: 4.2.0 - case-sensitive-paths-webpack-plugin: 2.3.0 + case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.0 cli-table3: 0.6.0 commander: 5.1.0 - core-js: 3.8.3 - cpy: 8.1.1 + core-js: 3.9.1 + 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 @@ -2519,7 +2554,7 @@ packages: glob-base: 0.3.0 glob-promise: 3.4.0_glob@7.1.6 global: 4.4.0 - html-webpack-plugin: 4.5.1_webpack@4.46.0 + html-webpack-plugin: 4.5.2_webpack@4.46.0 inquirer: 7.3.3 interpret: 2.2.0 ip: 1.1.5 @@ -2528,14 +2563,14 @@ packages: micromatch: 4.0.2 node-fetch: 2.6.1 pkg-dir: 4.2.0 - pnp-webpack-plugin: 1.6.4_typescript@4.1.5 + pnp-webpack-plugin: 1.6.4_typescript@4.2.3 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 3.0.0 pretty-hrtime: 1.0.3 qs: 6.9.6 raw-loader: 4.0.2_webpack@4.46.0 react: 16.13.1 - react-dev-utils: 10.2.1 + react-dev-utils: 11.0.4 react-dom: 16.13.1_react@16.13.1 regenerator-runtime: 0.13.7 resolve-from: 5.0.0 @@ -2546,7 +2581,6 @@ packages: telejson: 5.1.0 terser-webpack-plugin: 3.1.0_webpack@4.46.0 ts-dedent: 2.0.0 - typescript: 4.1.5 unfetch: 4.2.0 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 util-deprecate: 1.0.2 @@ -2561,63 +2595,63 @@ packages: react-dom: ^16.8.0 || ^17.0.0 typescript: '*' resolution: - integrity: sha512-FJAJX39HvyL85riUBjRaiyKmbyppNmzZ4dU/hZpinmXHJDk9d857lmkjSz96N24vwRc5uinsodaPs+ccIUONNg== - /@storybook/core/6.1.18_typescript@4.1.5: - dependencies: - '@babel/core': 7.12.16 - '@babel/plugin-proposal-class-properties': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-decorators': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-export-default-from': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-object-rest-spread': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-optional-chaining': 7.12.16_@babel+core@7.12.16 - '@babel/plugin-proposal-private-methods': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-transform-arrow-functions': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-block-scoping': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-classes': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-destructuring': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-for-of': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-parameters': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-spread': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-template-literals': 7.12.13_@babel+core@7.12.16 - '@babel/preset-env': 7.12.16_@babel+core@7.12.16 - '@babel/preset-react': 7.12.13_@babel+core@7.12.16 - '@babel/preset-typescript': 7.12.16_@babel+core@7.12.16 - '@babel/register': 7.12.13_@babel+core@7.12.16 - '@storybook/addons': 6.1.18 - '@storybook/api': 6.1.18 - '@storybook/channel-postmessage': 6.1.18 - '@storybook/channels': 6.1.18 - '@storybook/client-api': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/components': 6.1.18 - '@storybook/core-events': 6.1.18 + integrity: sha512-ITqSid3VVL5/fkx7Wwu7QfD2Y5xjl3V6p7yUpLSzP8GpBnCHKDvJ4pFJUdJlGQ0mnGz6ACa0qVnSc+V0hiy1sA== + /@storybook/core/6.1.21_typescript@4.2.3: + dependencies: + '@babel/core': 7.13.10 + '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-proposal-decorators': 7.13.5_@babel+core@7.13.10 + '@babel/plugin-proposal-export-default-from': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-proposal-object-rest-spread': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-proposal-optional-chaining': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-proposal-private-methods': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-transform-arrow-functions': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-block-scoping': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-classes': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-destructuring': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-for-of': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-parameters': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-spread': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-template-literals': 7.13.0_@babel+core@7.13.10 + '@babel/preset-env': 7.13.10_@babel+core@7.13.10 + '@babel/preset-react': 7.12.13_@babel+core@7.13.10 + '@babel/preset-typescript': 7.13.0_@babel+core@7.13.10 + '@babel/register': 7.13.8_@babel+core@7.13.10 + '@storybook/addons': 6.1.21 + '@storybook/api': 6.1.21 + '@storybook/channel-postmessage': 6.1.21 + '@storybook/channels': 6.1.21 + '@storybook/client-api': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/components': 6.1.21 + '@storybook/core-events': 6.1.21 '@storybook/csf': 0.0.1 - '@storybook/node-logger': 6.1.18 - '@storybook/router': 6.1.18 + '@storybook/node-logger': 6.1.21 + '@storybook/router': 6.1.21 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.1.18 - '@storybook/ui': 6.1.18 + '@storybook/theming': 6.1.21 + '@storybook/ui': 6.1.21 '@types/glob-base': 0.3.0 '@types/micromatch': 4.0.1 '@types/node-fetch': 2.5.8 airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.14 autoprefixer: 9.8.6 - babel-loader: 8.2.2_8040e036044e91f985695d7556bc5dad + babel-loader: 8.2.2_c68979f8893c692eeb1a0b70960ae2d4 babel-plugin-emotion: 10.2.2 babel-plugin-macros: 2.8.0 babel-preset-minify: 0.5.1 better-opn: 2.1.1 boxen: 4.2.0 - case-sensitive-paths-webpack-plugin: 2.3.0 + case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.0 cli-table3: 0.6.0 commander: 5.1.0 - core-js: 3.8.3 - cpy: 8.1.1 + core-js: 3.9.1 + 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 @@ -2632,7 +2666,7 @@ packages: glob-base: 0.3.0 glob-promise: 3.4.0_glob@7.1.6 global: 4.4.0 - html-webpack-plugin: 4.5.1_webpack@4.46.0 + html-webpack-plugin: 4.5.2_webpack@4.46.0 inquirer: 7.3.3 interpret: 2.2.0 ip: 1.1.5 @@ -2641,13 +2675,13 @@ packages: micromatch: 4.0.2 node-fetch: 2.6.1 pkg-dir: 4.2.0 - pnp-webpack-plugin: 1.6.4_typescript@4.1.5 + pnp-webpack-plugin: 1.6.4_typescript@4.2.3 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 3.0.0 pretty-hrtime: 1.0.3 qs: 6.9.6 raw-loader: 4.0.2_webpack@4.46.0 - react-dev-utils: 10.2.1 + react-dev-utils: 11.0.4 regenerator-runtime: 0.13.7 resolve-from: 5.0.0 serve-favicon: 2.5.0 @@ -2671,39 +2705,39 @@ packages: react-dom: ^16.8.0 || ^17.0.0 typescript: '*' resolution: - integrity: sha512-FJAJX39HvyL85riUBjRaiyKmbyppNmzZ4dU/hZpinmXHJDk9d857lmkjSz96N24vwRc5uinsodaPs+ccIUONNg== + integrity: sha512-ITqSid3VVL5/fkx7Wwu7QfD2Y5xjl3V6p7yUpLSzP8GpBnCHKDvJ4pFJUdJlGQ0mnGz6ACa0qVnSc+V0hiy1sA== /@storybook/csf/0.0.1: dependencies: - lodash: 4.17.20 + lodash: 4.17.21 dev: true resolution: integrity: sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw== - /@storybook/node-logger/6.1.18: + /@storybook/node-logger/6.1.21: dependencies: '@types/npmlog': 4.1.2 chalk: 4.1.0 - core-js: 3.8.3 + core-js: 3.9.1 npmlog: 4.1.2 pretty-hrtime: 1.0.3 dev: true resolution: - integrity: sha512-gsiHQVratKBSoP11IqU2Td5W+KUc0qg+czqhzzp1JNMJ25/xBtCJ8MAIOX5JFhovzvB7H0j8y8VNF1YgmcmOQg== - /@storybook/postinstall/6.1.18: + integrity: sha512-wQZZw4n1PG3kGOsczWCBC6+8RagYkrGYDqsVOpUcs5shGbPg5beCXDuzP4nxz2IlsoP9ZtTSaX741H791OIOjA== + /@storybook/postinstall/6.1.21: dependencies: - core-js: 3.8.3 + core-js: 3.9.1 dev: true resolution: - integrity: sha512-QVj3VbgdCPHO+nrB1zOyEwdr5pLpMyf257Sqk+wR3pcEdewEYoVMP9sxUULBlQqPYSzPVzlZzgyAzGWZlCE/jA== - /@storybook/preact/6.1.18_633e2c5a26ee585db6941d5c18fc6687: + integrity: sha512-mg3fNqdQYiz6ivQIU1WMKqtqrFt5GySmsPCar3Y+xOdMClmpx6pZYcpiN782h8CIFA1XnldGR3TKVtWP848qOg== + /@storybook/preact/6.1.21_33d2f29cc99c3064cf15374ee3b35a2a: dependencies: - '@babel/core': 7.12.16 - '@babel/plugin-transform-react-jsx': 7.12.16_@babel+core@7.12.16 - '@storybook/addons': 6.1.18_react-dom@16.13.1+react@16.13.1 - '@storybook/core': 6.1.18_47ca5a4291666cb40874093ca99289c8 + '@babel/core': 7.13.10 + '@babel/plugin-transform-react-jsx': 7.12.17_@babel+core@7.13.10 + '@storybook/addons': 6.1.21_react-dom@16.13.1+react@16.13.1 + '@storybook/core': 6.1.21_1c0c7f0ed5610b0823907d2ef88d6cdb '@types/webpack-env': 1.16.0 - core-js: 3.8.3 + core-js: 3.9.1 global: 4.4.0 - preact: 10.5.12 + preact: 10.5.13 react: 16.13.1 react-dom: 16.13.1_react@16.13.1 regenerator-runtime: 0.13.7 @@ -2717,7 +2751,7 @@ packages: preact: ^8.0.0||^10.0.0 typescript: '*' resolution: - integrity: sha512-piOmdFWX5EHJCg6mxReMerpAXIUeqnkjFHDP4FcpY4UAXD6XRig9USuopD9W1fxFiGz6b7aHB1iK6n3rn2OUVg== + integrity: sha512-DxrJTsNmXs520S6iDKnBoJoD4XFZoI+c6Qpn2J3u18up7yBmWph7GsmsfyOWHQ9DCY6k75BAD+Gc8c/xAIsxEg== /@storybook/preset-scss/1.0.3_sass-loader@10.1.1: dependencies: sass-loader: 10.1.1_node-sass@5.0.0 @@ -2728,11 +2762,11 @@ packages: style-loader: '*' resolution: integrity: sha512-o9Iz6wxPeNENrQa2mKlsDKynBfqU2uWaRP80HeWp4TkGgf7/x3DVF2O7yi9N0x/PI1qzzTTpxlQ90D62XmpiTw== - /@storybook/router/6.1.18: + /@storybook/router/6.1.21: dependencies: '@reach/router': 1.3.4 '@types/reach__router': 1.3.7 - core-js: 3.8.3 + core-js: 3.9.1 global: 4.4.0 memoizerific: 1.11.3 qs: 6.9.6 @@ -2741,12 +2775,12 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-eY8snYjAESgDdC4sZFJIZ6FTJU4hY1oRqk24nTxhUiEV7U7JAqcXPpz+kaoiAoXnB+H9vXh5MADs9pXS654pBw== - /@storybook/router/6.1.18_react-dom@16.13.1+react@16.13.1: + integrity: sha512-m75WvUhoCBWDVekICAdbkidji/w5hCjHo+M8L13UghpwXWEnyr4/QqvkOb/PcSC8aZzxeMqSCpRQ1o6LWULneg== + /@storybook/router/6.1.21_react-dom@16.13.1+react@16.13.1: dependencies: '@reach/router': 1.3.4_react-dom@16.13.1+react@16.13.1 '@types/reach__router': 1.3.7 - core-js: 3.8.3 + core-js: 3.9.1 global: 4.4.0 memoizerific: 1.11.3 qs: 6.9.6 @@ -2757,10 +2791,10 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-eY8snYjAESgDdC4sZFJIZ6FTJU4hY1oRqk24nTxhUiEV7U7JAqcXPpz+kaoiAoXnB+H9vXh5MADs9pXS654pBw== + integrity: sha512-m75WvUhoCBWDVekICAdbkidji/w5hCjHo+M8L13UghpwXWEnyr4/QqvkOb/PcSC8aZzxeMqSCpRQ1o6LWULneg== /@storybook/semver/7.3.2: dependencies: - core-js: 3.8.3 + core-js: 3.9.1 find-up: 4.1.0 dev: true engines: @@ -2768,16 +2802,16 @@ packages: hasBin: true resolution: integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg== - /@storybook/source-loader/6.1.18: + /@storybook/source-loader/6.1.21: dependencies: - '@storybook/addons': 6.1.18 - '@storybook/client-logger': 6.1.18 + '@storybook/addons': 6.1.21 + '@storybook/client-logger': 6.1.21 '@storybook/csf': 0.0.1 - core-js: 3.8.3 + core-js: 3.9.1 estraverse: 4.3.0 global: 4.4.0 loader-utils: 2.0.0 - lodash: 4.17.20 + lodash: 4.17.21 prettier: 2.0.5 regenerator-runtime: 0.13.7 source-map: 0.7.3 @@ -2786,14 +2820,14 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-Fca8gGqQ5rosXLZpBdqpwItbl7iQ4QZZ5MqJkt7FyEqVX7n4O8WjIiAqNbeCGJnc1keohoGIPWOMt1gXvwZQkA== - /@storybook/theming/6.1.18: + integrity: sha512-eMbmQG3a/7SFxVN+KGJKfk4uxLqQz2Nk95zvHyRvoX15LRyMnFvmdvmULe5vwRev8Npd4AS0EZ37m3jAEcD0ig== + /@storybook/theming/6.1.21: dependencies: '@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.1.18 - core-js: 3.8.3 + '@storybook/client-logger': 6.1.21 + core-js: 3.9.1 deep-object-diff: 1.1.0 emotion-theming: 10.0.27_@emotion+core@10.1.1 global: 4.4.0 @@ -2806,14 +2840,14 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-q97mKSLLnB2LmjzKiNpip7jvvrVPDi+bnYoUCWCt04zuXiaIVU8Bu4i0Y/w3Y3bHqfRbae3gZErFr89Z+f77vA== - /@storybook/theming/6.1.18_react-dom@16.13.1+react@16.13.1: + integrity: sha512-yq7+/mpdljRdSRJYw/In/9tnDGXIUDe//mhyMftFfrB2mq6zi1yAZpowCerWhiDE2ipGkrfzIYx/Sn7bcaXgqg== + /@storybook/theming/6.1.21_react-dom@16.13.1+react@16.13.1: dependencies: '@emotion/core': 10.1.1_react@16.13.1 '@emotion/is-prop-valid': 0.8.8 '@emotion/styled': 10.0.27_88480db83d3b7400155217a2792cf198 - '@storybook/client-logger': 6.1.18 - core-js: 3.8.3 + '@storybook/client-logger': 6.1.21 + core-js: 3.9.1 deep-object-diff: 1.1.0 emotion-theming: 10.0.27_88480db83d3b7400155217a2792cf198 global: 4.4.0 @@ -2828,34 +2862,34 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-q97mKSLLnB2LmjzKiNpip7jvvrVPDi+bnYoUCWCt04zuXiaIVU8Bu4i0Y/w3Y3bHqfRbae3gZErFr89Z+f77vA== - /@storybook/ui/6.1.18: + integrity: sha512-yq7+/mpdljRdSRJYw/In/9tnDGXIUDe//mhyMftFfrB2mq6zi1yAZpowCerWhiDE2ipGkrfzIYx/Sn7bcaXgqg== + /@storybook/ui/6.1.21: dependencies: '@emotion/core': 10.1.1 - '@storybook/addons': 6.1.18 - '@storybook/api': 6.1.18 - '@storybook/channels': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/components': 6.1.18 - '@storybook/core-events': 6.1.18 - '@storybook/router': 6.1.18 + '@storybook/addons': 6.1.21 + '@storybook/api': 6.1.21 + '@storybook/channels': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/components': 6.1.21 + '@storybook/core-events': 6.1.21 + '@storybook/router': 6.1.21 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.1.18 + '@storybook/theming': 6.1.21 '@types/markdown-to-jsx': 6.11.3 copy-to-clipboard: 3.3.1 - core-js: 3.8.3 - core-js-pure: 3.8.3 + core-js: 3.9.1 + core-js-pure: 3.9.1 downshift: 6.1.0 emotion-theming: 10.0.27_@emotion+core@10.1.1 fuse.js: 3.6.1 global: 4.4.0 - lodash: 4.17.20 + lodash: 4.17.21 markdown-to-jsx: 6.11.4 memoizerific: 1.11.3 polished: 3.7.1 qs: 6.9.6 react-draggable: 4.4.3 - react-helmet-async: 1.0.7 + react-helmet-async: 1.0.9 react-hotkeys: 2.0.0 react-sizeme: 2.6.12 regenerator-runtime: 0.13.7 @@ -2866,28 +2900,28 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-EKOja3ji0gHxnKWFBt+nK7xuBOzKTEKJ3+PiW0+QS0jZ18EkR7U7h0U052jNXdiI1c6Sck5n9+gI5EylzN18+Q== - /@storybook/ui/6.1.18_react-dom@16.13.1+react@16.13.1: + integrity: sha512-2nRb5egnSBKbosuR7g5PsuM4XnRLXZUf7TBjwT6eRlomnE2wrWM5DtTLpFeUpDob0SI5hPlOV1xCpPz3XmeyyA== + /@storybook/ui/6.1.21_react-dom@16.13.1+react@16.13.1: dependencies: '@emotion/core': 10.1.1_react@16.13.1 - '@storybook/addons': 6.1.18_react-dom@16.13.1+react@16.13.1 - '@storybook/api': 6.1.18_react-dom@16.13.1+react@16.13.1 - '@storybook/channels': 6.1.18 - '@storybook/client-logger': 6.1.18 - '@storybook/components': 6.1.18_react-dom@16.13.1+react@16.13.1 - '@storybook/core-events': 6.1.18 - '@storybook/router': 6.1.18_react-dom@16.13.1+react@16.13.1 + '@storybook/addons': 6.1.21_react-dom@16.13.1+react@16.13.1 + '@storybook/api': 6.1.21_react-dom@16.13.1+react@16.13.1 + '@storybook/channels': 6.1.21 + '@storybook/client-logger': 6.1.21 + '@storybook/components': 6.1.21_react-dom@16.13.1+react@16.13.1 + '@storybook/core-events': 6.1.21 + '@storybook/router': 6.1.21_react-dom@16.13.1+react@16.13.1 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.1.18_react-dom@16.13.1+react@16.13.1 + '@storybook/theming': 6.1.21_react-dom@16.13.1+react@16.13.1 '@types/markdown-to-jsx': 6.11.3 copy-to-clipboard: 3.3.1 - core-js: 3.8.3 - core-js-pure: 3.8.3 + core-js: 3.9.1 + core-js-pure: 3.9.1 downshift: 6.1.0_react@16.13.1 emotion-theming: 10.0.27_88480db83d3b7400155217a2792cf198 fuse.js: 3.6.1 global: 4.4.0 - lodash: 4.17.20 + lodash: 4.17.21 markdown-to-jsx: 6.11.4_react@16.13.1 memoizerific: 1.11.3 polished: 3.7.1 @@ -2895,7 +2929,7 @@ packages: react: 16.13.1 react-dom: 16.13.1_react@16.13.1 react-draggable: 4.4.3 - react-helmet-async: 1.0.7_react-dom@16.13.1+react@16.13.1 + react-helmet-async: 1.0.9_react-dom@16.13.1+react@16.13.1 react-hotkeys: 2.0.0_react@16.13.1 react-sizeme: 2.6.12_react-dom@16.13.1+react@16.13.1 regenerator-runtime: 0.13.7 @@ -2906,7 +2940,7 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-EKOja3ji0gHxnKWFBt+nK7xuBOzKTEKJ3+PiW0+QS0jZ18EkR7U7h0U052jNXdiI1c6Sck5n9+gI5EylzN18+Q== + integrity: sha512-2nRb5egnSBKbosuR7g5PsuM4XnRLXZUf7TBjwT6eRlomnE2wrWM5DtTLpFeUpDob0SI5hPlOV1xCpPz3XmeyyA== /@surma/rollup-plugin-off-main-thread/1.4.2: dependencies: ejs: 2.7.4 @@ -2922,10 +2956,10 @@ packages: node: '>=6' resolution: integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== - /@testing-library/dom/7.29.4: + /@testing-library/dom/7.30.0: dependencies: '@babel/code-frame': 7.12.13 - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 '@types/aria-query': 4.2.1 aria-query: 4.2.2 chalk: 4.1.0 @@ -2936,21 +2970,21 @@ packages: engines: node: '>=10' resolution: - integrity: sha512-CtrJRiSYEfbtNGtEsd78mk1n1v2TUbeABlNIcOCJdDfkN5/JTOwQEbbQpoSRxGqzcWPgStMvJ4mNolSuBRv1NA== - /@testing-library/preact-hooks/1.1.0_368c9f1500877413beac8052be555e33: + integrity: sha512-v4GzWtltaiDE0yRikLlcLAfEiiK8+ptu6OuuIebm9GdC2XlZTNDPGEfM2UkEtnH7hr9TRq2sivT5EA9P1Oy7bw== + /@testing-library/preact-hooks/1.1.0_8a3b8354086a0a31d950b2aa8b26d524: dependencies: - '@testing-library/preact': 2.0.1_preact@10.5.12 - preact: 10.5.12 + '@testing-library/preact': 2.0.1_preact@10.5.13 + preact: 10.5.13 dev: true peerDependencies: '@testing-library/preact': ^2.0.0 preact: ^10.4.8 resolution: integrity: sha512-+JIor+NsOHkK3oIrwMDGKGHXTN0JJi462dBJlj4FNbGaDPTlctE6eu2ranWQirh7/FJMkWfzQCP+tk7jmY8ZrQ== - /@testing-library/preact/2.0.1_preact@10.5.12: + /@testing-library/preact/2.0.1_preact@10.5.13: dependencies: - '@testing-library/dom': 7.29.4 - preact: 10.5.12 + '@testing-library/dom': 7.30.0 + preact: 10.5.13 dev: true engines: node: '>= 10' @@ -2966,49 +3000,49 @@ packages: dev: true resolution: integrity: sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg== - /@types/babel__core/7.1.12: + /@types/babel__core/7.1.13: dependencies: - '@babel/parser': 7.12.16 - '@babel/types': 7.12.13 + '@babel/parser': 7.13.11 + '@babel/types': 7.13.0 '@types/babel__generator': 7.6.2 '@types/babel__template': 7.4.0 - '@types/babel__traverse': 7.11.0 + '@types/babel__traverse': 7.11.1 dev: true resolution: - integrity: sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ== + integrity: sha512-CC6amBNND16pTk4K3ZqKIaba6VGKAQs3gMjEY17FVd56oI/ZWt9OhS6riYiWv9s8ENbYUi7p8lgqb0QHQvUKQQ== /@types/babel__generator/7.6.2: dependencies: - '@babel/types': 7.12.13 + '@babel/types': 7.13.0 dev: true resolution: integrity: sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ== /@types/babel__template/7.4.0: dependencies: - '@babel/parser': 7.12.16 - '@babel/types': 7.12.13 + '@babel/parser': 7.13.11 + '@babel/types': 7.13.0 dev: true resolution: integrity: sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A== - /@types/babel__traverse/7.11.0: + /@types/babel__traverse/7.11.1: dependencies: - '@babel/types': 7.12.13 + '@babel/types': 7.13.0 dev: true resolution: - integrity: sha512-kSjgDMZONiIfSH1Nxcr5JIRMwUetDki63FSQfpTCz8ogF3Ulqm8+mr5f78dUYs6vMiB6gBusQqfQmBvHZj/lwg== + integrity: sha512-Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw== /@types/braces/3.0.0: dev: true resolution: integrity: sha512-TbH79tcyi9FHwbyboOKeRachRq63mSuWYXOflsNO9ZyE5ClQ/JaozNKl+aWUq87qPNsXasXxi2AbgfwIJ+8GQw== - /@types/cheerio/0.22.24: + /@types/cheerio/0.22.27: dependencies: - '@types/node': 14.14.28 + '@types/node': 14.14.35 dev: true resolution: - integrity: sha512-iKXt/cwltGvN06Dd6zwQG1U35edPwId9lmcSeYfcxSNvvNg4vysnFB+iBQNjj06tSVV7MBj0GWMQ7dwb4Z+p8Q== + integrity: sha512-UpmYZewEWNEE6Ya24RzAQ2X2OYwz32AaLyzYinpM8qqFGRyYufqKSvxPjjZkvS+h16bajfXl7VojrAxWzG/+mA== /@types/enzyme/3.10.8: dependencies: - '@types/cheerio': 0.22.24 - '@types/react': 17.0.2 + '@types/cheerio': 0.22.27 + '@types/react': 17.0.3 dev: true resolution: integrity: sha512-vlOuzqsTHxog6PV79+tvOHFb6hq4QZKMq1lLD9MaWD1oec2lHTKndn76XOpSwCA0oFTaIbKVPrgM3k78Jjd16g== @@ -3027,13 +3061,13 @@ packages: /@types/glob/7.1.3: dependencies: '@types/minimatch': 3.0.3 - '@types/node': 14.14.28 + '@types/node': 14.14.35 dev: true resolution: integrity: sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w== /@types/graceful-fs/4.1.5: dependencies: - '@types/node': 14.14.28 + '@types/node': 14.14.35 dev: true resolution: integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== @@ -3084,7 +3118,7 @@ packages: integrity: sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q== /@types/markdown-to-jsx/6.11.3: dependencies: - '@types/react': 17.0.2 + '@types/react': 17.0.3 dev: true resolution: integrity: sha512-30nFYpceM/ZEvhGiqWjm5quLUxNeld0HCzJEXMZZDpq53FPkS85mTwkWtCXzCqq8s5JYLgM5W392a02xn8Bdaw== @@ -3106,15 +3140,15 @@ packages: integrity: sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== /@types/node-fetch/2.5.8: dependencies: - '@types/node': 14.14.28 + '@types/node': 14.14.35 form-data: 3.0.1 dev: true resolution: integrity: sha512-fbjI6ja0N5ZA8TV53RUqzsKNkl9fv8Oj3T7zxW7FGv1GSH7gwJaNF8dzCjrqKaxKeUpTz4yT1DaJFq/omNpGfw== - /@types/node/14.14.28: + /@types/node/14.14.35: dev: true resolution: - integrity: sha512-lg55ArB+ZiHHbBBttLpzD07akz0QPrZgUODNakeC09i62dnrywr9mFErHuaPlB6I7z+sEbK+IYmplahvplCj2g== + integrity: sha512-Lt+wj8NVPx0zUmUwumiVXapmaLUcAk3yPuHCFVXras9k5VT9TdhJqKqGVUQCD60OTMCl0qxJ57OiTL0Mic3Iag== /@types/normalize-package-data/2.4.0: dev: true resolution: @@ -3135,10 +3169,10 @@ packages: dev: true resolution: integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw== - /@types/prettier/2.2.1: + /@types/prettier/2.2.3: dev: true resolution: - integrity: sha512-DxZZbyMAM9GWEzXL+BMZROWz9oo6A9EilwwOMET2UVu2uZTqMWS5S69KVtuVKaRjCUpcrOXRalet86/OpG4kqw== + integrity: sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA== /@types/prop-types/15.7.3: dev: true resolution: @@ -3147,48 +3181,53 @@ packages: dev: true resolution: integrity: sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== - /@types/qs/6.9.5: + /@types/qs/6.9.6: dev: true resolution: - integrity: sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ== + integrity: sha512-0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA== /@types/reach__router/1.3.7: dependencies: - '@types/react': 17.0.2 + '@types/react': 17.0.3 dev: true resolution: integrity: sha512-cyBEb8Ef3SJNH5NYEIDGPoMMmYUxROatuxbICusVRQIqZUB85UCt6R2Ok60tKS/TABJsJYaHyNTW3kqbpxlMjg== /@types/react-color/3.0.4: dependencies: - '@types/react': 17.0.2 + '@types/react': 17.0.3 '@types/reactcss': 1.2.3 dev: true resolution: integrity: sha512-EswbYJDF1kkrx93/YU+BbBtb46CCtDMvTiGmcOa/c5PETnwTiSWoseJ1oSWeRl/4rUXkhME9bVURvvPg0W5YQw== /@types/react-syntax-highlighter/11.0.4: dependencies: - '@types/react': 17.0.2 + '@types/react': 17.0.3 dev: true resolution: integrity: sha512-9GfTo3a0PHwQeTVoqs0g5bS28KkSY48pp5659wA+Dp4MqceDEa8EHBqrllJvvtyusszyJhViUEap0FDvlk/9Zg== - /@types/react/17.0.2: + /@types/react/17.0.3: dependencies: '@types/prop-types': 15.7.3 - csstype: 3.0.6 + '@types/scheduler': 0.16.1 + csstype: 3.0.7 dev: true resolution: - integrity: sha512-Xt40xQsrkdvjn1EyWe1Bc0dJLcil/9x2vAuW7ya+PuQip4UYUaXyhzWmAbwRsdMgwOFHpfp7/FFZebDU6Y8VHA== + integrity: sha512-wYOUxIgs2HZZ0ACNiIayItyluADNbONl7kt8lkLjVK8IitMH5QMyAh75Fwhmo37r1m7L2JaFj03sIfxBVDvRAg== /@types/reactcss/1.2.3: dependencies: - '@types/react': 17.0.2 + '@types/react': 17.0.3 dev: true resolution: integrity: sha512-d2gQQ0IL6hXLnoRfVYZukQNWHuVsE75DzFTLPUuyyEhJS8G2VvlE+qfQQ91SJjaMqlURRCNIsX7Jcsw6cEuJlA== /@types/resolve/0.0.8: dependencies: - '@types/node': 14.14.28 + '@types/node': 14.14.35 dev: true resolution: integrity: sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ== + /@types/scheduler/0.16.1: + dev: true + resolution: + integrity: sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA== /@types/source-list-map/0.1.2: dev: true resolution: @@ -3201,12 +3240,12 @@ packages: dev: true resolution: integrity: sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA== - /@types/uglify-js/3.12.0: + /@types/uglify-js/3.13.0: dependencies: source-map: 0.6.1 dev: true resolution: - integrity: sha512-sYAF+CF9XZ5cvEBkI7RtrG9g2GtMBkviTnBxYYyq+8BWvO4QtXfwwR6a2LFwCi4evMKZfpv6U43ViYvv17Wz3Q== + integrity: sha512-EGkrJD5Uy+Pg0NUR8uA4bJ5WMfljyad0G+784vLCNUkD+QwOJXUbBYExXfVGf7YtyzdQp3L/XMYcliB987kL5Q== /@types/unist/2.0.3: dev: true resolution: @@ -3217,7 +3256,7 @@ packages: integrity: sha512-Fx+NpfOO0CpeYX2g9bkvX8O5qh9wrU1sOF4g8sft4Mu7z+qfe387YlyY8w8daDyDsKY5vUxM0yxkAYnbkRbZEw== /@types/webpack-sources/2.1.0: dependencies: - '@types/node': 14.14.28 + '@types/node': 14.14.35 '@types/source-list-map': 0.1.2 source-map: 0.7.3 dev: true @@ -3226,9 +3265,9 @@ packages: /@types/webpack/4.41.26: dependencies: '@types/anymatch': 1.3.1 - '@types/node': 14.14.28 + '@types/node': 14.14.35 '@types/tapable': 1.0.6 - '@types/uglify-js': 3.12.0 + '@types/uglify-js': 3.13.0 '@types/webpack-sources': 2.1.0 source-map: 0.6.1 dev: true @@ -3244,19 +3283,19 @@ packages: dev: true resolution: integrity: sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ== - /@typescript-eslint/eslint-plugin/4.15.1_dd080f2a8fb4d0ac76cfb4c7062ee728: + /@typescript-eslint/eslint-plugin/4.18.0_ef0f217f6395606fd8bbe7b0291eff7e: dependencies: - '@typescript-eslint/experimental-utils': 4.15.1_eslint@7.20.0+typescript@4.1.5 - '@typescript-eslint/parser': 4.15.1_eslint@7.20.0+typescript@4.1.5 - '@typescript-eslint/scope-manager': 4.15.1 + '@typescript-eslint/experimental-utils': 4.18.0_eslint@7.22.0+typescript@4.2.3 + '@typescript-eslint/parser': 4.18.0_eslint@7.22.0+typescript@4.2.3 + '@typescript-eslint/scope-manager': 4.18.0 debug: 4.3.1 - eslint: 7.20.0 + eslint: 7.22.0 functional-red-black-tree: 1.0.1 - lodash: 4.17.20 + lodash: 4.17.21 regexpp: 3.1.0 semver: 7.3.4 - tsutils: 3.20.0_typescript@4.1.5 - typescript: 4.1.5 + tsutils: 3.21.0_typescript@4.2.3 + typescript: 4.2.3 dev: true engines: node: ^10.12.0 || >=12.0.0 @@ -3268,12 +3307,12 @@ packages: typescript: optional: true resolution: - integrity: sha512-yW2epMYZSpNJXZy22Biu+fLdTG8Mn6b22kR3TqblVk50HGNV8Zya15WAXuQCr8tKw4Qf1BL4QtI6kv6PCkLoJw== - /@typescript-eslint/experimental-utils/2.34.0_eslint@7.20.0+typescript@4.1.5: + integrity: sha512-Lzkc/2+7EoH7+NjIWLS2lVuKKqbEmJhtXe3rmfA8cyiKnZm3IfLf51irnBcmow8Q/AptVV0XBZmBJKuUJTe6cQ== + /@typescript-eslint/experimental-utils/2.34.0_eslint@7.22.0+typescript@4.2.3: dependencies: '@types/json-schema': 7.0.7 - '@typescript-eslint/typescript-estree': 2.34.0_typescript@4.1.5 - eslint: 7.20.0 + '@typescript-eslint/typescript-estree': 2.34.0_typescript@4.2.3 + eslint: 7.22.0 eslint-scope: 5.1.1 eslint-utils: 2.1.0 dev: true @@ -3284,13 +3323,13 @@ packages: typescript: '*' resolution: integrity: sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA== - /@typescript-eslint/experimental-utils/4.15.1_eslint@7.20.0+typescript@4.1.5: + /@typescript-eslint/experimental-utils/4.18.0_eslint@7.22.0+typescript@4.2.3: dependencies: '@types/json-schema': 7.0.7 - '@typescript-eslint/scope-manager': 4.15.1 - '@typescript-eslint/types': 4.15.1 - '@typescript-eslint/typescript-estree': 4.15.1_typescript@4.1.5 - eslint: 7.20.0 + '@typescript-eslint/scope-manager': 4.18.0 + '@typescript-eslint/types': 4.18.0 + '@typescript-eslint/typescript-estree': 4.18.0_typescript@4.2.3 + eslint: 7.22.0 eslint-scope: 5.1.1 eslint-utils: 2.1.0 dev: true @@ -3300,15 +3339,15 @@ packages: eslint: '*' typescript: '*' resolution: - integrity: sha512-9LQRmOzBRI1iOdJorr4jEnQhadxK4c9R2aEAsm7WE/7dq8wkKD1suaV0S/JucTL8QlYUPU1y2yjqg+aGC0IQBQ== - /@typescript-eslint/parser/4.15.1_eslint@7.20.0+typescript@4.1.5: + integrity: sha512-92h723Kblt9JcT2RRY3QS2xefFKar4ZQFVs3GityOKWQYgtajxt/tuXIzL7sVCUlM1hgreiV5gkGYyBpdOwO6A== + /@typescript-eslint/parser/4.18.0_eslint@7.22.0+typescript@4.2.3: dependencies: - '@typescript-eslint/scope-manager': 4.15.1 - '@typescript-eslint/types': 4.15.1 - '@typescript-eslint/typescript-estree': 4.15.1_typescript@4.1.5 + '@typescript-eslint/scope-manager': 4.18.0 + '@typescript-eslint/types': 4.18.0 + '@typescript-eslint/typescript-estree': 4.18.0_typescript@4.2.3 debug: 4.3.1 - eslint: 7.20.0 - typescript: 4.1.5 + eslint: 7.22.0 + typescript: 4.2.3 dev: true engines: node: ^10.12.0 || >=12.0.0 @@ -3319,32 +3358,32 @@ packages: typescript: optional: true resolution: - integrity: sha512-V8eXYxNJ9QmXi5ETDguB7O9diAXlIyS+e3xzLoP/oVE4WCAjssxLIa0mqCLsCGXulYJUfT+GV70Jv1vHsdKwtA== - /@typescript-eslint/scope-manager/4.15.1: + integrity: sha512-W3z5S0ZbecwX3PhJEAnq4mnjK5JJXvXUDBYIYGoweCyWyuvAKfGHvzmpUzgB5L4cRBb+cTu9U/ro66dx7dIimA== + /@typescript-eslint/scope-manager/4.18.0: dependencies: - '@typescript-eslint/types': 4.15.1 - '@typescript-eslint/visitor-keys': 4.15.1 + '@typescript-eslint/types': 4.18.0 + '@typescript-eslint/visitor-keys': 4.18.0 dev: true engines: node: ^8.10.0 || ^10.13.0 || >=11.10.1 resolution: - integrity: sha512-ibQrTFcAm7yG4C1iwpIYK7vDnFg+fKaZVfvyOm3sNsGAerKfwPVFtYft5EbjzByDJ4dj1WD8/34REJfw/9wdVA== - /@typescript-eslint/types/4.15.1: + integrity: sha512-olX4yN6rvHR2eyFOcb6E4vmhDPsfdMyfQ3qR+oQNkAv8emKKlfxTWUXU5Mqxs2Fwe3Pf1BoPvrwZtwngxDzYzQ== + /@typescript-eslint/types/4.18.0: dev: true engines: node: ^8.10.0 || ^10.13.0 || >=11.10.1 resolution: - integrity: sha512-iGsaUyWFyLz0mHfXhX4zO6P7O3sExQpBJ2dgXB0G5g/8PRVfBBsmQIc3r83ranEQTALLR3Vko/fnCIVqmH+mPw== - /@typescript-eslint/typescript-estree/2.34.0_typescript@4.1.5: + integrity: sha512-/BRociARpj5E+9yQ7cwCF/SNOWwXJ3qhjurMuK2hIFUbr9vTuDeu476Zpu+ptxY2kSxUHDGLLKy+qGq2sOg37A== + /@typescript-eslint/typescript-estree/2.34.0_typescript@4.2.3: dependencies: debug: 4.3.1 eslint-visitor-keys: 1.3.0 glob: 7.1.6 is-glob: 4.0.1 - lodash: 4.17.20 + lodash: 4.17.21 semver: 7.3.4 - tsutils: 3.20.0_typescript@4.1.5 - typescript: 4.1.5 + tsutils: 3.21.0_typescript@4.2.3 + typescript: 4.2.3 dev: true engines: node: ^8.10.0 || ^10.13.0 || >=11.10.1 @@ -3355,16 +3394,16 @@ packages: optional: true resolution: integrity: sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg== - /@typescript-eslint/typescript-estree/4.15.1_typescript@4.1.5: + /@typescript-eslint/typescript-estree/4.18.0_typescript@4.2.3: dependencies: - '@typescript-eslint/types': 4.15.1 - '@typescript-eslint/visitor-keys': 4.15.1 + '@typescript-eslint/types': 4.18.0 + '@typescript-eslint/visitor-keys': 4.18.0 debug: 4.3.1 globby: 11.0.2 is-glob: 4.0.1 semver: 7.3.4 - tsutils: 3.20.0_typescript@4.1.5 - typescript: 4.1.5 + tsutils: 3.21.0_typescript@4.2.3 + typescript: 4.2.3 dev: true engines: node: ^10.12.0 || >=12.0.0 @@ -3374,16 +3413,16 @@ packages: typescript: optional: true resolution: - integrity: sha512-z8MN3CicTEumrWAEB2e2CcoZa3KP9+SMYLIA2aM49XW3cWIaiVSOAGq30ffR5XHxRirqE90fgLw3e6WmNx5uNw== - /@typescript-eslint/visitor-keys/4.15.1: + integrity: sha512-wt4xvF6vvJI7epz+rEqxmoNQ4ZADArGQO9gDU+cM0U5fdVv7N+IAuVoVAoZSOZxzGHBfvE3XQMLdy+scsqFfeg== + /@typescript-eslint/visitor-keys/4.18.0: dependencies: - '@typescript-eslint/types': 4.15.1 + '@typescript-eslint/types': 4.18.0 eslint-visitor-keys: 2.0.0 dev: true engines: node: ^8.10.0 || ^10.13.0 || >=11.10.1 resolution: - integrity: sha512-tYzaTP9plooRJY8eNlpAewTOqtWW/4ff/5wBjNVaJ0S0wC4Gpq/zDVRTJa5bq2v1pCNQ08xxMCndcvR+h7lMww== + integrity: sha512-Q9t90JCvfYaN0OfFUgaLqByOfz8yPeTAdotn/XYNm5q9eHax90gzdb+RJ6E9T5s97Kv/UHWKERTmqA0jTKAEHw== /@webassemblyjs/ast/1.9.0: dependencies: '@webassemblyjs/helper-module-context': 1.9.0 @@ -3601,13 +3640,13 @@ packages: hasBin: true resolution: integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - /acorn/8.0.5: + /acorn/8.1.0: dev: true engines: node: '>=0.4.0' hasBin: true resolution: - integrity: sha512-v+DieK/HJkJOpFBETDJioequtc3PfxsWMaxIdIwujtF7FEV/MAyDQLlm6/zPvr7Mix07mLh6ccVwIsloceodlg== + integrity: sha512-LWCF/Wn0nfHOmJ9rzQApGnxnvgfROzGilS8936rqN/lfcYkY9MYZzdMqN+2NJ4SlTc+m5HiSa+kNfDtI64dwUA== /address/1.1.2: dev: true engines: @@ -3625,23 +3664,23 @@ packages: integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== /airbnb-js-shims/2.2.1: dependencies: - array-includes: 3.1.2 + array-includes: 3.1.3 array.prototype.flat: 1.2.4 array.prototype.flatmap: 1.2.4 es5-shim: 4.5.15 es6-shim: 0.35.6 - function.prototype.name: 1.1.3 - globalthis: 1.0.1 + function.prototype.name: 1.1.4 + globalthis: 1.0.2 object.entries: 1.1.3 - object.fromentries: 2.0.3 - object.getownpropertydescriptors: 2.1.1 - object.values: 1.1.2 + object.fromentries: 2.0.4 + object.getownpropertydescriptors: 2.1.2 + object.values: 1.1.3 promise.allsettled: 1.0.4 promise.prototype.finally: 3.1.2 - string.prototype.matchall: 4.0.3 - string.prototype.padend: 3.1.1 - string.prototype.padstart: 3.1.1 - symbol.prototype.description: 1.0.3 + string.prototype.matchall: 4.0.4 + string.prototype.padend: 3.1.2 + string.prototype.padstart: 3.1.2 + symbol.prototype.description: 1.0.4 dev: true resolution: integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ== @@ -3670,7 +3709,7 @@ packages: dev: true resolution: integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - /ajv/7.1.1: + /ajv/7.2.1: dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 @@ -3678,7 +3717,7 @@ packages: uri-js: 4.4.1 dev: true resolution: - integrity: sha512-ga/aqDYnUy/o7vbsRTFhhTsNeXiYb5JWDIcRIeZfwRNCefwjNTVYCGdGSUrEmiu3yDK3vFvNbgJxvrQW4JXrYQ== + integrity: sha512-+nu0HDv7kNSOua9apAVc979qd932rrZeb3WOvoiD31A/p1mIE5/9bN2027pE2rOPYEdS3UHzsvof4hY+lM9/WQ== /alphanum-sort/1.0.2: dev: true resolution: @@ -3814,8 +3853,8 @@ packages: integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== /aria-query/4.2.2: dependencies: - '@babel/runtime': 7.12.13 - '@babel/runtime-corejs3': 7.12.13 + '@babel/runtime': 7.13.10 + '@babel/runtime-corejs3': 7.13.10 dev: true engines: node: '>=6.0' @@ -3861,18 +3900,18 @@ packages: dev: true resolution: integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== - /array-includes/3.1.2: + /array-includes/3.1.3: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.0 get-intrinsic: 1.1.1 is-string: 1.0.5 dev: true engines: node: '>= 0.4' resolution: - integrity: sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw== + integrity: sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A== /array-union/1.0.2: dependencies: array-uniq: 1.0.3 @@ -3903,7 +3942,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.0 dev: true engines: node: '>= 0.4' @@ -3913,7 +3952,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.0 function-bind: 1.1.1 dev: true engines: @@ -3924,7 +3963,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.0 es-array-method-boxes-properly: 1.0.0 is-string: 1.0.5 dev: true @@ -3952,7 +3991,7 @@ packages: integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== /asn1.js/5.4.1: dependencies: - bn.js: 4.11.9 + bn.js: 4.12.0 inherits: 2.0.4 minimalistic-assert: 1.0.1 safer-buffer: 2.1.2 @@ -4012,7 +4051,7 @@ packages: integrity: sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= /async/2.6.3: dependencies: - lodash: 4.17.20 + lodash: 4.17.21 dev: true resolution: integrity: sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== @@ -4036,8 +4075,8 @@ packages: /autoprefixer/9.8.6: dependencies: browserslist: 4.16.3 - caniuse-lite: 1.0.30001187 - colorette: 1.2.1 + caniuse-lite: 1.0.30001200 + colorette: 1.2.2 normalize-range: 0.1.2 num2fraction: 1.2.2 postcss: 7.0.35 @@ -4049,7 +4088,7 @@ packages: /ava/3.15.0: dependencies: '@concordance/react': 2.0.0 - acorn: 8.0.5 + acorn: 8.1.0 acorn-walk: 8.0.2 ansi-styles: 5.1.0 arrgv: 1.0.2 @@ -4065,7 +4104,7 @@ packages: cli-truncate: 2.1.0 code-excerpt: 3.0.0 common-path-prefix: 3.0.0 - concordance: 5.0.2 + concordance: 5.0.4 convert-source-map: 1.7.0 currently-unhandled: 0.4.1 debug: 4.3.1 @@ -4080,7 +4119,7 @@ packages: is-error: 2.2.2 is-plain-object: 5.0.0 is-promise: 4.0.0 - lodash: 4.17.20 + lodash: 4.17.21 matcher: 3.0.0 md5-hex: 3.0.1 mem: 8.0.0 @@ -4118,32 +4157,24 @@ packages: dev: true resolution: integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== - /axe-core/4.1.2: + /axe-core/4.1.3: dev: true engines: node: '>=4' resolution: - integrity: sha512-V+Nq70NxKhYt89ArVcaNL9FDryB3vQOd+BFXZIfO3RP6rwtj+2yqqqdHEkacutglPaZLkJeuXKCjCJDMGPtPqg== + integrity: sha512-vwPpH4Aj4122EW38mxO/fxhGKtwWTMLDIJfZ1He0Edbtjcfna/R3YB67yVhezUMzqc3Jr3+Ii50KRntlENL4xQ== /axios/0.21.1: dependencies: - follow-redirects: 1.13.2 + follow-redirects: 1.13.3 resolution: integrity: sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA== - /babel-code-frame/6.26.0: - dependencies: - chalk: 1.1.3 - esutils: 2.0.3 - js-tokens: 3.0.2 - dev: true - resolution: - integrity: sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= - /babel-eslint/10.1.0_eslint@7.20.0: + /babel-eslint/10.1.0_eslint@7.22.0: dependencies: '@babel/code-frame': 7.12.13 - '@babel/parser': 7.12.16 - '@babel/traverse': 7.12.13 - '@babel/types': 7.12.13 - eslint: 7.20.0 + '@babel/parser': 7.13.11 + '@babel/traverse': 7.13.0 + '@babel/types': 7.13.0 + eslint: 7.22.0 eslint-visitor-keys: 1.3.0 resolve: 1.20.0 deprecated: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates. @@ -4200,14 +4231,14 @@ packages: dev: true resolution: integrity: sha512-m2CvfDW4+1qfDdsrtf4dwOslQC3yhbgyBFptncp4wvtdrDHqueW7slsYv4gArie056phvQFhT2nRcGS4bnm6mA== - /babel-jest/26.6.3_@babel+core@7.12.16: + /babel-jest/26.6.3_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 - '@types/babel__core': 7.1.12 + '@types/babel__core': 7.1.13 babel-plugin-istanbul: 6.0.0 - babel-preset-jest: 26.6.2_@babel+core@7.12.16 + babel-preset-jest: 26.6.2_@babel+core@7.13.10 chalk: 4.1.0 graceful-fs: 4.2.6 slash: 3.0.0 @@ -4218,14 +4249,13 @@ packages: '@babel/core': ^7.0.0 resolution: integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA== - /babel-loader/8.2.2_8040e036044e91f985695d7556bc5dad: + /babel-loader/8.2.2_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 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 engines: node: '>= 8.9' @@ -4234,13 +4264,14 @@ packages: webpack: '>=2' resolution: integrity: sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g== - /babel-loader/8.2.2_@babel+core@7.12.16: + /babel-loader/8.2.2_c68979f8893c692eeb1a0b70960ae2d4: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 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 engines: node: '>= 8.9' @@ -4288,7 +4319,7 @@ packages: integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ== /babel-plugin-istanbul/6.0.0: dependencies: - '@babel/helper-plugin-utils': 7.12.13 + '@babel/helper-plugin-utils': 7.13.0 '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 4.0.3 @@ -4301,9 +4332,9 @@ packages: /babel-plugin-jest-hoist/26.6.2: dependencies: '@babel/template': 7.12.13 - '@babel/types': 7.12.13 - '@types/babel__core': 7.1.12 - '@types/babel__traverse': 7.11.0 + '@babel/types': 7.13.0 + '@types/babel__core': 7.1.13 + '@types/babel__traverse': 7.11.1 dev: true engines: node: '>= 10.14.2' @@ -4311,7 +4342,7 @@ packages: integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw== /babel-plugin-macros/2.8.0: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 cosmiconfig: 6.0.0 resolve: 1.20.0 dev: true @@ -4332,7 +4363,7 @@ packages: babel-helper-evaluate-path: 0.5.0 babel-helper-mark-eval-scopes: 0.4.3 babel-helper-remove-or-void: 0.4.3 - lodash: 4.17.20 + lodash: 4.17.21 dev: true resolution: integrity: sha512-x8OJOZIrRmQBcSqxBcLbMIK8uPmTvNWPXH2bh5MDCW1latEqYiRMuUkPImKcfpo59pTUB2FT7HfcgtG8ZlR5Qg== @@ -4382,6 +4413,36 @@ packages: dev: true resolution: integrity: sha1-G8bxW4f3qxCF1CszC3F2V6IVZQA= + /babel-plugin-polyfill-corejs2/0.1.10_@babel+core@7.13.10: + dependencies: + '@babel/compat-data': 7.13.11 + '@babel/core': 7.13.10 + '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.13.10 + semver: 6.3.0 + dev: true + peerDependencies: + '@babel/core': ^7.0.0-0 + resolution: + integrity: sha512-DO95wD4g0A8KRaHKi0D51NdGXzvpqVLnLu5BTvDlpqUEpTmeEtypgC1xqesORaWmiUOQI14UHKlzNd9iZ2G3ZA== + /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.13.10: + dependencies: + '@babel/core': 7.13.10 + '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.13.10 + core-js-compat: 3.9.1 + dev: true + peerDependencies: + '@babel/core': ^7.0.0-0 + resolution: + integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw== + /babel-plugin-polyfill-regenerator/0.1.6_@babel+core@7.13.10: + dependencies: + '@babel/core': 7.13.10 + '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.13.10 + dev: true + peerDependencies: + '@babel/core': ^7.0.0-0 + resolution: + integrity: sha512-OUrYG9iKPKz8NxswXbRAdSwF0GhRdIEMTloQATJi4bDuFqrXaXcCUT/VGNrr8pBcjMh1RxZ7Xt9cytVJTJfvMg== /babel-plugin-syntax-jsx/6.18.0: dev: true resolution: @@ -4449,31 +4510,31 @@ packages: dev: true resolution: integrity: sha1-viQcqBQEAwZ4t0hxcyK4nQyP4oA= - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.12.16: - dependencies: - '@babel/core': 7.12.16 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.16 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.12.16 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.16 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.16 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-syntax-top-level-await': 7.12.13_@babel+core@7.12.16 + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.13.10: + dependencies: + '@babel/core': 7.13.10 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.13.10 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.13.10 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.13.10 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.13.10 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-syntax-top-level-await': 7.12.13_@babel+core@7.13.10 dev: true peerDependencies: '@babel/core': ^7.0.0 resolution: integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== - /babel-preset-jest/26.6.2_@babel+core@7.12.16: + /babel-preset-jest/26.6.2_@babel+core@7.13.10: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 babel-plugin-jest-hoist: 26.6.2 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.12.16 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.13.10 dev: true engines: node: '>= 10.14.2' @@ -4505,7 +4566,7 @@ packages: babel-plugin-transform-remove-undefined: 0.5.0 babel-plugin-transform-simplify-comparison-operators: 6.9.4 babel-plugin-transform-undefined-to-void: 6.9.4 - lodash: 4.17.20 + lodash: 4.17.21 dev: true resolution: integrity: sha512-1IajDumYOAPYImkHbrKeiN5AKKP9iOmRoO2IPbIuVp0j2iuCcj0n7P260z38siKMZZ+85d3mJZdtW8IgOv+Tzg== @@ -4543,6 +4604,19 @@ packages: node: '>=0.10.0' resolution: integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + /base64-inline-loader/1.1.1: + dependencies: + file-loader: 1.1.11 + loader-utils: 1.4.0 + mime-types: 2.1.29 + dev: true + engines: + node: '>=6.2' + npm: '>=3.8' + peerDependencies: + webpack: ^4.x + resolution: + integrity: sha512-v/bHvXQ8sW28t9ZwBsFGgyqZw2bpT49/dtPTtlmixoSM/s9wnOngOKFVQLRH8BfMTy6jTl5m5CdvqpZt8y5d6g== /base64-js/1.5.1: dev: true resolution: @@ -4623,14 +4697,14 @@ packages: dev: true resolution: integrity: sha512-vE52okJvzsVWhcgUHOv+69OG3Mdg151xyn41aVQN/5W5S+S43qZhxECtYLAEHMSFWX6Mv5IZrzj3T5+JqXfj5Q== - /bn.js/4.11.9: + /bn.js/4.12.0: dev: true resolution: - integrity: sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== - /bn.js/5.1.3: + integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + /bn.js/5.2.0: dev: true resolution: - integrity: sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ== + integrity: sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw== /body-parser/1.19.0: dependencies: bytes: 3.1.0 @@ -4669,7 +4743,7 @@ packages: camelcase: 5.3.1 chalk: 3.0.0 cli-boxes: 2.2.1 - string-width: 4.2.0 + string-width: 4.2.2 term-size: 2.2.1 type-fest: 0.8.1 widest-line: 3.1.0 @@ -4684,7 +4758,7 @@ packages: camelcase: 6.2.0 chalk: 4.1.0 cli-boxes: 2.2.1 - string-width: 4.2.0 + string-width: 4.2.2 type-fest: 0.20.2 widest-line: 3.1.0 wrap-ansi: 7.0.0 @@ -4763,14 +4837,14 @@ packages: integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== /browserify-rsa/4.1.0: dependencies: - bn.js: 5.1.3 + bn.js: 5.2.0 randombytes: 2.1.0 dev: true resolution: integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== /browserify-sign/4.2.1: dependencies: - bn.js: 5.1.3 + bn.js: 5.2.0 browserify-rsa: 4.1.0 create-hash: 1.2.0 create-hmac: 1.1.7 @@ -4788,23 +4862,25 @@ packages: dev: true resolution: integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== - /browserslist/4.10.0: + /browserslist/4.14.2: dependencies: - caniuse-lite: 1.0.30001187 - electron-to-chromium: 1.3.667 - node-releases: 1.1.70 - pkg-up: 3.1.0 + caniuse-lite: 1.0.30001200 + electron-to-chromium: 1.3.689 + escalade: 3.1.1 + node-releases: 1.1.71 dev: true + engines: + node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 hasBin: true resolution: - integrity: sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA== + integrity: sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw== /browserslist/4.16.3: dependencies: - caniuse-lite: 1.0.30001187 - colorette: 1.2.1 - electron-to-chromium: 1.3.667 + caniuse-lite: 1.0.30001200 + colorette: 1.2.2 + electron-to-chromium: 1.3.689 escalade: 3.1.1 - node-releases: 1.1.70 + node-releases: 1.1.71 dev: true engines: node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 @@ -5067,16 +5143,16 @@ packages: /caniuse-api/3.0.0: dependencies: browserslist: 4.16.3 - caniuse-lite: 1.0.30001187 + caniuse-lite: 1.0.30001200 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true resolution: integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== - /caniuse-lite/1.0.30001187: + /caniuse-lite/1.0.30001200: dev: true resolution: - integrity: sha512-w7/EP1JRZ9552CyrThUnay2RkZ1DXxKe/Q2swTC4+LElLh9RRYrL1Z+27LlakB8kzY0fSmHw9mc7XYDUKAKWMA== + integrity: sha512-ic/jXfa6tgiPBAISWk16jRI2q8YfjxHnSG7ddSL1ptrIP8Uy11SayFrjXRAk3NumHpDb21fdTkbTxb/hOrFrnQ== /capture-exit/2.0.0: dependencies: rsvp: 4.8.5 @@ -5085,12 +5161,12 @@ packages: node: 6.* || 8.* || >= 10.* resolution: integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== - /case-sensitive-paths-webpack-plugin/2.3.0: + /case-sensitive-paths-webpack-plugin/2.4.0: dev: true engines: node: '>=4' resolution: - integrity: sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ== + integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw== /caseless/0.12.0: dev: true resolution: @@ -5181,7 +5257,7 @@ packages: css-what: 4.0.0 domelementtype: 2.1.0 domhandler: 4.0.0 - domutils: 2.4.4 + domutils: 2.5.0 deprecated: Use cheerio-select instead dev: true resolution: @@ -5192,7 +5268,7 @@ packages: dom-serializer: 1.2.0 domhandler: 4.0.0 entities: 2.1.0 - htmlparser2: 6.0.0 + htmlparser2: 6.0.1 parse5: 6.0.1 parse5-htmlparser2-tree-adapter: 6.0.1 dev: true @@ -5223,7 +5299,7 @@ packages: dependencies: anymatch: 3.1.1 braces: 3.0.2 - glob-parent: 5.1.1 + glob-parent: 5.1.2 is-binary-path: 2.1.0 is-glob: 4.0.1 normalize-path: 3.0.0 @@ -5338,7 +5414,7 @@ packages: /cli-table3/0.6.0: dependencies: object-assign: 4.1.1 - string-width: 4.2.0 + string-width: 4.2.2 dev: true engines: node: 10.* || >= 12.* @@ -5349,23 +5425,19 @@ packages: /cli-truncate/2.1.0: dependencies: slice-ansi: 3.0.0 - string-width: 4.2.0 + string-width: 4.2.2 dev: true engines: node: '>=8' resolution: integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== - /cli-width/2.2.1: - dev: true - resolution: - integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== /cli-width/3.0.0: dev: true engines: node: '>= 10' resolution: integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== - /clipboard/2.0.6: + /clipboard/2.0.8: dependencies: good-listener: 1.2.2 select: 1.1.2 @@ -5373,7 +5445,7 @@ packages: dev: true optional: true resolution: - integrity: sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg== + integrity: sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ== /cliui/5.0.0: dependencies: string-width: 3.1.0 @@ -5384,7 +5456,7 @@ packages: integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== /cliui/6.0.0: dependencies: - string-width: 4.2.0 + string-width: 4.2.2 strip-ansi: 6.0.0 wrap-ansi: 6.2.0 dev: true @@ -5392,7 +5464,7 @@ packages: integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== /cliui/7.0.4: dependencies: - string-width: 4.2.0 + string-width: 4.2.2 strip-ansi: 6.0.0 wrap-ansi: 7.0.0 dev: true @@ -5480,24 +5552,24 @@ packages: dev: true resolution: integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - /color-string/1.5.4: + /color-string/1.5.5: dependencies: color-name: 1.1.4 simple-swizzle: 0.2.2 dev: true resolution: - integrity: sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw== + integrity: sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg== /color/3.1.3: dependencies: color-convert: 1.9.3 - color-string: 1.5.4 + color-string: 1.5.5 dev: true resolution: integrity: sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== - /colorette/1.2.1: + /colorette/1.2.2: dev: true resolution: - integrity: sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== + integrity: sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== /colors/1.4.0: dev: true engines: @@ -5595,10 +5667,10 @@ packages: node: '>= 0.8.0' resolution: integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== - /compute-scroll-into-view/1.0.16: + /compute-scroll-into-view/1.0.17: dev: true resolution: - integrity: sha512-a85LHKY81oQnikatZYA90pufpZ6sQx++BoCxOEMsjpZx+ZnaKGQnCyCehTRr/1p9GBIAHTjcU9k71kSYWloLiQ== + integrity: sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg== /concat-map/0.0.1: dev: true resolution: @@ -5614,13 +5686,13 @@ packages: '0': node >= 0.8 resolution: integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== - /concordance/5.0.2: + /concordance/5.0.4: dependencies: date-time: 3.1.0 esutils: 2.0.3 fast-diff: 1.2.0 js-string-escape: 1.0.1 - lodash: 4.17.20 + lodash: 4.17.21 md5-hex: 3.0.1 semver: 7.3.4 well-known-symbols: 2.0.0 @@ -5628,7 +5700,7 @@ packages: engines: node: '>=10.18.0 <11 || >=12.14.0 <13 || >=14' resolution: - integrity: sha512-hC63FKdGM9tBcd4VQIa+LQjmrgorrnxESb8B3J21Qe/FzL0blBv0pb8iNyymt+bmsvGSUqO0uhPi2ZSLgLtLdg== + integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw== /configstore/5.0.1: dependencies: dot-prop: 5.3.0 @@ -5747,29 +5819,29 @@ packages: webpack: ^4.0.0 || ^5.0.0 resolution: integrity: sha512-Uh7crJAco3AjBvgAy9Z75CjK8IG+gxaErro71THQ+vv/bl4HaQcpkexAY8KVW/T6D2W2IRr+couF/knIRkZMIQ== - /core-js-compat/3.8.3: + /core-js-compat/3.9.1: dependencies: browserslist: 4.16.3 semver: 7.0.0 dev: true resolution: - integrity: sha512-1sCb0wBXnBIL16pfFG1Gkvei6UzvKyTNYpiC41yrdjEv0UoJoq9E/abTMzyYJ6JpTkAj15dLjbqifIzEBDVvog== - /core-js-pure/3.8.3: + integrity: sha512-jXAirMQxrkbiiLsCx9bQPJFA6llDadKMpYrBJQJ3/c4/vsPP/fAf29h24tviRlvwUL6AmY5CHLu2GvjuYviQqA== + /core-js-pure/3.9.1: dev: true requiresBuild: true resolution: - integrity: sha512-V5qQZVAr9K0xu7jXg1M7qTEwuxUgqr7dUOezGaNa7i+Xn9oXAU/d1fzqD9ObuwpVQOaorO5s70ckyi1woP9lVA== + integrity: sha512-laz3Zx0avrw9a4QEIdmIblnVuJz8W51leY9iLThatCsFawWxC3sE4guASC78JbCin+DkwMpCdp1AVAuzL/GN7A== /core-js/2.6.12: deprecated: core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3. dev: true requiresBuild: true resolution: integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== - /core-js/3.8.3: + /core-js/3.9.1: dev: true requiresBuild: true resolution: - integrity: sha512-KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q== + integrity: sha512-gSjRvzkxQc1zjM/5paAmL4idJBFzuJoo+jDjF1tStYFMV2ERfD02HhahhCGXUyHxQRG4yFKVSdO6g62eoRMcDg== /core-util-is/1.0.2: dev: true resolution: @@ -5791,7 +5863,7 @@ packages: import-fresh: 3.3.0 parse-json: 5.2.0 path-type: 4.0.0 - yaml: 1.10.0 + yaml: 1.10.2 dev: true engines: node: '>=8' @@ -5808,7 +5880,7 @@ packages: node: '>=8' resolution: integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw== - /cpy/8.1.1: + /cpy/8.1.2: dependencies: arrify: 2.0.1 cp-file: 7.0.0 @@ -5823,10 +5895,10 @@ packages: engines: node: '>=8' resolution: - integrity: sha512-vqHT+9o67sMwJ5hUd/BAOYeemkU+MuFRsK2c36Xc3eefQpAsp1kAsyDxEDcc5JS1+y9l/XHPrIsVTcyGGmkUUQ== + integrity: sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg== /create-ecdh/4.0.4: dependencies: - bn.js: 4.11.9 + bn.js: 4.12.0 elliptic: 6.5.4 dev: true resolution: @@ -5917,16 +5989,6 @@ packages: node: '>=4.8' resolution: integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== - /cross-spawn/7.0.1: - dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.2 - dev: true - engines: - node: '>= 8' - resolution: - integrity: sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg== /cross-spawn/7.0.3: dependencies: path-key: 3.1.1 @@ -6019,7 +6081,7 @@ packages: boolbase: 1.0.0 css-what: 4.0.0 domhandler: 4.0.0 - domutils: 2.4.4 + domutils: 2.5.0 nth-check: 2.0.0 dev: true resolution: @@ -6174,14 +6236,14 @@ packages: node: '>=8' resolution: integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== - /csstype/2.6.15: + /csstype/2.6.16: dev: true resolution: - integrity: sha512-FNeiVKudquehtR3t9TRRnsHL+lJhuHF5Zn9dt01jpojlurLEPDhhEtUkWmAUJ7/fOLaLG4dCDEnUsR0N1rZSsg== - /csstype/3.0.6: + integrity: sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q== + /csstype/3.0.7: dev: true resolution: - integrity: sha512-+ZAmfyWMT7TiIlzdqJgjMb7S4f1beorDbWbsocyK4RaiqA5RTX3K14bnBWmmA9QEM0gRdsjyyrEmcyga8Zsxmw== + integrity: sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g== /currently-unhandled/0.4.1: dependencies: array-find-index: 1.0.2 @@ -6220,12 +6282,12 @@ packages: node: '>=10' resolution: integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== - /date-fns/2.17.0: + /date-fns/2.19.0: dev: false engines: node: '>=0.11' resolution: - integrity: sha512-ZEhqxUtEZeGgg9eHNSOAJ8O9xqSgiJdrL0lzSSfMF54x6KXWJiOH/xntSJ9YomJPrYH/p08t6gWjGWq1SDJlSA== + integrity: sha512-X3bf2iTPgCAQp9wvjOQytnf5vO5rESYRXlPIVcgSbtT5OTScPcsf9eZU+B/YIkKAtYr5WeCii58BgATrNitlWg== /date-time/3.1.0: dependencies: time-zone: 1.0.0 @@ -6302,7 +6364,7 @@ packages: is-arguments: 1.1.0 is-date-object: 1.0.2 is-regex: 1.1.2 - object-is: 1.1.4 + object-is: 1.1.5 object-keys: 1.1.1 regexp.prototype.flags: 1.3.1 dev: true @@ -6406,7 +6468,7 @@ packages: graceful-fs: 4.2.6 is-glob: 4.0.1 is-path-cwd: 2.2.0 - is-path-inside: 3.0.2 + is-path-inside: 3.0.3 p-map: 4.0.0 rimraf: 3.0.2 slash: 3.0.0 @@ -6497,21 +6559,12 @@ packages: integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q== /diffie-hellman/5.0.3: dependencies: - bn.js: 4.11.9 + bn.js: 4.12.0 miller-rabin: 4.0.1 randombytes: 2.1.0 dev: true resolution: integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== - /dir-glob/2.0.0: - dependencies: - arrify: 1.0.1 - path-type: 3.0.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag== /dir-glob/2.2.2: dependencies: path-type: 3.0.0 @@ -6644,14 +6697,14 @@ packages: dev: true resolution: integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== - /domutils/2.4.4: + /domutils/2.5.0: dependencies: dom-serializer: 1.2.0 domelementtype: 2.1.0 domhandler: 4.0.0 dev: true resolution: - integrity: sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA== + integrity: sha512-Ho16rzNMOFk2fPwChGh3D2D9OEHAfG19HgmRR2l+WLSsIstNsAYBzePH412bL0y5T44ejABIVfTHQ8nqi/tBCg== /dot-case/3.0.4: dependencies: no-case: 3.0.4 @@ -6700,8 +6753,8 @@ packages: integrity: sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== /downshift/6.1.0: dependencies: - '@babel/runtime': 7.12.13 - compute-scroll-into-view: 1.0.16 + '@babel/runtime': 7.13.10 + compute-scroll-into-view: 1.0.17 prop-types: 15.7.2 react-is: 17.0.1 dev: true @@ -6711,8 +6764,8 @@ packages: integrity: sha512-MnEJERij+1pTVAsOPsH3q9MJGNIZuu2sT90uxOCEOZYH6sEzkVGtUcTBVDRQkE8y96zpB7uEbRn24aE9VpHnZg== /downshift/6.1.0_react@16.13.1: dependencies: - '@babel/runtime': 7.12.13 - compute-scroll-into-view: 1.0.16 + '@babel/runtime': 7.13.10 + compute-scroll-into-view: 1.0.17 prop-types: 15.7.2 react: 16.13.1 react-is: 17.0.1 @@ -6752,7 +6805,7 @@ packages: /ejs-loader/0.5.0: dependencies: loader-utils: 2.0.0 - lodash: 4.17.20 + lodash: 4.17.21 dev: true resolution: integrity: sha512-iirFqlP3tiFoedNZ7dQcjvechunl054VbW6Ki38T/pabgXMAncduSE0ZXLeVGn1NbmcUJF9Z5TC0EvQ4RIpP9Q== @@ -6772,19 +6825,19 @@ packages: hasBin: true resolution: integrity: sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw== - /electron-to-chromium/1.3.667: + /electron-to-chromium/1.3.689: dev: true resolution: - integrity: sha512-Ot1pPtAVb5nd7jeVF651zmfLFilRVFomlDzwXmdlWe5jyzOGa6mVsQ06XnAurT7wWfg5VEIY+LopbAdD/bpo5w== - /element-resize-detector/1.2.1: + integrity: sha512-WCn+ZaU3V8WttlLNSOGOAlR2XpxibGre7slwGrYBB6oTjYPgP29LNDGG6wLvLTMseLdE+G1vno7PfY7JyDV48g== + /element-resize-detector/1.2.2: dependencies: batch-processor: 1.0.0 dev: true resolution: - integrity: sha512-BdFsPepnQr9fznNPF9nF4vQ457U/ZJXQDSNF1zBe7yaga8v9AdZf3/NElYxFdUh7SitSGt040QygiTo6dtatIw== + integrity: sha512-+LOXRkCJc4I5WhEJxIDjhmE3raF8jtOMBDqSCgZTMz2TX3oXAX5pE2+MDeopJlGdXzP7KzPbBJaUGfNaP9HG4A== /elliptic/6.5.4: dependencies: - bn.js: 4.11.9 + bn.js: 4.12.0 brorand: 1.1.0 hash.js: 1.1.7 hmac-drbg: 1.0.1 @@ -6832,7 +6885,7 @@ packages: integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== /emotion-theming/10.0.27_88480db83d3b7400155217a2792cf198: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 '@emotion/core': 10.1.1_react@16.13.1 '@emotion/weak-memoize': 0.2.5 hoist-non-react-statics: 3.3.2 @@ -6845,7 +6898,7 @@ packages: integrity: sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw== /emotion-theming/10.0.27_@emotion+core@10.1.1: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 '@emotion/core': 10.1.1 '@emotion/weak-memoize': 0.2.5 hoist-non-react-statics: 3.3.2 @@ -6903,12 +6956,12 @@ packages: dev: true resolution: integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== - /env-paths/2.2.0: + /env-paths/2.2.1: dev: true engines: node: '>=6' resolution: - integrity: sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA== + integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== /envinfo/7.7.4: dev: true engines: @@ -6916,11 +6969,11 @@ packages: hasBin: true resolution: integrity: sha512-TQXTYFVVwwluWSFis6K2XKxgrD22jEv0FTuLCQI+OjH7rn93+iY0fSSFM5lrSxFY+H1+B0/cvvlamr3UsBivdQ== - /enzyme-adapter-preact-pure/3.0.0_enzyme@3.11.0+preact@10.5.12: + /enzyme-adapter-preact-pure/3.0.0_enzyme@3.11.0+preact@10.5.13: dependencies: array.prototype.flatmap: 1.2.4 enzyme: 3.11.0 - preact: 10.5.12 + preact: 10.5.13 dev: true peerDependencies: enzyme: ^3.8.0 @@ -6930,7 +6983,7 @@ packages: /enzyme-shallow-equal/1.0.4: dependencies: has: 1.0.3 - object-is: 1.1.4 + object-is: 1.1.5 dev: true resolution: integrity: sha512-MttIwB8kKxypwHvRynuC3ahyNc+cFbR8mjVIltnmzQ0uKGqmsfO4bfBuLxb0beLNPhjblUEYvEbsg+VSygvF1Q== @@ -6939,7 +6992,7 @@ packages: array.prototype.flat: 1.2.4 cheerio: 1.0.0-rc.5 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.3.0 is-boolean-object: 1.1.0 @@ -6951,13 +7004,13 @@ packages: lodash.escape: 4.0.1 lodash.isequal: 4.5.0 object-inspect: 1.9.0 - object-is: 1.1.4 + object-is: 1.1.5 object.assign: 4.1.2 object.entries: 1.1.3 - object.values: 1.1.2 + object.values: 1.1.3 raf: 3.4.1 rst-selector-parser: 2.2.3 - string.prototype.trim: 1.2.3 + string.prototype.trim: 1.2.4 dev: true resolution: integrity: sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw== @@ -6980,45 +7033,29 @@ packages: dev: true resolution: integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - /es-abstract/1.17.7: - dependencies: - es-to-primitive: 1.2.1 - function-bind: 1.1.1 - has: 1.0.3 - has-symbols: 1.0.1 - is-callable: 1.2.3 - is-regex: 1.1.2 - object-inspect: 1.9.0 - object-keys: 1.1.1 - object.assign: 4.1.2 - string.prototype.trimend: 1.0.3 - string.prototype.trimstart: 1.0.3 - dev: true - engines: - node: '>= 0.4' - resolution: - integrity: sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g== - /es-abstract/1.18.0-next.2: + /es-abstract/1.18.0: 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.1 + 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.9.0 object-keys: 1.1.1 object.assign: 4.1.2 - string.prototype.trimend: 1.0.3 - string.prototype.trimstart: 1.0.3 + string.prototype.trimend: 1.0.4 + string.prototype.trimstart: 1.0.4 + unbox-primitive: 1.0.0 dev: true engines: node: '>= 0.4' resolution: - integrity: sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw== + integrity: sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw== /es-array-method-boxes-properly/1.0.0: dev: true resolution: @@ -7027,7 +7064,7 @@ packages: dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.1 - has-symbols: 1.0.1 + has-symbols: 1.0.2 is-arguments: 1.1.0 is-map: 2.0.2 is-set: 2.0.2 @@ -7104,28 +7141,42 @@ packages: source-map: 0.6.1 resolution: integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== - /eslint-config-preact/1.1.3_eslint@7.20.0+typescript@4.1.5: + /escodegen/2.0.0: dependencies: - babel-eslint: 10.1.0_eslint@7.20.0 - eslint: 7.20.0 - eslint-plugin-compat: 3.9.0_eslint@7.20.0 - eslint-plugin-jest: 23.20.0_eslint@7.20.0+typescript@4.1.5 - eslint-plugin-react: 7.22.0_eslint@7.20.0 - eslint-plugin-react-hooks: 4.2.0_eslint@7.20.0 + esprima: 4.0.1 + estraverse: 5.2.0 + esutils: 2.0.3 + optionator: 0.8.3 + dev: true + engines: + node: '>=6.0' + hasBin: true + optionalDependencies: + source-map: 0.6.1 + resolution: + integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== + /eslint-config-preact/1.1.3_eslint@7.22.0+typescript@4.2.3: + dependencies: + babel-eslint: 10.1.0_eslint@7.22.0 + eslint: 7.22.0 + eslint-plugin-compat: 3.9.0_eslint@7.22.0 + eslint-plugin-jest: 23.20.0_eslint@7.22.0+typescript@4.2.3 + eslint-plugin-react: 7.22.0_eslint@7.22.0 + eslint-plugin-react-hooks: 4.2.0_eslint@7.22.0 dev: true peerDependencies: eslint: 6.x || 7.x typescript: '*' resolution: integrity: sha512-AU90nXiNv3P1kA10eBJkv8TB6dd81OsT4UyM5fG6Ie8bxQGinE/6XR7LMxylvk3fusK5xAxDET4bIHPT6S5Hvw== - /eslint-plugin-compat/3.9.0_eslint@7.20.0: + /eslint-plugin-compat/3.9.0_eslint@7.22.0: dependencies: '@mdn/browser-compat-data': 2.0.7 ast-metadata-inferer: 0.4.0 browserslist: 4.16.3 - caniuse-lite: 1.0.30001187 - core-js: 3.8.3 - eslint: 7.20.0 + caniuse-lite: 1.0.30001200 + core-js: 3.9.1 + eslint: 7.22.0 find-up: 4.1.0 lodash.memoize: 4.1.2 semver: 7.3.2 @@ -7136,18 +7187,18 @@ packages: eslint: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 resolution: integrity: sha512-lt3l5PHFHVEYSZ5zijcoYvtQJPsBifRiH5N0Et57KwVu7l/yxmHhSG6VJiLMa/lXrg93Qu8049RNQOMn0+yJBg== - /eslint-plugin-header/3.1.1_eslint@7.20.0: + /eslint-plugin-header/3.1.1_eslint@7.22.0: dependencies: - eslint: 7.20.0 + eslint: 7.22.0 dev: true peerDependencies: eslint: '>=7.7.0' resolution: integrity: sha512-9vlKxuJ4qf793CmeeSrZUvVClw6amtpghq3CuWcB5cUNnWHQhgcqy5eF8oVKFk1G3Y/CbchGfEaw3wiIJaNmVg== - /eslint-plugin-jest/23.20.0_eslint@7.20.0+typescript@4.1.5: + /eslint-plugin-jest/23.20.0_eslint@7.22.0+typescript@4.2.3: dependencies: - '@typescript-eslint/experimental-utils': 2.34.0_eslint@7.20.0+typescript@4.1.5 - eslint: 7.20.0 + '@typescript-eslint/experimental-utils': 2.34.0_eslint@7.22.0+typescript@4.2.3 + eslint: 7.22.0 dev: true engines: node: '>=8' @@ -7156,9 +7207,9 @@ packages: typescript: '*' resolution: integrity: sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw== - /eslint-plugin-react-hooks/4.2.0_eslint@7.20.0: + /eslint-plugin-react-hooks/4.2.0_eslint@7.22.0: dependencies: - eslint: 7.20.0 + eslint: 7.22.0 dev: true engines: node: '>=10' @@ -7166,20 +7217,20 @@ packages: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 resolution: integrity: sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ== - /eslint-plugin-react/7.22.0_eslint@7.20.0: + /eslint-plugin-react/7.22.0_eslint@7.22.0: dependencies: - array-includes: 3.1.2 + array-includes: 3.1.3 array.prototype.flatmap: 1.2.4 doctrine: 2.1.0 - eslint: 7.20.0 + eslint: 7.22.0 has: 1.0.3 jsx-ast-utils: 3.2.0 object.entries: 1.1.3 - object.fromentries: 2.0.3 - object.values: 1.1.2 + object.fromentries: 2.0.4 + object.values: 1.1.3 prop-types: 15.7.2 resolve: 1.20.0 - string.prototype.matchall: 4.0.3 + string.prototype.matchall: 4.0.4 dev: true engines: node: '>=4' @@ -7225,10 +7276,10 @@ packages: node: '>=10' resolution: integrity: sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== - /eslint/7.20.0: + /eslint/7.22.0: dependencies: '@babel/code-frame': 7.12.11 - '@eslint/eslintrc': 0.3.0 + '@eslint/eslintrc': 0.4.0 ajv: 6.12.6 chalk: 4.1.0 cross-spawn: 7.0.3 @@ -7241,10 +7292,10 @@ packages: espree: 7.3.1 esquery: 1.4.0 esutils: 2.0.3 - file-entry-cache: 6.0.0 + file-entry-cache: 6.0.1 functional-red-black-tree: 1.0.1 - glob-parent: 5.1.1 - globals: 12.4.0 + glob-parent: 5.1.2 + globals: 13.6.0 ignore: 4.0.6 import-fresh: 3.3.0 imurmurhash: 0.1.4 @@ -7252,7 +7303,7 @@ packages: js-yaml: 3.14.1 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 - lodash: 4.17.20 + lodash: 4.17.21 minimatch: 3.0.4 natural-compare: 1.4.0 optionator: 0.9.1 @@ -7263,13 +7314,13 @@ packages: strip-json-comments: 3.1.1 table: 6.0.7 text-table: 0.2.0 - v8-compile-cache: 2.2.0 + v8-compile-cache: 2.3.0 dev: true engines: node: ^10.12.0 || >=12.0.0 hasBin: true resolution: - integrity: sha512-qGi0CTcOGP2OtCQBgWZlQjcTuP0XkIpYFj25XtRTQSHC+umNnp7UMshr2G8SLsRFYDdAPFeHOsiteadmMH02Yw== + integrity: sha512-3VawOtjSJUQiiqac8MQc+w457iGLfuNGLFn8JmF051tTKbh5/x/0vlcEj8OgDCaw7Ysa2Jn8paGshV7x2abKXg== /esm/3.2.25: dev: true engines: @@ -7345,12 +7396,12 @@ packages: dev: true resolution: integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== - /events/3.2.0: + /events/3.3.0: dev: true engines: node: '>=0.8.x' resolution: - integrity: sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg== + integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== /eventsource/1.0.7: dependencies: original: 1.0.2 @@ -7554,7 +7605,7 @@ packages: dependencies: '@nodelib/fs.stat': 2.0.4 '@nodelib/fs.walk': 1.2.6 - glob-parent: 5.1.1 + glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.2 picomatch: 2.2.2 @@ -7571,12 +7622,12 @@ packages: dev: true resolution: integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= - /fastq/1.10.1: + /fastq/1.11.0: dependencies: reusify: 1.0.4 dev: true resolution: - integrity: sha512-AWuv6Ery3pM+dY7LYS8YIaCiQvUaos9OB1RyNgaOWnaX+Tik7Onvcsf8x8c+YtDeT0maYLniBip2hox5KtEXXA== + integrity: sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g== /fault/1.0.4: dependencies: format: 0.2.2 @@ -7609,14 +7660,25 @@ packages: node: '>=8' resolution: integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== - /file-entry-cache/6.0.0: + /file-entry-cache/6.0.1: dependencies: flat-cache: 3.0.4 dev: true engines: node: ^10.12.0 || >=12.0.0 resolution: - integrity: sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA== + integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + /file-loader/1.1.11: + dependencies: + loader-utils: 1.4.0 + schema-utils: 0.4.7 + dev: true + engines: + node: '>= 4.3 < 5.0.0 || >= 5.10' + peerDependencies: + webpack: ^2.0.0 || ^3.0.0 || ^4.0.0 + resolution: + integrity: sha512-TGR4HU7HUsGg6GCOPJnFk06RhWgEWFLAGWiT6rcD+GRC2keU3s9RGJ+b3Z6/U73jwwNb2gKLJ7YCrp+jvU4ALg== /file-loader/6.2.0_webpack@4.46.0: dependencies: loader-utils: 2.0.0 @@ -7654,12 +7716,12 @@ packages: node: '>= 0.4.0' resolution: integrity: sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg== - /filesize/6.0.1: + /filesize/6.1.0: dev: true engines: node: '>= 0.4.0' resolution: - integrity: sha512-u4AYWPgbI5GBhs6id1KdImZWn5yfyFrrQ8OWZdN7ZMfA8Bf4HcO0BGo9bmUIEV8yrp8I1xVfJ/dn90GtFNNJcg== + integrity: sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg== /fill-range/4.0.0: dependencies: extend-shallow: 2.0.1 @@ -7763,7 +7825,7 @@ packages: dev: true resolution: integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== - /follow-redirects/1.13.2: + /follow-redirects/1.13.3: engines: node: '>=4.0' peerDependencies: @@ -7772,8 +7834,8 @@ packages: debug: optional: true resolution: - integrity: sha512-6mPTgLxYm3r6Bkkg0vNM0HTjfGrOEtsfbhagQvbxDEsEkpNhw582upBaoRZylzen6krEmxXJgt9Ju6HiI4O7BA== - /follow-redirects/1.13.2_debug@4.3.1: + integrity: sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA== + /follow-redirects/1.13.3_debug@4.3.1: dependencies: debug: 4.3.1_supports-color@6.1.0 dev: true @@ -7785,7 +7847,7 @@ packages: debug: optional: true resolution: - integrity: sha512-6mPTgLxYm3r6Bkkg0vNM0HTjfGrOEtsfbhagQvbxDEsEkpNhw582upBaoRZylzen6krEmxXJgt9Ju6HiI4O7BA== + integrity: sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA== /for-each/0.3.3: dependencies: is-callable: 1.2.3 @@ -7802,22 +7864,6 @@ packages: dev: true resolution: integrity: sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= - /fork-ts-checker-webpack-plugin/3.1.1: - dependencies: - babel-code-frame: 6.26.0 - chalk: 2.4.2 - chokidar: 3.5.1 - micromatch: 3.1.10 - minimatch: 3.0.4 - semver: 5.7.1 - tapable: 1.1.3 - worker-rpc: 0.1.1 - dev: true - engines: - node: '>=6.11.5' - yarn: '>=1.0.0' - resolution: - integrity: sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ== /fork-ts-checker-webpack-plugin/4.1.6: dependencies: '@babel/code-frame': 7.12.13 @@ -7971,17 +8017,17 @@ packages: dev: true resolution: integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - /function.prototype.name/1.1.3: + /function.prototype.name/1.1.4: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.0 functions-have-names: 1.2.2 dev: true engines: node: '>= 0.4' resolution: - integrity: sha512-H51qkbNSp8mtkJt+nyW1gyStBiKZxfRqySNUR99ylq6BPXHKI4SEvIlTKp4odLfjRKJV04DFWMU3G/YRlQOsag== + integrity: sha512-iqy1pIotY/RmhdFZygSSlW0wko2yxkSCKqsuv4pr8QESohpYyG/Z7B/XXvPRKTJS//960rgguE5mSRUsDdaJrQ== /functional-red-black-tree/1.0.1: dev: true resolution: @@ -8033,7 +8079,7 @@ packages: dependencies: function-bind: 1.1.1 has: 1.0.3 - has-symbols: 1.0.1 + has-symbols: 1.0.2 dev: true resolution: integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== @@ -8145,14 +8191,14 @@ packages: dev: true resolution: integrity: sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= - /glob-parent/5.1.1: + /glob-parent/5.1.2: dependencies: is-glob: 4.0.1 dev: true engines: node: '>= 6' resolution: - integrity: sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== /glob-promise/3.4.0_glob@7.1.6: dependencies: '@types/glob': 7.1.3 @@ -8234,14 +8280,35 @@ packages: node: '>=8' resolution: integrity: sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== - /globalthis/1.0.1: + /globals/13.6.0: + dependencies: + type-fest: 0.20.2 + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-YFKCX0SiPg7l5oKYCJ2zZGxcXprVXHcSnVuvzrT3oSENQonVLqM5pf9fN5dLGZGyCjhw8TN8Btwe/jKnZ0pjvQ== + /globalthis/1.0.2: dependencies: define-properties: 1.1.3 dev: true engines: node: '>= 0.4' resolution: - integrity: sha512-mJPRTc/P39NH/iNG4mXa9aIhNymaQikTrnspeCa2ZuJ+mH2QN/rXwtX3XwKrHqWgUQFbNZKtHM105aHzJalElw== + integrity: sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ== + /globby/11.0.1: + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.5 + ignore: 5.1.8 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + engines: + node: '>=10' + resolution: + integrity: sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ== /globby/11.0.2: dependencies: array-union: 2.1.0 @@ -8280,20 +8347,6 @@ packages: node: '>=4' resolution: integrity: sha1-+yzP+UAfhgCUXfral0QMypcrhoA= - /globby/8.0.2: - dependencies: - array-union: 1.0.2 - dir-glob: 2.0.0 - fast-glob: 2.2.7 - glob: 7.1.6 - ignore: 3.3.10 - pify: 3.0.0 - slash: 1.0.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w== /globby/9.2.0: dependencies: '@types/glob': 7.1.3 @@ -8312,7 +8365,7 @@ packages: /globule/1.3.2: dependencies: glob: 7.1.6 - lodash: 4.17.20 + lodash: 4.17.21 minimatch: 3.0.4 dev: true engines: @@ -8381,7 +8434,7 @@ packages: node: '>=0.4.7' hasBin: true optionalDependencies: - uglify-js: 3.12.8 + uglify-js: 3.13.1 resolution: integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== /har-schema/2.0.0: @@ -8412,6 +8465,10 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= + /has-bigints/1.0.1: + dev: true + resolution: + integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== /has-flag/3.0.0: dev: true engines: @@ -8432,12 +8489,12 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc= - /has-symbols/1.0.1: + /has-symbols/1.0.2: dev: true engines: node: '>= 0.4' resolution: - integrity: sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== + integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== /has-unicode/2.0.1: dev: true resolution: @@ -8515,7 +8572,7 @@ packages: property-information: 5.6.0 space-separated-tokens: 1.1.5 style-to-object: 0.3.0 - unist-util-is: 4.0.4 + unist-util-is: 4.1.0 web-namespaces: 1.1.4 dev: true resolution: @@ -8703,16 +8760,32 @@ packages: node: '>=4.0.0' resolution: integrity: sha512-gaYKMGBPDts3Fb1WXyDEEcS/0TSRg2IDl3EsbQL2AkKWTqdjSKwfQ8Iz0RhPiWErJfqhq5/wkhoYyjQoG55pug== + /html-webpack-inline-chunk-plugin/1.1.1: + dependencies: + lodash: 4.17.21 + source-map-url: 0.4.1 + dev: true + resolution: + integrity: sha1-a8fXhOHmaKUOYdFO4VYLYH46ecg= + /html-webpack-inline-source-plugin/0.0.10: + dependencies: + escape-string-regexp: 1.0.5 + slash: 1.0.0 + source-map-url: 0.4.1 + dev: true + resolution: + integrity: sha512-0ZNU57u7283vrXSF5a4VDnVOMWiSwypKIp1z/XfXWoVHLA1r3Xmyxx5+Lz+mnthz/UvxL1OAf41w5UIF68Jngw== /html-webpack-plugin/3.2.0_webpack@4.46.0: dependencies: html-minifier: 3.5.21 loader-utils: 0.2.17 - lodash: 4.17.20 + lodash: 4.17.21 pretty-error: 2.1.2 tapable: 1.1.3 toposort: 1.0.7 util.promisify: 1.0.0 webpack: 4.46.0 + deprecated: 3.x is no longer supported dev: true engines: node: '>=6.9' @@ -8720,14 +8793,14 @@ packages: webpack: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 resolution: integrity: sha1-sBq71yOsqqeze2r0SS69oD2d03s= - /html-webpack-plugin/4.5.1_webpack@4.46.0: + /html-webpack-plugin/4.5.2_webpack@4.46.0: dependencies: '@types/html-minifier-terser': 5.1.1 '@types/tapable': 1.0.6 '@types/webpack': 4.41.26 html-minifier-terser: 5.1.1 loader-utils: 1.4.0 - lodash: 4.17.20 + lodash: 4.17.21 pretty-error: 2.1.2 tapable: 1.1.3 util.promisify: 1.0.0 @@ -8738,7 +8811,16 @@ packages: peerDependencies: webpack: ^4.0.0 || ^5.0.0 resolution: - integrity: sha512-yzK7RQZwv9xB+pcdHNTjcqbaaDZ+5L0zJHXfi89iWIZmb/FtzxhLk0635rmJihcQbs3ZUF27Xp4oWGx6EK56zg== + integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A== + /html-webpack-skip-assets-plugin/1.0.1: + dependencies: + minimatch: 3.0.4 + dev: true + peerDependencies: + html-webpack-plugin: '>=3.0.0' + webpack: '>=3.0.0' + resolution: + integrity: sha512-Ha7RkuihcG0e1w4gGsJJ6uRyPtiRmfoSH+SA9GiIywjUa8P8JioTUGGvzuIXFvUD05cASCrQY7VsAnwKfTzylA== /htmlparser2/3.10.1: dependencies: domelementtype: 1.3.1 @@ -8750,15 +8832,15 @@ packages: dev: true resolution: integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== - /htmlparser2/6.0.0: + /htmlparser2/6.0.1: dependencies: domelementtype: 2.1.0 domhandler: 4.0.0 - domutils: 2.4.4 + domutils: 2.5.0 entities: 2.1.0 dev: true resolution: - integrity: sha512-numTQtDZMoh78zJpaNdJ9MXb2cv5G3jwUoe3dMQODubZvLoGvTE/Ofp6sHvH8OGKcN/8A47pGLi/k58xHP/Tfw== + integrity: sha512-GDKPd+vk4jvSuvCbyuzx/unmXkk090Azec7LovXP8as1Hn8q9p3hbjmDGbUqqhknw0ajwit6LiiWqfiTUPMK7w== /http-cache-semantics/4.1.0: dev: true resolution: @@ -8810,7 +8892,7 @@ packages: dependencies: http-proxy: 1.18.1_debug@4.3.1 is-glob: 4.0.1 - lodash: 4.17.20 + lodash: 4.17.21 micromatch: 3.1.10 dev: true engines: @@ -8822,7 +8904,7 @@ packages: /http-proxy/1.18.1_debug@4.3.1: dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.13.2_debug@4.3.1 + follow-redirects: 1.13.3_debug@4.3.1 requires-port: 1.0.0 dev: true engines: @@ -8914,10 +8996,10 @@ packages: node: '>= 4' resolution: integrity: sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== - /immer/1.10.0: + /immer/8.0.1: dev: true resolution: - integrity: sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg== + integrity: sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA== /import-cwd/2.1.0: dependencies: import-from: 2.1.0 @@ -9039,30 +9121,14 @@ packages: node: '>=10' resolution: integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== - /inline-style-parser/0.1.1: + /inline-chunk-html-plugin/1.1.1: dev: true resolution: - integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== - /inquirer/7.0.4: - dependencies: - ansi-escapes: 4.3.1 - chalk: 2.4.2 - cli-cursor: 3.1.0 - cli-width: 2.2.1 - external-editor: 3.1.0 - figures: 3.2.0 - lodash: 4.17.20 - mute-stream: 0.0.8 - run-async: 2.4.1 - rxjs: 6.6.3 - string-width: 4.2.0 - strip-ansi: 5.2.0 - through: 2.3.8 + integrity: sha512-6W1eGIj8z/Yla6xJx5il6jJfCxMZS3kVkbiLQThbbjdsDLRIWkUVmpnhfW2l6WAwCW+qfy0zoXVGBZM1E5XF3g== + /inline-style-parser/0.1.1: dev: true - engines: - node: '>=6.0.0' resolution: - integrity: sha512-Bu5Td5+j11sCkqfqmUTiwv+tWisMtP0L7Q8WrqA2C/BbBhy1YTdFrvjjlrKq8oagA/tLQBski2Gcx/Sqyi2qSQ== + integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== /inquirer/7.3.3: dependencies: ansi-escapes: 4.3.1 @@ -9071,11 +9137,11 @@ packages: cli-width: 3.0.0 external-editor: 3.1.0 figures: 3.2.0 - lodash: 4.17.20 + lodash: 4.17.21 mute-stream: 0.0.8 run-async: 2.4.1 - rxjs: 6.6.3 - string-width: 4.2.0 + rxjs: 6.6.6 + string-width: 4.2.2 strip-ansi: 6.0.0 through: 2.3.8 dev: true @@ -9197,6 +9263,10 @@ packages: dev: true resolution: integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + /is-bigint/1.0.1: + dev: true + resolution: + integrity: sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg== /is-binary-path/1.0.1: dependencies: binary-extensions: 1.13.1 @@ -9424,7 +9494,7 @@ packages: /is-installed-globally/0.3.2: dependencies: global-dirs: 2.1.0 - is-path-inside: 3.0.2 + is-path-inside: 3.0.3 dev: true engines: node: '>=8' @@ -9433,7 +9503,7 @@ packages: /is-installed-globally/0.4.0: dependencies: global-dirs: 3.0.0 - is-path-inside: 3.0.2 + is-path-inside: 3.0.3 dev: true engines: node: '>=10' @@ -9529,12 +9599,12 @@ packages: node: '>=6' resolution: integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg== - /is-path-inside/3.0.2: + /is-path-inside/3.0.3: dev: true engines: node: '>=8' resolution: - integrity: sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg== + integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== /is-plain-obj/1.1.0: dev: true engines: @@ -9578,7 +9648,7 @@ packages: /is-regex/1.1.2: dependencies: call-bind: 1.0.2 - has-symbols: 1.0.1 + has-symbols: 1.0.2 dev: true engines: node: '>= 0.4' @@ -9636,7 +9706,7 @@ packages: integrity: sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ== /is-symbol/1.0.3: dependencies: - has-symbols: 1.0.1 + has-symbols: 1.0.2 dev: true engines: node: '>= 0.4' @@ -9737,7 +9807,7 @@ packages: integrity: sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== /istanbul-lib-instrument/4.0.3: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.0.0 semver: 6.3.0 @@ -9829,10 +9899,10 @@ packages: integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg== /jest-config/26.6.3: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 '@jest/test-sequencer': 26.6.3 '@jest/types': 26.6.2 - babel-jest: 26.6.3_@babel+core@7.12.16 + babel-jest: 26.6.3_@babel+core@7.13.10 chalk: 4.1.0 deepmerge: 4.2.2 glob: 7.1.6 @@ -9893,10 +9963,10 @@ packages: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 14.14.28 + '@types/node': 14.14.35 jest-mock: 26.6.2 jest-util: 26.6.2 - jsdom: 16.4.0 + jsdom: 16.5.1 dev: true engines: node: '>= 10.14.2' @@ -9907,7 +9977,7 @@ packages: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 14.14.28 + '@types/node': 14.14.35 jest-mock: 26.6.2 jest-util: 26.6.2 dev: true @@ -9925,7 +9995,7 @@ packages: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.5 - '@types/node': 14.14.28 + '@types/node': 14.14.35 anymatch: 3.1.1 fb-watchman: 2.0.1 graceful-fs: 4.2.6 @@ -9945,12 +10015,12 @@ packages: integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w== /jest-jasmine2/26.6.3: dependencies: - '@babel/traverse': 7.12.13 + '@babel/traverse': 7.13.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.28 + '@types/node': 14.14.35 chalk: 4.1.0 co: 4.6.0 expect: 26.6.2 @@ -10007,7 +10077,7 @@ packages: /jest-mock/26.6.2: dependencies: '@jest/types': 26.6.2 - '@types/node': 14.14.28 + '@types/node': 14.14.35 dev: true engines: node: '>= 10.14.2' @@ -10026,20 +10096,20 @@ packages: optional: true resolution: integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== - /jest-preset-preact/4.0.2_120c6743da4bd73ebdbf5629f89f97bc: - dependencies: - '@babel/core': 7.12.16 - '@babel/plugin-proposal-class-properties': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-react-jsx': 7.12.16_@babel+core@7.12.16 - '@babel/preset-env': 7.12.16_@babel+core@7.12.16 - '@babel/preset-typescript': 7.12.16_@babel+core@7.12.16 - babel-jest: 26.6.3_@babel+core@7.12.16 + /jest-preset-preact/4.0.2_493569fdee6cc9af7c4a84b8e8806063: + dependencies: + '@babel/core': 7.13.10 + '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-transform-react-jsx': 7.12.17_@babel+core@7.13.10 + '@babel/preset-env': 7.13.10_@babel+core@7.13.10 + '@babel/preset-typescript': 7.13.0_@babel+core@7.13.10 + babel-jest: 26.6.3_@babel+core@7.13.10 identity-obj-proxy: 3.0.0 isomorphic-unfetch: 3.1.0 jest: 26.6.3 jest-watch-typeahead: 0.6.1_jest@26.6.3 - preact: 10.5.12 - preact-render-to-string: 5.1.12_preact@10.5.12 + preact: 10.5.13 + preact-render-to-string: 5.1.16_preact@10.5.13 dev: true peerDependencies: jest: 26.x @@ -10084,7 +10154,7 @@ packages: '@jest/environment': 26.6.2 '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 14.14.28 + '@types/node': 14.14.35 chalk: 4.1.0 emittery: 0.7.2 exit: 0.1.2 @@ -10142,7 +10212,7 @@ packages: integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw== /jest-serializer/26.6.2: dependencies: - '@types/node': 14.14.28 + '@types/node': 14.14.35 graceful-fs: 4.2.6 dev: true engines: @@ -10151,10 +10221,10 @@ packages: integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g== /jest-snapshot/26.6.2: dependencies: - '@babel/types': 7.12.13 + '@babel/types': 7.13.0 '@jest/types': 26.6.2 - '@types/babel__traverse': 7.11.0 - '@types/prettier': 2.2.1 + '@types/babel__traverse': 7.11.1 + '@types/prettier': 2.2.3 chalk: 4.1.0 expect: 26.6.2 graceful-fs: 4.2.6 @@ -10175,7 +10245,7 @@ packages: /jest-util/26.6.2: dependencies: '@jest/types': 26.6.2 - '@types/node': 14.14.28 + '@types/node': 14.14.35 chalk: 4.1.0 graceful-fs: 4.2.6 is-ci: 2.0.0 @@ -10219,7 +10289,7 @@ packages: dependencies: '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 14.14.28 + '@types/node': 14.14.35 ansi-escapes: 4.3.1 chalk: 4.1.0 jest-util: 26.6.2 @@ -10240,7 +10310,7 @@ packages: integrity: sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== /jest-worker/26.6.2: dependencies: - '@types/node': 14.14.28 + '@types/node': 14.14.35 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -10269,10 +10339,6 @@ packages: node: '>= 0.8' resolution: integrity: sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8= - /js-tokens/3.0.2: - dev: true - resolution: - integrity: sha1-mGbfOVECEw449/mWvOtlRDIJwls= /js-tokens/4.0.0: dev: true resolution: @@ -10321,33 +10387,33 @@ packages: node: '>=8' resolution: integrity: sha512-QPOggIJ8fquWPLaYYMoh+zqUmdphDtu1ju0QGTitZT1Yd8I5qenPpXM1etzUegu3MjVp8XPzgZxdn8Yj7e40ig== - /jsdom/16.4.0: + /jsdom/16.5.1: dependencies: abab: 2.0.5 - acorn: 7.4.1 + acorn: 8.1.0 acorn-globals: 6.0.0 cssom: 0.4.4 cssstyle: 2.3.0 data-urls: 2.0.0 decimal.js: 10.2.1 domexception: 2.0.1 - escodegen: 1.14.3 + escodegen: 2.0.0 html-encoding-sniffer: 2.0.1 is-potential-custom-element-name: 1.0.0 nwsapi: 2.2.0 - parse5: 5.1.1 + 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: 3.0.1 + tough-cookie: 4.0.0 w3c-hr-time: 1.0.2 w3c-xmlserializer: 2.0.0 webidl-conversions: 6.1.0 whatwg-encoding: 1.0.5 whatwg-mimetype: 2.3.0 whatwg-url: 8.4.0 - ws: 7.4.3 + ws: 7.4.4 xml-name-validator: 3.0.0 dev: true engines: @@ -10358,7 +10424,7 @@ packages: canvas: optional: true resolution: - integrity: sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w== + integrity: sha512-pF73EOsJgwZekbDHEY5VO/yKXUkab/DuvrQB/ANVizbr6UAHJsDdHXuotZYwkJSGQl1JM+ivXaqY+XBDDL4TiA== /jsesc/0.5.0: dev: true hasBin: true @@ -10461,7 +10527,7 @@ packages: integrity: sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= /jsx-ast-utils/3.2.0: dependencies: - array-includes: 3.1.2 + array-includes: 3.1.3 object.assign: 4.1.2 dev: true engines: @@ -10538,7 +10604,7 @@ packages: integrity: sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA== /last-call-webpack-plugin/3.0.0: dependencies: - lodash: 4.17.20 + lodash: 4.17.21 webpack-sources: 1.4.3 dev: true resolution: @@ -10553,9 +10619,9 @@ packages: integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== /lazy-universal-dotenv/3.0.1: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 app-root-dir: 1.0.2 - core-js: 3.8.3 + core-js: 3.9.1 dotenv: 8.2.0 dotenv-expand: 5.1.0 dev: true @@ -10632,16 +10698,6 @@ packages: dev: true resolution: integrity: sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g= - /loader-utils/1.2.3: - dependencies: - big.js: 5.2.2 - emojis-list: 2.1.0 - json5: 1.0.1 - dev: true - engines: - node: '>=4.0.0' - resolution: - integrity: sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== /loader-utils/1.4.0: dependencies: big.js: 5.2.2 @@ -10685,13 +10741,17 @@ packages: node: '>=8' resolution: integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - /lodash-es/4.17.20: + /lodash-es/4.17.21: resolution: - integrity: sha512-JD1COMZsq8maT6mnuz1UMV0jvYD0E0aUsSOdrr1/nAG3dhqQXwRRgeW0cSqH1U43INKcqxaiVIQNOUDld7gRDA== + integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== /lodash._reinterpolate/3.0.0: dev: true resolution: integrity: sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= + /lodash.debounce/4.0.8: + dev: true + resolution: + integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168= /lodash.escape/4.0.1: dev: true resolution: @@ -10729,9 +10789,9 @@ packages: dev: true resolution: integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= - /lodash/4.17.20: + /lodash/4.17.21: resolution: - integrity: sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== /log-symbols/3.0.0: dependencies: chalk: 2.4.2 @@ -10924,13 +10984,13 @@ packages: react: '>= 0.14.0' resolution: integrity: sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw== - /marked/2.0.0: + /marked/2.0.1: dev: true engines: node: '>= 8.16.2' hasBin: true resolution: - integrity: sha512-NqRSh2+LlN2NInpqTQnS614Y/3NkVMFFU6sJlRFEpxJ/LHuK/qJECH7/fXZjk4VZstPW/Pevjil/VtSONsLc7Q== + integrity: sha512-5+/fKgMv2hARmMW7DOpykr2iLhl0NgjyELk5yn92iE7z8Se1IS9n3UsFm86hFXIkvMBmVxki8+ckcpjBeyo/hw== /matcher/3.0.0: dependencies: escape-string-regexp: 4.0.0 @@ -11143,7 +11203,7 @@ packages: integrity: sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== /miller-rabin/4.0.1: dependencies: - bn.js: 4.11.9 + bn.js: 4.12.0 brorand: 1.1.0 dev: true hasBin: true @@ -11470,7 +11530,7 @@ packages: integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA== /node-gyp/7.1.2: dependencies: - env-paths: 2.2.0 + env-paths: 2.2.1 glob: 7.1.6 graceful-fs: 4.2.6 nopt: 5.0.0 @@ -11499,7 +11559,7 @@ packages: constants-browserify: 1.0.0 crypto-browserify: 3.12.0 domain-browser: 1.2.0 - events: 3.2.0 + events: 3.3.0 https-browserify: 1.0.0 os-browserify: 0.3.0 path-browserify: 0.0.1 @@ -11524,7 +11584,7 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= - /node-notifier/8.0.1: + /node-notifier/8.0.2: dependencies: growly: 1.3.0 is-wsl: 2.2.0 @@ -11535,11 +11595,11 @@ packages: dev: true optional: true resolution: - integrity: sha512-BvEXF+UmsnAfYfoapKM9nGxnP+Wn7P91YfXmrKnfcYCx6VBeoN5Ez5Ogck6I8Bi5k4RlpqRYaw75pAwzX9OphA== - /node-releases/1.1.70: + integrity: sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg== + /node-releases/1.1.71: dev: true resolution: - integrity: sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw== + integrity: sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg== /node-sass/5.0.0: dependencies: async-foreach: 0.1.3 @@ -11548,7 +11608,7 @@ packages: gaze: 1.1.3 get-stdin: 4.0.1 glob: 7.1.6 - lodash: 4.17.20 + lodash: 4.17.21 meow: 3.7.0 mkdirp: 0.5.5 nan: 2.14.2 @@ -11719,7 +11779,7 @@ packages: dev: true resolution: integrity: sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== - /object-is/1.1.4: + /object-is/1.1.5: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 @@ -11727,7 +11787,7 @@ packages: engines: node: '>= 0.4' resolution: - integrity: sha512-1ZvAZ4wlF7IyPVOcE1Omikt7UpaFlOQq0HlSti+ZvDH3UiD2brwGMwDbyV43jao2bKJ+4+WdPJHSd7kgzKYVqg== + integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== /object-keys/1.1.1: dev: true engines: @@ -11746,7 +11806,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - has-symbols: 1.0.1 + has-symbols: 1.0.2 object-keys: 1.1.1 dev: true engines: @@ -11757,34 +11817,34 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.0 has: 1.0.3 dev: true engines: node: '>= 0.4' resolution: integrity: sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg== - /object.fromentries/2.0.3: + /object.fromentries/2.0.4: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.0 has: 1.0.3 dev: true engines: node: '>= 0.4' resolution: - integrity: sha512-IDUSMXs6LOSJBWE++L0lzIbSqHl9KDCfff2x/JSEIDtEUavUnyMYC2ZGay/04Zq4UT8lvd4xNhU4/YHKibAOlw== - /object.getownpropertydescriptors/2.1.1: + integrity: sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ== + /object.getownpropertydescriptors/2.1.2: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.0 dev: true engines: node: '>= 0.8' resolution: - integrity: sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng== + integrity: sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ== /object.pick/1.3.0: dependencies: isobject: 3.0.1 @@ -11793,17 +11853,17 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= - /object.values/1.1.2: + /object.values/1.1.3: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.0 has: 1.0.3 dev: true engines: node: '>= 0.4' resolution: - integrity: sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag== + integrity: sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw== /obuf/1.1.2: dev: true resolution: @@ -11932,7 +11992,7 @@ packages: integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g== /original/1.0.2: dependencies: - url-parse: 1.5.0 + url-parse: 1.5.1 dev: true resolution: integrity: sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg== @@ -12187,10 +12247,6 @@ packages: dev: true resolution: integrity: sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ== - /parse5/5.1.1: - dev: true - resolution: - integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug== /parse5/6.0.1: dev: true resolution: @@ -12403,9 +12459,9 @@ packages: dev: true resolution: integrity: sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== - /pnp-webpack-plugin/1.6.4_typescript@4.1.5: + /pnp-webpack-plugin/1.6.4_typescript@4.2.3: dependencies: - ts-pnp: 1.2.0_typescript@4.1.5 + ts-pnp: 1.2.0_typescript@4.2.3 dev: true engines: node: '>=6' @@ -12415,7 +12471,7 @@ packages: integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg== /polished/3.7.1: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 dev: true engines: node: '>=10' @@ -12809,22 +12865,22 @@ packages: node: '>=6.0.0' resolution: integrity: sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== - /preact-cli/3.0.5_2abf32adaded329872bb8e69d10f8425: - dependencies: - '@babel/core': 7.12.16 - '@babel/plugin-proposal-class-properties': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-decorators': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-proposal-object-rest-spread': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.16 - '@babel/plugin-transform-object-assign': 7.12.13_@babel+core@7.12.16 - '@babel/plugin-transform-react-jsx': 7.12.16_@babel+core@7.12.16 - '@babel/preset-env': 7.12.16_@babel+core@7.12.16 - '@babel/preset-typescript': 7.12.16_@babel+core@7.12.16 - '@preact/async-loader': 3.0.1_preact@10.5.12 - '@prefresh/webpack': 1.1.0_preact@10.5.12+webpack@4.46.0 + /preact-cli/3.0.5_5ba117d350dffefc029551565eae09b5: + dependencies: + '@babel/core': 7.13.10 + '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.13.10 + '@babel/plugin-proposal-decorators': 7.13.5_@babel+core@7.13.10 + '@babel/plugin-proposal-object-rest-spread': 7.13.8_@babel+core@7.13.10 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.13.10 + '@babel/plugin-transform-object-assign': 7.12.13_@babel+core@7.13.10 + '@babel/plugin-transform-react-jsx': 7.12.17_@babel+core@7.13.10 + '@babel/preset-env': 7.13.10_@babel+core@7.13.10 + '@babel/preset-typescript': 7.13.0_@babel+core@7.13.10 + '@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-esm-plugin: 0.9.0_webpack@4.46.0 - babel-loader: 8.2.2_8040e036044e91f985695d7556bc5dad + babel-loader: 8.2.2_c68979f8893c692eeb1a0b70960ae2d4 babel-plugin-macros: 2.8.0 babel-plugin-transform-react-remove-prop-types: 0.4.24 browserslist: 4.16.3 @@ -12856,8 +12912,8 @@ packages: ora: 4.1.1 postcss-load-config: 2.1.2 postcss-loader: 3.0.0 - preact: 10.5.12 - preact-render-to-string: 5.1.12_preact@10.5.12 + preact: 10.5.13 + preact-render-to-string: 5.1.16_preact@10.5.13 progress-bar-webpack-plugin: 2.1.0_webpack@4.46.0 promise-polyfill: 8.2.0 prompts: 2.4.0 @@ -12898,27 +12954,27 @@ packages: preact-render-to-string: '*' resolution: integrity: sha512-Oc9HOjwX/3Zk1eXkmP7TMmtqbaROl7F0RWZ2Ni5Q/grmx3yBLJmarkUcOSKabkI/Usw2dU3RVju32Q3Pvy5qIw== - /preact-render-to-string/5.1.12_preact@10.5.12: + /preact-render-to-string/5.1.16_preact@10.5.13: dependencies: - preact: 10.5.12 + preact: 10.5.13 pretty-format: 3.8.0 dev: true peerDependencies: preact: '>=10' resolution: - integrity: sha512-nXVCOpvepSk9AfPwqS08rf9NDOCs8eeYYlG+7tE85iP5jVyjz+aYb1BYaP5SPdfVWVrzI9L5NzxozUvKaD96tA== - /preact-router/3.2.1_preact@10.5.12: + integrity: sha512-HvO3W29Sziz9r5FZGwl2e34XJKzyRLvjhouv3cpkCGszNPdnvkO8p4B6CBpe0MT/tzR+QVbmsAKLrMK222UXew== + /preact-router/3.2.1_preact@10.5.13: dependencies: - preact: 10.5.12 + preact: 10.5.13 dev: false peerDependencies: preact: '>=10' resolution: integrity: sha512-KEN2VN1DxUlTwzW5IFkF13YIA2OdQ2OvgJTkQREF+AA2NrHRLaGbB68EjS4IeZOa1shvQ1FvEm3bSLta4sXBhg== - /preact/10.5.12: + /preact/10.5.13: dev: false resolution: - integrity: sha512-r6siDkuD36oszwlCkcqDJCAKBQxGoeEGytw2DGMD5A/GGdu5Tymw+N2OBXwvOLxg6d1FeY8MgMV3cc5aVQo4Cg== + integrity: sha512-q/vlKIGNwzTLu+jCcvywgGrt+H/1P/oIRSD6mV4ln3hmlC+Aa34C7yfPI4+5bzW8pONyVXYS7SvXosy2dKKtWQ== /prelude-ls/1.1.2: dev: true engines: @@ -12956,15 +13012,15 @@ packages: node: '>=4' resolution: integrity: sha1-sr+C5zUNZcbDOqlaqlpPYyf2HNk= - /pretty-bytes/5.5.0: + /pretty-bytes/5.6.0: dev: true engines: node: '>=6' resolution: - integrity: sha512-p+T744ZyjjiaFlMUZZv6YPC5JrkNj8maRmPaQCWFJFplUAzpIUTRaTcS+7wmZtUoFXHtESJb23ISliaWyz3SHA== + integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== /pretty-error/2.1.2: dependencies: - lodash: 4.17.20 + lodash: 4.17.21 renderkid: 2.0.5 dev: true resolution: @@ -13001,7 +13057,7 @@ packages: /prismjs/1.23.0: dev: true optionalDependencies: - clipboard: 2.0.6 + clipboard: 2.0.8 resolution: integrity: sha512-c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA== /process-nextick-args/2.0.1: @@ -13043,7 +13099,7 @@ packages: array.prototype.map: 1.0.3 call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.0 get-intrinsic: 1.1.1 iterate-value: 1.0.2 dev: true @@ -13054,7 +13110,7 @@ packages: /promise.prototype.finally/3.1.2: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.7 + es-abstract: 1.18.0 function-bind: 1.1.1 dev: true engines: @@ -13111,7 +13167,7 @@ packages: integrity: sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== /public-encrypt/4.0.3: dependencies: - bn.js: 4.11.9 + bn.js: 4.12.0 browserify-rsa: 4.1.0 create-hash: 1.2.0 parse-asn1: 5.1.6 @@ -13302,8 +13358,8 @@ packages: /react-color/2.19.3: dependencies: '@icons/material': 0.2.4 - lodash: 4.17.20 - lodash-es: 4.17.20 + lodash: 4.17.21 + lodash-es: 4.17.21 material-colors: 1.2.6 prop-types: 15.7.2 reactcss: 1.2.3 @@ -13316,8 +13372,8 @@ packages: /react-color/2.19.3_react@16.13.1: dependencies: '@icons/material': 0.2.4_react@16.13.1 - lodash: 4.17.20 - lodash-es: 4.17.20 + lodash: 4.17.21 + lodash-es: 4.17.21 material-colors: 1.2.6 prop-types: 15.7.2 react: 16.13.1 @@ -13328,27 +13384,27 @@ packages: react: '*' resolution: integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA== - /react-dev-utils/10.2.1: + /react-dev-utils/11.0.4: dependencies: - '@babel/code-frame': 7.8.3 + '@babel/code-frame': 7.10.4 address: 1.1.2 - browserslist: 4.10.0 + browserslist: 4.14.2 chalk: 2.4.2 - cross-spawn: 7.0.1 + cross-spawn: 7.0.3 detect-port-alt: 1.1.6 escape-string-regexp: 2.0.0 - filesize: 6.0.1 + filesize: 6.1.0 find-up: 4.1.0 - fork-ts-checker-webpack-plugin: 3.1.1 + fork-ts-checker-webpack-plugin: 4.1.6 global-modules: 2.0.0 - globby: 8.0.2 + globby: 11.0.1 gzip-size: 5.1.1 - immer: 1.10.0 - inquirer: 7.0.4 + immer: 8.0.1 is-root: 2.1.0 - loader-utils: 1.2.3 + loader-utils: 2.0.0 open: 7.4.2 pkg-up: 3.1.0 + prompts: 2.4.0 react-error-overlay: 6.0.9 recursive-readdir: 2.2.2 shell-quote: 1.7.2 @@ -13356,9 +13412,9 @@ packages: text-table: 0.2.0 dev: true engines: - node: '>=8.10' + node: '>=10' resolution: - integrity: sha512-XxTbgJnYZmxuPtY3y/UV0D8/65NKkmaia4rXzViknVnZeVlklSh8u6TnaEYPfAi/Gh1TP4mEOXHI6jQOPbeakQ== + integrity: sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A== /react-dom/16.13.1_react@16.13.1: dependencies: loose-envify: 1.4.0 @@ -13396,22 +13452,22 @@ packages: dev: true resolution: integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA== - /react-helmet-async/1.0.7: + /react-helmet-async/1.0.9: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 invariant: 2.2.4 prop-types: 15.7.2 react-fast-compare: 3.2.0 shallowequal: 1.1.0 dev: true peerDependencies: - react: ^16.6.0 - react-dom: ^16.6.0 + react: ^16.6.0 || ^17.0.0 + react-dom: ^16.6.0 || ^17.0.0 resolution: - integrity: sha512-By90p5uxAriGukbyejq2poK41DwTxpNWOpOjN8mIyX/BKrCd3+sXZ5pHUZXjHyjR5OYS7PGsOD9dbM61YxfFmA== - /react-helmet-async/1.0.7_react-dom@16.13.1+react@16.13.1: + integrity: sha512-N+iUlo9WR3/u9qGMmP4jiYfaD6pe9IvDTapZLFJz2D3xlTlCM1Bzy4Ab3g72Nbajo/0ZyW+W9hdz8Hbe4l97pQ== + /react-helmet-async/1.0.9_react-dom@16.13.1+react@16.13.1: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 invariant: 2.2.4 prop-types: 15.7.2 react: 16.13.1 @@ -13420,10 +13476,10 @@ packages: shallowequal: 1.1.0 dev: true peerDependencies: - react: ^16.6.0 - react-dom: ^16.6.0 + react: ^16.6.0 || ^17.0.0 + react-dom: ^16.6.0 || ^17.0.0 resolution: - integrity: sha512-By90p5uxAriGukbyejq2poK41DwTxpNWOpOjN8mIyX/BKrCd3+sXZ5pHUZXjHyjR5OYS7PGsOD9dbM61YxfFmA== + integrity: sha512-N+iUlo9WR3/u9qGMmP4jiYfaD6pe9IvDTapZLFJz2D3xlTlCM1Bzy4Ab3g72Nbajo/0ZyW+W9hdz8Hbe4l97pQ== /react-hotkeys/2.0.0: dependencies: prop-types: 15.7.2 @@ -13443,7 +13499,7 @@ packages: integrity: sha512-3n3OU8vLX/pfcJrR3xJ1zlww6KS1kEJt0Whxc4FiGV+MJrQ1mYSYI3qS/11d2MJDFm8IhOXMTFQirfu6AVOF6Q== /react-inspector/5.1.0: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 is-dom: 1.1.0 prop-types: 15.7.2 dev: true @@ -13465,9 +13521,9 @@ packages: integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== /react-popper-tooltip/3.1.1: dependencies: - '@babel/runtime': 7.12.13 - '@popperjs/core': 2.7.0 - react-popper: 2.2.4_@popperjs+core@2.7.0 + '@babel/runtime': 7.13.10 + '@popperjs/core': 2.9.1 + react-popper: 2.2.4_@popperjs+core@2.9.1 dev: true peerDependencies: react: ^16.6.0 || ^17.0.0 @@ -13476,20 +13532,20 @@ packages: integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ== /react-popper-tooltip/3.1.1_react-dom@16.13.1+react@16.13.1: dependencies: - '@babel/runtime': 7.12.13 - '@popperjs/core': 2.7.0 + '@babel/runtime': 7.13.10 + '@popperjs/core': 2.9.1 react: 16.13.1 react-dom: 16.13.1_react@16.13.1 - react-popper: 2.2.4_dc63c61c20e034e3a5ab36aaacbc516c + react-popper: 2.2.4_ef37768fe2e6ee8f71816ba2a8d8c9fb dev: true peerDependencies: react: ^16.6.0 || ^17.0.0 react-dom: ^16.6.0 || ^17.0.0 resolution: integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ== - /react-popper/2.2.4_@popperjs+core@2.7.0: + /react-popper/2.2.4_@popperjs+core@2.9.1: dependencies: - '@popperjs/core': 2.7.0 + '@popperjs/core': 2.9.1 react-fast-compare: 3.2.0 warning: 4.0.3 dev: true @@ -13498,9 +13554,9 @@ packages: react: ^16.8.0 || ^17 resolution: integrity: sha512-NacOu4zWupdQjVXq02XpTD3yFPSfg5a7fex0wa3uGKVkFK7UN6LvVxgcb+xYr56UCuWiNPMH20tntdVdJRwYew== - /react-popper/2.2.4_dc63c61c20e034e3a5ab36aaacbc516c: + /react-popper/2.2.4_ef37768fe2e6ee8f71816ba2a8d8c9fb: dependencies: - '@popperjs/core': 2.7.0 + '@popperjs/core': 2.9.1 react: 16.13.1 react-fast-compare: 3.2.0 warning: 4.0.3 @@ -13518,7 +13574,7 @@ packages: integrity: sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg== /react-sizeme/2.6.12: dependencies: - element-resize-detector: 1.2.1 + element-resize-detector: 1.2.2 invariant: 2.2.4 shallowequal: 1.1.0 throttle-debounce: 2.3.0 @@ -13530,7 +13586,7 @@ packages: integrity: sha512-tL4sCgfmvapYRZ1FO2VmBmjPVzzqgHA7kI8lSJ6JS6L78jXFNRdOZFpXyK6P1NBZvKPPCZxReNgzZNUajAerZw== /react-sizeme/2.6.12_react-dom@16.13.1+react@16.13.1: dependencies: - element-resize-detector: 1.2.1 + element-resize-detector: 1.2.2 invariant: 2.2.4 react: 16.13.1 react-dom: 16.13.1_react@16.13.1 @@ -13544,7 +13600,7 @@ packages: integrity: sha512-tL4sCgfmvapYRZ1FO2VmBmjPVzzqgHA7kI8lSJ6JS6L78jXFNRdOZFpXyK6P1NBZvKPPCZxReNgzZNUajAerZw== /react-syntax-highlighter/13.5.3: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 highlight.js: 10.6.0 lowlight: 1.19.0 prismjs: 1.23.0 @@ -13556,7 +13612,7 @@ packages: integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg== /react-syntax-highlighter/13.5.3_react@16.13.1: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 highlight.js: 10.6.0 lowlight: 1.19.0 prismjs: 1.23.0 @@ -13567,9 +13623,9 @@ packages: react: '>= 0.14.0' resolution: integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg== - /react-textarea-autosize/8.3.1: + /react-textarea-autosize/8.3.2: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 use-composed-ref: 1.1.0 use-latest: 1.2.0 dev: true @@ -13578,10 +13634,10 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-Vk02C3RWKLjx1wSwcVuPwfTuyGIemBB2MjDi01OnBYxKWSJFA/O7IOzr9FrO8AuRlkupk4X6Kjew2mYyEDXi0A== - /react-textarea-autosize/8.3.1_react@16.13.1: + integrity: sha512-JrMWVgQSaExQByP3ggI1eA8zF4mF0+ddVuX7acUeK2V7bmrpjVOY72vmLz2IXFJSAXoY3D80nEzrn0GWajWK3Q== + /react-textarea-autosize/8.3.2_react@16.13.1: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 react: 16.13.1 use-composed-ref: 1.1.0_react@16.13.1 use-latest: 1.2.0_react@16.13.1 @@ -13591,7 +13647,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-Vk02C3RWKLjx1wSwcVuPwfTuyGIemBB2MjDi01OnBYxKWSJFA/O7IOzr9FrO8AuRlkupk4X6Kjew2mYyEDXi0A== + integrity: sha512-JrMWVgQSaExQByP3ggI1eA8zF4mF0+ddVuX7acUeK2V7bmrpjVOY72vmLz2IXFJSAXoY3D80nEzrn0GWajWK3Q== /react/16.13.1: dependencies: loose-envify: 1.4.0 @@ -13604,7 +13660,7 @@ packages: integrity: sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w== /reactcss/1.2.3: dependencies: - lodash: 4.17.20 + lodash: 4.17.21 dev: true resolution: integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A== @@ -13742,7 +13798,7 @@ packages: integrity: sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== /regenerator-transform/0.14.5: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 dev: true resolution: integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== @@ -13887,7 +13943,7 @@ packages: css-select: 2.1.0 dom-converter: 0.2.0 htmlparser2: 3.10.1 - lodash: 4.17.20 + lodash: 4.17.21 strip-ansi: 3.0.1 dev: true resolution: @@ -13914,7 +13970,7 @@ packages: integrity: sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= /request-promise-core/1.1.4_request@2.88.2: dependencies: - lodash: 4.17.20 + lodash: 4.17.21 request: 2.88.2 dev: true engines: @@ -14098,9 +14154,9 @@ packages: dev: true resolution: integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== - /rollup-plugin-babel/4.4.0_9a2f13dcc727f883cc1e5a518f76a750: + /rollup-plugin-babel/4.4.0_995c6807146f1052b5e3e40fc7e397c2: dependencies: - '@babel/core': 7.12.16 + '@babel/core': 7.13.10 '@babel/helper-module-imports': 7.12.13 rollup: 1.32.1 rollup-pluginutils: 2.8.2 @@ -14133,7 +14189,7 @@ packages: /rollup/1.32.1: dependencies: '@types/estree': 0.0.46 - '@types/node': 14.14.28 + '@types/node': 14.14.35 acorn: 7.4.1 dev: true hasBin: true @@ -14170,14 +14226,14 @@ packages: dev: true resolution: integrity: sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec= - /rxjs/6.6.3: + /rxjs/6.6.6: dependencies: tslib: 1.14.1 dev: true engines: npm: '>=2.0.0' resolution: - integrity: sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ== + integrity: sha512-/oTwee4N4iWzAMAL9xdGKjkEHmIwupR3oXbQjCKywF1BeFohswF3vZdogbmEF6pZkOsXTzWkrZszrWpQTByYVg== /sade/1.7.4: dependencies: mri: 1.1.6 @@ -14228,7 +14284,7 @@ packages: /sass-graph/2.2.5: dependencies: glob: 7.1.6 - lodash: 4.17.20 + lodash: 4.17.21 scss-tokenizer: 0.2.3 yargs: 13.3.2 dev: true @@ -14287,6 +14343,15 @@ packages: dev: true resolution: integrity: sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA== + /schema-utils/0.4.7: + dependencies: + ajv: 6.12.6 + ajv-keywords: 3.5.2_ajv@6.12.6 + dev: true + engines: + node: '>= 4' + resolution: + integrity: sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ== /schema-utils/1.0.0: dependencies: ajv: 6.12.6 @@ -14317,6 +14382,17 @@ packages: node: '>= 10.13.0' resolution: integrity: sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA== + /script-ext-html-webpack-plugin/2.1.5: + dependencies: + debug: 4.3.1 + dev: true + engines: + node: '>=6.11.5' + peerDependencies: + html-webpack-plugin: ^3.0.0 || ^4.0.0 + webpack: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 + resolution: + integrity: sha512-nMjd5dtsnoB8dS+pVM9ZL4mC9O1uVtTxrDS99OGZsZxFbkZE6pw0HCMued/cncDrKivIShO9vwoyOTvsGqQHEQ== /scss-tokenizer/0.2.3: dependencies: js-base64: 2.6.4 @@ -14542,13 +14618,13 @@ packages: optional: true resolution: integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== - /shiki/0.9.2: + /shiki/0.9.3: dependencies: onigasm: 2.2.5 vscode-textmate: 5.2.0 dev: true resolution: - integrity: sha512-BjUCxVbxMnvjs8jC4b+BQ808vwjJ9Q8NtLqPwXShZ307HdXiDFYP968ORSVfaTNNSWYDBYdMnVKJ0fYNsoZUBA== + integrity: sha512-NEjg1mVbAUrzRv2eIcUt3TG7X9svX7l3n3F5/3OdFq+/BxUdmBOeKGiH4icZJBLHy354Shnj6sfBTemea2e7XA== /side-channel/1.0.4: dependencies: call-bind: 1.0.2 @@ -14606,7 +14682,7 @@ packages: glob: 7.1.6 gzip-size: 5.1.1 minimatch: 3.0.4 - pretty-bytes: 5.5.0 + pretty-bytes: 5.6.0 util.promisify: 1.1.1 webpack: 4.46.0 dev: true @@ -14692,7 +14768,7 @@ packages: faye-websocket: 0.11.3 inherits: 2.0.4 json3: 3.3.3 - url-parse: 1.5.0 + url-parse: 1.5.1 dev: true resolution: integrity: sha512-8Dt3BDi4FYNrCFGTL/HtwVzkARrENdwOUf1ZoW/9p3M8lZdFT35jVdrHza+qgxuG9H3/shR4cuX/X9umUrjP8Q== @@ -14977,7 +15053,7 @@ packages: node: '>=6' resolution: integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== - /string-width/4.2.0: + /string-width/4.2.2: dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 @@ -14986,63 +15062,63 @@ packages: engines: node: '>=8' resolution: - integrity: sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== - /string.prototype.matchall/4.0.3: + integrity: sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== + /string.prototype.matchall/4.0.4: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 - has-symbols: 1.0.1 + es-abstract: 1.18.0 + has-symbols: 1.0.2 internal-slot: 1.0.3 regexp.prototype.flags: 1.3.1 side-channel: 1.0.4 dev: true resolution: - integrity: sha512-OBxYDA2ifZQ2e13cP82dWFMaCV9CGF8GzmN4fljBVw5O5wep0lu4gacm1OL6MjROoUnB8VbkWRThqkV2YFLNxw== - /string.prototype.padend/3.1.1: + integrity: sha512-pknFIWVachNcyqRfaQSeu/FUfpvJTe4uskUSZ9Wc1RijsPuzbZ8TyYT8WCNnntCjUEqQ3vUHMAfVj2+wLAisPQ== + /string.prototype.padend/3.1.2: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.0 dev: true engines: node: '>= 0.4' resolution: - integrity: sha512-eCzTASPnoCr5Ht+Vn1YXgm8SB015hHKgEIMu9Nr9bQmLhRBxKRfmzSj/IQsxDFc8JInJDDFA0qXwK+xxI7wDkg== - /string.prototype.padstart/3.1.1: + integrity: sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ== + /string.prototype.padstart/3.1.2: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.0 dev: true engines: node: '>= 0.4' resolution: - integrity: sha512-kcFjKhQYg40AK9MITCWYr/vIebruAD01sc/fxi8szHJaEG7Rke4XHw6LU9c1VWXh/+J/PxvWLLf/aIAGKhXkAQ== - /string.prototype.trim/1.2.3: + integrity: sha512-HDpngIP3pd0DeazrfqzuBrQZa+D2arKWquEHfGt5LzVjd+roLC3cjqVI0X8foaZz5rrrhcu8oJAQamW8on9dqw== + /string.prototype.trim/1.2.4: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 + es-abstract: 1.18.0 dev: true engines: node: '>= 0.4' resolution: - integrity: sha512-16IL9pIBA5asNOSukPfxX2W68BaBvxyiRK16H3RA/lWW9BDosh+w7f+LhomPHpXJ82QEe7w7/rY/S1CV97raLg== - /string.prototype.trimend/1.0.3: + integrity: sha512-hWCk/iqf7lp0/AgTF7/ddO1IWtSNPASjlzCicV5irAVdE1grjsneK26YG6xACMBEdCvO8fUST0UzDMh/2Qy+9Q== + /string.prototype.trimend/1.0.4: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 dev: true resolution: - integrity: sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw== - /string.prototype.trimstart/1.0.3: + integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== + /string.prototype.trimstart/1.0.4: dependencies: call-bind: 1.0.2 define-properties: 1.1.3 dev: true resolution: - integrity: sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg== + integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== /string_decoder/1.1.1: dependencies: safe-buffer: 5.1.2 @@ -15240,7 +15316,7 @@ packages: csso: 4.2.0 js-yaml: 3.14.1 mkdirp: 0.5.5 - object.values: 1.1.2 + object.values: 1.1.3 sax: 1.2.4 stable: 0.1.8 unquote: 1.1.1 @@ -15263,23 +15339,23 @@ packages: dev: true resolution: integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== - /symbol.prototype.description/1.0.3: + /symbol.prototype.description/1.0.4: dependencies: call-bind: 1.0.2 - es-abstract: 1.18.0-next.2 - has-symbols: 1.0.1 - object.getownpropertydescriptors: 2.1.1 + es-abstract: 1.18.0 + has-symbols: 1.0.2 + object.getownpropertydescriptors: 2.1.2 dev: true engines: node: '>= 0.11.15' resolution: - integrity: sha512-NvwWb5AdyTtmFNa1x0ksJakFUV/WJ+z7iRrYGU1xZew77Qd+kMrZKsk3uatCckk6yPNpbHhRcOO+JBU+ohcMBw== + integrity: sha512-fZkHwJ8ZNRVRzF/+/2OtygyyH06CjC0YZAQRHu9jKKw8RXlJpbizEHvGRUu22Qkg182wJk1ugb5Aovcv3UPrww== /table/6.0.7: dependencies: - ajv: 7.1.1 - lodash: 4.17.20 + ajv: 7.2.1 + lodash: 4.17.21 slice-ansi: 4.0.0 - string-width: 4.2.0 + string-width: 4.2.2 dev: true engines: node: '>=10.0.0' @@ -15326,7 +15402,7 @@ packages: is-regex: 1.1.2 is-symbol: 1.0.3 isobject: 4.0.0 - lodash: 4.17.20 + lodash: 4.17.21 memoizerific: 1.11.3 dev: true resolution: @@ -15586,16 +15662,16 @@ packages: node: '>=0.8' resolution: integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== - /tough-cookie/3.0.1: + /tough-cookie/4.0.0: dependencies: - ip-regex: 2.1.0 psl: 1.8.0 punycode: 2.1.1 + universalify: 0.1.2 dev: true engines: node: '>=6' resolution: - integrity: sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg== + integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== /tr46/1.0.1: dependencies: punycode: 2.1.1 @@ -15654,9 +15730,9 @@ packages: dev: true resolution: integrity: sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w== - /ts-pnp/1.2.0_typescript@4.1.5: + /ts-pnp/1.2.0_typescript@4.2.3: dependencies: - typescript: 4.1.5 + typescript: 4.2.3 dev: true engines: node: '>=6' @@ -15675,17 +15751,17 @@ packages: dev: true resolution: integrity: sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== - /tsutils/3.20.0_typescript@4.1.5: + /tsutils/3.21.0_typescript@4.2.3: dependencies: tslib: 1.14.1 - typescript: 4.1.5 + typescript: 4.2.3 dev: true engines: node: '>= 6' peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' resolution: - integrity: sha512-RYbuQuvkhuqVeXweWT3tJLKOEJ/UUw9GjNEZGWdrLLlM+611o1gwLHBpxoFJKKl25fLprp2eVthtKs5JOrNeXg== + integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== /tty-browserify/0.0.0: dev: true resolution: @@ -15777,34 +15853,34 @@ packages: dev: true resolution: integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= - /typedoc-default-themes/0.12.7: + /typedoc-default-themes/0.12.9: dev: true engines: node: '>= 8' resolution: - integrity: sha512-0XAuGEqID+gon1+fhi4LycOEFM+5Mvm2PjwaiVZNAzU7pn3G2DEpsoXnFOPlLDnHY6ZW0BY0nO7ur9fHOFkBLQ== - /typedoc/0.20.25_typescript@4.1.5: + integrity: sha512-Jd5fYTiqzinZdoIY382W7tQXTwAzWRdg8KbHfaxmb78m1/3jL9riXtk23oBOKwhi8GFVykCOdPzEJKY87/D0LQ== + /typedoc/0.20.32_typescript@4.2.3: dependencies: colors: 1.4.0 fs-extra: 9.1.0 handlebars: 4.7.7 - lodash: 4.17.20 + lodash: 4.17.21 lunr: 2.3.9 - marked: 2.0.0 + marked: 2.0.1 minimatch: 3.0.4 progress: 2.0.3 shelljs: 0.8.4 - shiki: 0.9.2 - typedoc-default-themes: 0.12.7 - typescript: 4.1.5 + shiki: 0.9.3 + typedoc-default-themes: 0.12.9 + typescript: 4.2.3 dev: true engines: node: '>= 10.8.0' hasBin: true peerDependencies: - typescript: 3.9.x || 4.0.x || 4.1.x + typescript: 3.9.x || 4.0.x || 4.1.x || 4.2.x resolution: - integrity: sha512-ZQZnjJPrt0rjp216gp6FQC1QC4ojcoKikhfOJ/51CqaJunVDilRLlIO5tCGWj1tzlYYT9eOGhJv7MF3t7rxSmw== + integrity: sha512-GSopd/tiqoKE3fEdvhoaEpR9yrEPsR9tknAjkoeSPL6p1Rq5aVsKxBhhF6cwoDJ7oWjpvnm8vs0rQN0BxEHuWQ== /typescript/3.9.9: dev: true engines: @@ -15812,20 +15888,20 @@ packages: hasBin: true resolution: integrity: sha512-kdMjTiekY+z/ubJCATUPlRDl39vXYiMV9iyeMuEuXZh2we6zz80uovNN2WlAxmmdE/Z/YQe+EbOEXB5RHEED3w== - /typescript/4.1.5: + /typescript/4.2.3: engines: node: '>=4.2.0' hasBin: true resolution: - integrity: sha512-6OSu9PTIzmn9TCDiovULTnET6BgXtDYL4Gg4szY+cGsc3JP1dQL8qvE8kShTRx1NIw4Q9IBHlwODjkjWEtMUyA== - /uglify-js/3.12.8: + integrity: sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw== + /uglify-js/3.13.1: dev: true engines: node: '>=0.8.0' hasBin: true optional: true resolution: - integrity: sha512-fvBeuXOsvqjecUtF/l1dwsrrf5y2BCUk9AOJGzGcm6tE7vegku5u/YvqjyDaAGr422PLoLnrxg3EnRvTqsdC1w== + integrity: sha512-EWhx3fHy3M9JbaeTnO+rEqzCe1wtyQClv6q3YWq0voOj4E+bMZBErVS1GAHPDiRGONYq34M1/d8KuQMgvi6Gjw== /uglify-js/3.4.10: dependencies: commander: 2.19.0 @@ -15836,6 +15912,15 @@ packages: hasBin: true resolution: integrity: sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw== + /unbox-primitive/1.0.0: + dependencies: + function-bind: 1.1.1 + has-bigints: 1.0.1 + has-symbols: 1.0.2 + which-boxed-primitive: 1.0.2 + dev: true + resolution: + integrity: sha512-P/51NX+JXyxK/aigg1/ZgyccdAxm5K1+n8+tvqSntjOivPt19gvm1VC49RWYetsiub8WViUchdxl/KWHHB0kzA== /unfetch/4.2.0: dev: true resolution: @@ -15940,10 +16025,10 @@ packages: dev: true resolution: integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg== - /unist-util-is/4.0.4: + /unist-util-is/4.1.0: dev: true resolution: - integrity: sha512-3dF39j/u423v4BBQrk1AQ2Ve1FxY5W3JKwXxVFzBODQ6WEvccguhgp802qQLKSnxPODE6WuRZtV+ohlUg4meBA== + integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== /unist-util-position/3.1.0: dev: true resolution: @@ -15956,7 +16041,7 @@ packages: integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA== /unist-util-remove/2.0.1: dependencies: - unist-util-is: 4.0.4 + unist-util-is: 4.1.0 dev: true resolution: integrity: sha512-YtuetK6o16CMfG+0u4nndsWpujgsHDHHLyE0yGpJLLn5xSjKeyGyzEBOI2XbmoUHCYabmNgX52uxlWoQhcvR7Q== @@ -15969,14 +16054,14 @@ packages: /unist-util-visit-parents/3.1.1: dependencies: '@types/unist': 2.0.3 - unist-util-is: 4.0.4 + unist-util-is: 4.1.0 dev: true resolution: integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg== /unist-util-visit/2.0.3: dependencies: '@types/unist': 2.0.3 - unist-util-is: 4.0.4 + unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 dev: true resolution: @@ -16100,13 +16185,13 @@ packages: node: '>=4' resolution: integrity: sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= - /url-parse/1.5.0: + /url-parse/1.5.1: dependencies: querystringify: 2.2.0 requires-port: 1.0.0 dev: true resolution: - integrity: sha512-9iT6N4s93SMfzunOyDPe4vo4nLcSu1yq0IQK1gURmjm8tQNlM6loiuCRrKG1hHGXfB2EWd6H4cGi7tGdaygMFw== + integrity: sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q== /url/0.11.0: dependencies: punycode: 1.3.2 @@ -16191,16 +16276,16 @@ packages: /util.promisify/1.0.0: dependencies: define-properties: 1.1.3 - object.getownpropertydescriptors: 2.1.1 + object.getownpropertydescriptors: 2.1.2 dev: true resolution: integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== /util.promisify/1.0.1: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.7 - has-symbols: 1.0.1 - object.getownpropertydescriptors: 2.1.1 + es-abstract: 1.18.0 + has-symbols: 1.0.2 + object.getownpropertydescriptors: 2.1.2 dev: true resolution: integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== @@ -16209,8 +16294,8 @@ packages: call-bind: 1.0.2 define-properties: 1.1.3 for-each: 0.3.3 - has-symbols: 1.0.1 - object.getownpropertydescriptors: 2.1.1 + has-symbols: 1.0.2 + object.getownpropertydescriptors: 2.1.2 dev: true resolution: integrity: sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw== @@ -16246,10 +16331,10 @@ packages: hasBin: true resolution: integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== - /v8-compile-cache/2.2.0: + /v8-compile-cache/2.3.0: dev: true resolution: - integrity: sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q== + integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== /v8-to-istanbul/7.1.0: dependencies: '@types/istanbul-lib-coverage': 2.0.3 @@ -16407,7 +16492,7 @@ packages: express: 4.17.1 filesize: 3.6.1 gzip-size: 5.1.1 - lodash: 4.17.20 + lodash: 4.17.21 mkdirp: 0.5.5 opener: 1.5.2 ws: 6.2.1 @@ -16514,7 +16599,7 @@ packages: integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg== /webpack-merge/4.2.2: dependencies: - lodash: 4.17.20 + lodash: 4.17.21 dev: true resolution: integrity: sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g== @@ -16626,6 +16711,16 @@ packages: node: '>=10' resolution: integrity: sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw== + /which-boxed-primitive/1.0.2: + dependencies: + is-bigint: 1.0.1 + is-boolean-object: 1.1.0 + is-number-object: 1.0.4 + is-string: 1.0.5 + is-symbol: 1.0.3 + dev: true + resolution: + integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== /which-module/2.0.0: dev: true resolution: @@ -16654,7 +16749,7 @@ packages: integrity: sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== /widest-line/3.1.0: dependencies: - string-width: 4.2.0 + string-width: 4.2.2 dev: true engines: node: '>=8' @@ -16684,21 +16779,21 @@ packages: integrity: sha512-HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA== /workbox-build/5.1.4: dependencies: - '@babel/core': 7.12.16 - '@babel/preset-env': 7.12.16_@babel+core@7.12.16 - '@babel/runtime': 7.12.13 + '@babel/core': 7.13.10 + '@babel/preset-env': 7.13.10_@babel+core@7.13.10 + '@babel/runtime': 7.13.10 '@hapi/joi': 15.1.1 '@rollup/plugin-node-resolve': 7.1.3_rollup@1.32.1 - '@rollup/plugin-replace': 2.3.4_rollup@1.32.1 + '@rollup/plugin-replace': 2.4.1_rollup@1.32.1 '@surma/rollup-plugin-off-main-thread': 1.4.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 - pretty-bytes: 5.5.0 + pretty-bytes: 5.6.0 rollup: 1.32.1 - rollup-plugin-babel: 4.4.0_9a2f13dcc727f883cc1e5a518f76a750 + rollup-plugin-babel: 4.4.0_995c6807146f1052b5e3e40fc7e397c2 rollup-plugin-terser: 5.3.1_rollup@1.32.1 source-map: 0.7.3 source-map-url: 0.4.1 @@ -16794,7 +16889,7 @@ packages: integrity: sha512-9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA== /workbox-webpack-plugin/5.1.4_webpack@4.46.0: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 fast-json-stable-stringify: 2.1.0 source-map-url: 0.4.1 upath: 1.2.0 @@ -16839,7 +16934,7 @@ packages: /wrap-ansi/6.2.0: dependencies: ansi-styles: 4.3.0 - string-width: 4.2.0 + string-width: 4.2.2 strip-ansi: 6.0.0 dev: true engines: @@ -16849,7 +16944,7 @@ packages: /wrap-ansi/7.0.0: dependencies: ansi-styles: 4.3.0 - string-width: 4.2.0 + string-width: 4.2.2 strip-ansi: 6.0.0 dev: true engines: @@ -16875,7 +16970,7 @@ packages: dev: true resolution: integrity: sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA== - /ws/7.4.3: + /ws/7.4.4: dev: true engines: node: '>=8.3.0' @@ -16888,7 +16983,7 @@ packages: utf-8-validate: optional: true resolution: - integrity: sha512-hr6vCR76GsossIRsr8OLR9acVVm1jyfEWvhbNjtgPOrfvAlKzvyeg/P6r8RuDjRyrcQoPQT7K0DGEPc7Ae6jzA== + integrity: sha512-Qm8k8ojNQIMx7S+Zp8u/uHOx7Qazv3Yv4q68MiWWWOJhiwG5W3x7iqmRtJo8xxrciZUY4vRxUTJCKuRnF28ZZw== /xdg-basedir/4.0.0: dev: true engines: @@ -16931,12 +17026,12 @@ packages: dev: true resolution: integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - /yaml/1.10.0: + /yaml/1.10.2: dev: true engines: node: '>= 6' resolution: - integrity: sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== + integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== /yargs-parser/13.1.2: dependencies: camelcase: 5.3.1 @@ -16953,12 +17048,12 @@ packages: node: '>=6' resolution: integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== - /yargs-parser/20.2.5: + /yargs-parser/20.2.7: dev: true engines: node: '>=10' resolution: - integrity: sha512-jYRGS3zWy20NtDtK2kBgo/TlAoy5YUuhD9/LZ7z7W4j1Fdw2cqD0xEEclf8fxc8xjD6X5Qr+qQQwCEsP8iRiYg== + integrity: sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw== /yargs/13.3.2: dependencies: cliui: 5.0.0 @@ -16983,7 +17078,7 @@ packages: require-directory: 2.1.1 require-main-filename: 2.0.0 set-blocking: 2.0.0 - string-width: 4.2.0 + string-width: 4.2.2 which-module: 2.0.0 y18n: 4.0.1 yargs-parser: 18.1.3 @@ -16998,9 +17093,9 @@ packages: escalade: 3.1.1 get-caller-file: 2.0.5 require-directory: 2.1.1 - string-width: 4.2.0 + string-width: 4.2.2 y18n: 5.0.5 - yargs-parser: 20.2.5 + yargs-parser: 20.2.7 dev: true engines: node: '>=10' @@ -17014,10 +17109,10 @@ packages: integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== /yup/0.32.9: dependencies: - '@babel/runtime': 7.12.13 + '@babel/runtime': 7.13.10 '@types/lodash': 4.14.168 - lodash: 4.17.20 - lodash-es: 4.17.20 + lodash: 4.17.21 + lodash-es: 4.17.21 nanoclone: 0.2.1 property-expr: 2.0.4 toposort: 2.0.2