diff --git a/.changeset/warm-starfishes-itch.md b/.changeset/warm-starfishes-itch.md new file mode 100644 index 0000000000..dc159a1e15 --- /dev/null +++ b/.changeset/warm-starfishes-itch.md @@ -0,0 +1,6 @@ +--- +'@remirror/extension-emoji': patch +'@remirror/pm': patch +--- + +Minor dependency updates. diff --git a/package.json b/package.json index 9c19699ca8..d6fa43c2a7 100644 --- a/package.json +++ b/package.json @@ -87,21 +87,21 @@ "since 2017" ], "dependencies": { - "@babel/core": "^7.12.0", - "@babel/parser": "^7.12.0", - "@babel/plugin-proposal-class-properties": "^7.10.4", - "@babel/plugin-proposal-decorators": "^7.10.5", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.0", - "@babel/plugin-proposal-numeric-separator": "^7.12.0", - "@babel/plugin-proposal-object-rest-spread": "^7.11.0", - "@babel/plugin-proposal-optional-chaining": "^7.12.0", - "@babel/plugin-proposal-private-methods": "^7.10.4", + "@babel/core": "^7.12.3", + "@babel/parser": "^7.12.3", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-decorators": "^7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", + "@babel/plugin-proposal-numeric-separator": "^7.12.1", + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", + "@babel/plugin-proposal-optional-chaining": "^7.12.1", + "@babel/plugin-proposal-private-methods": "^7.12.1", "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.12.0", - "@babel/plugin-transform-template-literals": "^7.10.5", - "@babel/plugin-transform-typescript": "^7.12.0", - "@babel/preset-env": "^7.12.0", - "@babel/preset-react": "^7.10.4", + "@babel/plugin-transform-runtime": "^7.12.1", + "@babel/plugin-transform-template-literals": "^7.12.1", + "@babel/plugin-transform-typescript": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.1", "@babel/runtime": "^7.12.0", "@changesets/changelog-github": "^0.2.7", "@changesets/cli": "^2.11.1", @@ -111,14 +111,14 @@ "@lingui/react": "^3.0.0-18", "@manypkg/cli": "^0.16.1", "@manypkg/get-packages": "^1.1.1", - "@preconstruct/cli": "^1.1.29", + "@preconstruct/cli": "^1.1.31", "@remirror/testing": "^0.0.4", "@size-limit/preset-big-lib": "^4.5.7", "@testing-library/jest-dom": "^5.11.4", "@types/eslint": "^7.2.4", "@types/jest": "^26.0.14", "@types/jest-axe": "^3.5.0", - "@types/node": "^14.11.8", + "@types/node": "^14.11.10", "@types/testing-library__jest-dom": "^5.9.4", "@typescript-eslint/eslint-plugin": "^4.4.1", "@typescript-eslint/parser": "^4.4.1", @@ -132,7 +132,7 @@ "cpy-cli": "^3.1.1", "cross-env": "^7.0.2", "eslint": "^7.11.0", - "eslint-config-prettier": "^6.12.0", + "eslint-config-prettier": "^6.13.0", "eslint-formatter-github": "^1.0.11", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-graphql": "^4.0.0", @@ -146,7 +146,7 @@ "eslint-plugin-react-hooks": "^4.1.2", "eslint-plugin-simple-import-sort": "^5.0.3", "eslint-plugin-sonarjs": "^0.5.0", - "eslint-plugin-unicorn": "^22.0.0", + "eslint-plugin-unicorn": "^23.0.0", "husky": "^4.2.5", "if-env": "^1.0.4", "jest": "^26.5.3", @@ -158,7 +158,7 @@ "jest-watch-typeahead": "^0.6.0", "json.macro": "^1.3.0", "linaria": "^2.0.0-rc.3", - "lint-staged": "^10.4.0", + "lint-staged": "^10.4.2", "npm-run-all": "^4.1.5", "prettier": "^2.1.2", "prettier-plugin-packagejson": "^2.2.6", diff --git a/packages/@remirror/cli/package.json b/packages/@remirror/cli/package.json index 77b2da860b..991de14d6a 100644 --- a/packages/@remirror/cli/package.json +++ b/packages/@remirror/cli/package.json @@ -49,9 +49,9 @@ "@types/ink-spinner": "^3.0.0", "@types/ink-testing-library": "^1.0.1", "@types/jsesc": "^2.5.1", - "@types/node": "^14.11.8", + "@types/node": "^14.11.10", "@types/parcel-bundler": "^1.12.1", - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "@types/rimraf": "^3.0.0", "ink-testing-library": "^2.1.0" }, diff --git a/packages/@remirror/core-helpers/src/core-helpers.ts b/packages/@remirror/core-helpers/src/core-helpers.ts index 2800565983..42fe9e4f03 100644 --- a/packages/@remirror/core-helpers/src/core-helpers.ts +++ b/packages/@remirror/core-helpers/src/core-helpers.ts @@ -893,11 +893,7 @@ export function unset(path: Array, target: Shape): Shape { return clonedObject; } - if (isArray(item)) { - item = [...item]; - } else { - item = { ...item }; - } + item = isArray(item) ? [...item] : { ...item }; value[key] = item; value = item; diff --git a/packages/@remirror/core-utils/package.json b/packages/@remirror/core-utils/package.json index f0ef07711b..c88172f006 100644 --- a/packages/@remirror/core-utils/package.json +++ b/packages/@remirror/core-utils/package.json @@ -30,7 +30,7 @@ }, "devDependencies": { "@remirror/pm": "1.0.0-next.50", - "@types/node": "^14.11.8", + "@types/node": "^14.11.10", "domino": "^2.1.6" }, "peerDependencies": { diff --git a/packages/@remirror/core/src/builtins/persistent-selection-extension.ts b/packages/@remirror/core/src/builtins/persistent-selection-extension.ts index fb75f47c64..cdf758451d 100644 --- a/packages/@remirror/core/src/builtins/persistent-selection-extension.ts +++ b/packages/@remirror/core/src/builtins/persistent-selection-extension.ts @@ -39,16 +39,13 @@ export class PersistentSelectionExtension extends PlainExtension { }, [windowHash, setPlaygroundState]); const getPlaygroundState = useCallback(() => { - let state; - - if (!advanced) { - state = { - m: 0, - a: Object.keys(modules).filter((n) => !REQUIRED_MODULES.includes(n)), - e: options.extensions, - p: options.presets, - }; - } else { - state = { - m: 1, - c: value, - }; - } + const state = !advanced + ? { + m: 0, + a: Object.keys(modules).filter((n) => !REQUIRED_MODULES.includes(n)), + e: options.extensions, + p: options.presets, + } + : { + m: 1, + c: value, + }; return state; }, [advanced, value, options, modules]); diff --git a/packages/@remirror/pm/package.json b/packages/@remirror/pm/package.json index ae431b3e34..54d05203fe 100644 --- a/packages/@remirror/pm/package.json +++ b/packages/@remirror/pm/package.json @@ -42,7 +42,7 @@ "@types/prosemirror-history": "^1.0.1", "@types/prosemirror-inputrules": "^1.0.2", "@types/prosemirror-keymap": "^1.0.3", - "@types/prosemirror-model": "^1.7.4", + "@types/prosemirror-model": "^1.11.0", "@types/prosemirror-schema-list": "^1.0.1", "@types/prosemirror-state": "^1.2.5", "@types/prosemirror-transform": "^1.1.1", diff --git a/packages/@remirror/preset-react/package.json b/packages/@remirror/preset-react/package.json index 3d4e25d378..7d8d3b65e8 100644 --- a/packages/@remirror/preset-react/package.json +++ b/packages/@remirror/preset-react/package.json @@ -37,7 +37,7 @@ "devDependencies": { "@remirror/core": "1.0.0-next.50", "@remirror/pm": "1.0.0-next.50", - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "@types/react-dom": "^16.9.8", "react": "^16.14.0", "react-dom": "^16.14.0" diff --git a/packages/@remirror/react-components/package.json b/packages/@remirror/react-components/package.json index 53a909e27d..2a952bf82f 100644 --- a/packages/@remirror/react-components/package.json +++ b/packages/@remirror/react-components/package.json @@ -34,7 +34,7 @@ "@remirror/pm": "1.0.0-next.50", "@remirror/react": "1.0.0-next.50", "@testing-library/react": "^11.1.0", - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "@types/react-dom": "^16.9.8", "react": "^16.14.0", "react-dom": "^16.14.0" diff --git a/packages/@remirror/react-hooks/package.json b/packages/@remirror/react-hooks/package.json index c5b2a6214b..76a97e5d35 100644 --- a/packages/@remirror/react-hooks/package.json +++ b/packages/@remirror/react-hooks/package.json @@ -49,7 +49,7 @@ "@testing-library/dom": "^7.26.0", "@testing-library/react-hooks": "^3.4.2", "@testing-library/user-event": "^12.1.8", - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "@types/react-dom": "^16.9.8", "@types/testing-library__react-hooks": "^3.4.1", "react": "^16.14.0", diff --git a/packages/@remirror/react-social/package.json b/packages/@remirror/react-social/package.json index 89d35e8ed0..559c227a66 100644 --- a/packages/@remirror/react-social/package.json +++ b/packages/@remirror/react-social/package.json @@ -45,7 +45,7 @@ "@remirror/react": "1.0.0-next.50", "@testing-library/dom": "^7.26.0", "@testing-library/react-hooks": "^3.4.2", - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "@types/react-dom": "^16.9.8", "@types/testing-library__react-hooks": "^3.4.1", "react": "^16.14.0", diff --git a/packages/@remirror/react-utils/package.json b/packages/@remirror/react-utils/package.json index be0ab4f91c..28f09138d9 100644 --- a/packages/@remirror/react-utils/package.json +++ b/packages/@remirror/react-utils/package.json @@ -32,7 +32,7 @@ "@remirror/core-types": "1.0.0-next.50" }, "devDependencies": { - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "react": "^16.14.0" }, "peerDependencies": { diff --git a/packages/@remirror/react-wysiwyg/package.json b/packages/@remirror/react-wysiwyg/package.json index 79696935bc..86bb6043cf 100644 --- a/packages/@remirror/react-wysiwyg/package.json +++ b/packages/@remirror/react-wysiwyg/package.json @@ -41,7 +41,7 @@ "@remirror/pm": "1.0.0-next.50", "@remirror/react": "1.0.0-next.50", "@testing-library/react": "^11.1.0", - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "@types/react-dom": "^16.9.8", "react": "^16.14.0", "react-dom": "^16.14.0" diff --git a/packages/@remirror/react/package.json b/packages/@remirror/react/package.json index e27235f794..8866f9401f 100644 --- a/packages/@remirror/react/package.json +++ b/packages/@remirror/react/package.json @@ -44,7 +44,7 @@ "@remirror/pm": "1.0.0-next.50", "@testing-library/react": "^11.1.0", "@testing-library/react-hooks": "^3.4.2", - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "@types/react-dom": "^16.9.8", "@types/react-test-renderer": "^16.9.2", "@types/testing-library__react-hooks": "^3.4.1", diff --git a/packages/@remirror/showcase/package.json b/packages/@remirror/showcase/package.json index 5379efb2b7..b2eb25c4c0 100644 --- a/packages/@remirror/showcase/package.json +++ b/packages/@remirror/showcase/package.json @@ -31,13 +31,13 @@ "@remirror/extension-code-block": "1.0.0-next.50", "@remirror/react-hooks": "1.0.0-next.50", "@remirror/react-social": "1.0.0-next.50", - "@types/match-sorter": "^4.0.0", - "@types/prettier": "^2.1.2", - "match-sorter": "^4.2.1", + "@types/match-sorter": "^5.0.0", + "@types/prettier": "^2.1.5", + "match-sorter": "^5.0.0", "prettier": "^2.1.2" }, "devDependencies": { - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "react": "^16.14.0" }, "peerDependencies": { diff --git a/packages/@remirror/showcase/src/social-showcase.tsx b/packages/@remirror/showcase/src/social-showcase.tsx index 3d02bb6cd8..074cbfc11d 100644 --- a/packages/@remirror/showcase/src/social-showcase.tsx +++ b/packages/@remirror/showcase/src/social-showcase.tsx @@ -1,4 +1,4 @@ -import matchSorter from 'match-sorter'; +import { matchSorter } from 'match-sorter'; import React, { FC, useCallback, useMemo, useState } from 'react'; import { startCase, take } from '@remirror/core'; diff --git a/packages/@remirror/styles/package.json b/packages/@remirror/styles/package.json index 2100b45498..38a6356fad 100644 --- a/packages/@remirror/styles/package.json +++ b/packages/@remirror/styles/package.json @@ -23,7 +23,7 @@ "devDependencies": { "@emotion/core": "^10.0.35", "@emotion/styled": "^10.0.27", - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "@types/styled-components": "^5.1.4", "emotion": "^10.0.27", "react": "^16.14.0", diff --git a/packages/@remirror/testing/package.json b/packages/@remirror/testing/package.json index bf01355e1e..fd338fe736 100644 --- a/packages/@remirror/testing/package.json +++ b/packages/@remirror/testing/package.json @@ -40,7 +40,7 @@ "min-document": "^2.19.0" }, "devDependencies": { - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "react": "^16.14.0" }, "peerDependencies": { diff --git a/packages/jest-remirror/package.json b/packages/jest-remirror/package.json index ff187c2c5a..7d6b10416f 100644 --- a/packages/jest-remirror/package.json +++ b/packages/jest-remirror/package.json @@ -34,7 +34,7 @@ "sanitize-html": "^2.1.0" }, "devDependencies": { - "@types/node": "^14.11.8", + "@types/node": "^14.11.10", "jest": "^26.5.3" }, "peerDependencies": { diff --git a/packages/multishift/package.json b/packages/multishift/package.json index 780c730798..ba8c7366ed 100644 --- a/packages/multishift/package.json +++ b/packages/multishift/package.json @@ -31,7 +31,7 @@ }, "devDependencies": { "@testing-library/react": "^11.1.0", - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "react": "^16.14.0" }, "peerDependencies": { diff --git a/packages/prosemirror-suggest/package.json b/packages/prosemirror-suggest/package.json index 2879bd5624..07ffd18b95 100644 --- a/packages/prosemirror-suggest/package.json +++ b/packages/prosemirror-suggest/package.json @@ -28,7 +28,7 @@ }, "devDependencies": { "@types/prosemirror-keymap": "^1.0.3", - "@types/prosemirror-model": "^1.7.4", + "@types/prosemirror-model": "^1.11.0", "@types/prosemirror-state": "^1.2.5", "@types/prosemirror-view": "^1.16.1", "prosemirror-model": "^1.12.0", diff --git a/packages/remirror/package.json b/packages/remirror/package.json index ffb2c4c0b2..72aea5d687 100644 --- a/packages/remirror/package.json +++ b/packages/remirror/package.json @@ -94,7 +94,7 @@ "@remirror/theme": "1.0.0-next.50" }, "devDependencies": { - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "@types/react-dom": "^16.9.8", "react": "^16.14.0", "react-dom": "^16.14.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 71b54fe304..8b8964c583 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,44 +1,44 @@ importers: .: dependencies: - '@babel/core': 7.12.0 - '@babel/parser': 7.12.0 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-proposal-decorators': 7.10.5_@babel+core@7.12.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-proposal-numeric-separator': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-proposal-object-rest-spread': 7.11.0_@babel+core@7.12.0 - '@babel/plugin-proposal-optional-chaining': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-proposal-private-methods': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-transform-runtime': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-transform-template-literals': 7.10.5_@babel+core@7.12.0 - '@babel/plugin-transform-typescript': 7.12.0_@babel+core@7.12.0 - '@babel/preset-env': 7.12.0_@babel+core@7.12.0 - '@babel/preset-react': 7.10.4_@babel+core@7.12.0 - '@babel/runtime': 7.12.0 + '@babel/core': 7.12.3 + '@babel/parser': 7.12.3 + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-decorators': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-numeric-separator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-optional-chaining': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-private-methods': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-transform-runtime': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-template-literals': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-typescript': 7.12.1_@babel+core@7.12.3 + '@babel/preset-env': 7.12.1_@babel+core@7.12.3 + '@babel/preset-react': 7.12.1_@babel+core@7.12.3 + '@babel/runtime': 7.12.1 '@changesets/changelog-github': 0.2.7 '@changesets/cli': 2.11.1 '@jest/types': 26.5.2 - '@lingui/cli': 3.0.0-18_b73ce43502ab241dc25945f94e0e7960 + '@lingui/cli': 3.0.0-18_e6d88d9044da464b21616f5951e7aec6 '@lingui/macro': 3.0.0-18_babel-plugin-macros@2.8.0 '@lingui/react': 3.0.0-18 '@manypkg/cli': 0.16.1 '@manypkg/get-packages': 1.1.1 - '@preconstruct/cli': 1.1.29 + '@preconstruct/cli': 1.1.31 '@remirror/testing': 'link:packages/@remirror/testing' '@size-limit/preset-big-lib': 4.6.0_35f03d7259065eb626355773bc29f2e5 '@testing-library/jest-dom': 5.11.4 '@types/eslint': 7.2.4 '@types/jest': 26.0.14 '@types/jest-axe': 3.5.0 - '@types/node': 14.11.8 + '@types/node': 14.11.10 '@types/testing-library__jest-dom': 5.9.4 '@typescript-eslint/eslint-plugin': 4.4.1_08be5cdc80d109b060448e8ad59a1c67 '@typescript-eslint/parser': 4.4.1_eslint@7.11.0+typescript@4.0.3 - babel-jest: 26.5.2_@babel+core@7.12.0 - babel-plugin-annotate-pure-calls: 0.4.0_@babel+core@7.12.0 - babel-plugin-dev-expression: 0.2.2_@babel+core@7.12.0 + babel-jest: 26.5.2_@babel+core@7.12.3 + babel-plugin-annotate-pure-calls: 0.4.0_@babel+core@7.12.3 + babel-plugin-dev-expression: 0.2.2_@babel+core@7.12.3 babel-plugin-macros: 2.8.0 babel-plugin-transform-react-remove-prop-types: 0.4.24 case-anything: 1.1.2 @@ -46,7 +46,7 @@ importers: cpy-cli: 3.1.1 cross-env: 7.0.2 eslint: 7.11.0 - eslint-config-prettier: 6.12.0_eslint@7.11.0 + eslint-config-prettier: 6.13.0_eslint@7.11.0 eslint-formatter-github: 1.0.11_eslint@7.11.0 eslint-plugin-eslint-comments: 3.2.0_eslint@7.11.0 eslint-plugin-graphql: 4.0.0 @@ -60,7 +60,7 @@ importers: eslint-plugin-react-hooks: 4.1.2_eslint@7.11.0 eslint-plugin-simple-import-sort: 5.0.3_eslint@7.11.0 eslint-plugin-sonarjs: 0.5.0_eslint@7.11.0 - eslint-plugin-unicorn: 22.0.0_eslint@7.11.0 + eslint-plugin-unicorn: 23.0.0_eslint@7.11.0 husky: 4.3.0 if-env: 1.0.4 jest: 26.5.3 @@ -71,8 +71,8 @@ importers: jest-remirror: 'link:packages/jest-remirror' jest-watch-typeahead: 0.6.1_jest@26.5.3 json.macro: 1.3.0_babel-plugin-macros@2.8.0 - linaria: 2.0.0-rc.3_@babel+core@7.12.0 - lint-staged: 10.4.0 + linaria: 2.0.0-rc.3_@babel+core@7.12.3 + lint-staged: 10.4.2 npm-run-all: 4.1.5 prettier: 2.1.2 prettier-plugin-packagejson: 2.2.6_prettier@2.1.2 @@ -86,21 +86,21 @@ importers: typescript-snapshots-plugin: 1.7.0 typescript-styled-plugin: 0.15.0 specifiers: - '@babel/core': ^7.12.0 - '@babel/parser': ^7.12.0 - '@babel/plugin-proposal-class-properties': ^7.10.4 - '@babel/plugin-proposal-decorators': ^7.10.5 - '@babel/plugin-proposal-nullish-coalescing-operator': ^7.12.0 - '@babel/plugin-proposal-numeric-separator': ^7.12.0 - '@babel/plugin-proposal-object-rest-spread': ^7.11.0 - '@babel/plugin-proposal-optional-chaining': ^7.12.0 - '@babel/plugin-proposal-private-methods': ^7.10.4 + '@babel/core': ^7.12.3 + '@babel/parser': ^7.12.3 + '@babel/plugin-proposal-class-properties': ^7.12.1 + '@babel/plugin-proposal-decorators': ^7.12.1 + '@babel/plugin-proposal-nullish-coalescing-operator': ^7.12.1 + '@babel/plugin-proposal-numeric-separator': ^7.12.1 + '@babel/plugin-proposal-object-rest-spread': ^7.12.1 + '@babel/plugin-proposal-optional-chaining': ^7.12.1 + '@babel/plugin-proposal-private-methods': ^7.12.1 '@babel/plugin-syntax-dynamic-import': ^7.8.3 - '@babel/plugin-transform-runtime': ^7.12.0 - '@babel/plugin-transform-template-literals': ^7.10.5 - '@babel/plugin-transform-typescript': ^7.12.0 - '@babel/preset-env': ^7.12.0 - '@babel/preset-react': ^7.10.4 + '@babel/plugin-transform-runtime': ^7.12.1 + '@babel/plugin-transform-template-literals': ^7.12.1 + '@babel/plugin-transform-typescript': ^7.12.1 + '@babel/preset-env': ^7.12.1 + '@babel/preset-react': ^7.12.1 '@babel/runtime': ^7.12.0 '@changesets/changelog-github': ^0.2.7 '@changesets/cli': ^2.11.1 @@ -110,14 +110,14 @@ importers: '@lingui/react': ^3.0.0-18 '@manypkg/cli': ^0.16.1 '@manypkg/get-packages': ^1.1.1 - '@preconstruct/cli': ^1.1.29 + '@preconstruct/cli': ^1.1.31 '@remirror/testing': ^0.0.4 '@size-limit/preset-big-lib': ^4.5.7 '@testing-library/jest-dom': ^5.11.4 '@types/eslint': ^7.2.4 '@types/jest': ^26.0.14 '@types/jest-axe': ^3.5.0 - '@types/node': ^14.11.8 + '@types/node': ^14.11.10 '@types/testing-library__jest-dom': ^5.9.4 '@typescript-eslint/eslint-plugin': ^4.4.1 '@typescript-eslint/parser': ^4.4.1 @@ -131,7 +131,7 @@ importers: cpy-cli: ^3.1.1 cross-env: ^7.0.2 eslint: ^7.11.0 - eslint-config-prettier: ^6.12.0 + eslint-config-prettier: ^6.13.0 eslint-formatter-github: ^1.0.11 eslint-plugin-eslint-comments: ^3.2.0 eslint-plugin-graphql: ^4.0.0 @@ -145,7 +145,7 @@ importers: eslint-plugin-react-hooks: ^4.1.2 eslint-plugin-simple-import-sort: ^5.0.3 eslint-plugin-sonarjs: ^0.5.0 - eslint-plugin-unicorn: ^22.0.0 + eslint-plugin-unicorn: ^23.0.0 husky: ^4.2.5 if-env: ^1.0.4 jest: ^26.5.3 @@ -157,7 +157,7 @@ importers: jest-watch-typeahead: ^0.6.0 json.macro: ^1.3.0 linaria: ^2.0.0-rc.3 - lint-staged: ^10.4.0 + lint-staged: ^10.4.2 npm-run-all: ^4.1.5 prettier: ^2.1.2 prettier-plugin-packagejson: ^2.2.6 @@ -172,7 +172,7 @@ importers: typescript-styled-plugin: ^0.15.0 packages/@remirror/cli: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core-helpers': 'link:../core-helpers' '@types/ms': 0.7.31 '@types/update-notifier': 5.0.0 @@ -182,7 +182,7 @@ importers: clipanion: 2.6.2 dargs: 7.0.0 figures: 3.2.0 - ink: 3.0.7_635794461cba32ce970f62d2fbacf5f9 + ink: 3.0.7_6e8834a71204835dd543aa9883583486 ink-link: 2.0.0_ink@3.0.7+react@16.14.0 ink-multi-select: 2.0.0 ink-spinner: 4.0.1_ink@3.0.7+react@16.14.0 @@ -202,11 +202,11 @@ importers: '@types/ink-spinner': 3.0.0 '@types/ink-testing-library': 1.0.1 '@types/jsesc': 2.5.1 - '@types/node': 14.11.8 + '@types/node': 14.11.10 '@types/parcel-bundler': 1.12.1 - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/rimraf': 3.0.0 - ink-testing-library: 2.1.0_@types+react@16.9.52 + ink-testing-library: 2.1.0_@types+react@16.9.53 specifiers: '@babel/runtime': ^7.12.0 '@remirror/core-helpers': 1.0.0-next.50 @@ -215,9 +215,9 @@ importers: '@types/ink-testing-library': ^1.0.1 '@types/jsesc': ^2.5.1 '@types/ms': ^0.7.31 - '@types/node': ^14.11.8 + '@types/node': ^14.11.10 '@types/parcel-bundler': ^1.12.1 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 '@types/rimraf': ^3.0.0 '@types/update-notifier': ^5.0.0 '@types/yup': ^0.29.8 @@ -244,7 +244,7 @@ importers: yup: ^0.29.2 packages/@remirror/core: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core-constants': 'link:../core-constants' '@remirror/core-helpers': 'link:../core-helpers' '@remirror/core-types': 'link:../core-types' @@ -266,12 +266,12 @@ importers: type-fest: ^0.18.0 packages/@remirror/core-constants: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 specifiers: '@babel/runtime': ^7.12.0 packages/@remirror/core-helpers: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core-constants': 'link:../core-constants' '@remirror/core-types': 'link:../core-types' '@types/object.omit': 3.0.0 @@ -302,7 +302,7 @@ importers: type-fest: ^0.18.0 packages/@remirror/core-types: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core-constants': 'link:../core-constants' type-fest: 0.18.0 devDependencies: @@ -314,7 +314,7 @@ importers: type-fest: ^0.18.0 packages/@remirror/core-utils: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core-constants': 'link:../core-constants' '@remirror/core-helpers': 'link:../core-helpers' '@remirror/core-types': 'link:../core-types' @@ -323,7 +323,7 @@ importers: type-fest: 0.18.0 devDependencies: '@remirror/pm': 'link:../pm' - '@types/node': 14.11.8 + '@types/node': 14.11.10 domino: 2.1.6 specifiers: '@babel/runtime': ^7.12.0 @@ -332,20 +332,20 @@ importers: '@remirror/core-types': 1.0.0-next.50 '@remirror/pm': 1.0.0-next.50 '@types/min-document': ^2.19.0 - '@types/node': ^14.11.8 + '@types/node': ^14.11.10 domino: ^2.1.6 min-document: ^2.19.0 type-fest: ^0.18.0 packages/@remirror/dev: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/pm': 'link:../pm' '@remirror/react': 'link:../react' '@types/prosemirror-dev-tools': 2.1.0 prosemirror-dev-tools: 3.0.2_react-dom@16.14.0+react@16.14.0 devDependencies: '@testing-library/react': 11.1.0_react-dom@16.14.0+react@16.14.0 - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/react-dom': 16.9.8 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 @@ -355,14 +355,14 @@ importers: '@remirror/react': 1.0.0-next.50 '@testing-library/react': ^11.1.0 '@types/prosemirror-dev-tools': ^2.1.0 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 '@types/react-dom': ^16.9.8 prosemirror-dev-tools: ^3.0.1 react: ^16.14.0 react-dom: ^16.14.0 packages/@remirror/dom: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/preset-core': 'link:../preset-core' type-fest: 0.18.0 devDependencies: @@ -376,7 +376,7 @@ importers: type-fest: ^0.18.0 packages/@remirror/extension-annotation: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/extension-positioner': 'link:../extension-positioner' @@ -388,7 +388,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-auto-link: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -398,7 +398,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-bidi: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@types/direction': 1.0.0 direction: 1.0.4 devDependencies: @@ -412,7 +412,7 @@ importers: direction: ^1.0.4 packages/@remirror/extension-blockquote: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 linaria: 2.0.0-rc.3 devDependencies: '@remirror/core': 'link:../core' @@ -424,7 +424,7 @@ importers: linaria: ^2.0.0-rc.3 packages/@remirror/extension-bold: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -434,7 +434,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-code: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -444,25 +444,25 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-code-block: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@types/refractor': 3.0.0 refractor: 3.2.0 type-fest: 0.18.0 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' - '@types/prettier': 2.1.2 + '@types/prettier': 2.1.5 specifiers: '@babel/runtime': ^7.12.0 '@remirror/core': 1.0.0-next.50 '@remirror/pm': 1.0.0-next.50 - '@types/prettier': ^2.1.2 + '@types/prettier': ^2.1.5 '@types/refractor': ^3.0.0 refractor: ^3.2.0 type-fest: ^0.18.0 packages/@remirror/extension-collaboration: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@types/prosemirror-collab': 1.1.0 devDependencies: '@remirror/core': 'link:../core' @@ -476,7 +476,7 @@ importers: prosemirror-collab: ^1.2.2 packages/@remirror/extension-diff: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -486,7 +486,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-doc: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -496,7 +496,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-drop-cursor: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -506,12 +506,12 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-emoji: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@types/emoji-regex': 8.0.0 - '@types/match-sorter': 4.0.0 + '@types/match-sorter': 5.0.0 emoji-regex: 9.1.1 escape-string-regexp: 4.0.0 - match-sorter: 4.2.1 + match-sorter: 5.0.0 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -521,14 +521,14 @@ importers: '@remirror/core': 1.0.0-next.50 '@remirror/pm': 1.0.0-next.50 '@types/emoji-regex': ^8.0.0 - '@types/match-sorter': ^4.0.0 + '@types/match-sorter': ^5.0.0 emoji-regex: ^9.1.1 emojibase-data: ^6.0.0 escape-string-regexp: ^4.0.0 - match-sorter: ^4.2.1 + match-sorter: ^5.0.0 packages/@remirror/extension-epic-mode: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -538,7 +538,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-events: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -550,7 +550,7 @@ importers: '@testing-library/dom': ^7.26.0 packages/@remirror/extension-gap-cursor: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 linaria: 2.0.0-rc.3 devDependencies: '@remirror/core': 'link:../core' @@ -562,7 +562,7 @@ importers: linaria: ^2.0.0-rc.3 packages/@remirror/extension-hard-break: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -572,7 +572,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-heading: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -582,7 +582,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-history: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -592,7 +592,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-horizontal-rule: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -602,7 +602,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-image: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -612,7 +612,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-italic: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -622,7 +622,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-link: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -632,7 +632,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-mention: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 escape-string-regexp: 4.0.0 devDependencies: '@remirror/core': 'link:../core' @@ -644,7 +644,7 @@ importers: escape-string-regexp: ^4.0.0 packages/@remirror/extension-mention-atom: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -654,7 +654,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-paragraph: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -664,7 +664,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-placeholder: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 linaria: 2.0.0-rc.3 devDependencies: '@remirror/core': 'link:../core' @@ -676,7 +676,7 @@ importers: linaria: ^2.0.0-rc.3 packages/@remirror/extension-positioner: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 nanoevents: 5.1.8 devDependencies: '@remirror/core': 'link:../core' @@ -688,12 +688,12 @@ importers: nanoevents: ^5.1.8 packages/@remirror/extension-react-component: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 nanoevents: 5.1.8 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/react-dom': 16.9.8 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 @@ -701,20 +701,20 @@ importers: '@babel/runtime': ^7.12.0 '@remirror/core': 1.0.0-next.50 '@remirror/pm': 1.0.0-next.50 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 '@types/react-dom': ^16.9.8 nanoevents: ^5.1.8 react: ^16.14.0 react-dom: ^16.14.0 packages/@remirror/extension-react-ssr: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/extension-react-component': 'link:../extension-react-component' '@remirror/react-utils': 'link:../react-utils' devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' - '@types/react': 16.9.52 + '@types/react': 16.9.53 react: 16.14.0 specifiers: '@babel/runtime': ^7.12.0 @@ -722,11 +722,11 @@ importers: '@remirror/extension-react-component': 1.0.0-next.50 '@remirror/pm': 1.0.0-next.50 '@remirror/react-utils': 1.0.0-next.50 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 react: ^16.14.0 packages/@remirror/extension-search: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 escape-string-regexp: 4.0.0 linaria: 2.0.0-rc.3 devDependencies: @@ -740,7 +740,7 @@ importers: linaria: ^2.0.0-rc.3 packages/@remirror/extension-strike: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -750,7 +750,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-text: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -760,7 +760,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-trailing-node: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -770,7 +770,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-underline: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -780,7 +780,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/extension-yjs: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 linaria: 2.0.0-rc.3 y-prosemirror: 0.3.7_yjs@13.4.1 devDependencies: @@ -798,7 +798,7 @@ importers: yjs: ^13.4.1 packages/@remirror/i18n: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@lingui/core': 3.0.0-18 '@remirror/core-helpers': 'link:../core-helpers' make-plural: 6.2.2 @@ -812,9 +812,9 @@ importers: make-plural: ^6.2.1 packages/@remirror/playground: dependencies: - '@babel/runtime': 7.12.0 - '@babel/standalone': 7.12.0 - '@babel/types': 7.12.0 + '@babel/runtime': 7.12.1 + '@babel/standalone': 7.12.3 + '@babel/types': 7.12.1 '@remirror/core': 'link:../core' '@remirror/core-helpers': 'link:../core-helpers' '@remirror/pm': 'link:../pm' @@ -828,8 +828,8 @@ importers: regenerator-runtime: 0.13.7 remirror: 'link:../../remirror' devDependencies: - '@types/prettier': 2.1.2 - '@types/react': 16.9.52 + '@types/prettier': 2.1.5 + '@types/react': 16.9.53 '@types/react-dom': 16.9.8 chalk: 4.1.0 prettier: 2.1.2 @@ -837,8 +837,8 @@ importers: react-dom: 16.14.0_react@16.14.0 specifiers: '@babel/runtime': ^7.12.0 - '@babel/standalone': ^7.12.0 - '@babel/types': ^7.12.0 + '@babel/standalone': ^7.12.3 + '@babel/types': ^7.12.1 '@remirror/core': 1.0.0-next.50 '@remirror/core-helpers': 1.0.0-next.50 '@remirror/pm': 1.0.0-next.50 @@ -846,8 +846,8 @@ importers: '@types/babel__core': ^7.1.10 '@types/babel__standalone': ^7.1.3 '@types/lz-string': ^1.3.34 - '@types/prettier': ^2.1.2 - '@types/react': ^16.9.52 + '@types/prettier': ^2.1.5 + '@types/react': ^16.9.53 '@types/react-dom': ^16.9.8 chalk: ^4.1.0 lz-string: ^1.4.4 @@ -860,7 +860,7 @@ importers: remirror: 1.0.0-next.50 packages/@remirror/pm: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core-constants': 'link:../core-constants' '@remirror/core-helpers': 'link:../core-helpers' '@types/prosemirror-commands': 1.0.3 @@ -869,7 +869,7 @@ importers: '@types/prosemirror-history': 1.0.1 '@types/prosemirror-inputrules': 1.0.3 '@types/prosemirror-keymap': 1.0.3 - '@types/prosemirror-model': 1.7.4 + '@types/prosemirror-model': 1.11.0 '@types/prosemirror-schema-list': 1.0.1 '@types/prosemirror-state': 1.2.5 '@types/prosemirror-transform': 1.1.1 @@ -897,7 +897,7 @@ importers: '@types/prosemirror-history': ^1.0.1 '@types/prosemirror-inputrules': ^1.0.2 '@types/prosemirror-keymap': ^1.0.3 - '@types/prosemirror-model': ^1.7.4 + '@types/prosemirror-model': ^1.11.0 '@types/prosemirror-schema-list': ^1.0.1 '@types/prosemirror-state': ^1.2.5 '@types/prosemirror-transform': ^1.1.1 @@ -917,7 +917,7 @@ importers: prosemirror-view: ^1.16.0 packages/@remirror/preset-core: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/extension-doc': 'link:../extension-doc' '@remirror/extension-events': 'link:../extension-events' '@remirror/extension-gap-cursor': 'link:../extension-gap-cursor' @@ -941,7 +941,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/preset-embed: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 linaria: 2.0.0-rc.3 tiny-querystring: 0.0.2 devDependencies: @@ -955,7 +955,7 @@ importers: tiny-querystring: ^0.0.2 packages/@remirror/preset-list: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -965,7 +965,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/preset-react: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/extension-placeholder': 'link:../extension-placeholder' '@remirror/extension-react-component': 'link:../extension-react-component' '@remirror/extension-react-ssr': 'link:../extension-react-ssr' @@ -974,7 +974,7 @@ importers: devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/react-dom': 16.9.8 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 @@ -986,14 +986,14 @@ importers: '@remirror/extension-react-ssr': 1.0.0-next.50 '@remirror/pm': 1.0.0-next.50 '@remirror/react-utils': 1.0.0-next.50 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 '@types/react-dom': ^16.9.8 linaria: ^2.0.0-rc.3 react: ^16.14.0 react-dom: ^16.14.0 packages/@remirror/preset-react-checkbox: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' @@ -1003,7 +1003,7 @@ importers: '@remirror/pm': 1.0.0-next.50 packages/@remirror/preset-social: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/extension-auto-link': 'link:../extension-auto-link' '@remirror/extension-emoji': 'link:../extension-emoji' '@remirror/extension-mention': 'link:../extension-mention' @@ -1021,7 +1021,7 @@ importers: type-fest: ^0.18.0 packages/@remirror/preset-table: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/theme': 'link:../theme' linaria: 2.0.0-rc.3 devDependencies: @@ -1035,7 +1035,7 @@ importers: linaria: ^2.0.0-rc.3 packages/@remirror/preset-wysiwyg: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/extension-bidi': 'link:../extension-bidi' '@remirror/extension-blockquote': 'link:../extension-blockquote' '@remirror/extension-bold': 'link:../extension-bold' @@ -1089,7 +1089,7 @@ importers: '@remirror/preset-table': 1.0.0-next.50 packages/@remirror/react: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/extension-placeholder': 'link:../extension-placeholder' '@remirror/extension-positioner': 'link:../extension-positioner' '@remirror/extension-react-component': 'link:../extension-react-component' @@ -1105,13 +1105,13 @@ importers: react-use: 15.3.4_react-dom@16.14.0+react@16.14.0 resize-observer-polyfill: 1.5.1 type-fest: 0.18.0 - use-isomorphic-layout-effect: 1.0.0_635794461cba32ce970f62d2fbacf5f9 + use-isomorphic-layout-effect: 1.0.0_6e8834a71204835dd543aa9883583486 devDependencies: '@remirror/core': 'link:../core' '@remirror/pm': 'link:../pm' '@testing-library/react': 11.1.0_react-dom@16.14.0+react@16.14.0 '@testing-library/react-hooks': 3.4.2_98e0eb37a9f7280a1c5a6c886619f5b4 - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/react-dom': 16.9.8 '@types/react-test-renderer': 16.9.3 '@types/testing-library__react-hooks': 3.4.1 @@ -1135,7 +1135,7 @@ importers: '@seznam/compose-react-refs': ^1.0.4 '@testing-library/react': ^11.1.0 '@testing-library/react-hooks': ^3.4.2 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 '@types/react-dom': ^16.9.8 '@types/react-test-renderer': ^16.9.2 '@types/testing-library__react-hooks': ^3.4.1 @@ -1151,7 +1151,7 @@ importers: use-isomorphic-layout-effect: ^1.0.0 packages/@remirror/react-components: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@lingui/core': 3.0.0-18 linaria: 2.0.0-rc.3 multishift: 'link:../../multishift' @@ -1162,7 +1162,7 @@ importers: '@remirror/pm': 'link:../pm' '@remirror/react': 'link:../react' '@testing-library/react': 11.1.0_react-dom@16.14.0+react@16.14.0 - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/react-dom': 16.9.8 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 @@ -1174,7 +1174,7 @@ importers: '@remirror/pm': 1.0.0-next.50 '@remirror/react': 1.0.0-next.50 '@testing-library/react': ^11.1.0 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 '@types/react-dom': ^16.9.8 linaria: ^2.0.0-rc.3 multishift: 1.0.0-next.50 @@ -1183,11 +1183,11 @@ importers: type-fest: ^0.18.0 packages/@remirror/react-hooks: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/i18n': 'link:../i18n' '@remirror/react-utils': 'link:../react-utils' type-fest: 0.18.0 - use-isomorphic-layout-effect: 1.0.0_635794461cba32ce970f62d2fbacf5f9 + use-isomorphic-layout-effect: 1.0.0_6e8834a71204835dd543aa9883583486 devDependencies: '@remirror/core': 'link:../core' '@remirror/extension-emoji': 'link:../extension-emoji' @@ -1201,7 +1201,7 @@ importers: '@testing-library/dom': 7.26.0 '@testing-library/react-hooks': 3.4.2_react@16.14.0 '@testing-library/user-event': 12.1.8_@testing-library+dom@7.26.0 - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/react-dom': 16.9.8 '@types/testing-library__react-hooks': 3.4.1 react: 16.14.0 @@ -1222,7 +1222,7 @@ importers: '@testing-library/dom': ^7.26.0 '@testing-library/react-hooks': ^3.4.2 '@testing-library/user-event': ^12.1.8 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 '@types/react-dom': ^16.9.8 '@types/testing-library__react-hooks': ^3.4.1 react: ^16.14.0 @@ -1231,7 +1231,7 @@ importers: use-isomorphic-layout-effect: ^1.0.0 packages/@remirror/react-social: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@lingui/core': 3.0.0-18 '@remirror/extension-auto-link': 'link:../extension-auto-link' '@remirror/extension-emoji': 'link:../extension-emoji' @@ -1254,7 +1254,7 @@ importers: '@remirror/react': 'link:../react' '@testing-library/dom': 7.26.0 '@testing-library/react-hooks': 3.4.2_react@16.14.0 - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/react-dom': 16.9.8 '@types/testing-library__react-hooks': 3.4.1 react: 16.14.0 @@ -1278,7 +1278,7 @@ importers: '@testing-library/dom': ^7.26.0 '@testing-library/react-hooks': ^3.4.2 '@types/classnames': ^2.2.10 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 '@types/react-dom': ^16.9.8 '@types/testing-library__react-hooks': ^3.4.1 classnames: ^2.2.6 @@ -1289,23 +1289,23 @@ importers: type-fest: ^0.18.0 packages/@remirror/react-utils: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core-constants': 'link:../core-constants' '@remirror/core-helpers': 'link:../core-helpers' '@remirror/core-types': 'link:../core-types' devDependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 react: 16.14.0 specifiers: '@babel/runtime': ^7.12.0 '@remirror/core-constants': 1.0.0-next.50 '@remirror/core-helpers': 1.0.0-next.50 '@remirror/core-types': 1.0.0-next.50 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 react: ^16.14.0 packages/@remirror/react-wysiwyg: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@lingui/core': 3.0.0-18 '@remirror/extension-auto-link': 'link:../extension-auto-link' '@remirror/i18n': 'link:../i18n' @@ -1324,7 +1324,7 @@ importers: '@remirror/pm': 'link:../pm' '@remirror/react': 'link:../react' '@testing-library/react': 11.1.0_react-dom@16.14.0+react@16.14.0 - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/react-dom': 16.9.8 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 @@ -1343,7 +1343,7 @@ importers: '@remirror/theme': 1.0.0-next.50 '@testing-library/react': ^11.1.0 '@types/classnames': ^2.2.10 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 '@types/react-dom': ^16.9.8 classnames: ^2.2.6 linaria: ^2.0.0-rc.3 @@ -1353,17 +1353,17 @@ importers: type-fest: ^0.18.0 packages/@remirror/showcase: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core': 'link:../core' '@remirror/extension-code-block': 'link:../extension-code-block' '@remirror/react-hooks': 'link:../react-hooks' '@remirror/react-social': 'link:../react-social' - '@types/match-sorter': 4.0.0 - '@types/prettier': 2.1.2 - match-sorter: 4.2.1 + '@types/match-sorter': 5.0.0 + '@types/prettier': 2.1.5 + match-sorter: 5.0.0 prettier: 2.1.2 devDependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 react: 16.14.0 specifiers: '@babel/runtime': ^7.12.0 @@ -1371,19 +1371,19 @@ importers: '@remirror/extension-code-block': 1.0.0-next.50 '@remirror/react-hooks': 1.0.0-next.50 '@remirror/react-social': 1.0.0-next.50 - '@types/match-sorter': ^4.0.0 - '@types/prettier': ^2.1.2 - '@types/react': ^16.9.52 - match-sorter: ^4.2.1 + '@types/match-sorter': ^5.0.0 + '@types/prettier': ^2.1.5 + '@types/react': ^16.9.53 + match-sorter: ^5.0.0 prettier: ^2.1.2 react: ^16.14.0 packages/@remirror/styles: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 devDependencies: '@emotion/core': 10.0.35_react@16.14.0 '@emotion/styled': 10.0.27_949b6c0dd132c1257a107ce4fd67d629 - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/styled-components': 5.1.4 emotion: 10.0.27 react: 16.14.0 @@ -1392,14 +1392,14 @@ importers: '@babel/runtime': ^7.12.0 '@emotion/core': ^10.0.35 '@emotion/styled': ^10.0.27 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 '@types/styled-components': ^5.1.4 emotion: ^10.0.27 react: ^16.14.0 styled-components: ^5.1.1 packages/@remirror/testing: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@react-spring/mock-raf': 1.1.1 '@remirror/core': 'link:../core' '@remirror/extension-blockquote': 'link:../extension-blockquote' @@ -1421,7 +1421,7 @@ importers: jest-diff: 26.5.2 min-document: 2.19.0 devDependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 react: 16.14.0 specifiers: '@babel/runtime': ^7.12.0 @@ -1443,13 +1443,13 @@ importers: '@remirror/react': 1.0.0-next.50 '@testing-library/react': ^11.1.0 '@types/min-document': ^2.19.0 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 jest-diff: ^26.5.2 min-document: ^2.19.0 react: ^16.14.0 packages/@remirror/theme: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core-types': 'link:../core-types' case-anything: 1.1.2 linaria: 2.0.0-rc.3 @@ -1464,7 +1464,7 @@ importers: type-fest: ^0.18.0 packages/a11y-status: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@types/throttle-debounce': 2.1.0 throttle-debounce: 2.3.0 specifiers: @@ -1473,7 +1473,7 @@ importers: throttle-debounce: ^2.3.0 packages/jest-prosemirror: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core-constants': 'link:../@remirror/core-constants' '@remirror/core-helpers': 'link:../@remirror/core-helpers' '@remirror/core-types': 'link:../@remirror/core-types' @@ -1509,7 +1509,7 @@ importers: test-keyboard: 1.0.0-next.50 packages/jest-remirror: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core': 'link:../@remirror/core' '@remirror/dom': 'link:../@remirror/dom' '@remirror/pm': 'link:../@remirror/pm' @@ -1521,7 +1521,7 @@ importers: mutationobserver-shim: 0.3.7 sanitize-html: 2.1.0 devDependencies: - '@types/node': 14.11.8 + '@types/node': 14.11.10 jest: 26.5.3 specifiers: '@babel/runtime': ^7.12.0 @@ -1530,7 +1530,7 @@ importers: '@remirror/pm': 1.0.0-next.50 '@remirror/preset-core': 1.0.0-next.50 '@testing-library/dom': ^7.26.0 - '@types/node': ^14.11.8 + '@types/node': ^14.11.10 '@types/sanitize-html': ^1.27.0 jest: ^26.5.3 jest-prosemirror: 1.0.0-next.50 @@ -1539,7 +1539,7 @@ importers: sanitize-html: ^2.1.0 packages/multishift: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@reach/auto-id': 0.11.2_react@16.14.0 '@remirror/core-helpers': 'link:../@remirror/core-helpers' '@remirror/core-types': 'link:../@remirror/core-types' @@ -1550,7 +1550,7 @@ importers: w3c-keyname: 2.2.4 devDependencies: '@testing-library/react': 11.1.0_react@16.14.0 - '@types/react': 16.9.52 + '@types/react': 16.9.53 react: 16.14.0 specifiers: '@babel/runtime': ^7.12.0 @@ -1559,7 +1559,7 @@ importers: '@remirror/core-types': 1.0.0-next.50 '@seznam/compose-react-refs': ^1.0.4 '@testing-library/react': ^11.1.0 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 a11y-status: 1.0.0-next.50 compute-scroll-into-view: ^1.0.14 react: ^16.14.0 @@ -1567,14 +1567,14 @@ importers: w3c-keyname: ^2.2.4 packages/prosemirror-suggest: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core-constants': 'link:../@remirror/core-constants' '@remirror/core-helpers': 'link:../@remirror/core-helpers' escape-string-regexp: 4.0.0 type-fest: 0.18.0 devDependencies: '@types/prosemirror-keymap': 1.0.3 - '@types/prosemirror-model': 1.7.4 + '@types/prosemirror-model': 1.11.0 '@types/prosemirror-state': 1.2.5 '@types/prosemirror-view': 1.16.1 prosemirror-model: 1.12.0 @@ -1585,7 +1585,7 @@ importers: '@remirror/core-constants': 1.0.0-next.50 '@remirror/core-helpers': 1.0.0-next.50 '@types/prosemirror-keymap': ^1.0.3 - '@types/prosemirror-model': ^1.7.4 + '@types/prosemirror-model': ^1.11.0 '@types/prosemirror-state': ^1.2.5 '@types/prosemirror-view': ^1.16.1 escape-string-regexp: ^4.0.0 @@ -1595,7 +1595,7 @@ importers: type-fest: ^0.18.0 packages/remirror: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core': 'link:../@remirror/core' '@remirror/core-constants': 'link:../@remirror/core-constants' '@remirror/core-helpers': 'link:../@remirror/core-helpers' @@ -1652,7 +1652,7 @@ importers: '@remirror/react-wysiwyg': 'link:../@remirror/react-wysiwyg' '@remirror/theme': 'link:../@remirror/theme' devDependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/react-dom': 16.9.8 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 @@ -1714,14 +1714,14 @@ importers: '@remirror/react-utils': 1.0.0-next.50 '@remirror/react-wysiwyg': 1.0.0-next.50 '@remirror/theme': 1.0.0-next.50 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 '@types/react-dom': ^16.9.8 react: ^16.14.0 react-dom: ^16.14.0 yjs: ^13.4.1 packages/test-keyboard: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core-helpers': 'link:../@remirror/core-helpers' '@remirror/core-types': 'link:../@remirror/core-types' specifiers: @@ -1735,7 +1735,7 @@ importers: '@changesets/types': 3.2.0 '@types/autoprefixer': 9.7.2 '@types/lodash.groupby': 4.6.6 - '@types/prettier': 2.1.2 + '@types/prettier': 2.1.5 '@types/rimraf': 3.0.0 autoprefixer: 9.8.6 chalk: 4.1.0 @@ -1759,7 +1759,7 @@ importers: '@changesets/types': ^3.2.0 '@types/autoprefixer': ^9.7.2 '@types/lodash.groupby': ^4.6.6 - '@types/prettier': ^2.1.2 + '@types/prettier': ^2.1.5 '@types/rimraf': ^3.0.0 autoprefixer: ^9.8.6 chalk: ^4.1.0 @@ -1817,7 +1817,7 @@ importers: specifiers: {} support/e2e: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@remirror/core': 'link:../../packages/@remirror/core' '@types/wait-on': 4.0.0 expect-playwright: 0.2.5 @@ -1854,13 +1854,13 @@ importers: refractor: 3.2.0 remirror: 'link:../../../packages/remirror' devDependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/react-dom': 16.9.8 '@types/refractor': 3.0.0 specifiers: '@preconstruct/next': ^1.0.1 '@remirror/showcase': 1.0.0-next.50 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 '@types/react-dom': ^16.9.8 '@types/refractor': ^3.0.0 next: 9.4.4 @@ -1870,30 +1870,30 @@ importers: remirror: 1.0.0-next.50 support/storybook: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@remirror/pm': 'link:../../packages/@remirror/pm' '@remirror/showcase': 'link:../../packages/@remirror/showcase' - '@storybook/addon-actions': 6.0.26_9e4bedfdf6e6ac767ca43c92ea619ba4 + '@storybook/addon-actions': 6.0.26_6924a3a01d652738e2fd803d6b0c2ee3 '@storybook/addon-links': 6.0.26_react-dom@16.14.0+react@16.14.0 '@storybook/addons': 6.0.26_react-dom@16.14.0+react@16.14.0 - '@storybook/react': 6.0.26_d69f681e98c2317171582cba63fd33b8 - '@types/react': 16.9.52 + '@storybook/react': 6.0.26_95dbe1986b15e1177d1e1a0df654854e + '@types/react': 16.9.53 '@types/react-dom': 16.9.8 '@types/webpack': 4.41.22 - babel-loader: 8.1.0_@babel+core@7.12.0 - linaria: 2.0.0-rc.3_@babel+core@7.12.0 + babel-loader: 8.1.0_@babel+core@7.12.3 + linaria: 2.0.0-rc.3_@babel+core@7.12.3 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 remirror: 'link:../../packages/remirror' specifiers: - '@babel/core': ^7.12.0 + '@babel/core': ^7.12.3 '@remirror/pm': 1.0.0-next.50 '@remirror/showcase': 1.0.0-next.50 '@storybook/addon-actions': ^6.0.26 '@storybook/addon-links': ^6.0.26 '@storybook/addons': ^6.0.26 '@storybook/react': ^6.0.26 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 '@types/react-dom': ^16.9.8 '@types/webpack': ^4.41.22 babel-loader: ^8.1.0 @@ -1903,12 +1903,12 @@ importers: remirror: 1.0.0-next.50 support/website: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@docusaurus/core': 2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0 '@docusaurus/plugin-client-redirects': 2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0 '@docusaurus/plugin-content-docs': 2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0 '@docusaurus/plugin-ideal-image': 2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0 - '@docusaurus/preset-classic': 2.0.0-alpha.65_18c2448243268f81b40c18c15faa9c98 + '@docusaurus/preset-classic': 2.0.0-alpha.65_15199c67d2c4d2f537ff94cbd86aca8f '@docusaurus/theme-live-codeblock': 2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0 '@mdx-js/react': 1.6.18_react@16.14.0 '@remirror/dev': 'link:../../packages/@remirror/dev' @@ -1926,7 +1926,7 @@ importers: devDependencies: '@docusaurus/module-type-aliases': 2.0.0-alpha.65 '@docusaurus/types': 2.0.0-alpha.65 - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/react-dom': 16.9.8 babel-plugin-dynamic-import-node: 2.3.3 monaco-editor-webpack-plugin: 2.0.0 @@ -1944,7 +1944,7 @@ importers: '@remirror/dev': 1.0.0-next.50 '@remirror/playground': 1.0.0-next.50 '@remirror/showcase': 1.0.0-next.50 - '@types/react': ^16.9.52 + '@types/react': ^16.9.53 '@types/react-dom': ^16.9.8 babel-plugin-dynamic-import-node: ^2.3.3 clsx: ^1.1.1 @@ -2123,20 +2123,20 @@ packages: dev: false resolution: integrity: sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== - /@babel/compat-data/7.12.0: + /@babel/compat-data/7.12.1: dev: false resolution: - integrity: sha512-jAbCtMANC9ptXxbSVXIqV/3H0bkh7iyyv6JS5lu10av45bcc2QmDNJXkASZCFwbBt75Q0AEq/BB+bNa3x1QgYQ== + integrity: sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ== /@babel/core/7.11.6: dependencies: '@babel/code-frame': 7.10.4 - '@babel/generator': 7.12.0 - '@babel/helper-module-transforms': 7.12.0 - '@babel/helpers': 7.10.4 - '@babel/parser': 7.12.0 + '@babel/generator': 7.12.1 + '@babel/helper-module-transforms': 7.12.1 + '@babel/helpers': 7.12.1 + '@babel/parser': 7.12.3 '@babel/template': 7.10.4 - '@babel/traverse': 7.12.0 - '@babel/types': 7.12.0 + '@babel/traverse': 7.12.1 + '@babel/types': 7.12.1 convert-source-map: 1.7.0 debug: 4.2.0 gensync: 1.0.0-beta.1 @@ -2150,16 +2150,16 @@ packages: node: '>=6.9.0' resolution: integrity: sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg== - /@babel/core/7.12.0: + /@babel/core/7.12.3: dependencies: '@babel/code-frame': 7.10.4 - '@babel/generator': 7.12.0 - '@babel/helper-module-transforms': 7.12.0 - '@babel/helpers': 7.10.4 - '@babel/parser': 7.12.0 + '@babel/generator': 7.12.1 + '@babel/helper-module-transforms': 7.12.1 + '@babel/helpers': 7.12.1 + '@babel/parser': 7.12.3 '@babel/template': 7.10.4 - '@babel/traverse': 7.12.0 - '@babel/types': 7.12.0 + '@babel/traverse': 7.12.1 + '@babel/types': 7.12.1 convert-source-map: 1.7.0 debug: 4.2.0 gensync: 1.0.0-beta.1 @@ -2171,15 +2171,15 @@ packages: engines: node: '>=6.9.0' resolution: - integrity: sha512-iV7Gwg0DePKvdDZZWRTkj4MW+6/AbVWd4ZCg+zk8H1RVt5xBpUZS6vLQWwb3pyLg4BFTaGiQCPoJ4Ibmbne4fA== + integrity: sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g== /@babel/core/7.7.7: dependencies: '@babel/code-frame': 7.8.3 - '@babel/generator': 7.12.0 - '@babel/helpers': 7.10.4 - '@babel/parser': 7.12.0 + '@babel/generator': 7.12.1 + '@babel/helpers': 7.12.1 + '@babel/parser': 7.12.3 '@babel/template': 7.10.4 - '@babel/traverse': 7.12.0 + '@babel/traverse': 7.12.1 '@babel/types': 7.9.6 convert-source-map: 1.7.0 debug: 4.2.0 @@ -2193,95 +2193,93 @@ packages: node: '>=6.9.0' resolution: integrity: sha512-jlSjuj/7z138NLZALxVgrx13AOtqip42ATZP7+kYl53GvDV6+4dCek1mVUo8z8c8Xnw/mx2q3d9HWh3griuesQ== - /@babel/generator/7.12.0: + /@babel/generator/7.12.1: dependencies: - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 jsesc: 2.5.2 source-map: 0.5.7 resolution: - integrity: sha512-8lnf4QcyiQMf5XQp47BltuMTocsOh6P0z/vueEh8GzhmWWlDbdvOoI5Ziddg0XYhmnx35HyByUW51/9NprF8cA== + integrity: sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg== /@babel/helper-annotate-as-pure/7.10.4: dependencies: - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 resolution: integrity: sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== /@babel/helper-builder-binary-assignment-operator-visitor/7.10.4: dependencies: - '@babel/helper-explode-assignable-expression': 7.11.4 - '@babel/types': 7.12.0 + '@babel/helper-explode-assignable-expression': 7.12.1 + '@babel/types': 7.12.1 dev: false resolution: integrity: sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== - /@babel/helper-builder-react-jsx-experimental/7.12.0: + /@babel/helper-builder-react-jsx-experimental/7.12.1: dependencies: '@babel/helper-annotate-as-pure': 7.10.4 - '@babel/helper-module-imports': 7.10.4 - '@babel/types': 7.12.0 + '@babel/helper-module-imports': 7.12.1 + '@babel/types': 7.12.1 dev: false resolution: - integrity: sha512-AFzu6ib4i56olCtulkbIifcTay0O5tv8ZVK8hZMzrpu+YjsIDEcesF1DMqqTzV65clu3X61aE7qeHcJsY/gmnA== + integrity: sha512-82to8lR7TofZWbTd3IEZT1xNHfeU/Ef4rDm/GLXddzqDh+yQ19QuGSzqww51aNxVH8rwfRIzL0EUQsvODVhtyw== /@babel/helper-builder-react-jsx/7.10.4: dependencies: '@babel/helper-annotate-as-pure': 7.10.4 - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 dev: false resolution: integrity: sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg== - /@babel/helper-compilation-targets/7.12.0_@babel+core@7.12.0: + /@babel/helper-compilation-targets/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/compat-data': 7.12.0 - '@babel/core': 7.12.0 - '@babel/helper-validator-option': 7.12.0 + '@babel/compat-data': 7.12.1 + '@babel/core': 7.12.3 + '@babel/helper-validator-option': 7.12.1 browserslist: 4.14.5 semver: 5.7.1 dev: false peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-NbDFJNjDgxE7IkrHp5gq2+Tr8bEdCLKYN90YDQEjMiTMUAFAcShNkaH8kydcmU0mEQTiQY0Ydy/+1xfS2OCEnw== - /@babel/helper-compilation-targets/7.12.0_@babel+core@7.7.7: + integrity: sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g== + /@babel/helper-compilation-targets/7.12.1_@babel+core@7.7.7: dependencies: - '@babel/compat-data': 7.12.0 + '@babel/compat-data': 7.12.1 '@babel/core': 7.7.7 - '@babel/helper-validator-option': 7.12.0 + '@babel/helper-validator-option': 7.12.1 browserslist: 4.14.5 semver: 5.7.1 dev: false peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-NbDFJNjDgxE7IkrHp5gq2+Tr8bEdCLKYN90YDQEjMiTMUAFAcShNkaH8kydcmU0mEQTiQY0Ydy/+1xfS2OCEnw== - /@babel/helper-create-class-features-plugin/7.12.0_@babel+core@7.12.0: + integrity: sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g== + /@babel/helper-create-class-features-plugin/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-function-name': 7.10.4 - '@babel/helper-member-expression-to-functions': 7.12.0 + '@babel/helper-member-expression-to-functions': 7.12.1 '@babel/helper-optimise-call-expression': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-replace-supers': 7.12.0 + '@babel/helper-replace-supers': 7.12.1 '@babel/helper-split-export-declaration': 7.11.0 dev: false peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-9tD1r9RK928vxvxcoNK8/7uwT7Q2DJZP1dnJmyMAJPwOF0yr8PPwqdpyw33lUpCfrJ765bOs5XNa4KSfUDWFSw== - /@babel/helper-create-class-features-plugin/7.12.0_@babel+core@7.7.7: + integrity: sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w== + /@babel/helper-create-class-features-plugin/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-function-name': 7.10.4 - '@babel/helper-member-expression-to-functions': 7.12.0 + '@babel/helper-member-expression-to-functions': 7.12.1 '@babel/helper-optimise-call-expression': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-replace-supers': 7.12.0 + '@babel/helper-replace-supers': 7.12.1 '@babel/helper-split-export-declaration': 7.11.0 dev: false peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-9tD1r9RK928vxvxcoNK8/7uwT7Q2DJZP1dnJmyMAJPwOF0yr8PPwqdpyw33lUpCfrJ765bOs5XNa4KSfUDWFSw== - /@babel/helper-create-regexp-features-plugin/7.12.0_@babel+core@7.12.0: + integrity: sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w== + /@babel/helper-create-regexp-features-plugin/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-regex': 7.10.5 regexpu-core: 4.7.1 @@ -2289,8 +2287,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-YBqH+3wLcom+tko8/JLgRcG8DMqORgmjqNRNI751gTioJSZHWFybO1mRoLtJtWIlYSHY+zT9LqqnbbK1c3KIVQ== - /@babel/helper-create-regexp-features-plugin/7.12.0_@babel+core@7.7.7: + integrity: sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA== + /@babel/helper-create-regexp-features-plugin/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-annotate-as-pure': 7.10.4 @@ -2300,65 +2298,65 @@ packages: peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-YBqH+3wLcom+tko8/JLgRcG8DMqORgmjqNRNI751gTioJSZHWFybO1mRoLtJtWIlYSHY+zT9LqqnbbK1c3KIVQ== + integrity: sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA== /@babel/helper-define-map/7.10.5: dependencies: '@babel/helper-function-name': 7.10.4 - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 lodash: 4.17.20 dev: false resolution: integrity: sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ== - /@babel/helper-explode-assignable-expression/7.11.4: + /@babel/helper-explode-assignable-expression/7.12.1: dependencies: - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 dev: false resolution: - integrity: sha512-ux9hm3zR4WV1Y3xXxXkdG/0gxF9nvI0YVmKVhvK9AfMoaQkemL3sJpXw+Xbz65azo8qJiEz2XVDUpK3KYhH3ZQ== + integrity: sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA== /@babel/helper-function-name/7.10.4: dependencies: '@babel/helper-get-function-arity': 7.10.4 '@babel/template': 7.10.4 - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 resolution: integrity: sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== /@babel/helper-get-function-arity/7.10.4: dependencies: - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 resolution: integrity: sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== /@babel/helper-hoist-variables/7.10.4: dependencies: - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 dev: false resolution: integrity: sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA== - /@babel/helper-member-expression-to-functions/7.12.0: + /@babel/helper-member-expression-to-functions/7.12.1: dependencies: - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 resolution: - integrity: sha512-I0d/bgzgzgLsJMk7UZ0TN2KV3OGjC/t/9Saz8PKb9jrcEAXhgjGysOgp4PDKydIKjUv/gj2St4ae+ov8l+T9Xg== - /@babel/helper-module-imports/7.10.4: + integrity: sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ== + /@babel/helper-module-imports/7.12.1: dependencies: - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 resolution: - integrity: sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw== - /@babel/helper-module-transforms/7.12.0: + integrity: sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA== + /@babel/helper-module-transforms/7.12.1: dependencies: - '@babel/helper-module-imports': 7.10.4 - '@babel/helper-replace-supers': 7.12.0 - '@babel/helper-simple-access': 7.10.4 + '@babel/helper-module-imports': 7.12.1 + '@babel/helper-replace-supers': 7.12.1 + '@babel/helper-simple-access': 7.12.1 '@babel/helper-split-export-declaration': 7.11.0 '@babel/helper-validator-identifier': 7.10.4 '@babel/template': 7.10.4 - '@babel/traverse': 7.12.0 - '@babel/types': 7.12.0 + '@babel/traverse': 7.12.1 + '@babel/types': 7.12.1 lodash: 4.17.20 resolution: - integrity: sha512-1ZTMoCiLSzTJLbq7mSaTHki4oIrBIf/dUbzdhwTrvtMU3ZNVKwQmGae3gSiqppo7G8HAgnXmc43rfEaD8yYLLQ== + integrity: sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w== /@babel/helper-optimise-call-expression/7.10.4: dependencies: - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 resolution: integrity: sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg== /@babel/helper-plugin-utils/7.10.4: @@ -2370,63 +2368,61 @@ packages: dev: false resolution: integrity: sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg== - /@babel/helper-remap-async-to-generator/7.11.4: + /@babel/helper-remap-async-to-generator/7.12.1: dependencies: '@babel/helper-annotate-as-pure': 7.10.4 - '@babel/helper-wrap-function': 7.10.4 - '@babel/template': 7.10.4 - '@babel/types': 7.12.0 + '@babel/helper-wrap-function': 7.12.3 + '@babel/types': 7.12.1 dev: false resolution: - integrity: sha512-tR5vJ/vBa9wFy3m5LLv2faapJLnDFxNWff2SAYkSE4rLUdbp7CdObYFgI7wK4T/Mj4UzpjPwzR8Pzmr5m7MHGA== - /@babel/helper-replace-supers/7.12.0: + integrity: sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A== + /@babel/helper-replace-supers/7.12.1: dependencies: - '@babel/helper-member-expression-to-functions': 7.12.0 + '@babel/helper-member-expression-to-functions': 7.12.1 '@babel/helper-optimise-call-expression': 7.10.4 - '@babel/traverse': 7.12.0 - '@babel/types': 7.12.0 + '@babel/traverse': 7.12.1 + '@babel/types': 7.12.1 resolution: - integrity: sha512-9kycFdq2c9e7PXZOr2z/ZqTFF9OzFu287iFwYS+CiDVPuoTCfY8hoTsIqNQNetQjlqoRsRyJFrMG1uhGAR4EEw== - /@babel/helper-simple-access/7.10.4: + integrity: sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw== + /@babel/helper-simple-access/7.12.1: dependencies: - '@babel/template': 7.10.4 - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 resolution: - integrity: sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw== - /@babel/helper-skip-transparent-expression-wrappers/7.11.0: + integrity: sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA== + /@babel/helper-skip-transparent-expression-wrappers/7.12.1: dependencies: - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 dev: false resolution: - integrity: sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q== + integrity: sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA== /@babel/helper-split-export-declaration/7.11.0: dependencies: - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 resolution: integrity: sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== /@babel/helper-validator-identifier/7.10.4: resolution: integrity: sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== - /@babel/helper-validator-option/7.12.0: + /@babel/helper-validator-option/7.12.1: dev: false resolution: - integrity: sha512-NRfKaAQw/JCMsTFUdJI6cp4MoJGGVBRQTRSiW1nwlGldNqzjB9jqWI0SZqQksC724dJoKqwG+QqfS9ib7SoVsw== - /@babel/helper-wrap-function/7.10.4: + integrity: sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A== + /@babel/helper-wrap-function/7.12.3: dependencies: '@babel/helper-function-name': 7.10.4 '@babel/template': 7.10.4 - '@babel/traverse': 7.12.0 - '@babel/types': 7.12.0 + '@babel/traverse': 7.12.1 + '@babel/types': 7.12.1 dev: false resolution: - integrity: sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug== - /@babel/helpers/7.10.4: + integrity: sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow== + /@babel/helpers/7.12.1: dependencies: '@babel/template': 7.10.4 - '@babel/traverse': 7.12.0 - '@babel/types': 7.12.0 + '@babel/traverse': 7.12.1 + '@babel/types': 7.12.1 resolution: - integrity: sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA== + integrity: sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g== /@babel/highlight/7.10.4: dependencies: '@babel/helper-validator-identifier': 7.10.4 @@ -2434,76 +2430,76 @@ packages: js-tokens: 4.0.0 resolution: integrity: sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== - /@babel/parser/7.12.0: + /@babel/parser/7.12.3: engines: node: '>=6.0.0' hasBin: true resolution: - integrity: sha512-dYmySMYnlus2jwl7JnnajAj11obRStZoW9cG04wh4ZuhozDn11tDUrhHcUZ9iuNHqALAhh60XqNaYXpvuuE/Gg== - /@babel/plugin-proposal-async-generator-functions/7.10.5_@babel+core@7.12.0: + integrity: sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw== + /@babel/plugin-proposal-async-generator-functions/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-remap-async-to-generator': 7.11.4 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.0 + '@babel/helper-remap-async-to-generator': 7.12.1 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg== - /@babel/plugin-proposal-async-generator-functions/7.10.5_@babel+core@7.7.7: + integrity: sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A== + /@babel/plugin-proposal-async-generator-functions/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-remap-async-to-generator': 7.11.4 + '@babel/helper-remap-async-to-generator': 7.12.1 '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.7.7 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg== - /@babel/plugin-proposal-class-properties/7.10.4_@babel+core@7.12.0: + integrity: sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A== + /@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-create-class-features-plugin': 7.12.0_@babel+core@7.12.0 + '@babel/core': 7.12.3 + '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg== + integrity: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w== /@babel/plugin-proposal-class-properties/7.8.3_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 - '@babel/helper-create-class-features-plugin': 7.12.0_@babel+core@7.7.7 + '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.7.7 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA== - /@babel/plugin-proposal-decorators/7.10.5_@babel+core@7.12.0: + /@babel/plugin-proposal-decorators/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-create-class-features-plugin': 7.12.0_@babel+core@7.12.0 + '@babel/core': 7.12.3 + '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-decorators': 7.10.4_@babel+core@7.12.0 + '@babel/plugin-syntax-decorators': 7.12.1_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Sc5TAQSZuLzgY0664mMDn24Vw2P8g/VhyLyGPaWiHahhgLqeZvcGeyBZOrJW0oSKIK2mvQ22a1ENXBIQLhrEiQ== - /@babel/plugin-proposal-dynamic-import/7.10.4_@babel+core@7.12.0: + integrity: sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ== + /@babel/plugin-proposal-dynamic-import/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ== - /@babel/plugin-proposal-dynamic-import/7.10.4_@babel+core@7.7.7: + integrity: sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ== + /@babel/plugin-proposal-dynamic-import/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -2512,18 +2508,18 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ== - /@babel/plugin-proposal-export-default-from/7.10.4_@babel+core@7.12.0: + integrity: sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ== + /@babel/plugin-proposal-export-default-from/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-export-default-from': 7.10.4_@babel+core@7.12.0 + '@babel/plugin-syntax-export-default-from': 7.12.1_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-G1l00VvDZ7Yk2yRlC5D8Ybvu3gmeHS3rCHoUYdjrqGYUtdeOBoRypnvDZ5KQqxyaiiGHWnVDeSEzA5F9ozItig== - /@babel/plugin-proposal-export-namespace-from/7.12.0: + integrity: sha512-z5Q4Ke7j0AexQRfgUvnD+BdCSgpTEKnqQ3kskk2jWtOBulxICzd1X9BGt7kmWftxZ2W3++OZdt5gtmC8KLxdRQ== + /@babel/plugin-proposal-export-namespace-from/7.12.1: dependencies: '@babel/helper-plugin-utils': 7.10.4 '@babel/plugin-syntax-export-namespace-from': 7.8.3 @@ -2531,28 +2527,28 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ao43U2ptSe+mIZAQo2nBV5Wx2Ie3i2XbLt8jCXZpv+bvLY1Twv0lak4YZ1Ps5OwbeLMAl3iOVScgGMOImBae1g== - /@babel/plugin-proposal-export-namespace-from/7.12.0_@babel+core@7.12.0: + integrity: sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw== + /@babel/plugin-proposal-export-namespace-from/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.0 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ao43U2ptSe+mIZAQo2nBV5Wx2Ie3i2XbLt8jCXZpv+bvLY1Twv0lak4YZ1Ps5OwbeLMAl3iOVScgGMOImBae1g== - /@babel/plugin-proposal-json-strings/7.10.4_@babel+core@7.12.0: + integrity: sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw== + /@babel/plugin-proposal-json-strings/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.0 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw== - /@babel/plugin-proposal-json-strings/7.10.4_@babel+core@7.7.7: + integrity: sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw== + /@babel/plugin-proposal-json-strings/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -2561,27 +2557,27 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw== - /@babel/plugin-proposal-logical-assignment-operators/7.12.0_@babel+core@7.12.0: + integrity: sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw== + /@babel/plugin-proposal-logical-assignment-operators/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-dssjXHzdMQal4q6GCSwDTVPEbyBLdd9+7aSlzAkQbrGEKq5xG8pvhQ7u2ktUrCLRmzQphZnSzILBL5ta4xSRlA== - /@babel/plugin-proposal-nullish-coalescing-operator/7.12.0_@babel+core@7.12.0: + integrity: sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA== + /@babel/plugin-proposal-nullish-coalescing-operator/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-JpNWix2VP2ue31r72fKytTE13nPX1fxl1mudfTaTwcDhl3iExz5NZjQBq012b/BQ6URWoc/onI73pZdYlAfihg== + integrity: sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg== /@babel/plugin-proposal-nullish-coalescing-operator/7.8.3_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 @@ -2592,16 +2588,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw== - /@babel/plugin-proposal-numeric-separator/7.12.0_@babel+core@7.12.0: + /@babel/plugin-proposal-numeric-separator/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-iON65YmIy/IpEgteYJ4HfO2q30SLdIxiyjNNlsSjSl0tUxLhSH9PljE5r6sczwdW64ZZzznYNcezdcROB+rDDw== + integrity: sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA== /@babel/plugin-proposal-numeric-separator/7.8.3_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 @@ -2617,45 +2613,45 @@ packages: '@babel/core': 7.11.6 '@babel/helper-plugin-utils': 7.10.4 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.11.6 + '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.11.6 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA== - /@babel/plugin-proposal-object-rest-spread/7.11.0_@babel+core@7.12.0: + /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.12.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA== + integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== /@babel/plugin-proposal-object-rest-spread/7.9.6_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.7.7 - '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.7.7 + '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.7.7 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Ga6/fhGqA9Hj+y6whNpPv8psyaK5xzrQwSPsGPloVkvmH+PqW1ixdnfJ9uIO06OjQNYol3PMnfmJ8vfZtkzF+A== - /@babel/plugin-proposal-optional-catch-binding/7.10.4_@babel+core@7.12.0: + /@babel/plugin-proposal-optional-catch-binding/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== - /@babel/plugin-proposal-optional-catch-binding/7.10.4_@babel+core@7.7.7: + integrity: sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g== + /@babel/plugin-proposal-optional-catch-binding/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -2664,18 +2660,18 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== - /@babel/plugin-proposal-optional-chaining/7.12.0_@babel+core@7.12.0: + integrity: sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g== + /@babel/plugin-proposal-optional-chaining/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-skip-transparent-expression-wrappers': 7.11.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-CXu9aw32FH/MksqdKvhpiH8pSvxnXJ33E7I7BGNE9VzNRpWgpNzvPpds/tW9E0pjmX9+D1zAHRyHbtyeTboo2g== + integrity: sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw== /@babel/plugin-proposal-optional-chaining/7.9.0_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 @@ -2686,20 +2682,20 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w== - /@babel/plugin-proposal-private-methods/7.10.4_@babel+core@7.12.0: + /@babel/plugin-proposal-private-methods/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-create-class-features-plugin': 7.12.0_@babel+core@7.12.0 + '@babel/core': 7.12.3 + '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== - /@babel/plugin-proposal-unicode-property-regex/7.10.4_@babel+core@7.12.0: + integrity: sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w== + /@babel/plugin-proposal-unicode-property-regex/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-create-regexp-features-plugin': 7.12.0_@babel+core@7.12.0 + '@babel/core': 7.12.3 + '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false engines: @@ -2707,11 +2703,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== - /@babel/plugin-proposal-unicode-property-regex/7.10.4_@babel+core@7.7.7: + integrity: sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w== + /@babel/plugin-proposal-unicode-property-regex/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 - '@babel/helper-create-regexp-features-plugin': 7.12.0_@babel+core@7.7.7 + '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.7.7 '@babel/helper-plugin-utils': 7.10.4 dev: false engines: @@ -2719,10 +2715,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.0: + integrity: sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w== + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 @@ -2737,9 +2733,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.12.0: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 @@ -2754,23 +2750,23 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== - /@babel/plugin-syntax-class-properties/7.10.4_@babel+core@7.12.0: + /@babel/plugin-syntax-class-properties/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== - /@babel/plugin-syntax-decorators/7.10.4_@babel+core@7.12.0: + integrity: sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA== + /@babel/plugin-syntax-decorators/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-2NaoC6fAk2VMdhY1eerkfHV+lVYC1u8b+jmRJISqANCJlTxYy19HGdIkkQtix2UtkcPuPu+IlDgrVseZnU03bw== + integrity: sha512-ir9YW5daRrTYiy9UJ2TzdNIJEZu8KclVzDcfSt4iEmOtwQ4llPtWInNKJyKnVXp1vE4bbVd5S31M/im3mYMO1w== /@babel/plugin-syntax-dynamic-import/7.8.3: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2779,9 +2775,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.0: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: @@ -2797,15 +2793,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - /@babel/plugin-syntax-export-default-from/7.10.4_@babel+core@7.12.0: + /@babel/plugin-syntax-export-default-from/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-79V6r6Pgudz0RnuMGp5xidu6Z+bPFugh8/Q9eDHonmLp4wKFAZDwygJwYgCzuDu8lFA/sYyT+mc5y2wkd7bTXA== + integrity: sha512-dP5eGg6tHEkhnRD2/vRG/KJKRSg8gtxu2i+P/8/yFPJn/CfPU5G0/7Gks2i3M6IOVAPQekmsLN9LPsmXFFL4Uw== /@babel/plugin-syntax-export-namespace-from/7.8.3: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2814,35 +2810,35 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.0: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - /@babel/plugin-syntax-flow/7.10.4_@babel+core@7.12.0: + /@babel/plugin-syntax-flow/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-yxQsX1dJixF4qEEdzVbst3SZQ58Nrooz8NV9Z9GL4byTE25BvJgl5lf0RECUf0fh28rZBb/RYTWn/eeKwCMrZQ== - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.0: + integrity: sha512-1lBLLmtxrwpm4VKmtVFselI/P3pX+G63fAtUUt6b2Nzgao77KNDwyuRt90Mj2/9pKobtt68FdvjfqohZjg/FCA== + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 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.0: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 @@ -2866,16 +2862,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== - /@babel/plugin-syntax-jsx/7.10.4_@babel+core@7.12.0: + /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== - /@babel/plugin-syntax-jsx/7.10.4_@babel+core@7.7.7: + integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== + /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -2883,18 +2879,18 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.0: + integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 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.0: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 @@ -2909,9 +2905,9 @@ packages: '@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.0: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 @@ -2935,9 +2931,9 @@ packages: '@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.0: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 @@ -2952,9 +2948,9 @@ packages: '@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.0: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 @@ -2969,9 +2965,9 @@ packages: '@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.0: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 @@ -2986,16 +2982,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - /@babel/plugin-syntax-top-level-await/7.10.4_@babel+core@7.12.0: + /@babel/plugin-syntax-top-level-await/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== - /@babel/plugin-syntax-top-level-await/7.10.4_@babel+core@7.7.7: + integrity: sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A== + /@babel/plugin-syntax-top-level-await/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3003,17 +2999,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== - /@babel/plugin-syntax-typescript/7.10.4_@babel+core@7.12.0: + integrity: sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A== + /@babel/plugin-syntax-typescript/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ== - /@babel/plugin-syntax-typescript/7.10.4_@babel+core@7.7.7: + integrity: sha512-UZNEcCY+4Dp9yYRCAHrHDU+9ZXLYaY9MgBXSRLkB9WjYFRR6quJBumfVrEkUxrePPBwFcpWfNKXqVRQQtm7mMA== + /@babel/plugin-syntax-typescript/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3021,17 +3017,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ== - /@babel/plugin-transform-arrow-functions/7.10.4_@babel+core@7.12.0: + integrity: sha512-UZNEcCY+4Dp9yYRCAHrHDU+9ZXLYaY9MgBXSRLkB9WjYFRR6quJBumfVrEkUxrePPBwFcpWfNKXqVRQQtm7mMA== + /@babel/plugin-transform-arrow-functions/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== - /@babel/plugin-transform-arrow-functions/7.10.4_@babel+core@7.7.7: + integrity: sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A== + /@babel/plugin-transform-arrow-functions/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3039,39 +3035,39 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== - /@babel/plugin-transform-async-to-generator/7.10.4_@babel+core@7.12.0: + integrity: sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A== + /@babel/plugin-transform-async-to-generator/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-module-imports': 7.10.4 + '@babel/core': 7.12.3 + '@babel/helper-module-imports': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-remap-async-to-generator': 7.11.4 + '@babel/helper-remap-async-to-generator': 7.12.1 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== - /@babel/plugin-transform-async-to-generator/7.10.4_@babel+core@7.7.7: + integrity: sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A== + /@babel/plugin-transform-async-to-generator/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 - '@babel/helper-module-imports': 7.10.4 + '@babel/helper-module-imports': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-remap-async-to-generator': 7.11.4 + '@babel/helper-remap-async-to-generator': 7.12.1 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== - /@babel/plugin-transform-block-scoped-functions/7.10.4_@babel+core@7.12.0: + integrity: sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A== + /@babel/plugin-transform-block-scoped-functions/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== - /@babel/plugin-transform-block-scoped-functions/7.10.4_@babel+core@7.7.7: + integrity: sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA== + /@babel/plugin-transform-block-scoped-functions/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3079,17 +3075,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== - /@babel/plugin-transform-block-scoping/7.11.1_@babel+core@7.12.0: + integrity: sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA== + /@babel/plugin-transform-block-scoping/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew== - /@babel/plugin-transform-block-scoping/7.11.1_@babel+core@7.7.7: + integrity: sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w== + /@babel/plugin-transform-block-scoping/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3097,24 +3093,24 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew== - /@babel/plugin-transform-classes/7.10.4_@babel+core@7.12.0: + integrity: sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w== + /@babel/plugin-transform-classes/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-define-map': 7.10.5 '@babel/helper-function-name': 7.10.4 '@babel/helper-optimise-call-expression': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-replace-supers': 7.12.0 + '@babel/helper-replace-supers': 7.12.1 '@babel/helper-split-export-declaration': 7.11.0 globals: 11.12.0 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== - /@babel/plugin-transform-classes/7.10.4_@babel+core@7.7.7: + integrity: sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog== + /@babel/plugin-transform-classes/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-annotate-as-pure': 7.10.4 @@ -3122,24 +3118,24 @@ packages: '@babel/helper-function-name': 7.10.4 '@babel/helper-optimise-call-expression': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-replace-supers': 7.12.0 + '@babel/helper-replace-supers': 7.12.1 '@babel/helper-split-export-declaration': 7.11.0 globals: 11.12.0 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== - /@babel/plugin-transform-computed-properties/7.10.4_@babel+core@7.12.0: + integrity: sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog== + /@babel/plugin-transform-computed-properties/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== - /@babel/plugin-transform-computed-properties/7.10.4_@babel+core@7.7.7: + integrity: sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg== + /@babel/plugin-transform-computed-properties/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3147,17 +3143,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== - /@babel/plugin-transform-destructuring/7.10.4_@babel+core@7.12.0: + integrity: sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg== + /@babel/plugin-transform-destructuring/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== - /@babel/plugin-transform-destructuring/7.10.4_@babel+core@7.7.7: + integrity: sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw== + /@babel/plugin-transform-destructuring/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3165,37 +3161,37 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== - /@babel/plugin-transform-dotall-regex/7.10.4_@babel+core@7.12.0: + integrity: sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw== + /@babel/plugin-transform-dotall-regex/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-create-regexp-features-plugin': 7.12.0_@babel+core@7.12.0 + '@babel/core': 7.12.3 + '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== - /@babel/plugin-transform-dotall-regex/7.10.4_@babel+core@7.7.7: + integrity: sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA== + /@babel/plugin-transform-dotall-regex/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 - '@babel/helper-create-regexp-features-plugin': 7.12.0_@babel+core@7.7.7 + '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.7.7 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== - /@babel/plugin-transform-duplicate-keys/7.10.4_@babel+core@7.12.0: + integrity: sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA== + /@babel/plugin-transform-duplicate-keys/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== - /@babel/plugin-transform-duplicate-keys/7.10.4_@babel+core@7.7.7: + integrity: sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw== + /@babel/plugin-transform-duplicate-keys/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3203,18 +3199,18 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== - /@babel/plugin-transform-exponentiation-operator/7.10.4_@babel+core@7.12.0: + integrity: sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw== + /@babel/plugin-transform-exponentiation-operator/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-builder-binary-assignment-operator-visitor': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== - /@babel/plugin-transform-exponentiation-operator/7.10.4_@babel+core@7.7.7: + integrity: sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug== + /@babel/plugin-transform-exponentiation-operator/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-builder-binary-assignment-operator-visitor': 7.10.4 @@ -3223,27 +3219,27 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== - /@babel/plugin-transform-flow-strip-types/7.10.4_@babel+core@7.12.0: + integrity: sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug== + /@babel/plugin-transform-flow-strip-types/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-flow': 7.10.4_@babel+core@7.12.0 + '@babel/plugin-syntax-flow': 7.12.1_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-XTadyuqNst88UWBTdLjM+wEY7BFnY2sYtPyAidfC7M/QaZnSuIZpMvLxqGT7phAcnGyWh/XQFLKcGf04CnvxSQ== - /@babel/plugin-transform-for-of/7.10.4_@babel+core@7.12.0: + integrity: sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg== + /@babel/plugin-transform-for-of/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== - /@babel/plugin-transform-for-of/7.10.4_@babel+core@7.7.7: + integrity: sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg== + /@babel/plugin-transform-for-of/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3251,18 +3247,18 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== - /@babel/plugin-transform-function-name/7.10.4_@babel+core@7.12.0: + integrity: sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg== + /@babel/plugin-transform-function-name/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-function-name': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== - /@babel/plugin-transform-function-name/7.10.4_@babel+core@7.7.7: + integrity: sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw== + /@babel/plugin-transform-function-name/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-function-name': 7.10.4 @@ -3271,17 +3267,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== - /@babel/plugin-transform-literals/7.10.4_@babel+core@7.12.0: + integrity: sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw== + /@babel/plugin-transform-literals/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== - /@babel/plugin-transform-literals/7.10.4_@babel+core@7.7.7: + integrity: sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ== + /@babel/plugin-transform-literals/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3289,17 +3285,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== - /@babel/plugin-transform-member-expression-literals/7.10.4_@babel+core@7.12.0: + integrity: sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ== + /@babel/plugin-transform-member-expression-literals/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== - /@babel/plugin-transform-member-expression-literals/7.10.4_@babel+core@7.7.7: + integrity: sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg== + /@babel/plugin-transform-member-expression-literals/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3307,69 +3303,69 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== - /@babel/plugin-transform-modules-amd/7.10.5_@babel+core@7.12.0: + integrity: sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg== + /@babel/plugin-transform-modules-amd/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-module-transforms': 7.12.0 + '@babel/core': 7.12.3 + '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 babel-plugin-dynamic-import-node: 2.3.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw== - /@babel/plugin-transform-modules-amd/7.10.5_@babel+core@7.7.7: + integrity: sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ== + /@babel/plugin-transform-modules-amd/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 - '@babel/helper-module-transforms': 7.12.0 + '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 babel-plugin-dynamic-import-node: 2.3.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw== - /@babel/plugin-transform-modules-commonjs/7.10.4: + integrity: sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ== + /@babel/plugin-transform-modules-commonjs/7.12.1: dependencies: - '@babel/helper-module-transforms': 7.12.0 + '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-simple-access': 7.10.4 + '@babel/helper-simple-access': 7.12.1 babel-plugin-dynamic-import-node: 2.3.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== - /@babel/plugin-transform-modules-commonjs/7.10.4_@babel+core@7.12.0: + integrity: sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag== + /@babel/plugin-transform-modules-commonjs/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-module-transforms': 7.12.0 + '@babel/core': 7.12.3 + '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-simple-access': 7.10.4 + '@babel/helper-simple-access': 7.12.1 babel-plugin-dynamic-import-node: 2.3.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== + integrity: sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag== /@babel/plugin-transform-modules-commonjs/7.9.6_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 - '@babel/helper-module-transforms': 7.12.0 + '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-simple-access': 7.10.4 + '@babel/helper-simple-access': 7.12.1 babel-plugin-dynamic-import-node: 2.3.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-7H25fSlLcn+iYimmsNe3uK1at79IE6SKW9q0/QeEHTMC9MdOZ+4bA+T1VFB5fgOqBWoqlifXRzYD0JPdmIrgSQ== - /@babel/plugin-transform-modules-systemjs/7.12.0_@babel+core@7.12.0: + /@babel/plugin-transform-modules-systemjs/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-hoist-variables': 7.10.4 - '@babel/helper-module-transforms': 7.12.0 + '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-validator-identifier': 7.10.4 babel-plugin-dynamic-import-node: 2.3.3 @@ -3377,12 +3373,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-h2fDMnwRwBiNMmTGAWqUo404Z3oLbrPE6hyATecyIbsEsrbM5gjLbfKQLb6hjiouMlGHH+yliYBbc4NPgWKE/g== - /@babel/plugin-transform-modules-systemjs/7.12.0_@babel+core@7.7.7: + integrity: sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q== + /@babel/plugin-transform-modules-systemjs/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-hoist-variables': 7.10.4 - '@babel/helper-module-transforms': 7.12.0 + '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-validator-identifier': 7.10.4 babel-plugin-dynamic-import-node: 2.3.3 @@ -3390,55 +3386,55 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-h2fDMnwRwBiNMmTGAWqUo404Z3oLbrPE6hyATecyIbsEsrbM5gjLbfKQLb6hjiouMlGHH+yliYBbc4NPgWKE/g== - /@babel/plugin-transform-modules-umd/7.10.4_@babel+core@7.12.0: + integrity: sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q== + /@babel/plugin-transform-modules-umd/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-module-transforms': 7.12.0 + '@babel/core': 7.12.3 + '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== - /@babel/plugin-transform-modules-umd/7.10.4_@babel+core@7.7.7: + integrity: sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q== + /@babel/plugin-transform-modules-umd/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 - '@babel/helper-module-transforms': 7.12.0 + '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== - /@babel/plugin-transform-named-capturing-groups-regex/7.10.4_@babel+core@7.12.0: + integrity: sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q== + /@babel/plugin-transform-named-capturing-groups-regex/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-create-regexp-features-plugin': 7.12.0_@babel+core@7.12.0 + '@babel/core': 7.12.3 + '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== - /@babel/plugin-transform-named-capturing-groups-regex/7.10.4_@babel+core@7.7.7: + integrity: sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q== + /@babel/plugin-transform-named-capturing-groups-regex/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 - '@babel/helper-create-regexp-features-plugin': 7.12.0_@babel+core@7.7.7 + '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.7.7 dev: false peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== - /@babel/plugin-transform-new-target/7.10.4_@babel+core@7.12.0: + integrity: sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q== + /@babel/plugin-transform-new-target/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== - /@babel/plugin-transform-new-target/7.10.4_@babel+core@7.7.7: + integrity: sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw== + /@babel/plugin-transform-new-target/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3446,67 +3442,64 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== - /@babel/plugin-transform-object-super/7.10.4_@babel+core@7.12.0: + integrity: sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw== + /@babel/plugin-transform-object-super/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-replace-supers': 7.12.0 + '@babel/helper-replace-supers': 7.12.1 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== - /@babel/plugin-transform-object-super/7.10.4_@babel+core@7.7.7: + integrity: sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw== + /@babel/plugin-transform-object-super/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-replace-supers': 7.12.0 + '@babel/helper-replace-supers': 7.12.1 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== - /@babel/plugin-transform-parameters/7.10.5_@babel+core@7.11.6: + integrity: sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw== + /@babel/plugin-transform-parameters/7.12.1_@babel+core@7.11.6: dependencies: '@babel/core': 7.11.6 - '@babel/helper-get-function-arity': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== - /@babel/plugin-transform-parameters/7.10.5_@babel+core@7.12.0: + integrity: sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg== + /@babel/plugin-transform-parameters/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-get-function-arity': 7.10.4 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== - /@babel/plugin-transform-parameters/7.10.5_@babel+core@7.7.7: + integrity: sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg== + /@babel/plugin-transform-parameters/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 - '@babel/helper-get-function-arity': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== - /@babel/plugin-transform-property-literals/7.10.4_@babel+core@7.12.0: + integrity: sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg== + /@babel/plugin-transform-property-literals/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== - /@babel/plugin-transform-property-literals/7.10.4_@babel+core@7.7.7: + integrity: sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ== + /@babel/plugin-transform-property-literals/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3514,26 +3507,26 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== - /@babel/plugin-transform-react-constant-elements/7.10.4_@babel+core@7.12.0: + integrity: sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ== + /@babel/plugin-transform-react-constant-elements/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-cYmQBW1pXrqBte1raMkAulXmi7rjg3VI6ZLg9QIic8Hq7BtYXaWuZSxsr2siOMI6SWwpxjWfnwhTUrd7JlAV7g== - /@babel/plugin-transform-react-display-name/7.10.4_@babel+core@7.12.0: + integrity: sha512-KOHd0tIRLoER+J+8f9DblZDa1fLGPwaaN1DI1TVHuQFOpjHV22C3CUB3obeC4fexHY9nx+fH0hQNvLFFfA1mxA== + /@babel/plugin-transform-react-display-name/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw== - /@babel/plugin-transform-react-display-name/7.10.4_@babel+core@7.7.7: + integrity: sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w== + /@babel/plugin-transform-react-display-name/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3541,113 +3534,109 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw== - /@babel/plugin-transform-react-jsx-development/7.11.5_@babel+core@7.12.0: + integrity: sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w== + /@babel/plugin-transform-react-jsx-development/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-builder-react-jsx-experimental': 7.12.0 + '@babel/core': 7.12.3 + '@babel/helper-builder-react-jsx-experimental': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.12.0 + '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-cImAmIlKJ84sDmpQzm4/0q/2xrXlDezQoixy3qoz1NJeZL/8PRon6xZtluvr4H4FzwlDGI5tCcFupMnXGtr+qw== - /@babel/plugin-transform-react-jsx-development/7.11.5_@babel+core@7.7.7: + integrity: sha512-IilcGWdN1yNgEGOrB96jbTplRh+V2Pz1EoEwsKsHfX1a/L40cUYuD71Zepa7C+ujv7kJIxnDftWeZbKNEqZjCQ== + /@babel/plugin-transform-react-jsx-development/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 - '@babel/helper-builder-react-jsx-experimental': 7.12.0 + '@babel/helper-builder-react-jsx-experimental': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.7.7 + '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.7.7 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-cImAmIlKJ84sDmpQzm4/0q/2xrXlDezQoixy3qoz1NJeZL/8PRon6xZtluvr4H4FzwlDGI5tCcFupMnXGtr+qw== - /@babel/plugin-transform-react-jsx-self/7.10.4_@babel+core@7.12.0: + integrity: sha512-IilcGWdN1yNgEGOrB96jbTplRh+V2Pz1EoEwsKsHfX1a/L40cUYuD71Zepa7C+ujv7kJIxnDftWeZbKNEqZjCQ== + /@babel/plugin-transform-react-jsx-self/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.12.0 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg== - /@babel/plugin-transform-react-jsx-self/7.10.4_@babel+core@7.7.7: + integrity: sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA== + /@babel/plugin-transform-react-jsx-self/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.7.7 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg== - /@babel/plugin-transform-react-jsx-source/7.10.5_@babel+core@7.12.0: + integrity: sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA== + /@babel/plugin-transform-react-jsx-source/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.12.0 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA== - /@babel/plugin-transform-react-jsx-source/7.10.5_@babel+core@7.7.7: + integrity: sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ== + /@babel/plugin-transform-react-jsx-source/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.7.7 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA== - /@babel/plugin-transform-react-jsx/7.10.4_@babel+core@7.12.0: + integrity: sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ== + /@babel/plugin-transform-react-jsx/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-builder-react-jsx': 7.10.4 - '@babel/helper-builder-react-jsx-experimental': 7.12.0 + '@babel/helper-builder-react-jsx-experimental': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.12.0 + '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A== - /@babel/plugin-transform-react-jsx/7.10.4_@babel+core@7.7.7: + integrity: sha512-RmKejwnT0T0QzQUzcbP5p1VWlpnP8QHtdhEtLG55ZDQnJNalbF3eeDyu3dnGKvGzFIQiBzFhBYTwvv435p9Xpw== + /@babel/plugin-transform-react-jsx/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-builder-react-jsx': 7.10.4 - '@babel/helper-builder-react-jsx-experimental': 7.12.0 + '@babel/helper-builder-react-jsx-experimental': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.7.7 + '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.7.7 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A== - /@babel/plugin-transform-react-pure-annotations/7.10.4_@babel+core@7.12.0: + integrity: sha512-RmKejwnT0T0QzQUzcbP5p1VWlpnP8QHtdhEtLG55ZDQnJNalbF3eeDyu3dnGKvGzFIQiBzFhBYTwvv435p9Xpw== + /@babel/plugin-transform-react-pure-annotations/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-+njZkqcOuS8RaPakrnR9KvxjoG1ASJWpoIv/doyWngId88JoFlPlISenGXjrVacZUIALGUr6eodRs1vmPnF23A== - /@babel/plugin-transform-regenerator/7.10.4_@babel+core@7.12.0: + integrity: sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg== + /@babel/plugin-transform-regenerator/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 regenerator-transform: 0.14.5 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== - /@babel/plugin-transform-regenerator/7.10.4_@babel+core@7.7.7: + integrity: sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng== + /@babel/plugin-transform-regenerator/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 regenerator-transform: 0.14.5 @@ -3655,17 +3644,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== - /@babel/plugin-transform-reserved-words/7.10.4_@babel+core@7.12.0: + integrity: sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng== + /@babel/plugin-transform-reserved-words/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== - /@babel/plugin-transform-reserved-words/7.10.4_@babel+core@7.7.7: + integrity: sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A== + /@babel/plugin-transform-reserved-words/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3673,10 +3662,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== - /@babel/plugin-transform-runtime/7.12.0: + integrity: sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A== + /@babel/plugin-transform-runtime/7.12.1: dependencies: - '@babel/helper-module-imports': 7.10.4 + '@babel/helper-module-imports': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 resolve: 1.17.0 semver: 5.7.1 @@ -3684,11 +3673,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-BC8wiTo+0kEG8M6wuEBeuG7AIazTan02/Bh4dgi+wdDBE+p2iv5AXO8OUjrwD100223S/2WbALSqj7c290XTKg== - /@babel/plugin-transform-runtime/7.12.0_@babel+core@7.12.0: + integrity: sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg== + /@babel/plugin-transform-runtime/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-module-imports': 7.10.4 + '@babel/core': 7.12.3 + '@babel/helper-module-imports': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 resolve: 1.17.0 semver: 5.7.1 @@ -3696,11 +3685,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-BC8wiTo+0kEG8M6wuEBeuG7AIazTan02/Bh4dgi+wdDBE+p2iv5AXO8OUjrwD100223S/2WbALSqj7c290XTKg== + integrity: sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg== /@babel/plugin-transform-runtime/7.9.6_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 - '@babel/helper-module-imports': 7.10.4 + '@babel/helper-module-imports': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 resolve: 1.17.0 semver: 5.7.1 @@ -3709,16 +3698,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-qcmiECD0mYOjOIt8YHNsAP1SxPooC/rDmfmiSK9BNY72EitdSc7l44WTEklaWuFtbOEBjNhWWyph/kOImbNJ4w== - /@babel/plugin-transform-shorthand-properties/7.10.4_@babel+core@7.12.0: + /@babel/plugin-transform-shorthand-properties/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== - /@babel/plugin-transform-shorthand-properties/7.10.4_@babel+core@7.7.7: + integrity: sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw== + /@babel/plugin-transform-shorthand-properties/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3726,38 +3715,38 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== - /@babel/plugin-transform-spread/7.11.0_@babel+core@7.12.0: + integrity: sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw== + /@babel/plugin-transform-spread/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-skip-transparent-expression-wrappers': 7.11.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw== - /@babel/plugin-transform-spread/7.11.0_@babel+core@7.7.7: + integrity: sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng== + /@babel/plugin-transform-spread/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-skip-transparent-expression-wrappers': 7.11.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw== - /@babel/plugin-transform-sticky-regex/7.10.4_@babel+core@7.12.0: + integrity: sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng== + /@babel/plugin-transform-sticky-regex/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-regex': 7.10.5 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== - /@babel/plugin-transform-sticky-regex/7.10.4_@babel+core@7.7.7: + integrity: sha512-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ== + /@babel/plugin-transform-sticky-regex/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3766,46 +3755,43 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== - /@babel/plugin-transform-template-literals/7.10.5: + integrity: sha512-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ== + /@babel/plugin-transform-template-literals/7.12.1: dependencies: - '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw== - /@babel/plugin-transform-template-literals/7.10.5_@babel+core@7.12.0: + integrity: sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw== + /@babel/plugin-transform-template-literals/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-annotate-as-pure': 7.10.4 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw== - /@babel/plugin-transform-template-literals/7.10.5_@babel+core@7.7.7: + integrity: sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw== + /@babel/plugin-transform-template-literals/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 - '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw== - /@babel/plugin-transform-typeof-symbol/7.10.4_@babel+core@7.12.0: + integrity: sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw== + /@babel/plugin-transform-typeof-symbol/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== - /@babel/plugin-transform-typeof-symbol/7.10.4_@babel+core@7.7.7: + integrity: sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q== + /@babel/plugin-transform-typeof-symbol/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 @@ -3813,156 +3799,155 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== - /@babel/plugin-transform-typescript/7.12.0_@babel+core@7.12.0: + integrity: sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q== + /@babel/plugin-transform-typescript/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-create-class-features-plugin': 7.12.0_@babel+core@7.12.0 + '@babel/core': 7.12.3 + '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-typescript': 7.10.4_@babel+core@7.12.0 + '@babel/plugin-syntax-typescript': 7.12.1_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-gahRNAWgE76hjI3TZPVEfV7vGjOCJi5ACd4eSoAItk/ErC114i2UHnk+1ScS2dOour0p6J6kB99hNFX2vzL2Ww== - /@babel/plugin-transform-typescript/7.12.0_@babel+core@7.7.7: + integrity: sha512-VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw== + /@babel/plugin-transform-typescript/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 - '@babel/helper-create-class-features-plugin': 7.12.0_@babel+core@7.7.7 + '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.7.7 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-typescript': 7.10.4_@babel+core@7.7.7 + '@babel/plugin-syntax-typescript': 7.12.1_@babel+core@7.7.7 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-gahRNAWgE76hjI3TZPVEfV7vGjOCJi5ACd4eSoAItk/ErC114i2UHnk+1ScS2dOour0p6J6kB99hNFX2vzL2Ww== - /@babel/plugin-transform-unicode-escapes/7.10.4_@babel+core@7.12.0: + integrity: sha512-VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw== + /@babel/plugin-transform-unicode-escapes/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg== - /@babel/plugin-transform-unicode-regex/7.10.4_@babel+core@7.12.0: + integrity: sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q== + /@babel/plugin-transform-unicode-regex/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 - '@babel/helper-create-regexp-features-plugin': 7.12.0_@babel+core@7.12.0 + '@babel/core': 7.12.3 + '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== - /@babel/plugin-transform-unicode-regex/7.10.4_@babel+core@7.7.7: + integrity: sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg== + /@babel/plugin-transform-unicode-regex/7.12.1_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 - '@babel/helper-create-regexp-features-plugin': 7.12.0_@babel+core@7.7.7 + '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.7.7 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== - /@babel/polyfill/7.11.5: + integrity: sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg== + /@babel/polyfill/7.12.1: dependencies: core-js: 2.6.11 regenerator-runtime: 0.13.7 dev: false resolution: - integrity: sha512-FunXnE0Sgpd61pKSj2OSOs1D44rKTD3pGOfGilZ6LGrrIH0QEtJlTjqOqdF8Bs98JmjfGhni2BBkTfv9KcKJ9g== - /@babel/preset-env/7.12.0_@babel+core@7.12.0: + integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g== + /@babel/preset-env/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/compat-data': 7.12.0 - '@babel/core': 7.12.0 - '@babel/helper-compilation-targets': 7.12.0_@babel+core@7.12.0 - '@babel/helper-module-imports': 7.10.4 + '@babel/compat-data': 7.12.1 + '@babel/core': 7.12.3 + '@babel/helper-compilation-targets': 7.12.1_@babel+core@7.12.3 + '@babel/helper-module-imports': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-validator-option': 7.12.0 - '@babel/plugin-proposal-async-generator-functions': 7.10.5_@babel+core@7.12.0 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-proposal-dynamic-import': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-proposal-export-namespace-from': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-proposal-json-strings': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-proposal-logical-assignment-operators': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-proposal-numeric-separator': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-proposal-object-rest-spread': 7.11.0_@babel+core@7.12.0 - '@babel/plugin-proposal-optional-catch-binding': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-proposal-optional-chaining': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-proposal-private-methods': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.0 - '@babel/plugin-syntax-class-properties': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-syntax-top-level-await': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-arrow-functions': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-async-to-generator': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-block-scoped-functions': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-block-scoping': 7.11.1_@babel+core@7.12.0 - '@babel/plugin-transform-classes': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-computed-properties': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-destructuring': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-duplicate-keys': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-exponentiation-operator': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-for-of': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-function-name': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-literals': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-member-expression-literals': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-modules-amd': 7.10.5_@babel+core@7.12.0 - '@babel/plugin-transform-modules-commonjs': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-modules-systemjs': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-transform-modules-umd': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-named-capturing-groups-regex': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-new-target': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-object-super': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.12.0 - '@babel/plugin-transform-property-literals': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-regenerator': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-reserved-words': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-shorthand-properties': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-spread': 7.11.0_@babel+core@7.12.0 - '@babel/plugin-transform-sticky-regex': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-template-literals': 7.10.5_@babel+core@7.12.0 - '@babel/plugin-transform-typeof-symbol': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-unicode-escapes': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-unicode-regex': 7.10.4_@babel+core@7.12.0 - '@babel/preset-modules': 0.1.4_@babel+core@7.12.0 - '@babel/types': 7.12.0 - browserslist: 4.14.5 + '@babel/helper-validator-option': 7.12.1 + '@babel/plugin-proposal-async-generator-functions': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-dynamic-import': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-export-namespace-from': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-json-strings': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-logical-assignment-operators': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-numeric-separator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-optional-catch-binding': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-optional-chaining': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-private-methods': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-unicode-property-regex': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3 + '@babel/plugin-syntax-class-properties': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-top-level-await': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-arrow-functions': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-async-to-generator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-block-scoped-functions': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-block-scoping': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-classes': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-computed-properties': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-destructuring': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-duplicate-keys': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-exponentiation-operator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-for-of': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-function-name': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-literals': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-member-expression-literals': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-modules-amd': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-modules-systemjs': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-modules-umd': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-named-capturing-groups-regex': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-new-target': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-object-super': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-property-literals': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-regenerator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-reserved-words': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-shorthand-properties': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-spread': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-sticky-regex': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-template-literals': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-typeof-symbol': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-unicode-escapes': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-unicode-regex': 7.12.1_@babel+core@7.12.3 + '@babel/preset-modules': 0.1.4_@babel+core@7.12.3 + '@babel/types': 7.12.1 core-js-compat: 3.6.5 semver: 5.7.1 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-jSIHvHSuF+hBUIrvA2/61yIzhH+ceLOXGLTH1nwPvQlso/lNxXsoE/nvrCzY5M77KRzhKegB1CvdhWPZmYDZ5A== + integrity: sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg== /@babel/preset-env/7.9.6_@babel+core@7.7.7: dependencies: - '@babel/compat-data': 7.12.0 + '@babel/compat-data': 7.12.1 '@babel/core': 7.7.7 - '@babel/helper-compilation-targets': 7.12.0_@babel+core@7.7.7 - '@babel/helper-module-imports': 7.10.4 + '@babel/helper-compilation-targets': 7.12.1_@babel+core@7.7.7 + '@babel/helper-module-imports': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-async-generator-functions': 7.10.5_@babel+core@7.7.7 - '@babel/plugin-proposal-dynamic-import': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-proposal-json-strings': 7.10.4_@babel+core@7.7.7 + '@babel/plugin-proposal-async-generator-functions': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-proposal-dynamic-import': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-proposal-json-strings': 7.12.1_@babel+core@7.7.7 '@babel/plugin-proposal-nullish-coalescing-operator': 7.8.3_@babel+core@7.7.7 '@babel/plugin-proposal-numeric-separator': 7.8.3_@babel+core@7.7.7 '@babel/plugin-proposal-object-rest-spread': 7.9.6_@babel+core@7.7.7 - '@babel/plugin-proposal-optional-catch-binding': 7.10.4_@babel+core@7.7.7 + '@babel/plugin-proposal-optional-catch-binding': 7.12.1_@babel+core@7.7.7 '@babel/plugin-proposal-optional-chaining': 7.9.0_@babel+core@7.7.7 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.7.7 + '@babel/plugin-proposal-unicode-property-regex': 7.12.1_@babel+core@7.7.7 '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.7.7 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.7.7 '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.7.7 @@ -3971,38 +3956,38 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.7.7 '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.7.7 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.7.7 - '@babel/plugin-syntax-top-level-await': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-arrow-functions': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-async-to-generator': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-block-scoped-functions': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-block-scoping': 7.11.1_@babel+core@7.7.7 - '@babel/plugin-transform-classes': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-computed-properties': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-destructuring': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-duplicate-keys': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-exponentiation-operator': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-for-of': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-function-name': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-literals': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-member-expression-literals': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-modules-amd': 7.10.5_@babel+core@7.7.7 + '@babel/plugin-syntax-top-level-await': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-arrow-functions': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-async-to-generator': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-block-scoped-functions': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-block-scoping': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-classes': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-computed-properties': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-destructuring': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-duplicate-keys': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-exponentiation-operator': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-for-of': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-function-name': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-literals': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-member-expression-literals': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-modules-amd': 7.12.1_@babel+core@7.7.7 '@babel/plugin-transform-modules-commonjs': 7.9.6_@babel+core@7.7.7 - '@babel/plugin-transform-modules-systemjs': 7.12.0_@babel+core@7.7.7 - '@babel/plugin-transform-modules-umd': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-named-capturing-groups-regex': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-new-target': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-object-super': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.7.7 - '@babel/plugin-transform-property-literals': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-regenerator': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-reserved-words': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-shorthand-properties': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-spread': 7.11.0_@babel+core@7.7.7 - '@babel/plugin-transform-sticky-regex': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-template-literals': 7.10.5_@babel+core@7.7.7 - '@babel/plugin-transform-typeof-symbol': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-unicode-regex': 7.10.4_@babel+core@7.7.7 + '@babel/plugin-transform-modules-systemjs': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-modules-umd': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-named-capturing-groups-regex': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-new-target': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-object-super': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-property-literals': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-regenerator': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-reserved-words': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-shorthand-properties': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-spread': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-sticky-regex': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-template-literals': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-typeof-symbol': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-unicode-regex': 7.12.1_@babel+core@7.7.7 '@babel/preset-modules': 0.1.3_@babel+core@7.7.7 '@babel/types': 7.9.6 browserslist: 4.12.0 @@ -4015,22 +4000,22 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-0gQJ9RTzO0heXOhzftog+a/WyOuqMrAIugVYxMYf83gh1CQaQDjMtsOpqOwXyDL/5JcWsrCm8l4ju8QC97O7EQ== - /@babel/preset-flow/7.10.4_@babel+core@7.12.0: + /@babel/preset-flow/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-transform-flow-strip-types': 7.10.4_@babel+core@7.12.0 + '@babel/plugin-transform-flow-strip-types': 7.12.1_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-XI6l1CptQCOBv+ZKYwynyswhtOKwpZZp5n0LG1QKCo8erRhqjoQV6nvx61Eg30JHpysWQSBwA2AWRU3pBbSY5g== + integrity: sha512-UAoyMdioAhM6H99qPoKvpHMzxmNVXno8GYU/7vZmGaHk6/KqfDYL1W0NxszVbJ2EP271b7e6Ox+Vk2A9QsB3Sw== /@babel/preset-modules/0.1.3_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.7.7 + '@babel/plugin-proposal-unicode-property-regex': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.7.7 '@babel/types': 7.9.6 esutils: 2.0.3 dev: false @@ -4038,71 +4023,71 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== - /@babel/preset-modules/0.1.4_@babel+core@7.12.0: + /@babel/preset-modules/0.1.4_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.12.0 - '@babel/types': 7.12.0 + '@babel/plugin-proposal-unicode-property-regex': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.12.3 + '@babel/types': 7.12.1 esutils: 2.0.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== - /@babel/preset-react/7.10.4_@babel+core@7.12.0: + /@babel/preset-react/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-transform-react-display-name': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-react-jsx': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-react-jsx-development': 7.11.5_@babel+core@7.12.0 - '@babel/plugin-transform-react-jsx-self': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-react-jsx-source': 7.10.5_@babel+core@7.12.0 - '@babel/plugin-transform-react-pure-annotations': 7.10.4_@babel+core@7.12.0 + '@babel/plugin-transform-react-display-name': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-react-jsx': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-react-jsx-development': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-react-jsx-self': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-react-jsx-source': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-react-pure-annotations': 7.12.1_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-BrHp4TgOIy4M19JAfO1LhycVXOPWdDbTRep7eVyatf174Hff+6Uk53sDyajqZPu8W1qXRBiYOfIamek6jA7YVw== + integrity: sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g== /@babel/preset-react/7.9.4_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-transform-react-display-name': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-react-jsx': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-react-jsx-development': 7.11.5_@babel+core@7.7.7 - '@babel/plugin-transform-react-jsx-self': 7.10.4_@babel+core@7.7.7 - '@babel/plugin-transform-react-jsx-source': 7.10.5_@babel+core@7.7.7 + '@babel/plugin-transform-react-display-name': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-react-jsx': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-react-jsx-development': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-react-jsx-self': 7.12.1_@babel+core@7.7.7 + '@babel/plugin-transform-react-jsx-source': 7.12.1_@babel+core@7.7.7 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-AxylVB3FXeOTQXNXyiuAQJSvss62FEotbX2Pzx3K/7c+MKJMdSg6Ose6QYllkdCFA8EInCJVw7M/o5QbLuA4ZQ== - /@babel/preset-typescript/7.12.0_@babel+core@7.12.0: + /@babel/preset-typescript/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-transform-typescript': 7.12.0_@babel+core@7.12.0 + '@babel/plugin-transform-typescript': 7.12.1_@babel+core@7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-2XVy4sy/zkP4gqmXW0TzSh/QwOniN2Cy3srhsD0TRBlMTOmjaYnWCWA6aWopwpcwfYkEKD6jKLLjYMq15zDNWg== + integrity: sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw== /@babel/preset-typescript/7.9.0_@babel+core@7.7.7: dependencies: '@babel/core': 7.7.7 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-transform-typescript': 7.12.0_@babel+core@7.7.7 + '@babel/plugin-transform-typescript': 7.12.1_@babel+core@7.7.7 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-S4cueFnGrIbvYJgwsVFKdvOmpiL0XGw9MFW9D0vgRys5g36PBhZRL8NX8Gr2akz8XRtzq6HuDXPD/1nniagNUg== - /@babel/register/7.12.0_@babel+core@7.12.0: + /@babel/register/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 find-cache-dir: 2.1.0 lodash: 4.17.20 make-dir: 2.1.0 @@ -4112,56 +4097,56 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-2F2v0qYSAwrGyK9mZ8lIoUluHRzLTgkJ2oRXlLV9GVe/ze/sTFBiOocLRMSJYDB2lLiABlVC+pZHlZ8qihO1Xg== - /@babel/runtime-corejs3/7.12.0: + integrity: sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q== + /@babel/runtime-corejs3/7.12.1: dependencies: core-js-pure: 3.6.5 regenerator-runtime: 0.13.7 resolution: - integrity: sha512-CltlJftStV4CBG4/HWVVRnBWFvLkYd22BkYO4gFgX+89JOlYiKQ5+Ji9Ovqb1o3T5DkkBn3JrVq1V/xweAaeGA== - /@babel/runtime/7.12.0: + integrity: sha512-umhPIcMrlBZ2aTWlWjUseW9LjQKxi1dpFlQS8DzsxB//5K+u6GLTC/JliPKHsd5kJVPIU6X/Hy0YvWOYPcMxBw== + /@babel/runtime/7.12.1: dependencies: regenerator-runtime: 0.13.7 resolution: - integrity: sha512-lS4QLXQ2Vbw2ubfQjeQcn+BZgZ5+ROHW9f+DWjEp5Y+NHYmkRGKqHSJ1tuhbUauKu2nhZNTBIvsIQ8dXfY5Gjw== + integrity: sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA== /@babel/runtime/7.9.6: dependencies: regenerator-runtime: 0.13.7 dev: false resolution: integrity: sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ== - /@babel/standalone/7.12.0: + /@babel/standalone/7.12.3: dev: false resolution: - integrity: sha512-3KrEiQEZBFOOj+UDJj3dQubRsTbzmOoaoIO2ALtCMJI6Nf2yNZsGFny2jOp0vAMYAo/Bhp6JcqEeo6P/RcIEyg== + integrity: sha512-+zZdF3o/CEeSQ+WDZWeqdVVHGc1oQ+EZuYOQnCGyngNXroH+uMhHa00ki6egI/EddI6vHMH3TEdQhXAx98usXg== /@babel/template/7.10.4: dependencies: '@babel/code-frame': 7.10.4 - '@babel/parser': 7.12.0 - '@babel/types': 7.12.0 + '@babel/parser': 7.12.3 + '@babel/types': 7.12.1 resolution: integrity: sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== - /@babel/traverse/7.12.0: + /@babel/traverse/7.12.1: dependencies: '@babel/code-frame': 7.10.4 - '@babel/generator': 7.12.0 + '@babel/generator': 7.12.1 '@babel/helper-function-name': 7.10.4 '@babel/helper-split-export-declaration': 7.11.0 - '@babel/parser': 7.12.0 - '@babel/types': 7.12.0 + '@babel/parser': 7.12.3 + '@babel/types': 7.12.1 debug: 4.2.0 globals: 11.12.0 lodash: 4.17.20 resolution: - integrity: sha512-ZU9e79xpOukCNPkQ1UzR4gJKCruGckr6edd8v8lmKpSk8iakgUIvb+5ZtaKKV9f7O+x5r+xbMDDIbzVpUoiIuw== - /@babel/traverse/7.12.0_supports-color@5.5.0: + integrity: sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw== + /@babel/traverse/7.12.1_supports-color@5.5.0: dependencies: '@babel/code-frame': 7.10.4 - '@babel/generator': 7.12.0 + '@babel/generator': 7.12.1 '@babel/helper-function-name': 7.10.4 '@babel/helper-split-export-declaration': 7.11.0 - '@babel/parser': 7.12.0 - '@babel/types': 7.12.0 + '@babel/parser': 7.12.3 + '@babel/types': 7.12.1 debug: 4.2.0_supports-color@5.5.0 globals: 11.12.0 lodash: 4.17.20 @@ -4169,14 +4154,14 @@ packages: peerDependencies: supports-color: '*' resolution: - integrity: sha512-ZU9e79xpOukCNPkQ1UzR4gJKCruGckr6edd8v8lmKpSk8iakgUIvb+5ZtaKKV9f7O+x5r+xbMDDIbzVpUoiIuw== - /@babel/types/7.12.0: + integrity: sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw== + /@babel/types/7.12.1: dependencies: '@babel/helper-validator-identifier': 7.10.4 lodash: 4.17.20 to-fast-properties: 2.0.0 resolution: - integrity: sha512-ggIyFmT2zMaYRheOfPDQ4gz7QqV3B+t2rjqjbttDJxMcb7/LukvWCmlIl1sWcOxrvwpTDd+z0OytzqsbGeb3/g== + integrity: sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA== /@babel/types/7.8.3: dependencies: esutils: 2.0.3 @@ -4198,7 +4183,7 @@ packages: integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== /@changesets/apply-release-plan/4.0.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@changesets/config': 1.4.0 '@changesets/get-version-range-type': 0.3.2 '@changesets/git': 1.0.6 @@ -4215,7 +4200,7 @@ packages: integrity: sha512-MrcUd8wIlQ4S/PznzqJVsmnEpUGfPEkCGF54iqt8G05GEqi/zuxpoTfebcScpj5zeiDyxFIcA9RbeZ3pvJJxoA== /@changesets/assemble-release-plan/4.0.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.1.3 '@changesets/types': 3.2.0 @@ -4234,7 +4219,7 @@ packages: integrity: sha512-bWK8IADPYsiSiyORNpVLbmdo7J7A4LktmzUowtIivslP03UW5f/YBDzGub7N0+BVdVmZrqvyWzAIKmpGVkEICg== /@changesets/cli/2.11.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@changesets/apply-release-plan': 4.0.0 '@changesets/assemble-release-plan': 4.0.0 '@changesets/config': 1.4.0 @@ -4305,7 +4290,7 @@ packages: integrity: sha512-WoVdRBQXLvJVg3jsMc0+aB8WAFzSGOG45HSo2ep46ixq5lBjM2D51MbgtSYHRGFGvYuAUu6kAfnVmoZYCZFsKQ== /@changesets/get-release-plan/2.0.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@changesets/assemble-release-plan': 4.0.0 '@changesets/config': 1.4.0 '@changesets/pre': 1.0.5 @@ -4321,7 +4306,7 @@ packages: integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg== /@changesets/git/1.0.6: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@changesets/errors': 0.1.4 '@changesets/types': 3.2.0 '@manypkg/get-packages': 1.1.1 @@ -4345,7 +4330,7 @@ packages: integrity: sha512-8yqKulslq/7V2VRBsJqPgjnZMoehYqhJm5lEOXJPZ2rcuSdyj8+p/2vq2vRDBJT2m0rP+C9G8DujsGYQIFZezw== /@changesets/pre/1.0.5: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@changesets/errors': 0.1.4 '@changesets/types': 3.2.0 '@manypkg/get-packages': 1.1.1 @@ -4355,7 +4340,7 @@ packages: integrity: sha512-p43aAQY3aijhDnBLCriPao5YArlRjD4mSHRJq9PsBhljVLWqQQXcn6seSd77d+bD1tATLhB8tQ2eYoxMtMydXQ== /@changesets/read/0.4.6: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@changesets/git': 1.0.6 '@changesets/logger': 0.0.5 '@changesets/parse': 0.3.7 @@ -4376,7 +4361,7 @@ packages: integrity: sha512-rAmPtOyXpisEEE25CchKNUAf2ApyAeuZ/h78YDoqKZaCk5tUD0lgYZGPIRV9WTPoqNjJULIym37ogc6pkax5jg== /@changesets/write/0.1.3: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@changesets/types': 3.2.0 fs-extra: 7.0.1 human-id: 1.0.2 @@ -4419,23 +4404,23 @@ packages: integrity: sha512-XjJOnCBXn+UZmtuDmgzlVIHnnvh6yHVwG4aFq8AXN6xJEIX3f180FvGaowFWAxgdtHplJxFGux0Xx4piHqBzIw== /@docusaurus/core/2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0: dependencies: - '@babel/core': 7.12.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-proposal-optional-chaining': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-transform-runtime': 7.12.0_@babel+core@7.12.0 - '@babel/preset-env': 7.12.0_@babel+core@7.12.0 - '@babel/preset-react': 7.10.4_@babel+core@7.12.0 - '@babel/preset-typescript': 7.12.0_@babel+core@7.12.0 - '@babel/runtime': 7.12.0 - '@babel/runtime-corejs3': 7.12.0 + '@babel/core': 7.12.3 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-optional-chaining': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-transform-runtime': 7.12.1_@babel+core@7.12.3 + '@babel/preset-env': 7.12.1_@babel+core@7.12.3 + '@babel/preset-react': 7.12.1_@babel+core@7.12.3 + '@babel/preset-typescript': 7.12.1_@babel+core@7.12.3 + '@babel/runtime': 7.12.1 + '@babel/runtime-corejs3': 7.12.1 '@docusaurus/types': 2.0.0-alpha.65 '@docusaurus/utils': 2.0.0-alpha.65 '@docusaurus/utils-validation': 2.0.0-alpha.65 '@endiliey/static-site-generator-webpack-plugin': 4.0.0 '@hapi/joi': 17.1.1 '@svgr/webpack': 5.4.0 - babel-loader: 8.1.0_7cbc7020cd054d99b1a6e05145adab1f + babel-loader: 8.1.0_427212bc1158d185e577033f19ca0757 babel-plugin-dynamic-import-node: 2.3.3 boxen: 4.2.0 cache-loader: 4.1.0_webpack@4.44.2 @@ -4519,8 +4504,8 @@ packages: integrity: sha512-2ox+XMIyyPh5aphVSJXFNZdjR/irbl2hQ47e2jinfitMcSl+oNgJ5CawXQd1awpo5NDk9r2Y19dZEjdPwB6J7w== /@docusaurus/mdx-loader/2.0.0-alpha.65_b444b9da43a015f55ac856c53f087764: dependencies: - '@babel/parser': 7.12.0 - '@babel/traverse': 7.12.0 + '@babel/parser': 7.12.3 + '@babel/traverse': 7.12.1 '@docusaurus/core': 2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0 '@docusaurus/utils': 2.0.0-alpha.65 '@mdx-js/mdx': 1.6.18 @@ -4730,7 +4715,7 @@ packages: react-dom: '*' resolution: integrity: sha512-h9adEzq3V8vHQxCM5/cM/rskN1G4blH/NHTo1Ng8HqMK6VO8CVX0WgBL9pxpmOo3dVFK9dAB3Pf+zNkJY18Rfw== - /@docusaurus/preset-classic/2.0.0-alpha.65_18c2448243268f81b40c18c15faa9c98: + /@docusaurus/preset-classic/2.0.0-alpha.65_15199c67d2c4d2f537ff94cbd86aca8f: dependencies: '@docusaurus/core': 2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0 '@docusaurus/plugin-content-blog': 2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0 @@ -4740,7 +4725,7 @@ packages: '@docusaurus/plugin-google-analytics': 2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0 '@docusaurus/plugin-google-gtag': 2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0 '@docusaurus/plugin-sitemap': 2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0 - '@docusaurus/theme-classic': 2.0.0-alpha.65_18c2448243268f81b40c18c15faa9c98 + '@docusaurus/theme-classic': 2.0.0-alpha.65_15199c67d2c4d2f537ff94cbd86aca8f '@docusaurus/theme-search-algolia': 2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 @@ -4753,7 +4738,7 @@ packages: react-dom: ^16.8.4 resolution: integrity: sha512-0wJEB1BvS0Wx0XuWwm+XNfVdVUcZ4Va2nXmK45ZvSYx+DbZ73wL/K4ahIp7R6A5JYv7kPRz6tlm0vusRMmKUVA== - /@docusaurus/theme-classic/2.0.0-alpha.65_18c2448243268f81b40c18c15faa9c98: + /@docusaurus/theme-classic/2.0.0-alpha.65_15199c67d2c4d2f537ff94cbd86aca8f: dependencies: '@docusaurus/core': 2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0 '@docusaurus/plugin-content-blog': 2.0.0-alpha.65_react-dom@16.14.0+react@16.14.0 @@ -4777,7 +4762,7 @@ packages: react-dom: 16.14.0_react@16.14.0 react-router-dom: 5.2.0_react@16.14.0 react-toggle: 4.1.1_0106054ed56650b7cf08997e12b36ef5 - use-onclickoutside: 0.3.1_635794461cba32ce970f62d2fbacf5f9 + use-onclickoutside: 0.3.1_6e8834a71204835dd543aa9883583486 dev: false engines: node: '>=10.15.1' @@ -4871,7 +4856,7 @@ packages: integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ== /@emotion/core/10.0.35_react@16.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@emotion/cache': 10.0.29 '@emotion/css': 10.0.27 '@emotion/serialize': 0.11.16 @@ -4914,7 +4899,7 @@ packages: integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA== /@emotion/styled-base/10.0.31_949b6c0dd132c1257a107ce4fd67d629: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@emotion/core': 10.0.35_react@16.14.0 '@emotion/is-prop-valid': 0.8.8 '@emotion/serialize': 0.11.16 @@ -5231,7 +5216,7 @@ packages: /@jest/console/26.5.2: dependencies: '@jest/types': 26.5.2 - '@types/node': 14.11.8 + '@types/node': 14.11.10 chalk: 4.1.0 jest-message-util: 26.5.2 jest-util: 26.5.2 @@ -5247,7 +5232,7 @@ packages: '@jest/test-result': 26.5.2 '@jest/transform': 26.5.2 '@jest/types': 26.5.2 - '@types/node': 14.11.8 + '@types/node': 14.11.10 ansi-escapes: 4.3.1 chalk: 4.1.0 exit: 0.1.2 @@ -5278,7 +5263,7 @@ packages: dependencies: '@jest/fake-timers': 26.5.2 '@jest/types': 26.5.2 - '@types/node': 14.11.8 + '@types/node': 14.11.10 jest-mock: 26.5.2 engines: node: '>= 10.14.2' @@ -5288,7 +5273,7 @@ packages: dependencies: '@jest/types': 26.5.2 '@sinonjs/fake-timers': 6.0.1 - '@types/node': 14.11.8 + '@types/node': 14.11.10 jest-message-util: 26.5.2 jest-mock: 26.5.2 jest-util: 26.5.2 @@ -5389,7 +5374,7 @@ packages: integrity: sha512-Wqzb7aQ13L3T47xHdpUqYMOpiqz6Dx2QDDghp5AV/eUDXR7JieY+E1s233TQlNyl+PqtqgjVokmyjzX/HA51BA== /@jest/transform/26.5.2: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@jest/types': 26.5.2 babel-plugin-istanbul: 6.0.0 chalk: 4.1.0 @@ -5422,7 +5407,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.3 '@types/istanbul-reports': 1.1.2 - '@types/yargs': 15.0.8 + '@types/yargs': 15.0.9 chalk: 3.0.0 dev: false engines: @@ -5433,8 +5418,8 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.3 '@types/istanbul-reports': 3.0.0 - '@types/node': 14.11.8 - '@types/yargs': 15.0.8 + '@types/node': 14.11.10 + '@types/yargs': 15.0.9 chalk: 4.1.0 engines: node: '>= 10.14.2' @@ -5442,7 +5427,7 @@ packages: integrity: sha512-QDs5d0gYiyetI8q+2xWdkixVQMklReZr4ltw7GFDtb4fuJIBCE6mzj2LnitGqCuAlLap6wPyb8fpoHgwZz5fdg== /@jimp/bmp/0.16.1_@jimp+custom@0.16.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@jimp/custom': 0.16.1 '@jimp/utils': 0.16.1 bmp-js: 0.1.0 @@ -5453,7 +5438,7 @@ packages: integrity: sha512-iwyNYQeBawrdg/f24x3pQ5rEx+/GwjZcCXd3Kgc+ZUd+Ivia7sIqBsOnDaMZdKCBPlfW364ekexnlOqyVa0NWg== /@jimp/core/0.16.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@jimp/utils': 0.16.1 any-base: 1.1.0 buffer: 5.6.0 @@ -5469,14 +5454,14 @@ packages: integrity: sha512-la7kQia31V6kQ4q1kI/uLimu8FXx7imWVajDGtwUG8fzePLWDFJyZl0fdIXVCL1JW2nBcRHidUot6jvlRDi2+g== /@jimp/custom/0.16.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@jimp/core': 0.16.1 dev: false resolution: integrity: sha512-DNUAHNSiUI/j9hmbatD6WN/EBIyeq4AO0frl5ETtt51VN1SvE4t4v83ZA/V6ikxEf3hxLju4tQ5Pc3zmZkN/3A== /@jimp/gif/0.16.1_@jimp+custom@0.16.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@jimp/custom': 0.16.1 '@jimp/utils': 0.16.1 gifwrap: 0.9.2 @@ -5488,7 +5473,7 @@ packages: integrity: sha512-r/1+GzIW1D5zrP4tNrfW+3y4vqD935WBXSc8X/wm23QTY9aJO9Lw6PEdzpYCEY+SOklIFKaJYUAq/Nvgm/9ryw== /@jimp/jpeg/0.16.1_@jimp+custom@0.16.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@jimp/custom': 0.16.1 '@jimp/utils': 0.16.1 jpeg-js: 0.4.2 @@ -5499,7 +5484,7 @@ packages: integrity: sha512-8352zrdlCCLFdZ/J+JjBslDvml+fS3Z8gttdml0We759PnnZGqrnPRhkOEOJbNUlE+dD4ckLeIe6NPxlS/7U+w== /@jimp/plugin-resize/0.16.1_@jimp+custom@0.16.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@jimp/custom': 0.16.1 '@jimp/utils': 0.16.1 dev: false @@ -5509,7 +5494,7 @@ packages: integrity: sha512-u4JBLdRI7dargC04p2Ha24kofQBk3vhaf0q8FwSYgnCRwxfvh2RxvhJZk9H7Q91JZp6wgjz/SjvEAYjGCEgAwQ== /@jimp/png/0.16.1_@jimp+custom@0.16.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@jimp/custom': 0.16.1 '@jimp/utils': 0.16.1 pngjs: 3.4.0 @@ -5520,7 +5505,7 @@ packages: integrity: sha512-iyWoCxEBTW0OUWWn6SveD4LePW89kO7ZOy5sCfYeDM/oTPLpR8iMIGvZpZUz1b8kvzFr27vPst4E5rJhGjwsdw== /@jimp/tiff/0.16.1_@jimp+custom@0.16.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@jimp/custom': 0.16.1 utif: 2.0.1 dev: false @@ -5530,7 +5515,7 @@ packages: integrity: sha512-3K3+xpJS79RmSkAvFMgqY5dhSB+/sxhwTFA9f4AVHUK0oKW+u6r52Z1L0tMXHnpbAdR9EJ+xaAl2D4x19XShkQ== /@jimp/types/0.16.1_@jimp+custom@0.16.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@jimp/bmp': 0.16.1_@jimp+custom@0.16.1 '@jimp/custom': 0.16.1 '@jimp/gif': 0.16.1_@jimp+custom@0.16.1 @@ -5545,15 +5530,15 @@ packages: integrity: sha512-g1w/+NfWqiVW4CaXSJyD28JQqZtm2eyKMWPhBBDCJN9nLCN12/Az0WFF3JUAktzdsEC2KRN2AqB1a2oMZBNgSQ== /@jimp/utils/0.16.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 regenerator-runtime: 0.13.7 dev: false resolution: integrity: sha512-8fULQjB0x4LzUSiSYG6ZtQl355sZjxbv8r9PPAuYHzS9sGiSHJQavNqK/nKnpDsVkU88/vRGcE7t3nMU0dEnVw== /@lingui/babel-plugin-extract-messages/3.0.0-18: dependencies: - '@babel/generator': 7.12.0 - '@babel/runtime': 7.12.0 + '@babel/generator': 7.12.1 + '@babel/runtime': 7.12.1 '@lingui/conf': 3.0.0-18 mkdirp: 1.0.4 dev: false @@ -5561,14 +5546,14 @@ packages: node: '>=10.0.0' resolution: integrity: sha512-po5r8aWatA+Zl18d64WNCGgjRRvQy/0V0D+SUXgYAQzdPKtLOJgi0AmNiQdvWjv+/2w2d3WVNkUhauKWY960KQ== - /@lingui/cli/3.0.0-18_b73ce43502ab241dc25945f94e0e7960: - dependencies: - '@babel/core': 7.12.0 - '@babel/generator': 7.12.0 - '@babel/parser': 7.12.0 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.12.0 - '@babel/runtime': 7.12.0 - '@babel/types': 7.12.0 + /@lingui/cli/3.0.0-18_e6d88d9044da464b21616f5951e7aec6: + dependencies: + '@babel/core': 7.12.3 + '@babel/generator': 7.12.1 + '@babel/parser': 7.12.3 + '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.3 + '@babel/runtime': 7.12.1 + '@babel/types': 7.12.1 '@lingui/babel-plugin-extract-messages': 3.0.0-18 '@lingui/conf': 3.0.0-18 babel-plugin-macros: 2.8.0 @@ -5603,7 +5588,7 @@ packages: integrity: sha512-Xn4bJGJfE7nslmNb809Ga3cvjjYsI2krDDegcL2DqUSHKbuld9+Ed24QJYzlqw48KuxnQNzUd3UiwJTx9Y9Qdg== /@lingui/conf/3.0.0-18: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 chalk: 4.1.0 cosmiconfig: 7.0.0 jest-validate: 26.5.3 @@ -5613,7 +5598,7 @@ packages: integrity: sha512-LztftWjWvbpxm0i7Ct54W2Td54crQM/WDsUaQPq8bY5cmOzLGIX+OzU+hrSPl0K2/rKWsYoeYdiVFKQrf4276Q== /@lingui/core/3.0.0-18: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 make-plural: 6.2.2 messageformat-parser: 4.1.3 dev: false @@ -5623,7 +5608,7 @@ packages: integrity: sha512-9aGnWbuHAX4//SNGWVa2fBlHJtxVzW+oZVJM+P2QDbcARsk2wUQVls+SrQMWR9x/u2MEMfmFSc7HAtJhFicosw== /@lingui/macro/3.0.0-18: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@lingui/conf': 3.0.0-18 ramda: 0.27.1 dev: true @@ -5635,7 +5620,7 @@ packages: integrity: sha512-tDTVXtQDDiMP6XMo8NBQbxoIEK4Ggi4chCqXXiH/fjzSPtAHH4BWn+8tWIyiuxZVDPzibixCxAdwoSa2LfH11A== /@lingui/macro/3.0.0-18_babel-plugin-macros@2.8.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@lingui/conf': 3.0.0-18 babel-plugin-macros: 2.8.0 ramda: 0.27.1 @@ -5648,7 +5633,7 @@ packages: integrity: sha512-tDTVXtQDDiMP6XMo8NBQbxoIEK4Ggi4chCqXXiH/fjzSPtAHH4BWn+8tWIyiuxZVDPzibixCxAdwoSa2LfH11A== /@lingui/react/3.0.0-18: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@lingui/core': 3.0.0-18 dev: false engines: @@ -5659,7 +5644,7 @@ packages: integrity: sha512-Kgu8EWqBKYLJNvWkT0z8GxDzNYXsTh/huOLfc6w6+6IeLUEcro3heURAvsQUPKX2xCapFH6bOyPudSsNZu44eA== /@manypkg/cli/0.16.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@manypkg/get-packages': 1.1.1 chalk: 2.4.2 detect-indent: 6.0.0 @@ -5681,8 +5666,8 @@ packages: integrity: sha512-Au9opeNo23lab7Hu+WHbyNGy3BpcTQec5W/tPC3S4iMAxpbZYxhAQ26A6074MioUyuzFuTaltLF6+XBC11sjNw== /@manypkg/find-root/1.1.0: dependencies: - '@babel/runtime': 7.12.0 - '@types/node': 12.12.67 + '@babel/runtime': 7.12.1 + '@types/node': 12.12.68 find-up: 4.1.0 fs-extra: 8.1.0 dev: false @@ -5690,7 +5675,7 @@ packages: integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA== /@manypkg/get-packages/1.1.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 globby: 11.0.1 @@ -5946,13 +5931,13 @@ packages: integrity: sha512-ES4lZBKPJMX/yUoQjAZiyFjei9pJ4lTTfb9k7OtYoUzKPDLl/M8jiHqt6qeSauyU4eZGLw0sgP1WiQl9FYeM5w== /@octokit/types/2.16.2: dependencies: - '@types/node': 14.11.8 + '@types/node': 14.11.10 dev: false resolution: integrity: sha512-O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q== /@octokit/types/5.5.0: dependencies: - '@types/node': 14.11.8 + '@types/node': 14.11.10 dev: false resolution: integrity: sha512-UZ1pErDue6bZNjYOotCNveTXArOMZQFG6hKJfOnGnulVCMcVVi7YIIuuR4WfBhjo7zgpmzn/BkPDnUXtNx+PcQ== @@ -6015,26 +6000,26 @@ packages: hasBin: true resolution: integrity: sha512-wKTA2DxAGEW+QffRQvOhRQ0VBiYU2h2p8Yc1oBNlqSKws48/8faxqKNIuub0q4iuyTuLwtB8EkwiKwhlfV1PBA== - /@preconstruct/cli/1.1.29: + /@preconstruct/cli/1.1.31: dependencies: '@babel/code-frame': 7.10.4 - '@babel/core': 7.12.0 - '@babel/helper-module-imports': 7.10.4 - '@babel/runtime': 7.12.0 - '@preconstruct/hook': 0.3.0 - '@rollup/plugin-alias': 3.1.1_rollup@2.30.0 - '@rollup/plugin-commonjs': 15.1.0_rollup@2.30.0 - '@rollup/plugin-json': 4.1.0_rollup@2.30.0 - '@rollup/plugin-node-resolve': 9.0.0_rollup@2.30.0 - '@rollup/plugin-replace': 2.3.3_rollup@2.30.0 + '@babel/core': 7.12.3 + '@babel/helper-module-imports': 7.12.1 + '@babel/runtime': 7.12.1 + '@preconstruct/hook': 0.4.0 + '@rollup/plugin-alias': 3.1.1_rollup@2.32.0 + '@rollup/plugin-commonjs': 15.1.0_rollup@2.32.0 + '@rollup/plugin-json': 4.1.0_rollup@2.32.0 + '@rollup/plugin-node-resolve': 9.0.0_rollup@2.32.0 + '@rollup/plugin-replace': 2.3.3_rollup@2.32.0 builtin-modules: 3.1.0 chalk: 4.1.0 dataloader: 2.0.0 detect-indent: 6.0.0 enquirer: 2.3.6 fast-deep-equal: 2.0.1 + fast-glob: 3.2.4 fs-extra: 9.0.1 - globby: 11.0.1 is-ci: 2.0.0 jest-worker: 26.5.0 meow: 7.1.1 @@ -6048,23 +6033,22 @@ packages: quick-lru: 5.1.1 resolve: 1.17.0 resolve-from: 5.0.0 - rollup: 2.30.0 + rollup: 2.32.0 terser: 5.3.5 v8-compile-cache: 2.1.1 - xxhash-wasm: 0.4.0 dev: false hasBin: true resolution: - integrity: sha512-otzF5uslBT2lQ2RHvq9QCCjO5RvDF85exgrjAh+6frj5E6YRQ6i9YBjnkROM6vtMisAklm9HGBRjVsTsx2jLrA== - /@preconstruct/hook/0.3.0: + integrity: sha512-RlT0mssTIPpPpdN0QFZvjkQWr9QQyxsMBnSDLcVglJoOwyfPLNY0WdWIGznt6Sz0okGR58VyewQSjF9tPL9l3A== + /@preconstruct/hook/0.4.0: dependencies: - '@babel/core': 7.12.0 - '@babel/plugin-transform-modules-commonjs': 7.10.4_@babel+core@7.12.0 + '@babel/core': 7.12.3 + '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.3 pirates: 4.0.1 source-map-support: 0.5.19 dev: false resolution: - integrity: sha512-IKgThZklIRdkWmU8DBXAG5n04VqD/m/Xhdr+Pz+eOBCTimjtwQlMDrGPmAjKJIr45eAsJdNakabLdz4o/ZBIpg== + integrity: sha512-a7mrlPTM3tAFJyz43qb4pPVpUx8j8TzZBFsNFqcKcE/sEakNXRlQAuCT4RGZRf9dQiiUnBahzSIWawU4rENl+Q== /@preconstruct/next/1.0.1: dev: false resolution: @@ -6110,9 +6094,9 @@ packages: dev: false resolution: integrity: sha512-SPgq9cenqdkqzxg1zYKEOkao5Boob2sG8QTxiSoHT7NyZoTZKnDcalvRtW9AmZBcbUHy8UtqCKfBWKyB2PSlmQ== - /@rollup/plugin-alias/3.1.1_rollup@2.30.0: + /@rollup/plugin-alias/3.1.1_rollup@2.32.0: dependencies: - rollup: 2.30.0 + rollup: 2.32.0 slash: 3.0.0 dev: false engines: @@ -6121,16 +6105,16 @@ packages: rollup: ^1.20.0||^2.0.0 resolution: integrity: sha512-hNcQY4bpBUIvxekd26DBPgF7BT4mKVNDF5tBG4Zi+3IgwLxGYRY0itHs9D0oLVwXM5pvJDWJlBQro+au8WaUWw== - /@rollup/plugin-commonjs/15.1.0_rollup@2.30.0: + /@rollup/plugin-commonjs/15.1.0_rollup@2.32.0: dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.30.0 + '@rollup/pluginutils': 3.1.0_rollup@2.32.0 commondir: 1.0.1 estree-walker: 2.0.1 glob: 7.1.6 is-reference: 1.2.1 magic-string: 0.25.7 resolve: 1.17.0 - rollup: 2.30.0 + rollup: 2.32.0 dev: false engines: node: '>= 8.0.0' @@ -6138,24 +6122,24 @@ packages: rollup: ^2.22.0 resolution: integrity: sha512-xCQqz4z/o0h2syQ7d9LskIMvBSH4PX5PjYdpSSvgS+pQik3WahkQVNWg3D8XJeYjZoVWnIUQYDghuEMRGrmQYQ== - /@rollup/plugin-json/4.1.0_rollup@2.30.0: + /@rollup/plugin-json/4.1.0_rollup@2.32.0: dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.30.0 - rollup: 2.30.0 + '@rollup/pluginutils': 3.1.0_rollup@2.32.0 + rollup: 2.32.0 dev: false peerDependencies: rollup: ^1.20.0 || ^2.0.0 resolution: integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw== - /@rollup/plugin-node-resolve/9.0.0_rollup@2.30.0: + /@rollup/plugin-node-resolve/9.0.0_rollup@2.32.0: dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.30.0 + '@rollup/pluginutils': 3.1.0_rollup@2.32.0 '@types/resolve': 1.17.1 builtin-modules: 3.1.0 deepmerge: 4.2.2 is-module: 1.0.0 resolve: 1.17.0 - rollup: 2.30.0 + rollup: 2.32.0 dev: false engines: node: '>= 10.0.0' @@ -6163,22 +6147,22 @@ packages: rollup: ^1.20.0||^2.0.0 resolution: integrity: sha512-gPz+utFHLRrd41WMP13Jq5mqqzHL3OXrfj3/MkSyB6UBIcuNt9j60GCbarzMzdf1VHFpOxfQh/ez7wyadLMqkg== - /@rollup/plugin-replace/2.3.3_rollup@2.30.0: + /@rollup/plugin-replace/2.3.3_rollup@2.32.0: dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.30.0 + '@rollup/pluginutils': 3.1.0_rollup@2.32.0 magic-string: 0.25.7 - rollup: 2.30.0 + rollup: 2.32.0 dev: false peerDependencies: rollup: ^1.20.0 || ^2.0.0 resolution: integrity: sha512-XPmVXZ7IlaoWaJLkSCDaa0Y6uVo5XQYHhiMFzOd5qSv5rE+t/UJToPIOE56flKIxBFQI27ONsxb7dqHnwSsjKQ== - /@rollup/pluginutils/3.1.0_rollup@2.30.0: + /@rollup/pluginutils/3.1.0_rollup@2.32.0: dependencies: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.2.2 - rollup: 2.30.0 + rollup: 2.32.0 dev: false engines: node: '>= 8.0.0' @@ -6273,12 +6257,12 @@ packages: typescript: '*' resolution: integrity: sha512-HDwrAz+06Rv+qbpu4GufEvk83xf+QFmDUEcbP6I/OZd6QMBROvFEUNDWkFYBcs+l/7r3eyXzYo5R4VKAgXknvA== - /@storybook/addon-actions/6.0.26_9e4bedfdf6e6ac767ca43c92ea619ba4: + /@storybook/addon-actions/6.0.26_6924a3a01d652738e2fd803d6b0c2ee3: dependencies: '@storybook/addons': 6.0.26_react-dom@16.14.0+react@16.14.0 '@storybook/api': 6.0.26_react-dom@16.14.0 '@storybook/client-api': 6.0.26_react-dom@16.14.0+react@16.14.0 - '@storybook/components': 6.0.26_@types+react@16.9.52 + '@storybook/components': 6.0.26_@types+react@16.9.53 '@storybook/core-events': 6.0.26 '@storybook/theming': 6.0.26_react-dom@16.14.0+react@16.14.0 core-js: 3.6.5 @@ -6423,7 +6407,7 @@ packages: dev: false resolution: integrity: sha512-VNoL6/oehVhn3hZi9vrTNT+C/3oAZKV+smfZFnPtsCR/Fq7CKbmsBd0pGPL57f81RU8e8WygwrIlAGJTDSNIjw== - /@storybook/components/6.0.26_@types+react@16.9.52: + /@storybook/components/6.0.26_@types+react@16.9.53: dependencies: '@storybook/client-logger': 6.0.26 '@storybook/csf': 0.0.1 @@ -6445,7 +6429,7 @@ packages: react-dom: 16.14.0_react@16.14.0 react-popper-tooltip: 2.11.1_react-dom@16.14.0+react@16.14.0 react-syntax-highlighter: 12.2.1_react@16.14.0 - react-textarea-autosize: 8.2.0_635794461cba32ce970f62d2fbacf5f9 + react-textarea-autosize: 8.2.0_6e8834a71204835dd543aa9883583486 ts-dedent: 1.2.0 dev: false peerDependencies: @@ -6458,55 +6442,55 @@ packages: dev: false resolution: integrity: sha512-nWjS/+kMiw31OPgeJQaiFsJk9ZJJo3/d4c+kc6GOl2iC1H3Q4/5cm3NvJBn/7bUtKHmSFwfbDouj+XjUk5rZbQ== - /@storybook/core/6.0.26_d69f681e98c2317171582cba63fd33b8: - dependencies: - '@babel/core': 7.12.0 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-proposal-decorators': 7.10.5_@babel+core@7.12.0 - '@babel/plugin-proposal-export-default-from': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-proposal-object-rest-spread': 7.11.0_@babel+core@7.12.0 - '@babel/plugin-proposal-optional-chaining': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-proposal-private-methods': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-transform-arrow-functions': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-block-scoping': 7.11.1_@babel+core@7.12.0 - '@babel/plugin-transform-classes': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-destructuring': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-for-of': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.12.0 - '@babel/plugin-transform-shorthand-properties': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-spread': 7.11.0_@babel+core@7.12.0 - '@babel/plugin-transform-template-literals': 7.10.5_@babel+core@7.12.0 - '@babel/preset-env': 7.12.0_@babel+core@7.12.0 - '@babel/preset-react': 7.10.4_@babel+core@7.12.0 - '@babel/preset-typescript': 7.12.0_@babel+core@7.12.0 - '@babel/register': 7.12.0_@babel+core@7.12.0 + /@storybook/core/6.0.26_95dbe1986b15e1177d1e1a0df654854e: + dependencies: + '@babel/core': 7.12.3 + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-decorators': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-export-default-from': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-optional-chaining': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-private-methods': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-transform-arrow-functions': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-block-scoping': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-classes': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-destructuring': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-for-of': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-shorthand-properties': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-spread': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-template-literals': 7.12.1_@babel+core@7.12.3 + '@babel/preset-env': 7.12.1_@babel+core@7.12.3 + '@babel/preset-react': 7.12.1_@babel+core@7.12.3 + '@babel/preset-typescript': 7.12.1_@babel+core@7.12.3 + '@babel/register': 7.12.1_@babel+core@7.12.3 '@storybook/addons': 6.0.26_react-dom@16.14.0+react@16.14.0 '@storybook/api': 6.0.26_react-dom@16.14.0 '@storybook/channel-postmessage': 6.0.26 '@storybook/channels': 6.0.26 '@storybook/client-api': 6.0.26_react-dom@16.14.0+react@16.14.0 '@storybook/client-logger': 6.0.26 - '@storybook/components': 6.0.26_@types+react@16.9.52 + '@storybook/components': 6.0.26_@types+react@16.9.53 '@storybook/core-events': 6.0.26 '@storybook/csf': 0.0.1 '@storybook/node-logger': 6.0.26 '@storybook/router': 6.0.26_react-dom@16.14.0+react@16.14.0 '@storybook/semver': 7.3.2 '@storybook/theming': 6.0.26_react-dom@16.14.0+react@16.14.0 - '@storybook/ui': 6.0.26_@types+react@16.9.52 + '@storybook/ui': 6.0.26_@types+react@16.9.53 '@types/glob-base': 0.3.0 '@types/micromatch': 4.0.1 '@types/node-fetch': 2.5.7 airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.14 autoprefixer: 9.8.6 - babel-loader: 8.1.0_7cbc7020cd054d99b1a6e05145adab1f + babel-loader: 8.1.0_427212bc1158d185e577033f19ca0757 babel-plugin-emotion: 10.0.33 babel-plugin-macros: 2.8.0 babel-preset-minify: 0.5.1 - better-opn: 2.0.0 + better-opn: 2.1.0 boxen: 4.2.0 case-sensitive-paths-webpack-plugin: 2.3.0 chalk: 4.1.0 @@ -6584,19 +6568,19 @@ packages: dev: false resolution: integrity: sha512-mdILu91d/2ZgYfICoAMBjwBAYOgjk2URsPudrs5+23lFoPPIwf4CPWcfgs0f4GdfoICk3kV0W7+8bIARhRKp3g== - /@storybook/react/6.0.26_d69f681e98c2317171582cba63fd33b8: + /@storybook/react/6.0.26_95dbe1986b15e1177d1e1a0df654854e: dependencies: - '@babel/core': 7.12.0 - '@babel/preset-flow': 7.10.4_@babel+core@7.12.0 - '@babel/preset-react': 7.10.4_@babel+core@7.12.0 + '@babel/core': 7.12.3 + '@babel/preset-flow': 7.12.1_@babel+core@7.12.3 + '@babel/preset-react': 7.12.1_@babel+core@7.12.3 '@storybook/addons': 6.0.26_react-dom@16.14.0+react@16.14.0 - '@storybook/core': 6.0.26_d69f681e98c2317171582cba63fd33b8 + '@storybook/core': 6.0.26_95dbe1986b15e1177d1e1a0df654854e '@storybook/node-logger': 6.0.26 '@storybook/semver': 7.3.2 '@svgr/webpack': 5.4.0 '@types/webpack-env': 1.15.3 babel-plugin-add-react-displayname: 0.0.5 - babel-plugin-named-asset-import: 0.3.6_@babel+core@7.12.0 + babel-plugin-named-asset-import: 0.3.6_@babel+core@7.12.3 babel-plugin-react-docgen: 4.2.1 core-js: 3.6.5 global: 4.4.0 @@ -6668,14 +6652,14 @@ packages: react-dom: '*' resolution: integrity: sha512-9yon2ofb9a+RT1pdvn8Njydy7XRw0qXcIsMqGsJRKoZecmRRozqB6DxH9Gbdf1vRSbM9gYUUDjbiMDFz7+4RiQ== - /@storybook/ui/6.0.26_@types+react@16.9.52: + /@storybook/ui/6.0.26_@types+react@16.9.53: dependencies: '@emotion/core': 10.0.35_react@16.14.0 '@storybook/addons': 6.0.26_react-dom@16.14.0+react@16.14.0 '@storybook/api': 6.0.26_react-dom@16.14.0 '@storybook/channels': 6.0.26 '@storybook/client-logger': 6.0.26 - '@storybook/components': 6.0.26_@types+react@16.9.52 + '@storybook/components': 6.0.26_@types+react@16.9.53 '@storybook/core-events': 6.0.26 '@storybook/router': 6.0.26_react-dom@16.14.0+react@16.14.0 '@storybook/semver': 7.3.2 @@ -6781,7 +6765,7 @@ packages: integrity: sha512-hWGm1DCCvd4IEn7VgDUHYiC597lUYhFau2lwJBYpQWDirYLkX4OsXu9IslPgJ9UpP7wsw3n2Ffv9sW7SXJVfqQ== /@svgr/hast-util-to-babel-ast/5.4.0: dependencies: - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 dev: false engines: node: '>=10' @@ -6789,7 +6773,7 @@ packages: integrity: sha512-+U0TZZpPsP2V1WvVhqAOSTk+N+CjYHdZx+x9UBa1eeeZDXwH8pt0CrQf2+SvRl/h2CAPRFkm+Ey96+jKP8Bsgg== /@svgr/plugin-jsx/5.4.0: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@svgr/babel-preset': 5.4.0 '@svgr/hast-util-to-babel-ast': 5.4.0 svg-parser: 2.0.4 @@ -6810,10 +6794,10 @@ packages: integrity: sha512-3Cgv3aYi1l6SHyzArV9C36yo4kgwVdF3zPQUC6/aCDUeXAofDYwE5kk3e3oT5ZO2a0N3lB+lLGvipBG6lnG8EA== /@svgr/webpack/5.4.0: dependencies: - '@babel/core': 7.12.0 - '@babel/plugin-transform-react-constant-elements': 7.10.4_@babel+core@7.12.0 - '@babel/preset-env': 7.12.0_@babel+core@7.12.0 - '@babel/preset-react': 7.10.4_@babel+core@7.12.0 + '@babel/core': 7.12.3 + '@babel/plugin-transform-react-constant-elements': 7.12.1_@babel+core@7.12.3 + '@babel/preset-env': 7.12.1_@babel+core@7.12.3 + '@babel/preset-react': 7.12.1_@babel+core@7.12.3 '@svgr/core': 5.4.0 '@svgr/plugin-jsx': 5.4.0 '@svgr/plugin-svgo': 5.4.0 @@ -6834,7 +6818,7 @@ packages: /@testing-library/dom/7.26.0: dependencies: '@babel/code-frame': 7.10.4 - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@types/aria-query': 4.2.0 aria-query: 4.2.2 chalk: 4.1.0 @@ -6847,7 +6831,7 @@ packages: integrity: sha512-fyKFrBbS1IigaE3FV21LyeC7kSGF84lqTlSYdKmGaHuK2eYQ/bXVPM5vAa2wx/AU1iPD6oQHsxy2QQ17q9AMCg== /@testing-library/jest-dom/5.11.4: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@types/testing-library__jest-dom': 5.9.4 aria-query: 4.2.2 chalk: 3.0.0 @@ -6864,7 +6848,7 @@ packages: integrity: sha512-6RRn3epuweBODDIv3dAlWjOEHQLpGJHB2i912VS3JQtsD22+ENInhdDNl4ZZQiViLlIfFinkSET/J736ytV9sw== /@testing-library/react-hooks/3.4.2_98e0eb37a9f7280a1c5a6c886619f5b4: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@types/testing-library__react-hooks': 3.4.1 react: 16.14.0 react-test-renderer: 16.14.0_react@16.14.0 @@ -6876,7 +6860,7 @@ packages: integrity: sha512-RfPG0ckOzUIVeIqlOc1YztKgFW+ON8Y5xaSPbiBkfj9nMkkiLhLeBXT5icfPX65oJV/zCZu4z8EVnUc6GY9C5A== /@testing-library/react-hooks/3.4.2_react@16.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@types/testing-library__react-hooks': 3.4.1 react: 16.14.0 dev: true @@ -6887,7 +6871,7 @@ packages: integrity: sha512-RfPG0ckOzUIVeIqlOc1YztKgFW+ON8Y5xaSPbiBkfj9nMkkiLhLeBXT5icfPX65oJV/zCZu4z8EVnUc6GY9C5A== /@testing-library/react/11.1.0_react-dom@16.14.0+react@16.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@testing-library/dom': 7.26.0 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 @@ -6901,7 +6885,7 @@ packages: integrity: sha512-Nfz58jGzW0tgg3irmTB7sa02JLkLnCk+QN3XG6WiaGQYb0Qc4Ok00aujgjdxlIQWZHbb4Zj5ZOIeE9yKFSs4sA== /@testing-library/react/11.1.0_react@16.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@testing-library/dom': 7.26.0 react: 16.14.0 engines: @@ -6913,7 +6897,7 @@ packages: integrity: sha512-Nfz58jGzW0tgg3irmTB7sa02JLkLnCk+QN3XG6WiaGQYb0Qc4Ok00aujgjdxlIQWZHbb4Zj5ZOIeE9yKFSs4sA== /@testing-library/user-event/12.1.8_@testing-library+dom@7.26.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@testing-library/dom': 7.26.0 dev: true engines: @@ -6944,8 +6928,8 @@ packages: integrity: sha512-UhBFnF2gNeMpwRLs9sAQEYBf5ojl7KdstKYOv6EaZaKttfAL/EdODBk6Zua4h3RUfmInYivcrqZgAOrEXBuGIA== /@types/babel__core/7.1.10: dependencies: - '@babel/parser': 7.12.0 - '@babel/types': 7.12.0 + '@babel/parser': 7.12.3 + '@babel/types': 7.12.1 '@types/babel__generator': 7.6.2 '@types/babel__template': 7.0.3 '@types/babel__traverse': 7.0.15 @@ -6953,24 +6937,24 @@ packages: integrity: sha512-x8OM8XzITIMyiwl5Vmo2B1cR1S1Ipkyv4mdlbJjMa1lmuKvKY9FrBbEANIaMlnWn5Rf7uO+rC/VgYabNkE17Hw== /@types/babel__generator/7.6.2: dependencies: - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 resolution: integrity: sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ== /@types/babel__standalone/7.1.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 dev: false resolution: integrity: sha512-gj2Uvh8NT7+/0liAKMBtAqWspdg1LGZ471AD9Rdvrg1mB0q45qnl21dQPGz/ZtMYRgem0Aj/CUVQYHP3QDb5Gw== /@types/babel__template/7.0.3: dependencies: - '@babel/parser': 7.12.0 - '@babel/types': 7.12.0 + '@babel/parser': 7.12.3 + '@babel/types': 7.12.1 resolution: integrity: sha512-uCoznIPDmnickEi6D0v11SBpW0OuVqHJCa7syXqQHy5uktSCreIlt0iglsCnmvz8yCb38hGcWeseA8cWJSwv5Q== /@types/babel__traverse/7.0.15: dependencies: - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 resolution: integrity: sha512-Pzh9O3sTK8V6I1olsXpCfj2k/ygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A== /@types/braces/3.0.0: @@ -6983,7 +6967,7 @@ packages: integrity: sha512-4PyO9OM08APvxxo1NmQyQKlJdowPCOQIy5D/NLO3aO0vGC57wsMptvGp3b8IbYnupFZr92l1dlVief1JvS6STQ== /@types/cheerio/0.22.22: dependencies: - '@types/node': 14.11.8 + '@types/node': 14.11.10 dev: false resolution: integrity: sha512-05DYX4zU96IBfZFY+t3Mh88nlwSMtmmzSYaQkKN48T495VV1dkHSah6qYyDTN5ngaS0i0VonH37m+RuzSM0YiA== @@ -7024,7 +7008,7 @@ packages: integrity: sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g== /@types/express-serve-static-core/4.17.13: dependencies: - '@types/node': 14.11.8 + '@types/node': 14.11.10 '@types/qs': 6.9.5 '@types/range-parser': 1.2.3 dev: true @@ -7037,12 +7021,12 @@ packages: /@types/glob/7.1.3: dependencies: '@types/minimatch': 3.0.3 - '@types/node': 14.11.8 + '@types/node': 14.11.10 resolution: integrity: sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w== /@types/graceful-fs/4.1.3: dependencies: - '@types/node': 14.11.8 + '@types/node': 14.11.10 resolution: integrity: sha512-AiHRaEB50LQg0pZmm659vNBb9f4SJ0qrAnteuzhSeAUcJKxoYgEnprg/83kppCnc2zvtCKbdZry1a5pVY3lOTQ== /@types/hapi__joi/17.1.6: @@ -7061,7 +7045,7 @@ packages: integrity: sha512-S78QIYirQcUoo6UJZx9CSP0O2ix9IaeAXwQi26Rhr/+mg7qqPy8TzaxHSUut7eGjL8WmLccT7/MXf304WjqHcA== /@types/hoist-non-react-statics/3.3.1: dependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 hoist-non-react-statics: 3.3.2 dev: true resolution: @@ -7073,7 +7057,7 @@ packages: /@types/ink-spinner/3.0.0: dependencies: '@types/cli-spinners': 1.3.0 - '@types/react': 16.9.52 + '@types/react': 16.9.53 dev: true resolution: integrity: sha512-BN9gCxGfgkgvjbXatL2PjhnUlLuWMDOQLJUUkvH+5bKKWI9qm0Mb56WfMXejNrYOsiHgsz7Dc47x0nWKbXqbOg== @@ -7085,7 +7069,7 @@ packages: integrity: sha512-L0B0PAPm2mIN9pgBMgpBWqOzB9VAa9c/a7J+Z8RKS8pjHTDJMxHr8iF0npZd+/ShyhrbMqVW7ePH4YVKeU4X/Q== /@types/ink/0.5.2: dependencies: - '@types/node': 14.11.8 + '@types/node': 14.11.10 '@types/prop-types': 15.7.3 dev: true resolution: @@ -7170,14 +7154,14 @@ packages: integrity: sha512-j6G1e8DULJx3ONf6NdR5JiR2ZY3K3PaaqiEuKYkLQO0Czfi1AzrtjfnfCROyWGeDd5IVMKCwsgSmMip9OWijow== /@types/markdown-to-jsx/6.11.2: dependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 dev: false resolution: integrity: sha512-ESuCu8Bk7jpTZ3YPdMW1+6wUj13F5N15vXfc7BuUAN0eCp0lrvVL9nzOTzoqvbRzXMciuqXr1KrHt3xQAhfwPA== - /@types/match-sorter/4.0.0: + /@types/match-sorter/5.0.0: dev: false resolution: - integrity: sha512-JK7HNHXZA7i/nEp6fbNAxoX/1j1ysZXmv2/nlkt2UpX1LiUWKLtyt/dMmDTlMPR6t6PkwMmIr2W2AAyu6oELNw== + integrity: sha512-25KmtRqBKBH5Uo5e6QAV+5zKuE+cksAJ9R8GMMYtt0+jV+HxQj1Yg8ciui/T4AaoCmq3D65m1tgNcabkOLHe1Q== /@types/mdast/3.0.3: dependencies: '@types/unist': 2.0.3 @@ -7207,22 +7191,22 @@ packages: integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA== /@types/node-fetch/2.5.7: dependencies: - '@types/node': 14.11.8 + '@types/node': 14.11.10 form-data: 3.0.0 dev: false resolution: integrity: sha512-o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw== - /@types/node/10.17.39: + /@types/node/10.17.40: dev: false resolution: - integrity: sha512-dJLCxrpQmgyxYGcl0Ae9MTsQgI22qHHcGFj/8VKu7McJA5zQpnuGjoksnxbo1JxSjW/Nahnl13W8MYZf01CZHA== - /@types/node/12.12.67: + integrity: sha512-3hZT2z2/531A5pc8hYhn1gU5Qb1SIRSgMLQ6zuHA5xtt16lWAxUGprtr8lJuc9zNJMXEIIBWfSnzqBP/4mglpA== + /@types/node/12.12.68: dev: false resolution: - integrity: sha512-R48tgL2izApf+9rYNH+3RBMbRpPeW3N8f0I9HMhggeq4UXwBDqumJ14SDs4ctTMhG11pIOduZ4z3QWGOiMc9Vg== - /@types/node/14.11.8: + integrity: sha512-3RW2s24ewB7F9dAHvgb9FRvNHn6nO9IK6Eaknbz7HTOe2a5GVne5XbUh5+YA+kcCn67glyHhClUUdFP73LWrgQ== + /@types/node/14.11.10: resolution: - integrity: sha512-KPcKqKm5UKDkaYPTuXSx8wEP7vE9GnuaXIZKijwRYcePpZFDVuy2a57LarFKiORbHOuTOOwYzxVxcUzsh2P2Pw== + integrity: sha512-yV1nWZPlMFpoXyoknm4S56y2nlTAuFYaJuQtYRAOU7xA/FJ9RY0Xm7QOkaYMMmr8ESdHIuUb6oQgR/0+2NqlyA== /@types/normalize-package-data/2.4.0: resolution: integrity: sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== @@ -7258,9 +7242,9 @@ packages: dev: false resolution: integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw== - /@types/prettier/2.1.2: + /@types/prettier/2.1.5: resolution: - integrity: sha512-IiPhNnenzkqdSdQH3ifk9LoX7oQe61ZlDdDO4+MUv6FyWdPGDPr26gCPVs3oguZEMq//nFZZpwUZcVuNJsG+DQ== + integrity: sha512-UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ== /@types/prismjs/1.16.1: resolution: integrity: sha512-RNgcK3FEc1GpeOkamGDq42EYkb6yZW5OWQwTS56NJIB8WL0QGISQglA7En7NUx9RGP8AC52DOe+squqbAckXlA== @@ -7269,7 +7253,7 @@ packages: integrity: sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== /@types/prosemirror-collab/1.1.0: dependencies: - '@types/prosemirror-model': 1.7.4 + '@types/prosemirror-model': 1.11.0 '@types/prosemirror-state': 1.2.5 '@types/prosemirror-transform': 1.1.1 dev: false @@ -7277,7 +7261,7 @@ packages: integrity: sha512-YxXFtxblWVTSKupWTYYKcoCYIdzW2aeJkuPiRBjkcsbM1xFYDM1Urzu2nG967X+RB6VbwJsWEs41fM4LMWZT5g== /@types/prosemirror-commands/1.0.3: dependencies: - '@types/prosemirror-model': 1.7.4 + '@types/prosemirror-model': 1.11.0 '@types/prosemirror-state': 1.2.5 '@types/prosemirror-view': 1.16.1 resolution: @@ -7303,14 +7287,14 @@ packages: integrity: sha512-ruA7FK9NJv+bn5s55SZYFf9SwaN3wk/MkBvqRmhIqIHvowTTa7nzIGWbUdWZMga1DDTk+GrwdcQaEHunAFjFsQ== /@types/prosemirror-history/1.0.1: dependencies: - '@types/prosemirror-model': 1.7.4 + '@types/prosemirror-model': 1.11.0 '@types/prosemirror-state': 1.2.5 dev: false resolution: integrity: sha512-BYyPJlWDo3VEnWS5X2DCHXrrAKEjdbCe1DUjGL6R/8hmwMFe3iMJGYdBkOXU1FfkTpw7Z+PlwY/pMyeelVydmg== /@types/prosemirror-inputrules/1.0.3: dependencies: - '@types/prosemirror-model': 1.7.4 + '@types/prosemirror-model': 1.11.0 '@types/prosemirror-state': 1.2.5 dev: false resolution: @@ -7318,51 +7302,51 @@ packages: /@types/prosemirror-keymap/1.0.3: dependencies: '@types/prosemirror-commands': 1.0.3 - '@types/prosemirror-model': 1.7.4 + '@types/prosemirror-model': 1.11.0 '@types/prosemirror-state': 1.2.5 '@types/prosemirror-view': 1.16.1 resolution: integrity: sha512-iCYUtt0u8y6qeDZVsidEWJGbw2Kas+jtHD1QY374W/N2jASYp+8auucFLXe0UvoOy9jiWcGcqcecec1R+vkzgw== - /@types/prosemirror-model/1.7.4: + /@types/prosemirror-model/1.11.0: dependencies: '@types/orderedmap': 1.0.0 resolution: - integrity: sha512-nXDcEopJ1fqeSJhGHxQMLd1VKWfA0kRaNLvK30CZhGXOKRySk66hWyrqo9swdGzzGtGZ7VzjDkECo0L4ScYk+w== + integrity: sha512-R+vutu3AptoiXGJR0Jdpyr7BkJg24bce9ETUDOrBJZhRcsWeMEFGzidG19GHcY6Yny5zTILxlqXeDEIF3C5b7A== /@types/prosemirror-schema-basic/1.0.1: dependencies: - '@types/prosemirror-model': 1.7.4 + '@types/prosemirror-model': 1.11.0 dev: false resolution: integrity: sha512-IOQAYf1urifbH+Zwbq5XfFOUMNCbEnvIqpuSAE8SUt00nDAoH62T/S8Qhu8LuF++KQbyXb7fdMp352zkPW9Hmw== /@types/prosemirror-schema-list/1.0.1: dependencies: '@types/orderedmap': 1.0.0 - '@types/prosemirror-model': 1.7.4 + '@types/prosemirror-model': 1.11.0 '@types/prosemirror-state': 1.2.5 dev: false resolution: integrity: sha512-+iUYq+pj2wVHSThj0MjNDzkkGwq8aDQ6j0UJK8a0cNCL8v44Ftcx1noGPtBIEUJgitH960VnfBNoTWfQoQZfRA== /@types/prosemirror-state/1.2.5: dependencies: - '@types/prosemirror-model': 1.7.4 + '@types/prosemirror-model': 1.11.0 '@types/prosemirror-transform': 1.1.1 '@types/prosemirror-view': 1.16.1 resolution: integrity: sha512-a5DxAifiF6vmdSJ5jsDMkpykUgUJUy+T5Q5hCjFOKJ4cfd3m3q1lsFKr7Bc4r91Qb7rfqyiKCMDnASS8LIHrKw== /@types/prosemirror-test-builder/1.0.1: dependencies: - '@types/prosemirror-model': 1.7.4 + '@types/prosemirror-model': 1.11.0 dev: false resolution: integrity: sha512-MJYVhk/IrIageh9NxOMhMnKDAOupyoemwY8VjigsbXZYAhfQA1qcKJj7KingsFA++Dn7jQN2I1aEiPZe0DsSgg== /@types/prosemirror-transform/1.1.1: dependencies: - '@types/prosemirror-model': 1.7.4 + '@types/prosemirror-model': 1.11.0 resolution: integrity: sha512-yYCYSoiRH+Wcbl8GJc0PFCzeyMzNQ1vL2xrHHSXZuNcIlH75VoiKrZFeZ6BS9cl8mYXjZrlmdBe8YOxYvyKM6A== /@types/prosemirror-view/1.16.1: dependencies: - '@types/prosemirror-model': 1.7.4 + '@types/prosemirror-model': 1.11.0 '@types/prosemirror-state': 1.2.5 '@types/prosemirror-transform': 1.1.1 resolution: @@ -7381,55 +7365,55 @@ packages: /@types/reach__router/1.3.6: dependencies: '@types/history': 4.7.8 - '@types/react': 16.9.52 + '@types/react': 16.9.53 dev: false resolution: integrity: sha512-RHYataCUPQnt+GHoASyRLq6wmZ0n8jWlBW8Lxcwd30NN6vQfbmTeoSDfkgxO0S1lEzArp8OFDsq5KIs7FygjtA== /@types/react-color/3.0.4: dependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/reactcss': 1.2.3 dev: false resolution: integrity: sha512-EswbYJDF1kkrx93/YU+BbBtb46CCtDMvTiGmcOa/c5PETnwTiSWoseJ1oSWeRl/4rUXkhME9bVURvvPg0W5YQw== /@types/react-dom/16.9.8: dependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 resolution: integrity: sha512-ykkPQ+5nFknnlU6lDd947WbQ6TE3NNzbQAkInC2EKY1qeYdTKp7onFusmYZb+ityzx2YviqT6BXSu+LyWWJwcA== /@types/react-native/0.63.25: dependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 dev: true resolution: integrity: sha512-cRm+1iQecewpFYOArYJoM1qGd0JpFJ6f97KqIy9H2GawAdWkgyarSk8CBy4SMt2WOtPkysCu2EG7UwIT3vNeaA== /@types/react-syntax-highlighter/11.0.4: dependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 dev: false resolution: integrity: sha512-9GfTo3a0PHwQeTVoqs0g5bS28KkSY48pp5659wA+Dp4MqceDEa8EHBqrllJvvtyusszyJhViUEap0FDvlk/9Zg== /@types/react-test-renderer/16.9.3: dependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 dev: true resolution: integrity: sha512-wJ7IlN5NI82XMLOyHSa+cNN4Z0I+8/YaLl04uDgcZ+W+ExWCmCiVTLT/7fRNqzy4OhStZcUwIqLNF7q+AdW43Q== /@types/react-toggle/4.0.2: dependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 dev: false resolution: integrity: sha512-sHqfoKFnL0YU2+OC4meNEC8Ptx9FE8/+nFeFvNcdBa6ANA8KpAzj3R9JN8GtrvlLgjKDoYgI7iILgXYcTPo2IA== - /@types/react/16.9.52: + /@types/react/16.9.53: dependencies: '@types/prop-types': 15.7.3 csstype: 3.0.3 resolution: - integrity: sha512-EHRjmnxiNivwhGdMh9sz1Yw9AUxTSZFxKqdBWAAzyZx3sufWwx6ogqHYh/WB1m/I4ZpjkoZLExF5QTy2ekVi/Q== + integrity: sha512-4nW60Sd4L7+WMXH1D6jCdVftuW7j4Za6zdp6tJ33Rqv0nk1ZAmQKML9ZLD4H0dehA3FZxXR/GM8gXplf82oNGw== /@types/reactcss/1.2.3: dependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 dev: false resolution: integrity: sha512-d2gQQ0IL6hXLnoRfVYZukQNWHuVsE75DzFTLPUuyyEhJS8G2VvlE+qfQQ91SJjaMqlURRCNIsX7Jcsw6cEuJlA== @@ -7440,14 +7424,14 @@ packages: integrity: sha512-jkCqkTpxMXXfN03Xpzj+mBMxo9IxG616SV2U42iwHkBGq/f8RrX3DCzLayIqUV+MAIBCUvl5xPnjqpUtZRnMqA== /@types/resolve/1.17.1: dependencies: - '@types/node': 14.11.8 + '@types/node': 14.11.10 dev: false resolution: integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== /@types/rimraf/3.0.0: dependencies: '@types/glob': 7.1.3 - '@types/node': 14.11.8 + '@types/node': 14.11.10 resolution: integrity: sha512-7WhJ0MdpFgYQPXlF4Dx+DhgvlPCfz/x5mHaeDQAKhcenvQP1KCpLQ18JklAqeGMYSAT2PxLpzd0g2/HE7fj7hQ== /@types/sanitize-html/1.27.0: @@ -7477,7 +7461,7 @@ packages: /@types/styled-components/5.1.4: dependencies: '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 16.9.52 + '@types/react': 16.9.53 '@types/react-native': 0.63.25 csstype: 3.0.3 dev: true @@ -7532,7 +7516,7 @@ packages: integrity: sha512-5oiXqR7kwDGZ6+gmzIO2lTC+QsriNuQXZDWNYRV3l2XRN/zmPgnC21DLSx2D05zvD8vnXW6qUg7JnXZ4I6qLVQ== /@types/webpack-sources/2.0.0: dependencies: - '@types/node': 14.11.8 + '@types/node': 14.11.10 '@types/source-list-map': 0.1.2 source-map: 0.7.3 resolution: @@ -7540,7 +7524,7 @@ packages: /@types/webpack/4.41.22: dependencies: '@types/anymatch': 1.3.1 - '@types/node': 14.11.8 + '@types/node': 14.11.10 '@types/tapable': 1.0.6 '@types/uglify-js': 3.11.0 '@types/webpack-sources': 2.0.0 @@ -7549,7 +7533,7 @@ packages: integrity: sha512-JQDJK6pj8OMV9gWOnN1dcLCyU9Hzs6lux0wBO4lr1+gyEhIBR9U3FMrz12t2GPkg110XAxEAw2WHF6g7nZIbRQ== /@types/websocket/1.0.1: dependencies: - '@types/node': 14.11.8 + '@types/node': 14.11.10 dev: false resolution: integrity: sha512-f5WLMpezwVxCLm1xQe/kdPpQIOmL0TXYx2O15VYfYzc7hTIdxiOoOvez+McSIw3b7z/1zGovew9YSL7+h4h7/Q== @@ -7562,14 +7546,14 @@ packages: dev: false resolution: integrity: sha512-NRqD6T4gktUrDi1o1wLH3EKC1o2caCr7/wR87ODcbVITQF106OM3sFN92ysZ++wqelOd1CTzatnOBRDYYG6wGQ== - /@types/yargs/15.0.8: + /@types/yargs/15.0.9: dependencies: '@types/yargs-parser': 15.0.0 resolution: - integrity: sha512-b0BYzFUzBpOhPjpl1wtAHU994jBeKF4TKVlT7ssFv44T617XNcPdRoG4AzHLVshLzlrF7i3lTelH7UbuNYV58Q== + integrity: sha512-HmU8SeIRhZCWcnRskCs36Q1Q00KBV6Cqh/ora8WN1+22dY07AZdn6Gel8QZ3t26XYPImtcL8WV/eqjhVmMEw4g== /@types/yauzl/2.9.1: dependencies: - '@types/node': 14.11.8 + '@types/node': 14.11.10 dev: false optional: true resolution: @@ -8233,8 +8217,8 @@ packages: integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== /aria-query/4.2.2: dependencies: - '@babel/runtime': 7.12.0 - '@babel/runtime-corejs3': 7.12.0 + '@babel/runtime': 7.12.1 + '@babel/runtime-corejs3': 7.12.1 engines: node: '>=6.0' resolution: @@ -8544,9 +8528,9 @@ packages: /babel-eslint/10.1.0_eslint@7.11.0: dependencies: '@babel/code-frame': 7.10.4 - '@babel/parser': 7.12.0 - '@babel/traverse': 7.12.0 - '@babel/types': 7.12.0 + '@babel/parser': 7.12.3 + '@babel/traverse': 7.12.1 + '@babel/types': 7.12.1 eslint: 7.11.0 eslint-visitor-keys: 1.3.0 resolve: 1.17.0 @@ -8585,14 +8569,14 @@ packages: dev: false resolution: integrity: sha512-m2CvfDW4+1qfDdsrtf4dwOslQC3yhbgyBFptncp4wvtdrDHqueW7slsYv4gArie056phvQFhT2nRcGS4bnm6mA== - /babel-jest/26.5.2_@babel+core@7.12.0: + /babel-jest/26.5.2_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@jest/transform': 26.5.2 '@jest/types': 26.5.2 '@types/babel__core': 7.1.10 babel-plugin-istanbul: 6.0.0 - babel-preset-jest: 26.5.0_@babel+core@7.12.0 + babel-preset-jest: 26.5.0_@babel+core@7.12.3 chalk: 4.1.0 graceful-fs: 4.2.4 slash: 3.0.0 @@ -8602,9 +8586,9 @@ packages: '@babel/core': ^7.0.0 resolution: integrity: sha512-U3KvymF3SczA3vOL/cgiUFOznfMET+XDIXiWnoJV45siAp2pLMG8i2+/MGZlAC3f/F6Q40LR4M4qDrWZ9wkK8A== - /babel-loader/8.1.0_7cbc7020cd054d99b1a6e05145adab1f: + /babel-loader/8.1.0_427212bc1158d185e577033f19ca0757: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 find-cache-dir: 2.1.0 loader-utils: 1.4.0 mkdirp: 0.5.5 @@ -8619,9 +8603,9 @@ packages: webpack: '>=2' resolution: integrity: sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw== - /babel-loader/8.1.0_@babel+core@7.12.0: + /babel-loader/8.1.0_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 find-cache-dir: 2.1.0 loader-utils: 1.4.0 mkdirp: 0.5.5 @@ -8639,9 +8623,9 @@ packages: dev: false resolution: integrity: sha1-M51M3be2X9YtHfnbn+BN4TQSK9U= - /babel-plugin-annotate-pure-calls/0.4.0_@babel+core@7.12.0: + /babel-plugin-annotate-pure-calls/0.4.0_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 dev: false peerDependencies: '@babel/core': ^6.0.0-0 || 7.x @@ -8657,9 +8641,9 @@ packages: '@babel/core': ^7.11.6 resolution: integrity: sha512-lcpbj/GatKQp48jsJ8Os/ZXv381ZYFNKA27EPllcpFMpqiS696XkoK+xie/2GjzQSe5IIbo3srsXpd6/ik8PsQ== - /babel-plugin-dev-expression/0.2.2_@babel+core@7.12.0: + /babel-plugin-dev-expression/0.2.2_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 dev: false peerDependencies: '@babel/core': ^7.0.0 @@ -8672,7 +8656,7 @@ packages: integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== /babel-plugin-emotion/10.0.33: dependencies: - '@babel/helper-module-imports': 7.10.4 + '@babel/helper-module-imports': 7.12.1 '@emotion/hash': 0.8.0 '@emotion/memoize': 0.7.4 '@emotion/serialize': 0.11.16 @@ -8704,7 +8688,7 @@ packages: /babel-plugin-jest-hoist/26.5.0: dependencies: '@babel/template': 7.10.4 - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 '@types/babel__core': 7.1.10 '@types/babel__traverse': 7.0.15 engines: @@ -8713,7 +8697,7 @@ packages: integrity: sha512-ck17uZFD3CDfuwCLATWZxkkuGGFhMij8quP8CNhwj8ek1mqFgbFzRJ30xwC04LLscj/aKsVFfRST+b5PT7rSuw== /babel-plugin-macros/2.8.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 cosmiconfig: 6.0.0 resolve: 1.17.0 resolution: @@ -8783,9 +8767,9 @@ packages: dev: false resolution: integrity: sha1-G8bxW4f3qxCF1CszC3F2V6IVZQA= - /babel-plugin-named-asset-import/0.3.6_@babel+core@7.12.0: + /babel-plugin-named-asset-import/0.3.6_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 dev: false peerDependencies: '@babel/core': ^7.1.0 @@ -8802,7 +8786,7 @@ packages: /babel-plugin-styled-components/1.11.1_styled-components@5.2.0: dependencies: '@babel/helper-annotate-as-pure': 7.10.4 - '@babel/helper-module-imports': 7.10.4 + '@babel/helper-module-imports': 7.12.1 babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.20 styled-components: 5.2.0_db4f3e01d4af257720225b5fb3df6ceb @@ -8883,29 +8867,29 @@ packages: dev: false resolution: integrity: sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM= - /babel-preset-current-node-syntax/0.1.4_@babel+core@7.12.0: - dependencies: - '@babel/core': 7.12.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.0 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-syntax-class-properties': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.0 + /babel-preset-current-node-syntax/0.1.4_@babel+core@7.12.3: + dependencies: + '@babel/core': 7.12.3 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-class-properties': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3 peerDependencies: '@babel/core': ^7.0.0 resolution: integrity: sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w== - /babel-preset-jest/26.5.0_@babel+core@7.12.0: + /babel-preset-jest/26.5.0_@babel+core@7.12.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 babel-plugin-jest-hoist: 26.5.0 - babel-preset-current-node-syntax: 0.1.4_@babel+core@7.12.0 + babel-preset-current-node-syntax: 0.1.4_@babel+core@7.12.3 engines: node: '>= 10.14.2' peerDependencies: @@ -9026,14 +9010,14 @@ packages: dev: false resolution: integrity: sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A== - /better-opn/2.0.0: + /better-opn/2.1.0: dependencies: open: 7.3.0 dev: false engines: node: '>8.0.0' resolution: - integrity: sha512-PPbGRgO/K0LowMHbH/JNvaV3qY3Vt+A2nH28fzJxy16h/DfR5OsVti6ldGl6S9SMsyUqT13sltikiAVtI6tKLA== + integrity: sha512-e96ADSxi4s0DRmmBqux43JxDG7FnJwTd5k6Hi/MtOmEHF8t6ujA/bdP/zMcp4b5Z9dirQqW5cOKD3qll6/hYTg== /better-path-resolve/1.0.0: dependencies: is-windows: 1.0.2 @@ -9339,7 +9323,7 @@ packages: /browserslist/4.10.0: dependencies: caniuse-lite: 1.0.30001148 - electron-to-chromium: 1.3.580 + electron-to-chromium: 1.3.582 node-releases: 1.1.63 pkg-up: 3.1.0 dev: false @@ -9349,7 +9333,7 @@ packages: /browserslist/4.12.0: dependencies: caniuse-lite: 1.0.30001148 - electron-to-chromium: 1.3.580 + electron-to-chromium: 1.3.582 node-releases: 1.1.63 pkg-up: 2.0.0 dev: false @@ -9359,7 +9343,7 @@ packages: /browserslist/4.14.5: dependencies: caniuse-lite: 1.0.30001148 - electron-to-chromium: 1.3.580 + electron-to-chromium: 1.3.582 escalade: 3.1.1 node-releases: 1.1.63 dev: false @@ -9371,7 +9355,7 @@ packages: /browserslist/4.7.0: dependencies: caniuse-lite: 1.0.30001148 - electron-to-chromium: 1.3.580 + electron-to-chromium: 1.3.582 node-releases: 1.1.63 dev: false hasBin: true @@ -9504,7 +9488,7 @@ packages: infer-owner: 1.0.4 lru-cache: 5.1.1 mississippi: 3.0.0 - mkdirp: 0.5.3 + mkdirp: 0.5.5 move-concurrently: 1.0.1 promise-inflight: 1.0.1 rimraf: 2.7.1 @@ -11306,6 +11290,20 @@ packages: optional: true resolution: integrity: sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg== + /debug/4.2.0_supports-color@6.1.0: + dependencies: + ms: 2.1.2 + supports-color: 6.1.0 + dev: false + engines: + node: '>=6.0' + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + resolution: + integrity: sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg== /decamelize-keys/1.1.0: dependencies: decamelize: 1.2.0 @@ -11736,15 +11734,15 @@ packages: integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== /docusaurus/2.0.0-alpha.65: dependencies: - '@babel/core': 7.12.0 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-proposal-object-rest-spread': 7.11.0_@babel+core@7.12.0 - '@babel/polyfill': 7.11.5 - '@babel/preset-env': 7.12.0_@babel+core@7.12.0 - '@babel/preset-react': 7.10.4_@babel+core@7.12.0 - '@babel/register': 7.12.0_@babel+core@7.12.0 - '@babel/traverse': 7.12.0 - '@babel/types': 7.12.0 + '@babel/core': 7.12.3 + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.3 + '@babel/polyfill': 7.12.1 + '@babel/preset-env': 7.12.1_@babel+core@7.12.3 + '@babel/preset-react': 7.12.1_@babel+core@7.12.3 + '@babel/register': 7.12.1_@babel+core@7.12.3 + '@babel/traverse': 7.12.1 + '@babel/types': 7.12.1 autoprefixer: 9.8.6 babylon: 6.18.0 chalk: 3.0.0 @@ -11812,7 +11810,7 @@ packages: /dom-serializer/0.2.2: dependencies: domelementtype: 2.0.2 - entities: 2.0.3 + entities: 2.1.0 dev: false resolution: integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== @@ -11820,7 +11818,7 @@ packages: dependencies: domelementtype: 2.0.2 domhandler: 3.3.0 - entities: 2.0.3 + entities: 2.1.0 dev: false resolution: integrity: sha512-ox7bvGXt2n+uLWtCRLybYx60IrOlWL/aCebWJk1T0d4m3y2tzf4U3ij9wBMUb6YJZpz06HCCYuyCDveE2xXmzQ== @@ -12056,10 +12054,10 @@ packages: hasBin: true resolution: integrity: sha512-dldq3ZfFtgVTJMLjOe+/3sROTzALlL9E34V4/sDtUd/KlBSS0s6U1/+WPE1B4sj9CXHJpL1M6rhNJnc9Wbal9w== - /electron-to-chromium/1.3.580: + /electron-to-chromium/1.3.582: dev: false resolution: - integrity: sha512-5flHTbRpptO6h3lQUG4zdSAxryAS3PrZOkLpLS0DL5/y2LBf+l9HJ8X6UBorNs1QRBrMR7u/QvkdK+GlekW1kQ== + integrity: sha512-0nCJ7cSqnkMC+kUuPs0YgklFHraWGl/xHqtZWWtOeVtyi+YqkoAOMGuZQad43DscXCQI/yizcTa3u6B5r+BLww== /element-resize-detector/1.2.1: dependencies: batch-processor: 1.0.0 @@ -12078,11 +12076,11 @@ packages: dev: false resolution: integrity: sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== - /emittery/0.7.1: + /emittery/0.7.2: engines: node: '>=10' resolution: - integrity: sha512-d34LN4L6h18Bzz9xpoku2nPwKxCPlPMr3EEKTkoEBi+1/+b0lcRkRJ1UVyyZaKNeqGR3swcGl6s390DNO4YVgQ== + integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ== /emoji-regex/6.1.1: dev: false resolution: @@ -12121,7 +12119,7 @@ packages: integrity: sha512-SNujglcLTTg+lDAcApPNgEdudaqQFiAbJCqzjNxJkvN9vAwCGi0uu8IUVvx+f16h+V44KCY6Y2yboroc9pilHg== /emotion-theming/10.0.27_949b6c0dd132c1257a107ce4fd67d629: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@emotion/core': 10.0.35_react@16.14.0 '@emotion/weak-memoize': 0.2.5 hoist-non-react-statics: 3.3.2 @@ -12185,10 +12183,10 @@ packages: dev: false resolution: integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== - /entities/2.0.3: + /entities/2.1.0: dev: false resolution: - integrity: sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ== + integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== /env-ci/5.0.2: dependencies: execa: 4.0.3 @@ -12394,7 +12392,7 @@ packages: node: '>=4' resolution: integrity: sha512-otzzTim2/1+lVrlH19EfQQJEhVJSu0zOb9ygb3iapN6UlyaDtyRq4b5U1FuW0v1lRa9Fp/GJyHkSwm6NqABgCA== - /eslint-config-prettier/6.12.0_eslint@7.11.0: + /eslint-config-prettier/6.13.0_eslint@7.11.0: dependencies: eslint: 7.11.0 get-stdin: 6.0.0 @@ -12403,7 +12401,7 @@ packages: peerDependencies: eslint: '>=3.14.1' resolution: - integrity: sha512-9jWPlFlgNwRUYVoujvWTQ1aMO8o6648r+K7qU7K5Jmkbyqav1fuEZC0COYpGBxyiAJb65Ra9hrmFx19xRGwXWw== + integrity: sha512-LcT0i0LSmnzqK2t764pyIt7kKH2AuuqKRTtJTdddWxOiUja9HdG5GXBVF2gmCTvVYWVsTu8J2MhJLVGRh+pj8w== /eslint-formatter-github/1.0.11_eslint@7.11.0: dependencies: create-check: 0.6.39 @@ -12418,7 +12416,7 @@ packages: dependencies: ansi-escapes: 4.3.1 chalk: 3.0.0 - eslint-rule-docs: 1.1.211 + eslint-rule-docs: 1.1.212 log-symbols: 3.0.0 plur: 3.1.1 string-width: 4.2.0 @@ -12458,7 +12456,7 @@ packages: integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ== /eslint-plugin-graphql/4.0.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 graphql-config: 3.0.3 lodash.flatten: 4.4.0 lodash.without: 4.4.0 @@ -12516,7 +12514,7 @@ packages: integrity: sha512-827YJ+E8B9PvXu/0eiVSNFfxxndbKv+qE/3GSMhdorCaeaOehtqHGX2YDW9B85TEOre9n/zscledkFW/KbnyGg== /eslint-plugin-jsx-a11y/6.3.1_eslint@7.11.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 aria-query: 4.2.2 array-includes: 3.1.1 ast-types-flow: 0.0.7 @@ -12602,7 +12600,7 @@ packages: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 resolution: integrity: sha512-XW5MnzlRjhXpIdbULC/qAdJYHWw3rRLws/DyawdlPU/IdVr9AmRK1r2LaCvabwKOAW2XYYSo3kDX58E4MrB7PQ== - /eslint-plugin-unicorn/22.0.0_eslint@7.11.0: + /eslint-plugin-unicorn/23.0.0_eslint@7.11.0: dependencies: ci-info: 2.0.0 clean-regexp: 1.0.0 @@ -12622,13 +12620,13 @@ packages: engines: node: '>=10' peerDependencies: - eslint: '>=7.8.0' + eslint: '>=7.11.0' resolution: - integrity: sha512-jXPOauNiVFYLr+AeU3l21Ao+iDl/G08vUWui21RCI2L1TJIIoJvAMjMR6I+QPKr8FgIumzuR6gzDKCtEx2IkzA== - /eslint-rule-docs/1.1.211: + integrity: sha512-Vabo3cjl6cjyhcf+76CdQEY6suOFzK0Xh3xo0uL9VDYrDJP5+B6PjV0tHTYm82WZmFWniugFJM3ywHSNYTi/ZQ== + /eslint-rule-docs/1.1.212: dev: false resolution: - integrity: sha512-YMa45XkpYt6qgUJ8PAeb8Zqc7eGfY+roPcTOz75NCp41IxzERgB9un7TAzn3DAFqw8vMy+wm1sKiRbYj+/eGPw== + integrity: sha512-0OQFBR6Jvjcc8JBTkXqowtEL+x34TjhtQDicwriMu6NJ3+5WV+mU84aC1p4puK6AgAkkzdb22ivETk08He779A== /eslint-scope/4.0.3: dependencies: esrecurse: 4.3.0 @@ -14699,7 +14697,7 @@ packages: integrity: sha512-zBZAmhSupHIl5sITeMqIJnYCDfAEc3Gdkqj65wC1lpI468MMQeeQkhcIAvk+RylAkxrCcI9xy9piHiXeQ1BdzQ== /history/4.10.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 loose-envify: 1.4.0 resolve-pathname: 3.0.0 tiny-invariant: 1.1.0 @@ -14818,7 +14816,7 @@ packages: html-minifier-terser: 5.1.1 loader-utils: 1.4.0 lodash: 4.17.20 - pretty-error: 2.1.1 + pretty-error: 2.1.2 tapable: 1.1.3 util.promisify: 1.0.0 webpack: 4.44.2_webpack@4.44.2 @@ -14836,19 +14834,19 @@ packages: hasBin: true resolution: integrity: sha1-pUT6nqVJK/s6LMqCEKEL57WvH2E= - /htmlnano/0.2.6: + /htmlnano/0.2.7: dependencies: cssnano: 4.1.10 - normalize-html-whitespace: 1.0.0 posthtml: 0.13.4 posthtml-render: 1.2.3 purgecss: 2.3.0 + relateurl: 0.2.7 svgo: 1.3.2 terser: 4.8.0 uncss: 0.17.3 dev: false resolution: - integrity: sha512-HUY/99maFsWX2LRoGJpZ/8QRLCkyY0UU1El3wgLLFAHQlD3mCxCJJNcWJk5SBqaU49MLhIWVDW6cGBeuemvaPQ== + integrity: sha512-ozbK3npguK3MTn77WCKngBtCDhc94fmEptPQsn+dO+uIWoEghIMKsjzCMnDJuu403M01ePg9GA5MpXhRBQ3PVg== /htmlparser2/3.10.1: dependencies: domelementtype: 1.3.1 @@ -14865,7 +14863,7 @@ packages: domelementtype: 2.0.2 domhandler: 3.3.0 domutils: 2.4.2 - entities: 2.0.3 + entities: 2.1.0 dev: false resolution: integrity: sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q== @@ -15285,7 +15283,7 @@ packages: integrity: sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== /ink-link/2.0.0_ink@3.0.7+react@16.14.0: dependencies: - ink: 3.0.7_635794461cba32ce970f62d2fbacf5f9 + ink: 3.0.7_6e8834a71204835dd543aa9883583486 prop-types: 15.7.2 react: 16.14.0 terminal-link: 2.1.1 @@ -15311,7 +15309,7 @@ packages: /ink-spinner/4.0.1_ink@3.0.7+react@16.14.0: dependencies: cli-spinners: 2.5.0 - ink: 3.0.7_635794461cba32ce970f62d2fbacf5f9 + ink: 3.0.7_6e8834a71204835dd543aa9883583486 react: 16.14.0 dev: false engines: @@ -15321,9 +15319,9 @@ packages: react: ^16.8.2 resolution: integrity: sha512-2eYtzzUPb22Z0Cn2bGvE4BteYjcqDhgrHnCzGJM81EHXXlyNU7aYfucPgZs2CZPy0LWz/5hwoecFhd0mj1hrbw== - /ink-testing-library/2.1.0_@types+react@16.9.52: + /ink-testing-library/2.1.0_@types+react@16.9.53: dependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 dev: true engines: node: '>=10' @@ -15334,9 +15332,9 @@ packages: optional: true resolution: integrity: sha512-7TNlOjJlJXB33vG7yVa+MMO7hCjaC1bCn+zdpSjknWoLbOWMaFdKc7LJvqVkZ0rZv2+akhjXPrcR/dbxissjUw== - /ink/3.0.7_635794461cba32ce970f62d2fbacf5f9: + /ink/3.0.7_6e8834a71204835dd543aa9883583486: dependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 ansi-escapes: 4.3.1 auto-bind: 4.0.0 chalk: 4.1.0 @@ -16140,7 +16138,7 @@ packages: integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ== /istanbul-lib-instrument/4.0.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@istanbuljs/schema': 0.1.2 istanbul-lib-coverage: 3.0.0 semver: 6.3.0 @@ -16249,12 +16247,12 @@ packages: integrity: sha512-qSmssmiIdvM5BWVtyK/nqVpN3spR5YyvkvPqz1x3BR1bwIxsWmU/MGwLoCrPNLbkG2ASAKfvmJpOduEApBPh2w== /jest-circus/26.5.3: dependencies: - '@babel/traverse': 7.12.0 + '@babel/traverse': 7.12.1 '@jest/environment': 26.5.2 '@jest/test-result': 26.5.2 '@jest/types': 26.5.2 '@types/babel__traverse': 7.0.15 - '@types/node': 14.11.8 + '@types/node': 14.11.10 chalk: 4.1.0 co: 4.6.0 dedent: 0.7.0 @@ -16297,10 +16295,10 @@ packages: integrity: sha512-HkbSvtugpSXBf2660v9FrNVUgxvPkssN8CRGj9gPM8PLhnaa6zziFiCEKQAkQS4uRzseww45o0TR+l6KeRYV9A== /jest-config/26.5.3: dependencies: - '@babel/core': 7.12.0 + '@babel/core': 7.12.3 '@jest/test-sequencer': 26.5.3 '@jest/types': 26.5.2 - babel-jest: 26.5.2_@babel+core@7.12.0 + babel-jest: 26.5.2_@babel+core@7.12.3 chalk: 4.1.0 deepmerge: 4.2.2 glob: 7.1.6 @@ -16386,7 +16384,7 @@ packages: '@jest/environment': 26.5.2 '@jest/fake-timers': 26.5.2 '@jest/types': 26.5.2 - '@types/node': 14.11.8 + '@types/node': 14.11.10 jest-mock: 26.5.2 jest-util: 26.5.2 jsdom: 16.4.0 @@ -16399,7 +16397,7 @@ packages: '@jest/environment': 26.5.2 '@jest/fake-timers': 26.5.2 '@jest/types': 26.5.2 - '@types/node': 14.11.8 + '@types/node': 14.11.10 jest-mock: 26.5.2 jest-util: 26.5.2 engines: @@ -16450,7 +16448,7 @@ packages: dependencies: '@jest/types': 26.5.2 '@types/graceful-fs': 4.1.3 - '@types/node': 14.11.8 + '@types/node': 14.11.10 anymatch: 3.1.1 fb-watchman: 2.0.1 graceful-fs: 4.2.4 @@ -16469,12 +16467,12 @@ packages: integrity: sha512-lJIAVJN3gtO3k4xy+7i2Xjtwh8CfPcH08WYjZpe9xzveDaqGw9fVNCpkYu6M525wKFVkLmyi7ku+DxCAP1lyMA== /jest-jasmine2/26.5.3: dependencies: - '@babel/traverse': 7.12.0 + '@babel/traverse': 7.12.1 '@jest/environment': 26.5.2 '@jest/source-map': 26.5.0 '@jest/test-result': 26.5.2 '@jest/types': 26.5.2 - '@types/node': 14.11.8 + '@types/node': 14.11.10 chalk: 4.1.0 co: 4.6.0 expect: 26.5.3 @@ -16560,7 +16558,7 @@ packages: /jest-mock/26.5.2: dependencies: '@jest/types': 26.5.2 - '@types/node': 14.11.8 + '@types/node': 14.11.10 engines: node: '>= 10.14.2' resolution: @@ -16646,9 +16644,9 @@ packages: '@jest/environment': 26.5.2 '@jest/test-result': 26.5.2 '@jest/types': 26.5.2 - '@types/node': 14.11.8 + '@types/node': 14.11.10 chalk: 4.1.0 - emittery: 0.7.1 + emittery: 0.7.2 exit: 0.1.2 graceful-fs: 4.2.4 jest-config: 26.5.3 @@ -16676,7 +16674,7 @@ packages: '@jest/test-result': 26.5.2 '@jest/transform': 26.5.2 '@jest/types': 26.5.2 - '@types/yargs': 15.0.8 + '@types/yargs': 15.0.9 chalk: 4.1.0 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -16701,7 +16699,7 @@ packages: integrity: sha512-IDjalmn2s/Tc4GvUwhPHZ0iaXCdMRq5p6taW9P8RpU+FpG01O3+H8z+p3rDCQ9mbyyyviDgxy/LHPLzrIOKBkQ== /jest-serializer/26.5.0: dependencies: - '@types/node': 14.11.8 + '@types/node': 14.11.10 graceful-fs: 4.2.4 engines: node: '>= 10.14.2' @@ -16709,10 +16707,10 @@ packages: integrity: sha512-+h3Gf5CDRlSLdgTv7y0vPIAoLgX/SI7T4v6hy+TEXMgYbv+ztzbg5PSN6mUXAT/hXYHvZRWm+MaObVfqkhCGxA== /jest-snapshot/26.5.3: dependencies: - '@babel/types': 7.12.0 + '@babel/types': 7.12.1 '@jest/types': 26.5.2 '@types/babel__traverse': 7.0.15 - '@types/prettier': 2.1.2 + '@types/prettier': 2.1.5 chalk: 4.1.0 expect: 26.5.3 graceful-fs: 4.2.4 @@ -16732,7 +16730,7 @@ packages: /jest-util/26.5.2: dependencies: '@jest/types': 26.5.2 - '@types/node': 14.11.8 + '@types/node': 14.11.10 chalk: 4.1.0 graceful-fs: 4.2.4 is-ci: 2.0.0 @@ -16774,7 +16772,7 @@ packages: dependencies: '@jest/test-result': 26.5.2 '@jest/types': 26.5.2 - '@types/node': 14.11.8 + '@types/node': 14.11.10 ansi-escapes: 4.3.1 chalk: 4.1.0 jest-util: 26.5.2 @@ -16794,7 +16792,7 @@ packages: integrity: sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== /jest-worker/26.5.0: dependencies: - '@types/node': 14.11.8 + '@types/node': 14.11.10 merge-stream: 2.0.0 supports-color: 7.2.0 engines: @@ -16977,10 +16975,10 @@ packages: integrity: sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= /json.macro/1.3.0: dependencies: - '@babel/core': 7.12.0 - '@babel/parser': 7.12.0 - '@babel/runtime': 7.12.0 - '@babel/types': 7.12.0 + '@babel/core': 7.12.3 + '@babel/parser': 7.12.3 + '@babel/runtime': 7.12.1 + '@babel/types': 7.12.1 '@sindresorhus/is': 2.1.1 '@types/babel-plugin-macros': 2.8.3 '@types/lodash.get': 4.4.6 @@ -16999,10 +16997,10 @@ packages: integrity: sha512-UR1LCQFGx0hBwVm95d+Qq/A0MJKOh2VfIVn9rhbyswD12UrSNVWbqLucyZvLDQ6RM27yxZS86vnut6g92NONPw== /json.macro/1.3.0_babel-plugin-macros@2.8.0: dependencies: - '@babel/core': 7.12.0 - '@babel/parser': 7.12.0 - '@babel/runtime': 7.12.0 - '@babel/types': 7.12.0 + '@babel/core': 7.12.3 + '@babel/parser': 7.12.3 + '@babel/runtime': 7.12.1 + '@babel/types': 7.12.1 '@sindresorhus/is': 2.1.1 '@types/babel-plugin-macros': 2.8.3 '@types/lodash.get': 4.4.6 @@ -17049,7 +17047,6 @@ packages: resolution: integrity: sha512-hk/69oAeaIzchq/v3lS50PXuzn5O2ynldopMC+SWBql7J2WtdptfB9dy8Y7+Og5rPkTCpn83zTiO8FMcqlXJ/g== /jsondiffpatch/0.4.1: - bundledDependencies: [] dependencies: chalk: 2.4.2 diff-match-patch: 1.0.5 @@ -17258,7 +17255,7 @@ packages: integrity: sha1-uRkKT5EzVGlIQIWfio9whNiCImQ= /lazy-universal-dotenv/3.0.1: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 app-root-dir: 1.0.2 core-js: 3.6.5 dotenv: 8.2.0 @@ -17326,12 +17323,12 @@ packages: integrity: sha512-cqsVIMPgFlDtgQcpkt7HOY6W3sbYPIe3qxMnbRSwHTgiQancgm+TRDPx28mC6GUZ6lG6Nr0bIWf4Nog6dWUNUg== /linaria/2.0.0-rc.3: dependencies: - '@babel/generator': 7.12.0 - '@babel/plugin-proposal-export-namespace-from': 7.12.0 + '@babel/generator': 7.12.1 + '@babel/plugin-proposal-export-namespace-from': 7.12.1 '@babel/plugin-syntax-dynamic-import': 7.8.3 - '@babel/plugin-transform-modules-commonjs': 7.10.4 - '@babel/plugin-transform-runtime': 7.12.0 - '@babel/plugin-transform-template-literals': 7.10.5 + '@babel/plugin-transform-modules-commonjs': 7.12.1 + '@babel/plugin-transform-runtime': 7.12.1 + '@babel/plugin-transform-template-literals': 7.12.1 '@babel/template': 7.10.4 '@emotion/is-prop-valid': 0.8.8 babel-plugin-transform-react-remove-prop-types: 0.4.24 @@ -17356,15 +17353,15 @@ packages: '@babel/core': '>=7' resolution: integrity: sha512-aIcVEOg4dLJbTDDl6FMqp3fJx9BKP+T3qg9QePlSvhWD35CeANOfNSRBDq5HnfTkOVx2iQ8gMZTe7wdm1WlzKA== - /linaria/2.0.0-rc.3_@babel+core@7.12.0: - dependencies: - '@babel/core': 7.12.0 - '@babel/generator': 7.12.0 - '@babel/plugin-proposal-export-namespace-from': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.0 - '@babel/plugin-transform-modules-commonjs': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-runtime': 7.12.0_@babel+core@7.12.0 - '@babel/plugin-transform-template-literals': 7.10.5_@babel+core@7.12.0 + /linaria/2.0.0-rc.3_@babel+core@7.12.3: + dependencies: + '@babel/core': 7.12.3 + '@babel/generator': 7.12.1 + '@babel/plugin-proposal-export-namespace-from': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-runtime': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-template-literals': 7.12.1_@babel+core@7.12.3 '@babel/template': 7.10.4 '@emotion/is-prop-valid': 0.8.8 babel-plugin-transform-react-remove-prop-types: 0.4.24 @@ -17399,7 +17396,7 @@ packages: /lines-and-columns/1.1.6: resolution: integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= - /lint-staged/10.4.0: + /lint-staged/10.4.2: dependencies: chalk: 4.1.0 cli-truncate: 2.1.0 @@ -17419,7 +17416,7 @@ packages: dev: false hasBin: true resolution: - integrity: sha512-uaiX4U5yERUSiIEQc329vhCTDDwUcSvKdRLsNomkYLRzijk3v8V9GWm2Nz0RMVB87VcuzLvtgy6OsjoH++QHIg== + integrity: sha512-OLCA9K1hS+Sl179SO6kX0JtnsaKj/MZalEhUj5yAgXsb63qPI/Gfn6Ua1KuZdbfkZNEu3/n5C/obYCu70IMt9g== /list-item/1.1.1: dependencies: expand-range: 1.8.2 @@ -18086,13 +18083,13 @@ packages: hasBin: true resolution: integrity: sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg== - /match-sorter/4.2.1: + /match-sorter/5.0.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 remove-accents: 0.4.2 dev: false resolution: - integrity: sha512-s+3h9TiZU9U1pWhIERHf8/f4LmBN6IXaRgo2CI17+XGByGS1GvG5VvXK9pcGyCjGe3WM3mSYRC3ipGrd5UEVgw== + integrity: sha512-q0O1lupUikgSwuefn91pVzmF5YQJHQprltxuaipDE5aAhXDHUkwtxfpvP5utTjoe3hpxgWaFPEiCJf8IsF6T+Q== /material-colors/1.2.6: dev: false resolution: @@ -18452,7 +18449,7 @@ packages: integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== /mini-create-react-context/0.4.0_prop-types@15.7.2+react@16.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 prop-types: 15.7.2 react: 16.14.0 tiny-warning: 1.0.3 @@ -19019,7 +19016,7 @@ packages: '@jimp/plugin-resize': 0.16.1_@jimp+custom@0.16.1 '@jimp/types': 0.16.1_@jimp+custom@0.16.1 '@types/lodash': 4.14.162 - '@types/node': 10.17.39 + '@types/node': 10.17.40 lodash: 4.17.20 url: 0.11.0 dev: false @@ -19982,17 +19979,17 @@ packages: /parcel-bundler/1.12.4: dependencies: '@babel/code-frame': 7.10.4 - '@babel/core': 7.12.0 - '@babel/generator': 7.12.0 - '@babel/parser': 7.12.0 - '@babel/plugin-transform-flow-strip-types': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-modules-commonjs': 7.10.4_@babel+core@7.12.0 - '@babel/plugin-transform-react-jsx': 7.10.4_@babel+core@7.12.0 - '@babel/preset-env': 7.12.0_@babel+core@7.12.0 - '@babel/runtime': 7.12.0 + '@babel/core': 7.12.3 + '@babel/generator': 7.12.1 + '@babel/parser': 7.12.3 + '@babel/plugin-transform-flow-strip-types': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-react-jsx': 7.12.1_@babel+core@7.12.3 + '@babel/preset-env': 7.12.1_@babel+core@7.12.3 + '@babel/runtime': 7.12.1 '@babel/template': 7.10.4 - '@babel/traverse': 7.12.0 - '@babel/types': 7.12.0 + '@babel/traverse': 7.12.1 + '@babel/types': 7.12.1 '@iarna/toml': 2.2.5 '@parcel/fs': 1.11.0 '@parcel/logger': 1.11.1 @@ -20017,7 +20014,7 @@ packages: fast-glob: 2.2.7 filesize: 3.6.1 get-port: 3.2.0 - htmlnano: 0.2.6 + htmlnano: 0.2.7 is-glob: 4.0.1 is-url: 1.2.4 js-yaml: 3.14.0 @@ -20543,7 +20540,7 @@ packages: integrity: sha512-6XYcNkXWGiJ2CVXogTP7uJ6ZXQCldYLZc16wgRp8tqRaBTTyIfF+TUT3EQJPXTLAT7OTPpTAoaFdoXKfaTRU1w== /polished/3.6.7: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 dev: false engines: node: '>=10' @@ -20938,7 +20935,7 @@ packages: integrity: sha1-thTJcgvmgW6u41+zpfqh26agXds= /postcss-modules-extract-imports/2.0.0: dependencies: - postcss: 7.0.29 + postcss: 7.0.35 dev: false engines: node: '>= 6' @@ -20971,7 +20968,7 @@ packages: integrity: sha1-1upkmUx5+XtipytCb75gVqGUu5A= /postcss-modules-scope/2.2.0: dependencies: - postcss: 7.0.29 + postcss: 7.0.35 postcss-selector-parser: 6.0.4 dev: false engines: @@ -20988,7 +20985,7 @@ packages: /postcss-modules-values/3.0.0: dependencies: icss-utils: 4.1.1 - postcss: 7.0.29 + postcss: 7.0.35 dev: false resolution: integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg== @@ -21372,7 +21369,7 @@ packages: node: '>=6.0.0' resolution: integrity: sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== - /postcss/8.1.1: + /postcss/8.1.2: dependencies: colorette: 1.2.1 line-column: 1.0.2 @@ -21382,7 +21379,7 @@ packages: engines: node: ^10 || ^12 || >=14 resolution: - integrity: sha512-9DGLSsjooH3kSNjTZUOt2eIj2ZTW0VI2PZ/3My+8TC7KIbH2OKwUlISfDsf63EP4aiRUt3XkEWMWvyJHvJelEg== + integrity: sha512-mToqEVFq8jF9TFhlIK4HhE34zknFJuNTgqtsr60vUvrWn+9TIYugCwiV1JZRxCuOrej2jjstun1bn4Bc7/1HkA== /posthtml-parser/0.4.2: dependencies: htmlparser2: 3.10.1 @@ -21500,13 +21497,13 @@ packages: hasBin: true resolution: integrity: sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg== - /pretty-error/2.1.1: + /pretty-error/2.1.2: dependencies: - renderkid: 2.0.3 - utila: 0.4.0 + lodash: 4.17.20 + renderkid: 2.0.4 dev: false resolution: - integrity: sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM= + integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw== /pretty-format/22.4.3: dependencies: ansi-regex: 3.0.0 @@ -21697,7 +21694,7 @@ packages: integrity: sha512-kj4Qi+8h3EpJtZuuEDwZ9h2/QNGWDsIX/CzjmClxi9GhxWyBUMVUvIFk0mgdqHyX20lLeGmOpc0TLA5aPzgpWg== /prosemirror-dev-tools/3.0.2_react-dom@16.14.0+react@16.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 '@emotion/core': 10.0.35_react@16.14.0 '@emotion/styled': 10.0.27_949b6c0dd132c1257a107ce4fd67d629 emotion: 10.0.27 @@ -22247,8 +22244,8 @@ packages: integrity: sha512-AbLGMtn76bn7SYBJSSaKJrZ0lgNRRR3qL60PucM5M4v/AXyC8221cKBXW5Pyt9TfDRfe+LDnPNlg7TibxX0ovA== /react-docgen/5.3.0: dependencies: - '@babel/core': 7.12.0 - '@babel/runtime': 7.12.0 + '@babel/core': 7.12.3 + '@babel/runtime': 7.12.1 ast-types: 0.13.4 commander: 2.20.3 doctrine: 3.0.0 @@ -22300,7 +22297,7 @@ packages: integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA== /react-helmet-async/1.0.7_react-dom@16.14.0+react@16.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 invariant: 2.2.4 prop-types: 15.7.2 react: 16.14.0 @@ -22336,7 +22333,7 @@ packages: integrity: sha512-3n3OU8vLX/pfcJrR3xJ1zlww6KS1kEJt0Whxc4FiGV+MJrQ1mYSYI3qS/11d2MJDFm8IhOXMTFQirfu6AVOF6Q== /react-inspector/5.1.0_react@16.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 is-dom: 1.1.0 prop-types: 15.7.2 react: 16.14.0 @@ -22400,7 +22397,7 @@ packages: integrity: sha512-kJYAzKnPsR4oXleAX9lLsJA330BhTmSWHhr3ienZA2E/0eFDRodGl3I7sge8pp1vjc2K5Aaz73KpFUnV7Lq/DQ== /react-loadable-ssr-addon/0.3.0_ca51b9f44b4cc13ef52a819c1f252788: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 react-loadable: 5.5.0_react@16.14.0 webpack: 4.44.2_webpack@4.44.2 dev: false @@ -22422,7 +22419,7 @@ packages: integrity: sha512-C8Aui0ZpMd4KokxRdVAm2bQtI03k2RMRNzOB+IipV3yxFTSVICv7WoUr5L9ALB5BmKO1iHgZtWM8EvYG83otdg== /react-popper-tooltip/2.11.1_react-dom@16.14.0+react@16.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 react-popper: 1.3.7_react@16.14.0 @@ -22434,7 +22431,7 @@ packages: integrity: sha512-04A2f24GhyyMicKvg/koIOQ5BzlrRbKiAgP6L+Pdj1MVX3yJ1NeZ8+EidndQsbejFT55oW1b++wg2Z8KlAyhfQ== /react-popper/1.3.7_react@16.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 create-react-context: 0.3.0_prop-types@15.7.2+react@16.14.0 deep-equal: 1.1.1 popper.js: 1.16.1 @@ -22469,7 +22466,7 @@ packages: integrity: sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg== /react-router-config/5.1.1_react-router@5.2.0+react@16.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 react: 16.14.0 react-router: 5.2.0_react@16.14.0 dev: false @@ -22480,7 +22477,7 @@ packages: integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg== /react-router-dom/5.2.0_react@16.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 history: 4.10.1 loose-envify: 1.4.0 prop-types: 15.7.2 @@ -22495,7 +22492,7 @@ packages: integrity: sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA== /react-router/5.2.0_react@16.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 history: 4.10.1 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 @@ -22545,7 +22542,7 @@ packages: integrity: sha512-tL4sCgfmvapYRZ1FO2VmBmjPVzzqgHA7kI8lSJ6JS6L78jXFNRdOZFpXyK6P1NBZvKPPCZxReNgzZNUajAerZw== /react-syntax-highlighter/12.2.1_react@16.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 highlight.js: 9.15.10 lowlight: 1.12.1 prismjs: 1.22.0 @@ -22577,12 +22574,12 @@ packages: react: '>=0.14.0 <17.0.0' resolution: integrity: sha512-F6bI1dgib6fSvG8so1HuArPUv+iVEfPliuLWusLF+gAKz0FbB4jLrWUrTAeq1afnPT2c9toEZYUdz/y1uKMy4A== - /react-textarea-autosize/8.2.0_635794461cba32ce970f62d2fbacf5f9: + /react-textarea-autosize/8.2.0_6e8834a71204835dd543aa9883583486: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 react: 16.14.0 use-composed-ref: 1.0.0_react@16.14.0 - use-latest: 1.1.0_635794461cba32ce970f62d2fbacf5f9 + use-latest: 1.1.0_6e8834a71204835dd543aa9883583486 dev: false peerDependencies: '@types/react': '*' @@ -22909,7 +22906,7 @@ packages: integrity: sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== /regenerator-transform/0.14.5: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 dev: false resolution: integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== @@ -23121,16 +23118,16 @@ packages: /remove-trailing-separator/1.1.0: resolution: integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8= - /renderkid/2.0.3: + /renderkid/2.0.4: dependencies: css-select: 1.2.0 dom-converter: 0.2.0 htmlparser2: 3.10.1 + lodash: 4.17.20 strip-ansi: 3.0.1 - utila: 0.4.0 dev: false resolution: - integrity: sha512-z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA== + integrity: sha512-K2eXrSOJdq+HuKzlcjOlGoOarUu5SDguDEhE7+Ah4zuOWL40j8A/oHvLlLob9PSTNvVnBd+/q0Er1QfpEuem5g== /repeat-element/1.1.3: engines: node: '>=0.10.0' @@ -23399,7 +23396,7 @@ packages: dev: false resolution: integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== - /rollup/2.30.0: + /rollup/2.32.0: dev: false engines: node: '>=10.0.0' @@ -23407,7 +23404,7 @@ packages: optionalDependencies: fsevents: 2.1.3 resolution: - integrity: sha512-j4K1hUZfgFM03DUpayd3c7kZW+2wDbI6rj7ssQxpCpL1vsGpaM0vSorxBuePFwQDFq9O2DI6AOQbm174Awsq4w== + integrity: sha512-0FIG1jY88uhCP2yP4CfvtKEqPDRmsUwfY1kEOOM+DH/KOGATgaIFd/is1+fQOxsvh62ELzcFfKonwKWnHhrqmw== /rope-sequence/1.3.2: dev: false resolution: @@ -23419,7 +23416,7 @@ packages: integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== /rtl-css-js/1.14.0: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 dev: false resolution: integrity: sha512-Dl5xDTeN3e7scU1cWX8c9b6/Nqz3u/HgR4gePc1kWXYiQWVQbKCEyK6+Hxve9LbcJ5EieHy1J9nJCN3grTtGwg== @@ -23503,7 +23500,7 @@ packages: is-plain-object: 5.0.0 klona: 2.0.4 parse-srcset: 1.0.2 - postcss: 8.1.1 + postcss: 8.1.2 dev: false resolution: integrity: sha512-KmMfD0jJGigON1Ll0snYz6QgK+L3wYoi6Zl4jSUZT/rg5Pw55zIKAQSjCiZmxL5izM+qJSFr+PW9WGHuiYobgA== @@ -24275,27 +24272,31 @@ packages: /spdx-license-ids/3.0.6: resolution: integrity: sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw== - /spdy-transport/3.0.0: + /spdy-transport/3.0.0_supports-color@6.1.0: dependencies: - debug: 4.2.0 + debug: 4.2.0_supports-color@6.1.0 detect-node: 2.0.4 hpack.js: 2.1.6 obuf: 1.1.2 readable-stream: 3.6.0 wbuf: 1.7.3 dev: false + peerDependencies: + supports-color: '*' resolution: integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== - /spdy/4.0.2: + /spdy/4.0.2_supports-color@6.1.0: dependencies: - debug: 4.2.0 + debug: 4.2.0_supports-color@6.1.0 handle-thing: 2.0.1 http-deceiver: 1.2.7 select-hose: 2.0.0 - spdy-transport: 3.0.0 + spdy-transport: 3.0.0_supports-color@6.1.0 dev: false engines: node: '>=6.0.0' + peerDependencies: + supports-color: '*' resolution: integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== /split-string/3.1.0: @@ -24819,8 +24820,8 @@ packages: integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA== /styled-components/5.2.0_db4f3e01d4af257720225b5fb3df6ceb: dependencies: - '@babel/helper-module-imports': 7.10.4 - '@babel/traverse': 7.12.0_supports-color@5.5.0 + '@babel/helper-module-imports': 7.12.1 + '@babel/traverse': 7.12.1_supports-color@5.5.0 '@emotion/is-prop-valid': 0.8.8 '@emotion/stylis': 0.8.5 '@emotion/unitless': 0.7.5 @@ -26179,9 +26180,9 @@ packages: react: ^16.8.0 resolution: integrity: sha512-RVqY3NFNjZa0xrmK3bIMWNmQ01QjKPDc7DeWR3xa/N8aliVppuutOE5bZzPkQfvL+5NRWMMp0DJ99Trd974FIw== - /use-isomorphic-layout-effect/1.0.0_635794461cba32ce970f62d2fbacf5f9: + /use-isomorphic-layout-effect/1.0.0_6e8834a71204835dd543aa9883583486: dependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 react: 16.14.0 dev: false peerDependencies: @@ -26192,11 +26193,11 @@ packages: optional: true resolution: integrity: sha512-JMwJ7Vd86NwAt1jH7q+OIozZSIxA4ND0fx6AsOe2q1H8ooBUp5aN6DvVCqZiIaYU6JaMRJGyR0FO7EBCIsb/Rg== - /use-latest/1.1.0_635794461cba32ce970f62d2fbacf5f9: + /use-latest/1.1.0_6e8834a71204835dd543aa9883583486: dependencies: - '@types/react': 16.9.52 + '@types/react': 16.9.53 react: 16.14.0 - use-isomorphic-layout-effect: 1.0.0_635794461cba32ce970f62d2fbacf5f9 + use-isomorphic-layout-effect: 1.0.0_6e8834a71204835dd543aa9883583486 dev: false peerDependencies: '@types/react': '*' @@ -26206,11 +26207,11 @@ packages: optional: true resolution: integrity: sha512-gF04d0ZMV3AMB8Q7HtfkAWe+oq1tFXP6dZKwBHQF5nVXtGsh2oAYeeqma5ZzxtlpOcW8Ro/tLcfmEodjDeqtuw== - /use-onclickoutside/0.3.1_635794461cba32ce970f62d2fbacf5f9: + /use-onclickoutside/0.3.1_6e8834a71204835dd543aa9883583486: dependencies: are-passive-events-supported: 1.1.1 react: 16.14.0 - use-latest: 1.1.0_635794461cba32ce970f62d2fbacf5f9 + use-latest: 1.1.0_6e8834a71204835dd543aa9883583486 dev: false peerDependencies: '@types/react': '*' @@ -26536,7 +26537,7 @@ packages: /watchpack/1.7.4: dependencies: graceful-fs: 4.2.4 - neo-async: 2.6.1 + neo-async: 2.6.2 dev: false optionalDependencies: chokidar: 3.4.3 @@ -26629,7 +26630,7 @@ packages: chokidar: 2.1.8 compression: 1.7.4 connect-history-api-fallback: 1.6.0 - debug: 4.2.0 + debug: 4.2.0_supports-color@6.1.0 del: 4.1.1 express: 4.17.1 html-entities: 1.3.1 @@ -26649,7 +26650,7 @@ packages: serve-index: 1.9.1 sockjs: 0.3.20 sockjs-client: 1.4.0 - spdy: 4.0.2 + spdy: 4.0.2_supports-color@6.1.0 strip-ansi: 3.0.1 supports-color: 6.1.0 url: 0.11.0 @@ -26731,7 +26732,7 @@ packages: eslint-scope: 4.0.3 json-parse-better-errors: 1.0.2 loader-runner: 2.4.0 - loader-utils: 1.2.3 + loader-utils: 1.4.0 memory-fs: 0.4.1 micromatch: 3.1.10 mkdirp: 0.5.3 @@ -27096,16 +27097,12 @@ packages: node: '>=0.4' resolution: integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - /xxhash-wasm/0.4.0: - dev: false - resolution: - integrity: sha512-jCFDE9zSkItI//25A/Pb27r88s6zjkXsajy/dUMWr1XqiHhlrZIRxG3GxDnBcY5KKjRKi713iaDfAKjXrkboog== /y-prosemirror/0.3.7_yjs@13.4.1: dependencies: - '@rollup/plugin-commonjs': 15.1.0_rollup@2.30.0 - '@rollup/plugin-node-resolve': 9.0.0_rollup@2.30.0 + '@rollup/plugin-commonjs': 15.1.0_rollup@2.32.0 + '@rollup/plugin-node-resolve': 9.0.0_rollup@2.32.0 lib0: 0.2.34 - rollup: 2.30.0 + rollup: 2.32.0 yjs: 13.4.1 dev: false peerDependencies: @@ -27257,7 +27254,7 @@ packages: integrity: sha512-YnOmtSbv4MTf7RGJMK0FvZ+KD8OEe/J5BNnR0GHhD8J/XcG/Qvxgszm0Un6FTHWW4uHlTgP0IztiXQnGyIR45g== /yup/0.29.3: dependencies: - '@babel/runtime': 7.12.0 + '@babel/runtime': 7.12.1 fn-name: 3.0.0 lodash: 4.17.20 lodash-es: 4.17.15 diff --git a/support/examples/with-next/package.json b/support/examples/with-next/package.json index 6ad25d3d71..7712aac563 100644 --- a/support/examples/with-next/package.json +++ b/support/examples/with-next/package.json @@ -19,7 +19,7 @@ "remirror": "1.0.0-next.50" }, "devDependencies": { - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "@types/react-dom": "^16.9.8", "@types/refractor": "^3.0.0" } diff --git a/support/package.json b/support/package.json index 2f7de8ef99..5e227e5894 100644 --- a/support/package.json +++ b/support/package.json @@ -11,7 +11,7 @@ "@changesets/types": "^3.2.0", "@types/autoprefixer": "^9.7.2", "@types/lodash.groupby": "^4.6.6", - "@types/prettier": "^2.1.2", + "@types/prettier": "^2.1.5", "@types/rimraf": "^3.0.0", "autoprefixer": "^9.8.6", "chalk": "^4.1.0", diff --git a/support/storybook/package.json b/support/storybook/package.json index 73f5f97ab1..03676678ab 100644 --- a/support/storybook/package.json +++ b/support/storybook/package.json @@ -9,14 +9,14 @@ "storybook": "start-storybook -p 6006 -c ./" }, "dependencies": { - "@babel/core": "^7.12.0", + "@babel/core": "^7.12.3", "@remirror/pm": "1.0.0-next.50", "@remirror/showcase": "1.0.0-next.50", "@storybook/addon-actions": "^6.0.26", "@storybook/addon-links": "^6.0.26", "@storybook/addons": "^6.0.26", "@storybook/react": "^6.0.26", - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "@types/react-dom": "^16.9.8", "@types/webpack": "^4.41.22", "babel-loader": "^8.1.0", diff --git a/support/website/package.json b/support/website/package.json index 99a3938776..2742141ff7 100644 --- a/support/website/package.json +++ b/support/website/package.json @@ -39,7 +39,7 @@ "devDependencies": { "@docusaurus/module-type-aliases": "2.0.0-alpha.65", "@docusaurus/types": "2.0.0-alpha.65", - "@types/react": "^16.9.52", + "@types/react": "^16.9.53", "@types/react-dom": "^16.9.8", "babel-plugin-dynamic-import-node": "^2.3.3", "monaco-editor-webpack-plugin": "^2.0.0"