diff --git a/.circleci/config.yml b/.circleci/config.yml
index 559a044de6..6ddeb45370 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -31,17 +31,18 @@ jobs:
- restore_cache:
name: Restore pnpm-lock.yaml
keys:
- - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-20
+ - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-25
- run: {name: 'Install packages', command: 'node common/scripts/install-run-rush.js install'}
- save_cache:
name: Save NPM cache
- key: root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-20
+ key: root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-25
paths:
- common
- packages/assets/node_modules
- packages/react/node_modules
- packages/patternlab/styleguide/node_modules
- packages/site/node_modules
+ - packages/core/node_modules
patternlab_build:
<<: *patternlab_defaults
@@ -50,7 +51,7 @@ jobs:
- restore_cache:
name: Restore NPM Cache
keys:
- - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-20
+ - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-25
- run: { name: 'Build', command: 'cd packages/patternlab/styleguide && node ../../../common/scripts/install-run-rushx.js build'}
- persist_to_workspace:
root: ~/code
@@ -171,7 +172,7 @@ jobs:
- checkout
- restore_cache:
keys:
- - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-20
+ - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-25
- run:
name: Mayflower React Build
command: cd packages/react && node ../../common/scripts/install-run-rushx.js build
@@ -242,6 +243,44 @@ jobs:
aws cloudfront create-invalidation --distribution-id $AWS_DISTRIBUTION_ID --paths '/react*'
fi
+
+ core_build_storybook:
+ <<: *patternlab_defaults
+ steps:
+ - checkout
+ - restore_cache:
+ keys:
+ - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-25
+ - run:
+ name: Mayflower React NPM Package Build
+ command: cd packages/react && node ../../common/scripts/install-run-rushx.js build
+ - run:
+ name: Mayflower Core Linter
+ command: cd packages/core && node ../../common/scripts/install-run-rushx.js lint
+ - run:
+ name: Mayflower Core Storybook Build
+ command: cd packages/core && node ../../common/scripts/install-run-rushx.js build
+ - persist_to_workspace:
+ root: ~/code
+ paths: ["*"]
+
+ core_deploy_tag:
+ <<: *patternlab_defaults
+ steps:
+ - attach_workspace:
+ at: ~/code
+ - run: |
+ # Only sync to S3 for stable tags.
+ if [[ "$CIRCLE_TAG" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
+ sudo apt-get update && sudo apt-get -y -qq install awscli
+ cd packages/core
+ aws s3 sync storybook-static "s3://mayflower.digital.mass.gov/core/v/$CIRCLE_TAG" --delete
+ # Use cp instead of sync for root copy. sync lists all keys and is too slow.
+ aws s3 cp --recursive storybook-static "s3://mayflower.digital.mass.gov/core"
+ aws configure set preview.cloudfront true
+ aws cloudfront create-invalidation --distribution-id $AWS_DISTRIBUTION_ID --paths '/core*'
+ fi
+
auto_changelog:
<<: *react_defaults
steps:
@@ -262,7 +301,7 @@ jobs:
- *no_host_check
- restore_cache:
keys:
- - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-20
+ - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-25
- run: sudo npm install -g js-yaml@3.13.1 @octokit/rest semver@6.3.0 shelljs@0.8.3 simple-git@1.126.0
# Identify the committer i.e. CircleCI deployment bot
- run: git config --global user.email "circleci@example.com"
@@ -276,7 +315,7 @@ jobs:
- *no_host_check
- restore_cache:
keys:
- - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-20
+ - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-25
- run: sudo npm install -g js-yaml@3.13.1 @octokit/rest semver@6.3.0 shelljs@0.8.3 simple-git@1.126.0
# Identify the committer i.e. CircleCI deployment bot
- run: git config --global user.email "circleci@example.com"
@@ -290,7 +329,7 @@ jobs:
- checkout
- restore_cache:
keys:
- - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-20
+ - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-25
- run: { name: 'Build', command: 'cd packages/assets && node ../../common/scripts/install-run-rushx.js build'}
- run:
name: Mayflower Style Linter
@@ -303,7 +342,7 @@ jobs:
- *configure_npm
- restore_cache:
keys:
- - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-20
+ - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-25
- run:
name: 'Publish mayflower-assets NPM package'
command: |
@@ -321,7 +360,7 @@ jobs:
- checkout
- restore_cache:
keys:
- - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-20
+ - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-25
- run: cd packages/react && node ../../common/scripts/install-run-rushx.js build
- run:
name: Validate Package Build
@@ -368,15 +407,15 @@ workflows:
- patternlab_build:
requires: [build]
filters:
- branches: { ignore: /(docs|react\/|site\/).*/ }
+ branches: { ignore: /(docs|react\/|site\/|core\/).*/ }
- patternlab_deploy_branch:
requires: [patternlab_build]
filters:
- branches: { ignore: /(docs|react\/|site\/).*/ }
+ branches: { ignore: /(docs|react\/|site\/|core\/).*/ }
- patternlab_test:
requires: [patternlab_build]
filters:
- branches: { ignore: /(docs|react\/|site\/).*/ }
+ branches: { ignore: /(docs|react\/|site\/|core\/).*/ }
# react
- react_build_storybook:
requires: [build]
@@ -385,15 +424,19 @@ workflows:
- react_test:
requires: [react_build_storybook]
filters:
- branches: { ignore: /(docs|patternlab\/|site\/).*/ }
+ branches: { ignore: /(docs|patternlab\/|site\/|core\/).*/ }
# site
- site_build:
requires: [react_build_storybook]
filters:
- branches: { ignore: /(docs|patternlab\/|react\/).*/ }
+ branches: { ignore: /(docs|patternlab\/|react\/|core\/).*/ }
+ # core
+ - core_build_storybook:
+ requires: [build]
+ filters:
+ branches: { ignore: /(docs|patternlab\/|site\/).*/ }
# Release branch automation every Monday at 2:00 p.m. ET "00 18 * * 1"
- # Release branch automation every Monday at 3:45 p.m. ET "45 19 * * 1" (temp)
release:
jobs:
- build
@@ -401,7 +444,7 @@ workflows:
requires: [build]
triggers:
- schedule:
- cron: "45 19 * * 1"
+ cron: "00 18 * * 1"
filters:
branches:
only:
@@ -445,6 +488,7 @@ workflows:
branches: { ignore: /.*/ }
tags: { only: /.*/ }
- react_build_storybook:
+ requires: [build]
filters:
branches: { ignore: /.*/ }
tags: { only: /.*/ }
@@ -468,3 +512,12 @@ workflows:
filters:
branches: { ignore: /.*/ }
tags: { only: /.*/ }
+ - core_build_storybook:
+ requires: [build]
+ filters:
+ branches: { ignore: /(docs|patternlab\/|site\/).*/ }
+ - core_deploy_tag:
+ requires: [core_build_storybook]
+ filters:
+ branches: { ignore: /.*/ }
+ tags: { only: /.*/ }
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ca3449ba64..ca75fa71a7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,24 @@
# Mayflower Release Notes
All notable changes to this project will be documented in this file.
+## 11.0.0 (12/21/2020)
+### Added
+- (Core) [All] DP-19530: Added the new MVP core storybook documentation site. (#1271)
+- (React) [HeaderHamburger, HamburgerNav, HeaderNav, NavContainer] DP-20321: Addded HeaderHamburger, HamburgerNav, HeaderNav, NavContainer react components. (#1282)
+- (React) [useEventListener, useScript, useWindowWidth] DP-20321: Addded react hooks useEventListener, useScript, useWindowWidth. (#1282)
+- (Patternlab) [Figure] DP-20659: Set up a template for Caspio as a figure variation template. (#1298)
+
+### Changed
+- (Assets) [Header] DP-20321: Refactored header.scss build assets to use header mixed styles. (#1282)
+- (Assets) [03-organisms/_header-hamburger.scss] DP-20321: Modified menu-overlay to work with top set to zero. Updated ma__header__hamburger__nav z-index. (#1282)
+- (React) [Header] DP-20321: Refactored Header to support the full functionality of Header Mixed from patternlab. (#1282)
+- (Patternlab) [Figure] DP-20659: Adjust the optional title and its visibility in all figure variation templates. (#1298)
+
+### Fixed
+- (React, Patternlab, Assets) [FooterLinks] Sync FooterLinks markup between React and Patternlab, consolidate styles in assets. (#1317)
+- (React) [Dependencies] Downgrade react storybook addon versions to fix `.mdx` markdown styling. (#1316)
+- (Assets) [Fonts] Fix Noto Sans loading on IE. (#1311)
+
## 10.4.1 (12/15/2020)
### Fixed
- (Assets) [Fonts] DP-20682: Significantly reduced Noto Sans Latin variable font `.woff` file sizes, from ~900k to ~60k. (#1302)
diff --git a/common/config/rush/command-line.json b/common/config/rush/command-line.json
index 1bb92fba3a..60a9cfc0f3 100644
--- a/common/config/rush/command-line.json
+++ b/common/config/rush/command-line.json
@@ -11,6 +11,14 @@
* "rush my-global-command --help".
*/
"commands": [
+ {
+ "commandKind": "global",
+ "name": "build:assets",
+ "summary": "Runs 'rushx build' for the assets package.",
+ "safeForSimultaneousRushProcesses": true,
+ "allowWarningsInSuccessfulBuild": true,
+ "shellCommand": "cd packages/assets && rushx build"
+ },
{
"commandKind": "global",
"name": "start:react",
@@ -19,6 +27,14 @@
"allowWarningsInSuccessfulBuild": true,
"shellCommand": "cd packages/react && rushx start"
},
+ {
+ "commandKind": "global",
+ "name": "build:react",
+ "summary": "Runs 'rushx build' for the react package.",
+ "safeForSimultaneousRushProcesses": true,
+ "allowWarningsInSuccessfulBuild": true,
+ "shellCommand": "cd packages/react && rushx build"
+ },
{
"commandKind": "global",
"name": "start:patternlab",
@@ -35,6 +51,22 @@
"allowWarningsInSuccessfulBuild": true,
"shellCommand": "cd packages/site && rushx start"
},
+ {
+ "commandKind": "global",
+ "name": "start:core",
+ "summary": "Runs 'rushx start' for the core storybook site package.",
+ "safeForSimultaneousRushProcesses": true,
+ "allowWarningsInSuccessfulBuild": true,
+ "shellCommand": "cd packages/core && rushx start"
+ },
+ {
+ "commandKind": "global",
+ "name": "build:core",
+ "summary": "Runs 'rushx build' for the core storybook site package.",
+ "safeForSimultaneousRushProcesses": true,
+ "allowWarningsInSuccessfulBuild": true,
+ "shellCommand": "cd packages/core && rushx build"
+ },
{
"commandKind": "global",
"name": "backstop:react",
diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml
index 15d2661b59..bf61244718 100644
--- a/common/config/rush/pnpm-lock.yaml
+++ b/common/config/rush/pnpm-lock.yaml
@@ -1,56 +1,52 @@
dependencies:
- '@babel/cli': 7.12.1_@babel+core@7.12.3
- '@babel/core': 7.12.3
- '@babel/parser': 7.12.5
- '@babel/plugin-proposal-class-properties': 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-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-react': 7.12.5_@babel+core@7.12.3
+ '@babel/cli': 7.12.10
+ '@babel/parser': 7.12.11
+ '@babel/plugin-proposal-class-properties': 7.12.1
+ '@babel/plugin-proposal-export-default-from': 7.12.1
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1
+ '@babel/plugin-proposal-optional-chaining': 7.12.7
+ '@babel/plugin-syntax-dynamic-import': 7.8.3
+ '@babel/plugin-transform-runtime': 7.12.10
+ '@babel/preset-react': 7.12.10
'@proscom/gulp-svgr': 0.1.5
'@rush-temp/mayflower': 'file:projects/mayflower.tgz'
'@rush-temp/mayflower-assets': 'file:projects/mayflower-assets.tgz'
- '@rush-temp/mayflower-react': 'file:projects/mayflower-react.tgz'
+ '@rush-temp/mayflower-core': 'file:projects/mayflower-core.tgz_d904222d91dd332e1a97e8de0ecc6d4e'
+ '@rush-temp/mayflower-react': 'file:projects/mayflower-react.tgz_react-is@16.13.1'
'@rush-temp/mayflower-site': 'file:projects/mayflower-site.tgz_13fe6053c740dc31e0c47613a4f26462'
- '@storybook/addon-a11y': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/addon-actions': 6.0.28_react-dom@16.14.0
- '@storybook/addon-controls': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/addon-docs': 6.0.28_906d2630cd406e3c0a61bb9152b26dc1
- '@storybook/addon-links': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/addon-storysource': 6.0.28_react-dom@16.14.0
- '@storybook/addon-viewport': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/addons': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/cli': 6.0.28
- '@storybook/codemod': 6.0.28
- '@storybook/preset-scss': 1.0.3_676d7bba63aef161cee7df81d55967e5
- '@storybook/react': 6.0.28_e022e2c0e03c001c1fe6c7d1c978ba75
- '@storybook/source-loader': 6.0.28_react-dom@16.14.0+react@16.14.0
+ '@storybook/addon-a11y': 6.0.21
+ '@storybook/addon-controls': 6.0.21
+ '@storybook/addon-storysource': 6.0.21
+ '@storybook/addon-viewport': 6.0.21
+ '@storybook/addons': 6.0.21
+ '@storybook/codemod': 6.0.21
+ '@storybook/node-logger': 6.1.11
+ '@storybook/source-loader': 6.0.21
'@svgr/cli': 5.5.0
'@svgr/plugin-jsx': 5.5.0
'@svgr/webpack': 5.5.0
- airbnb-prop-types: 2.16.0_react@16.14.0
+ airbnb-prop-types: 2.16.0
autosuggest-highlight: 3.1.1
b-jsonp: 1.2.0
babel-core: 6.26.3
- babel-eslint: 10.1.0_eslint@7.13.0
- babel-loader: 8.2.1_427212bc1158d185e577033f19ca0757
+ babel-eslint: 10.1.0_eslint@7.15.0
+ babel-loader: 8.2.2_webpack@4.44.2
babel-plugin-add-module-exports: 1.0.4
babel-plugin-dynamic-import-node: 2.3.3
- babel-plugin-module-resolver: 4.0.0
+ babel-plugin-module-resolver: 4.1.0
babel-plugin-remove-import-export: 1.1.1
babel-plugin-rewire-exports: 2.2.0
babel-plugin-transform-import-paths: 1.0.3
babel-plugin-transform-imports: 2.0.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
babel-preset-env: 1.7.0
- babel-preset-proposals: 0.3.0_@babel+core@7.12.3
+ babel-preset-proposals: 0.3.0
babelify: 8.0.0_babel-core@6.26.3
bootstrap: 4.5.3_jquery@3.5.1
browser-sync: 2.26.13
browserify: 16.5.2
child-process-promise: 2.2.1
+ chromatic: 5.3.0
classname: 0.0.0
classnames: 2.2.6
css-loader: 3.6.0_webpack@4.44.2
@@ -59,34 +55,35 @@ dependencies:
dom-helpers: 3.4.0
dotenv: 8.2.0
env-cmd: 10.1.0
- eslint: 7.13.0
- eslint-config-airbnb: 18.2.1_1ba96e5057f09441420006a53a4a64be
+ eslint: 7.15.0
+ eslint-config-airbnb: 18.2.1_82dacb0a2a81988b908259ac316079e5
eslint-import-resolver-alias: 1.1.2_eslint-plugin-import@2.22.1
- eslint-import-resolver-babel-module: 5.2.0_c29e6beeb245c629047b173ad0d8d907
+ eslint-import-resolver-babel-module: 5.2.0_e51044130ac762fd207a8cd2109b5344
eslint-import-resolver-custom-alias: 1.2.0_eslint-plugin-import@2.22.1
- eslint-loader: 4.0.2_eslint@7.13.0+webpack@4.44.2
- eslint-plugin-import: 2.22.1_eslint@7.13.0
+ eslint-loader: 4.0.2_eslint@7.15.0+webpack@4.44.2
+ eslint-plugin-import: 2.22.1_eslint@7.15.0
eslint-plugin-json: 1.4.0
- eslint-plugin-jsx-a11y: 6.4.1_eslint@7.13.0
- eslint-plugin-react: 7.21.5_eslint@7.13.0
- eslint-plugin-react-hooks: 2.5.1_eslint@7.13.0
+ eslint-plugin-jsx-a11y: 6.4.1_eslint@7.15.0
+ eslint-plugin-react: 7.21.5_eslint@7.15.0
+ eslint-plugin-react-hooks: 2.5.1_eslint@7.15.0
esm: 3.2.25
fitvids: 2.1.1
fuse.js: 3.6.1
- gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
- gatsby-image: 2.5.0
- gatsby-plugin-manifest: 2.6.1_gatsby@2.25.4
- gatsby-plugin-offline: 3.4.0_gatsby@2.25.4
+ gatsby: 2.25.4
+ gatsby-image: 2.8.0
+ gatsby-plugin-manifest: 2.9.0_gatsby@2.25.4
+ gatsby-plugin-offline: 3.7.0_gatsby@2.25.4
gatsby-plugin-pnpm: 1.2.5_gatsby@2.25.4
- gatsby-plugin-react-helmet: 3.4.0_gatsby@2.25.4+react-helmet@5.2.1
- gatsby-plugin-sass: 2.5.1_gatsby@2.25.4+webpack@4.44.2
- gatsby-plugin-sharp: 2.8.0_gatsby@2.25.4
- gatsby-source-filesystem: 2.5.0_gatsby@2.25.4
- gatsby-transformer-json: 2.5.0_gatsby@2.25.4
- gatsby-transformer-sharp: 2.6.0_10b77ea86b4a1cd7f6aa12445c9bbb71
+ gatsby-plugin-react-helmet: 3.7.0_gatsby@2.25.4+react-helmet@5.2.1
+ gatsby-plugin-sass: 2.8.0_gatsby@2.25.4+webpack@4.44.2
+ gatsby-plugin-sharp: 2.11.1_gatsby@2.25.4
+ gatsby-source-filesystem: 2.8.0_gatsby@2.25.4
+ gatsby-transformer-json: 2.8.0_gatsby@2.25.4
+ gatsby-transformer-sharp: 2.9.0_45bf498f67fe6e8dcb4a621c3106a185
+ gulp: 4.0.2
gulp-autoprefixer: 5.0.0
- gulp-babel: 8.0.0_@babel+core@7.12.3
- gulp-debug: 4.0.0
+ gulp-babel: 8.0.0
+ gulp-debug: 4.0.0_gulp@4.0.2
gulp-environments: 1.0.1
gulp-filter: 5.1.0
gulp-header: 2.0.9
@@ -106,25 +103,23 @@ dependencies:
normalize-scss: 7.0.1
npm-run-all: 4.1.5
numbro: 2.3.2
- object.entries: 1.1.2
+ object.entries: 1.1.3
picturefill: 3.0.3
pre-push: 0.1.1
- prop-types: 15.7.2
- react: 16.14.0
- react-autosuggest: 9.4.3_react@16.14.0
- react-autowhatever: 10.2.1_react@16.14.0
+ react-autosuggest: 9.4.3
+ react-autowhatever: 10.2.1
react-character-counter: 1.0.1
- react-compound-slider: 0.19.2_react@16.14.0
- react-dom: 16.14.0_react@16.14.0
- react-helmet: 5.2.1_react@16.14.0
- react-html-parser: 2.0.2_react@16.14.0
- react-portal: 4.2.1_react@16.14.0
- react-select: 1.3.0_react-dom@16.14.0+react@16.14.0
- react-table: 6.11.5_0106054ed56650b7cf08997e12b36ef5
- react-transition-group: 2.9.0_react-dom@16.14.0+react@16.14.0
- react-virtualized: 9.22.2_react-dom@16.14.0+react@16.14.0
+ react-compound-slider: 0.19.2
+ react-helmet: 5.2.1
+ react-html-parser: 2.0.2
+ react-is: 16.13.1
+ react-portal: 4.2.1
+ react-select: 1.3.0
+ react-table: 6.11.5
+ react-transition-group: 2.9.0
+ react-virtualized: 9.22.2
resolve-url-loader: 3.1.2
- sass-loader: 8.0.2_webpack@4.44.2
+ sass: 1.30.0
shortid: 2.2.16
smoothscroll-polyfill: 0.4.4
style-loader: 1.3.0_webpack@4.44.2
@@ -135,7 +130,7 @@ dependencies:
svg4everybody: 2.1.9
terser: 4.8.0
through2: 3.0.2
- twig: 1.15.3
+ twig: 1.15.4
undertaker-registry: 1.0.1
untildify: 4.0.0
url-loader: 4.1.1_webpack@4.44.2
@@ -144,6 +139,25 @@ dependencies:
whatwg-fetch: 3.5.0
lockfileVersion: 5.2
packages:
+ /@actions/core/1.2.6:
+ dev: false
+ resolution:
+ integrity: sha512-ZQYitnqiyBc3D+k7LsgSBmMDVkOVidaagDG7j3fOym77jNunWRuYx7VSHa9GNfFZh+zh61xsCjRj4JxMZlDqTA==
+ /@actions/github/4.0.0:
+ dependencies:
+ '@actions/http-client': 1.0.9
+ '@octokit/core': 3.2.4
+ '@octokit/plugin-paginate-rest': 2.6.2_@octokit+core@3.2.4
+ '@octokit/plugin-rest-endpoint-methods': 4.4.1_@octokit+core@3.2.4
+ dev: false
+ resolution:
+ integrity: sha512-Ej/Y2E+VV6sR9X7pWL5F3VgEWrABaT292DRqRU6R4hnQjPtC/zD3nagxVdXWiRQvYDh8kHXo7IDmG42eJ/dOMA==
+ /@actions/http-client/1.0.9:
+ dependencies:
+ tunnel: 0.0.6
+ dev: false
+ resolution:
+ integrity: sha512-0O4SsJ7q+MK0ycvXPl2e6bMXV7dxAXOGjrXS1eTF9s2S401Tp6c/P3c3Joz04QefC1J6Gt942Wl2jbm3f4mLcg==
/@ardatan/aggregate-error/0.0.6:
dependencies:
tslib: 2.0.3
@@ -152,9 +166,28 @@ packages:
node: '>=8'
resolution:
integrity: sha512-vyrkEHG1jrukmzTPtyWB4NLPauUw5bQeg4uhn8f+1SSynmrOcyvlb1GKQjjgoBzElLdfXCRYX8UnBlhklOHYRQ==
- /@babel/cli/7.12.1_@babel+core@7.12.3:
+ /@babel/cli/7.12.10:
+ dependencies:
+ commander: 4.1.1
+ convert-source-map: 1.7.0
+ fs-readdir-recursive: 1.1.0
+ glob: 7.1.6
+ lodash: 4.17.20
+ make-dir: 2.1.0
+ slash: 2.0.0
+ source-map: 0.5.7
+ dev: false
+ hasBin: true
+ optionalDependencies:
+ '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents
+ chokidar: 3.4.3
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-+y4ZnePpvWs1fc/LhZRTHkTesbXkyBYuOB+5CyodZqrEuETXi3zOVfpAQIdgC3lXbHLTDG9dQosxR9BhvLKDLQ==
+ /@babel/cli/7.12.10_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
commander: 4.1.1
convert-source-map: 1.7.0
fs-readdir-recursive: 1.1.0
@@ -166,40 +199,40 @@ packages:
dev: false
hasBin: true
optionalDependencies:
- '@nicolo-ribaudo/chokidar-2': 2.1.8
+ '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents
chokidar: 3.4.3
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-eRJREyrfAJ2r42Iaxe8h3v6yyj1wu9OyosaUHW6UImjGf9ahGL9nsFNh7OCopvtcPL8WnEo7tp78wrZaZ6vG9g==
- /@babel/code-frame/7.10.4:
+ integrity: sha512-+y4ZnePpvWs1fc/LhZRTHkTesbXkyBYuOB+5CyodZqrEuETXi3zOVfpAQIdgC3lXbHLTDG9dQosxR9BhvLKDLQ==
+ /@babel/code-frame/7.12.11:
dependencies:
'@babel/highlight': 7.10.4
dev: false
resolution:
- integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
+ integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
/@babel/code-frame/7.8.3:
dependencies:
'@babel/highlight': 7.10.4
dev: false
resolution:
integrity: sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==
- /@babel/compat-data/7.12.5:
+ /@babel/compat-data/7.12.7:
dev: false
resolution:
- integrity: sha512-DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg==
+ integrity: sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==
/@babel/core/7.10.5:
dependencies:
- '@babel/code-frame': 7.10.4
- '@babel/generator': 7.12.5
+ '@babel/code-frame': 7.12.11
+ '@babel/generator': 7.12.11
'@babel/helper-module-transforms': 7.12.1
'@babel/helpers': 7.12.5
- '@babel/parser': 7.12.5
- '@babel/template': 7.10.4
- '@babel/traverse': 7.12.5
- '@babel/types': 7.12.6
+ '@babel/parser': 7.12.11
+ '@babel/template': 7.12.7
+ '@babel/traverse': 7.12.10
+ '@babel/types': 7.12.11
convert-source-map: 1.7.0
- debug: 4.2.0
+ debug: 4.3.1
gensync: 1.0.0-beta.2
json5: 2.1.3
lodash: 4.17.20
@@ -211,41 +244,40 @@ packages:
node: '>=6.9.0'
resolution:
integrity: sha512-O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w==
- /@babel/core/7.11.6:
+ /@babel/core/7.12.10:
dependencies:
- '@babel/code-frame': 7.10.4
- '@babel/generator': 7.12.5
+ '@babel/code-frame': 7.12.11
+ '@babel/generator': 7.12.11
'@babel/helper-module-transforms': 7.12.1
'@babel/helpers': 7.12.5
- '@babel/parser': 7.12.5
- '@babel/template': 7.10.4
- '@babel/traverse': 7.12.5
- '@babel/types': 7.12.6
+ '@babel/parser': 7.12.11
+ '@babel/template': 7.12.7
+ '@babel/traverse': 7.12.10
+ '@babel/types': 7.12.11
convert-source-map: 1.7.0
- debug: 4.2.0
+ debug: 4.3.1
gensync: 1.0.0-beta.2
json5: 2.1.3
lodash: 4.17.20
- resolve: 1.19.0
semver: 5.7.1
source-map: 0.5.7
dev: false
engines:
node: '>=6.9.0'
resolution:
- integrity: sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg==
- /@babel/core/7.12.3:
+ integrity: sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==
+ /@babel/core/7.12.9:
dependencies:
- '@babel/code-frame': 7.10.4
- '@babel/generator': 7.12.5
+ '@babel/code-frame': 7.12.11
+ '@babel/generator': 7.12.11
'@babel/helper-module-transforms': 7.12.1
'@babel/helpers': 7.12.5
- '@babel/parser': 7.12.5
- '@babel/template': 7.10.4
- '@babel/traverse': 7.12.5
- '@babel/types': 7.12.6
+ '@babel/parser': 7.12.11
+ '@babel/template': 7.12.7
+ '@babel/traverse': 7.12.10
+ '@babel/types': 7.12.11
convert-source-map: 1.7.0
- debug: 4.2.0
+ debug: 4.3.1
gensync: 1.0.0-beta.2
json5: 2.1.3
lodash: 4.17.20
@@ -256,363 +288,460 @@ packages:
engines:
node: '>=6.9.0'
resolution:
- integrity: sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==
- /@babel/generator/7.12.5:
+ integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==
+ /@babel/generator/7.12.11:
dependencies:
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
jsesc: 2.5.2
source-map: 0.5.7
dev: false
resolution:
- integrity: sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==
- /@babel/helper-annotate-as-pure/7.10.4:
+ integrity: sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==
+ /@babel/helper-annotate-as-pure/7.12.10:
dependencies:
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
dev: false
resolution:
- integrity: sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==
+ integrity: sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ==
/@babel/helper-builder-binary-assignment-operator-visitor/7.10.4:
dependencies:
'@babel/helper-explode-assignable-expression': 7.12.1
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
dev: false
resolution:
integrity: sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==
- /@babel/helper-builder-react-jsx-experimental/7.12.4:
+ /@babel/helper-builder-react-jsx-experimental/7.12.11:
dependencies:
- '@babel/helper-annotate-as-pure': 7.10.4
+ '@babel/helper-annotate-as-pure': 7.12.10
'@babel/helper-module-imports': 7.12.5
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
dev: false
resolution:
- integrity: sha512-AjEa0jrQqNk7eDQOo0pTfUOwQBMF+xVqrausQwT9/rTKy0g04ggFNaJpaE09IQMn9yExluigWMJcj0WC7bq+Og==
+ integrity: sha512-4oGVOekPI8dh9JphkPXC68iIuP6qp/RPbaPmorRmEFbRAHZjSqxPjqHudn18GVDPgCuFM/KdFXc63C17Ygfa9w==
/@babel/helper-builder-react-jsx/7.10.4:
dependencies:
- '@babel/helper-annotate-as-pure': 7.10.4
- '@babel/types': 7.12.6
+ '@babel/helper-annotate-as-pure': 7.12.10
+ '@babel/types': 7.12.11
dev: false
resolution:
integrity: sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==
- /@babel/helper-compilation-targets/7.12.5_@babel+core@7.12.3:
+ /@babel/helper-compilation-targets/7.12.5_@babel+core@7.12.10:
dependencies:
- '@babel/compat-data': 7.12.5
- '@babel/core': 7.12.3
- '@babel/helper-validator-option': 7.12.1
- browserslist: 4.14.7
+ '@babel/compat-data': 7.12.7
+ '@babel/core': 7.12.10
+ '@babel/helper-validator-option': 7.12.11
+ browserslist: 4.16.0
semver: 5.7.1
dev: false
peerDependencies:
'@babel/core': ^7.0.0
resolution:
integrity: sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==
- /@babel/helper-create-class-features-plugin/7.12.1_@babel+core@7.12.3:
+ /@babel/helper-create-class-features-plugin/7.12.1:
+ dependencies:
+ '@babel/helper-function-name': 7.12.11
+ '@babel/helper-member-expression-to-functions': 7.12.7
+ '@babel/helper-optimise-call-expression': 7.12.10
+ '@babel/helper-replace-supers': 7.12.11
+ '@babel/helper-split-export-declaration': 7.12.11
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==
+ /@babel/helper-create-class-features-plugin/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-function-name': 7.10.4
- '@babel/helper-member-expression-to-functions': 7.12.1
- '@babel/helper-optimise-call-expression': 7.10.4
- '@babel/helper-replace-supers': 7.12.5
- '@babel/helper-split-export-declaration': 7.11.0
+ '@babel/core': 7.12.10
+ '@babel/helper-function-name': 7.12.11
+ '@babel/helper-member-expression-to-functions': 7.12.7
+ '@babel/helper-optimise-call-expression': 7.12.10
+ '@babel/helper-replace-supers': 7.12.11
+ '@babel/helper-split-export-declaration': 7.12.11
dev: false
peerDependencies:
'@babel/core': ^7.0.0
resolution:
integrity: sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==
- /@babel/helper-create-regexp-features-plugin/7.12.1_@babel+core@7.12.3:
+ /@babel/helper-create-regexp-features-plugin/7.12.7_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-annotate-as-pure': 7.10.4
- '@babel/helper-regex': 7.10.5
+ '@babel/core': 7.12.10
+ '@babel/helper-annotate-as-pure': 7.12.10
regexpu-core: 4.7.1
dev: false
peerDependencies:
'@babel/core': ^7.0.0
resolution:
- integrity: sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA==
+ integrity: sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==
/@babel/helper-define-map/7.10.5:
dependencies:
- '@babel/helper-function-name': 7.10.4
- '@babel/types': 7.12.6
+ '@babel/helper-function-name': 7.12.11
+ '@babel/types': 7.12.11
lodash: 4.17.20
dev: false
resolution:
integrity: sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==
/@babel/helper-explode-assignable-expression/7.12.1:
dependencies:
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
dev: false
resolution:
integrity: sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==
- /@babel/helper-function-name/7.10.4:
+ /@babel/helper-function-name/7.12.11:
dependencies:
- '@babel/helper-get-function-arity': 7.10.4
- '@babel/template': 7.10.4
- '@babel/types': 7.12.6
+ '@babel/helper-get-function-arity': 7.12.10
+ '@babel/template': 7.12.7
+ '@babel/types': 7.12.11
dev: false
resolution:
- integrity: sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==
- /@babel/helper-get-function-arity/7.10.4:
+ integrity: sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==
+ /@babel/helper-get-function-arity/7.12.10:
dependencies:
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
dev: false
resolution:
- integrity: sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==
+ integrity: sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==
/@babel/helper-hoist-variables/7.10.4:
dependencies:
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
dev: false
resolution:
integrity: sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==
- /@babel/helper-member-expression-to-functions/7.12.1:
+ /@babel/helper-member-expression-to-functions/7.12.7:
dependencies:
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
dev: false
resolution:
- integrity: sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==
+ integrity: sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==
/@babel/helper-module-imports/7.12.5:
dependencies:
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
dev: false
resolution:
integrity: sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==
/@babel/helper-module-transforms/7.12.1:
dependencies:
'@babel/helper-module-imports': 7.12.5
- '@babel/helper-replace-supers': 7.12.5
+ '@babel/helper-replace-supers': 7.12.11
'@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.5
- '@babel/types': 7.12.6
+ '@babel/helper-split-export-declaration': 7.12.11
+ '@babel/helper-validator-identifier': 7.12.11
+ '@babel/template': 7.12.7
+ '@babel/traverse': 7.12.10
+ '@babel/types': 7.12.11
lodash: 4.17.20
dev: false
resolution:
integrity: sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==
- /@babel/helper-optimise-call-expression/7.10.4:
+ /@babel/helper-optimise-call-expression/7.12.10:
dependencies:
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
dev: false
resolution:
- integrity: sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==
+ integrity: sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==
/@babel/helper-plugin-utils/7.10.4:
dev: false
resolution:
integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
- /@babel/helper-regex/7.10.5:
- dependencies:
- lodash: 4.17.20
- dev: false
- resolution:
- integrity: sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==
/@babel/helper-remap-async-to-generator/7.12.1:
dependencies:
- '@babel/helper-annotate-as-pure': 7.10.4
+ '@babel/helper-annotate-as-pure': 7.12.10
'@babel/helper-wrap-function': 7.12.3
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
dev: false
resolution:
integrity: sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==
- /@babel/helper-replace-supers/7.12.5:
+ /@babel/helper-replace-supers/7.12.11:
dependencies:
- '@babel/helper-member-expression-to-functions': 7.12.1
- '@babel/helper-optimise-call-expression': 7.10.4
- '@babel/traverse': 7.12.5
- '@babel/types': 7.12.6
+ '@babel/helper-member-expression-to-functions': 7.12.7
+ '@babel/helper-optimise-call-expression': 7.12.10
+ '@babel/traverse': 7.12.10
+ '@babel/types': 7.12.11
dev: false
resolution:
- integrity: sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==
+ integrity: sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==
/@babel/helper-simple-access/7.12.1:
dependencies:
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
dev: false
resolution:
integrity: sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==
/@babel/helper-skip-transparent-expression-wrappers/7.12.1:
dependencies:
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
dev: false
resolution:
integrity: sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==
- /@babel/helper-split-export-declaration/7.11.0:
+ /@babel/helper-split-export-declaration/7.12.11:
dependencies:
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
dev: false
resolution:
- integrity: sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==
- /@babel/helper-validator-identifier/7.10.4:
+ integrity: sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==
+ /@babel/helper-validator-identifier/7.12.11:
dev: false
resolution:
- integrity: sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
- /@babel/helper-validator-option/7.12.1:
+ integrity: sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==
+ /@babel/helper-validator-option/7.12.11:
dev: false
resolution:
- integrity: sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A==
+ integrity: sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw==
/@babel/helper-wrap-function/7.12.3:
dependencies:
- '@babel/helper-function-name': 7.10.4
- '@babel/template': 7.10.4
- '@babel/traverse': 7.12.5
- '@babel/types': 7.12.6
+ '@babel/helper-function-name': 7.12.11
+ '@babel/template': 7.12.7
+ '@babel/traverse': 7.12.10
+ '@babel/types': 7.12.11
dev: false
resolution:
integrity: sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==
/@babel/helpers/7.12.5:
dependencies:
- '@babel/template': 7.10.4
- '@babel/traverse': 7.12.5
- '@babel/types': 7.12.6
+ '@babel/template': 7.12.7
+ '@babel/traverse': 7.12.10
+ '@babel/types': 7.12.11
dev: false
resolution:
integrity: sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==
/@babel/highlight/7.10.4:
dependencies:
- '@babel/helper-validator-identifier': 7.10.4
+ '@babel/helper-validator-identifier': 7.12.11
chalk: 2.4.2
js-tokens: 4.0.0
dev: false
resolution:
integrity: sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
- /@babel/parser/7.12.5:
+ /@babel/parser/7.12.11:
dev: false
engines:
node: '>=6.0.0'
hasBin: true
resolution:
- integrity: sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ==
- /@babel/plugin-proposal-async-generator-functions/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==
+ /@babel/plugin-proposal-async-generator-functions/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/helper-remap-async-to-generator': 7.12.1
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==
- /@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-class-properties/7.12.1:
+ dependencies:
+ '@babel/helper-create-class-features-plugin': 7.12.1
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==
+ /@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/core': 7.12.10
+ '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==
- /@babel/plugin-proposal-decorators/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-decorators/7.12.1:
+ dependencies:
+ '@babel/helper-create-class-features-plugin': 7.12.1
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-decorators': 7.12.1
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==
+ /@babel/plugin-proposal-decorators/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/core': 7.12.10
+ '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-decorators': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-syntax-decorators': 7.12.1_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==
- /@babel/plugin-proposal-do-expressions/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-do-expressions/7.12.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-do-expressions': 7.12.1
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-bpJ6Bfrzvdzb0vG6zBSNh3HLgFKh+S2CBpNmaLRjg2u7cNkzRPIqBjVURCmpG6pvPfKyxkizwbrXwpYtW3a9cw==
+ /@babel/plugin-proposal-do-expressions/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-do-expressions': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-syntax-do-expressions': 7.12.1_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-bpJ6Bfrzvdzb0vG6zBSNh3HLgFKh+S2CBpNmaLRjg2u7cNkzRPIqBjVURCmpG6pvPfKyxkizwbrXwpYtW3a9cw==
- /@babel/plugin-proposal-dynamic-import/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-dynamic-import/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==
- /@babel/plugin-proposal-export-default-from/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-export-default-from/7.12.1:
dependencies:
- '@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-export-default-from': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-syntax-export-default-from': 7.12.1
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-z5Q4Ke7j0AexQRfgUvnD+BdCSgpTEKnqQ3kskk2jWtOBulxICzd1X9BGt7kmWftxZ2W3++OZdt5gtmC8KLxdRQ==
- /@babel/plugin-proposal-export-namespace-from/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-export-default-from/7.12.1_@babel+core@7.12.10:
+ dependencies:
+ '@babel/core': 7.12.10
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-export-default-from': 7.12.1_@babel+core@7.12.10
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ 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
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==
+ /@babel/plugin-proposal-export-namespace-from/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==
- /@babel/plugin-proposal-function-bind/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-function-bind/7.12.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-function-bind': 7.12.1
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-Nic0blOXoeyuDJZJNh7kEZMqQUHakiUyxfyFMUV0Sy7DQ+Du9R7cZCUgTLnqq7Bc0Yx0iKRSe5wTmRWLKwxxpA==
+ /@babel/plugin-proposal-function-bind/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-function-bind': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-syntax-function-bind': 7.12.1_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-Nic0blOXoeyuDJZJNh7kEZMqQUHakiUyxfyFMUV0Sy7DQ+Du9R7cZCUgTLnqq7Bc0Yx0iKRSe5wTmRWLKwxxpA==
- /@babel/plugin-proposal-function-sent/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-function-sent/7.12.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/helper-wrap-function': 7.12.3
+ '@babel/plugin-syntax-function-sent': 7.12.1
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-EXB01ACyNW0WCffP4ip40TH82X86+U0dakFZjyiMpoZ8NFmL5MMARzVBzy+Gg59B6vTgfvIhRHUhe6tNUw+vjw==
+ /@babel/plugin-proposal-function-sent/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/helper-wrap-function': 7.12.3
- '@babel/plugin-syntax-function-sent': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-syntax-function-sent': 7.12.1_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-EXB01ACyNW0WCffP4ip40TH82X86+U0dakFZjyiMpoZ8NFmL5MMARzVBzy+Gg59B6vTgfvIhRHUhe6tNUw+vjw==
- /@babel/plugin-proposal-json-strings/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-json-strings/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==
- /@babel/plugin-proposal-logical-assignment-operators/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-logical-assignment-operators/7.12.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==
+ /@babel/plugin-proposal-logical-assignment-operators/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==
- /@babel/plugin-proposal-nullish-coalescing-operator/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.12.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==
- /@babel/plugin-proposal-numeric-separator/7.12.5_@babel+core@7.12.3:
+ /@babel/plugin-proposal-numeric-separator/7.12.7:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-numeric-separator': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==
+ /@babel/plugin-proposal-numeric-separator/7.12.7_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g==
+ integrity: sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==
/@babel/plugin-proposal-object-rest-spread/7.10.4_@babel+core@7.10.5:
dependencies:
'@babel/core': 7.10.5
@@ -624,83 +753,111 @@ packages:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA==
- /@babel/plugin-proposal-object-rest-spread/7.11.0_@babel+core@7.11.6:
+ /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.11.6
+ '@babel/core': 7.12.10
'@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.12.1_@babel+core@7.11.6
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.10
+ '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==
- /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==
+ /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.3
- '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
+ '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.9
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==
- /@babel/plugin-proposal-optional-catch-binding/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-optional-catch-binding/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==
- /@babel/plugin-proposal-optional-chaining/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-optional-chaining/7.12.7:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/helper-skip-transparent-expression-wrappers': 7.12.1
+ '@babel/plugin-syntax-optional-chaining': 7.8.3
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==
+ /@babel/plugin-proposal-optional-chaining/7.12.7_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/helper-skip-transparent-expression-wrappers': 7.12.1
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.10
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==
+ /@babel/plugin-proposal-pipeline-operator/7.12.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-pipeline-operator': 7.12.1
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==
- /@babel/plugin-proposal-pipeline-operator/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-iloNp4xu8YV8e/mZgGjePg9be1VkJSxQWIplRwgQtQPtF26ar3cHXL4sV8Fujlm2mm/Tu/WiA+FU+Fp7QVP7/g==
+ /@babel/plugin-proposal-pipeline-operator/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-pipeline-operator': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-syntax-pipeline-operator': 7.12.1_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-iloNp4xu8YV8e/mZgGjePg9be1VkJSxQWIplRwgQtQPtF26ar3cHXL4sV8Fujlm2mm/Tu/WiA+FU+Fp7QVP7/g==
- /@babel/plugin-proposal-private-methods/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-private-methods/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/core': 7.12.10
+ '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==
- /@babel/plugin-proposal-throw-expressions/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-throw-expressions/7.12.1:
dependencies:
- '@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-throw-expressions': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-syntax-throw-expressions': 7.12.1
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-kiWkKtm05K86C+T/nUazv+/Vxu93Aulrvof/ZrxVyGoUBVsVEWDrw9iChbe8tV+aPVQcjg4FQxKW3wUF7cRcpg==
- /@babel/plugin-proposal-unicode-property-regex/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-proposal-throw-expressions/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/core': 7.12.10
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-throw-expressions': 7.12.1_@babel+core@7.12.10
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-kiWkKtm05K86C+T/nUazv+/Vxu93Aulrvof/ZrxVyGoUBVsVEWDrw9iChbe8tV+aPVQcjg4FQxKW3wUF7cRcpg==
+ /@babel/plugin-proposal-unicode-property-regex/7.12.1_@babel+core@7.12.10:
+ dependencies:
+ '@babel/core': 7.12.10
+ '@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
engines:
@@ -709,108 +866,172 @@ packages:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.3:
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
- /@babel/plugin-syntax-class-properties/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-syntax-class-properties/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==
- /@babel/plugin-syntax-decorators/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-syntax-decorators/7.12.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-ir9YW5daRrTYiy9UJ2TzdNIJEZu8KclVzDcfSt4iEmOtwQ4llPtWInNKJyKnVXp1vE4bbVd5S31M/im3mYMO1w==
+ /@babel/plugin-syntax-decorators/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-ir9YW5daRrTYiy9UJ2TzdNIJEZu8KclVzDcfSt4iEmOtwQ4llPtWInNKJyKnVXp1vE4bbVd5S31M/im3mYMO1w==
- /@babel/plugin-syntax-do-expressions/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-syntax-do-expressions/7.12.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-a9TknRXkzfetNjOWSWnPIG/Y7x+elzcmKng2Qpvh8QaqdPo0OABizTjco8YO8r5xZNQfE58YHq7lWR+PKwHyxg==
+ /@babel/plugin-syntax-do-expressions/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-a9TknRXkzfetNjOWSWnPIG/Y7x+elzcmKng2Qpvh8QaqdPo0OABizTjco8YO8r5xZNQfE58YHq7lWR+PKwHyxg==
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.3:
+ /@babel/plugin-syntax-dynamic-import/7.8.3:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@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.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
- /@babel/plugin-syntax-export-default-from/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-syntax-export-default-from/7.12.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-dP5eGg6tHEkhnRD2/vRG/KJKRSg8gtxu2i+P/8/yFPJn/CfPU5G0/7Gks2i3M6IOVAPQekmsLN9LPsmXFFL4Uw==
+ /@babel/plugin-syntax-export-default-from/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-dP5eGg6tHEkhnRD2/vRG/KJKRSg8gtxu2i+P/8/yFPJn/CfPU5G0/7Gks2i3M6IOVAPQekmsLN9LPsmXFFL4Uw==
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.3:
+ /@babel/plugin-syntax-export-namespace-from/7.8.3:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@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.12.1_@babel+core@7.12.3:
+ /@babel/plugin-syntax-flow/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-1lBLLmtxrwpm4VKmtVFselI/P3pX+G63fAtUUt6b2Nzgao77KNDwyuRt90Mj2/9pKobtt68FdvjfqohZjg/FCA==
- /@babel/plugin-syntax-function-bind/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-syntax-function-bind/7.12.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-YN14nxb0Q3/M7AUDnwnjFYpUylysfZ4KY/byhIz5PN7JyMJldjuUS+UmV7bOL6crQ0M69tuoevD/AlOveDeyMQ==
+ /@babel/plugin-syntax-function-bind/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-YN14nxb0Q3/M7AUDnwnjFYpUylysfZ4KY/byhIz5PN7JyMJldjuUS+UmV7bOL6crQ0M69tuoevD/AlOveDeyMQ==
- /@babel/plugin-syntax-function-sent/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-syntax-function-sent/7.12.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-mtBQvNHcIzLnmQZhgzigzrgFzIe95WvBXJuTN0m4CvhDK0gRNQ2MC2AVSzB6w7VnVh/z5+0iHFcbfqKMlFwTkQ==
+ /@babel/plugin-syntax-function-sent/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-mtBQvNHcIzLnmQZhgzigzrgFzIe95WvBXJuTN0m4CvhDK0gRNQ2MC2AVSzB6w7VnVh/z5+0iHFcbfqKMlFwTkQ==
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.3:
+ /@babel/plugin-syntax-import-meta/7.10.4:
dependencies:
- '@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.10.4
dev: false
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.3:
+ /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ 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.10:
+ dependencies:
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
@@ -826,45 +1047,77 @@ packages:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==
- /@babel/plugin-syntax-jsx/7.10.4_@babel+core@7.11.6:
+ /@babel/plugin-syntax-jsx/7.12.1:
dependencies:
- '@babel/core': 7.11.6
'@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.12.1_@babel+core@7.12.3:
+ integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==
+ /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.10:
+ dependencies:
+ '@babel/core': 7.12.10
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==
+ /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.3:
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4:
dependencies:
- '@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.10.4
dev: false
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.3:
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.10:
+ dependencies:
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.3:
+ /@babel/plugin-syntax-numeric-separator/7.10.4:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
@@ -880,90 +1133,114 @@ 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.11.6:
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.11.6
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.3:
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.3:
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.3:
+ /@babel/plugin-syntax-optional-chaining/7.8.3:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
- /@babel/plugin-syntax-pipeline-operator/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-syntax-pipeline-operator/7.12.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-NazCTl1P9Kp+790g7gDRQEvhU0+OYbZVsuW45ThfgVCdUyhtxzFJeFrzY6BX/u/NfFyXWbKAIl6wR0PhJWwyDA==
+ /@babel/plugin-syntax-pipeline-operator/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-NazCTl1P9Kp+790g7gDRQEvhU0+OYbZVsuW45ThfgVCdUyhtxzFJeFrzY6BX/u/NfFyXWbKAIl6wR0PhJWwyDA==
- /@babel/plugin-syntax-throw-expressions/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-syntax-throw-expressions/7.12.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-+8FLGK1PYYB7D8tU9U5zX23fnzkpxw4a7lAyyZbgk6b6bN0k2dft/xwcxIE+86i54wLJ83BaAboh2Ow6wf6jHw==
+ /@babel/plugin-syntax-throw-expressions/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-+8FLGK1PYYB7D8tU9U5zX23fnzkpxw4a7lAyyZbgk6b6bN0k2dft/xwcxIE+86i54wLJ83BaAboh2Ow6wf6jHw==
- /@babel/plugin-syntax-top-level-await/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-syntax-top-level-await/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==
- /@babel/plugin-syntax-typescript/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-syntax-typescript/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-UZNEcCY+4Dp9yYRCAHrHDU+9ZXLYaY9MgBXSRLkB9WjYFRR6quJBumfVrEkUxrePPBwFcpWfNKXqVRQQtm7mMA==
- /@babel/plugin-transform-arrow-functions/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-arrow-functions/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==
- /@babel/plugin-transform-async-to-generator/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-async-to-generator/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-module-imports': 7.12.5
'@babel/helper-plugin-utils': 7.10.4
'@babel/helper-remap-async-to-generator': 7.12.1
@@ -972,80 +1249,80 @@ packages:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==
- /@babel/plugin-transform-block-scoped-functions/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-block-scoped-functions/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==
- /@babel/plugin-transform-block-scoping/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-block-scoping/7.12.11_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==
- /@babel/plugin-transform-classes/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-atR1Rxc3hM+VPg/NvNvfYw0npQEAcHuJ+MGZnFn6h3bo+1U3BWXMdFMlvVRApBTWKQMX7SOwRJZA5FBF/JQbvA==
+ /@babel/plugin-transform-classes/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-annotate-as-pure': 7.10.4
+ '@babel/core': 7.12.10
+ '@babel/helper-annotate-as-pure': 7.12.10
'@babel/helper-define-map': 7.10.5
- '@babel/helper-function-name': 7.10.4
- '@babel/helper-optimise-call-expression': 7.10.4
+ '@babel/helper-function-name': 7.12.11
+ '@babel/helper-optimise-call-expression': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/helper-replace-supers': 7.12.5
- '@babel/helper-split-export-declaration': 7.11.0
+ '@babel/helper-replace-supers': 7.12.11
+ '@babel/helper-split-export-declaration': 7.12.11
globals: 11.12.0
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==
- /@babel/plugin-transform-computed-properties/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-computed-properties/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==
- /@babel/plugin-transform-destructuring/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-destructuring/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==
- /@babel/plugin-transform-dotall-regex/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-dotall-regex/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/core': 7.12.10
+ '@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==
- /@babel/plugin-transform-duplicate-keys/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-duplicate-keys/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==
- /@babel/plugin-transform-exponentiation-operator/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-exponentiation-operator/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-builder-binary-assignment-operator-visitor': 7.10.4
'@babel/helper-plugin-utils': 7.10.4
dev: false
@@ -1053,56 +1330,56 @@ packages:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==
- /@babel/plugin-transform-flow-strip-types/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-flow-strip-types/7.12.10_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-flow': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-syntax-flow': 7.12.1_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==
- /@babel/plugin-transform-for-of/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-0ti12wLTLeUIzu9U7kjqIn4MyOL7+Wibc7avsHhj4o1l5C0ATs8p2IMHrVYjm9t9wzhfEO6S3kxax0Rpdo8LTg==
+ /@babel/plugin-transform-for-of/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==
- /@babel/plugin-transform-function-name/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-function-name/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-function-name': 7.10.4
+ '@babel/core': 7.12.10
+ '@babel/helper-function-name': 7.12.11
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==
- /@babel/plugin-transform-literals/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-literals/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==
- /@babel/plugin-transform-member-expression-literals/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-member-expression-literals/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==
- /@babel/plugin-transform-modules-amd/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-modules-amd/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-module-transforms': 7.12.1
'@babel/helper-plugin-utils': 7.10.4
babel-plugin-dynamic-import-node: 2.3.3
@@ -1111,9 +1388,9 @@ packages:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==
- /@babel/plugin-transform-modules-commonjs/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-modules-commonjs/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-module-transforms': 7.12.1
'@babel/helper-plugin-utils': 7.10.4
'@babel/helper-simple-access': 7.12.1
@@ -1123,22 +1400,22 @@ packages:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==
- /@babel/plugin-transform-modules-systemjs/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-modules-systemjs/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-hoist-variables': 7.10.4
'@babel/helper-module-transforms': 7.12.1
'@babel/helper-plugin-utils': 7.10.4
- '@babel/helper-validator-identifier': 7.10.4
+ '@babel/helper-validator-identifier': 7.12.11
babel-plugin-dynamic-import-node: 2.3.3
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==
- /@babel/plugin-transform-modules-umd/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-modules-umd/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-module-transforms': 7.12.1
'@babel/helper-plugin-utils': 7.10.4
dev: false
@@ -1146,29 +1423,29 @@ packages:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==
- /@babel/plugin-transform-named-capturing-groups-regex/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-named-capturing-groups-regex/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/core': 7.12.10
+ '@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0
resolution:
integrity: sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==
- /@babel/plugin-transform-new-target/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-new-target/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==
- /@babel/plugin-transform-object-super/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-object-super/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/helper-replace-supers': 7.12.5
+ '@babel/helper-replace-supers': 7.12.11
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1183,334 +1460,373 @@ packages:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==
- /@babel/plugin-transform-parameters/7.12.1_@babel+core@7.11.6:
+ /@babel/plugin-transform-parameters/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.11.6
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==
- /@babel/plugin-transform-parameters/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-parameters/7.12.1_@babel+core@7.12.9:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==
- /@babel/plugin-transform-property-literals/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-property-literals/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==
- /@babel/plugin-transform-react-constant-elements/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-react-constant-elements/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-KOHd0tIRLoER+J+8f9DblZDa1fLGPwaaN1DI1TVHuQFOpjHV22C3CUB3obeC4fexHY9nx+fH0hQNvLFFfA1mxA==
- /@babel/plugin-transform-react-display-name/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-react-display-name/7.12.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.10.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==
+ /@babel/plugin-transform-react-display-name/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==
- /@babel/plugin-transform-react-jsx-development/7.12.5_@babel+core@7.12.3:
+ /@babel/plugin-transform-react-jsx-development/7.12.11:
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-builder-react-jsx-experimental': 7.12.4
+ '@babel/helper-builder-react-jsx-experimental': 7.12.11
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-syntax-jsx': 7.12.1
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-1JJusg3iPgsZDthyWiCr3KQiGs31ikU/mSf2N2dSYEAO0GEImmVUbWf0VoSDGDFTAn5Dj4DUiR6SdIXHY7tELA==
- /@babel/plugin-transform-react-jsx-self/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-5MvsGschXeXJsbzQGR/BH89ATMzCsM7rx95n+R7/852cGoK2JgMbacDw/A9Pmrfex4tArdMab0L5SBV4SB/Nxg==
+ /@babel/plugin-transform-react-jsx-development/7.12.11_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
+ '@babel/helper-builder-react-jsx-experimental': 7.12.11
'@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA==
- /@babel/plugin-transform-react-jsx-source/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-5MvsGschXeXJsbzQGR/BH89ATMzCsM7rx95n+R7/852cGoK2JgMbacDw/A9Pmrfex4tArdMab0L5SBV4SB/Nxg==
+ /@babel/plugin-transform-react-jsx/7.12.11:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/helper-builder-react-jsx': 7.10.4
+ '@babel/helper-builder-react-jsx-experimental': 7.12.11
'@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-jsx': 7.12.1
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ==
- /@babel/plugin-transform-react-jsx/7.12.5_@babel+core@7.12.3:
+ integrity: sha512-5nWOw6mTylaFU72BdZfa0dP1HsGdY3IMExpxn8LBE8dNmkQjB+W+sR+JwIdtbzkPvVuFviT3zyNbSUkuVTVxbw==
+ /@babel/plugin-transform-react-jsx/7.12.11_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-builder-react-jsx': 7.10.4
- '@babel/helper-builder-react-jsx-experimental': 7.12.4
+ '@babel/helper-builder-react-jsx-experimental': 7.12.11
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.10
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-5nWOw6mTylaFU72BdZfa0dP1HsGdY3IMExpxn8LBE8dNmkQjB+W+sR+JwIdtbzkPvVuFviT3zyNbSUkuVTVxbw==
+ /@babel/plugin-transform-react-pure-annotations/7.12.1:
+ dependencies:
+ '@babel/helper-annotate-as-pure': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.3
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-2xkcPqqrYiOQgSlM/iwto1paPijjsDbUynN13tI6bosDz/jOW3CRzYguIE8wKX32h+msbBM22Dv5fwrFkUOZjQ==
- /@babel/plugin-transform-react-pure-annotations/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==
+ /@babel/plugin-transform-react-pure-annotations/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-annotate-as-pure': 7.10.4
+ '@babel/core': 7.12.10
+ '@babel/helper-annotate-as-pure': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==
- /@babel/plugin-transform-regenerator/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-regenerator/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
regenerator-transform: 0.14.5
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==
- /@babel/plugin-transform-reserved-words/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-reserved-words/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==
- /@babel/plugin-transform-runtime/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-runtime/7.12.10:
dependencies:
- '@babel/core': 7.12.3
'@babel/helper-module-imports': 7.12.5
'@babel/helper-plugin-utils': 7.10.4
- resolve: 1.19.0
semver: 5.7.1
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==
- /@babel/plugin-transform-shorthand-properties/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA==
+ /@babel/plugin-transform-runtime/7.12.10_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
+ '@babel/helper-module-imports': 7.12.5
'@babel/helper-plugin-utils': 7.10.4
+ semver: 5.7.1
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==
- /@babel/plugin-transform-spread/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA==
+ /@babel/plugin-transform-shorthand-properties/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/helper-skip-transparent-expression-wrappers': 7.12.1
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==
- /@babel/plugin-transform-sticky-regex/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==
+ /@babel/plugin-transform-spread/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/helper-skip-transparent-expression-wrappers': 7.12.1
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==
+ /@babel/plugin-transform-sticky-regex/7.12.7_@babel+core@7.12.10:
+ dependencies:
+ '@babel/core': 7.12.10
'@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-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ==
- /@babel/plugin-transform-template-literals/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==
+ /@babel/plugin-transform-template-literals/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==
- /@babel/plugin-transform-typeof-symbol/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-typeof-symbol/7.12.10_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==
- /@babel/plugin-transform-typescript/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA==
+ /@babel/plugin-transform-typescript/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/core': 7.12.10
+ '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-typescript': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-syntax-typescript': 7.12.1_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw==
- /@babel/plugin-transform-unicode-escapes/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-unicode-escapes/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==
- /@babel/plugin-transform-unicode-regex/7.12.1_@babel+core@7.12.3:
+ /@babel/plugin-transform-unicode-regex/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
- '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/core': 7.12.10
+ '@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==
- /@babel/preset-env/7.12.1_@babel+core@7.12.3:
+ /@babel/preset-env/7.12.11_@babel+core@7.12.10:
dependencies:
- '@babel/compat-data': 7.12.5
- '@babel/core': 7.12.3
- '@babel/helper-compilation-targets': 7.12.5_@babel+core@7.12.3
+ '@babel/compat-data': 7.12.7
+ '@babel/core': 7.12.10
+ '@babel/helper-compilation-targets': 7.12.5_@babel+core@7.12.10
'@babel/helper-module-imports': 7.12.5
'@babel/helper-plugin-utils': 7.10.4
- '@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.5_@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.6
- core-js-compat: 3.7.0
+ '@babel/helper-validator-option': 7.12.11
+ '@babel/plugin-proposal-async-generator-functions': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-dynamic-import': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-export-namespace-from': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-json-strings': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-logical-assignment-operators': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-numeric-separator': 7.12.7_@babel+core@7.12.10
+ '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-optional-catch-binding': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.10
+ '@babel/plugin-proposal-private-methods': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-unicode-property-regex': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.10
+ '@babel/plugin-syntax-class-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.10
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.10
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.10
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.10
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.10
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.10
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.10
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.10
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.10
+ '@babel/plugin-syntax-top-level-await': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-arrow-functions': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-async-to-generator': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-block-scoped-functions': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-block-scoping': 7.12.11_@babel+core@7.12.10
+ '@babel/plugin-transform-classes': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-computed-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-destructuring': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-duplicate-keys': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-exponentiation-operator': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-for-of': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-function-name': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-literals': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-member-expression-literals': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-modules-amd': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-modules-systemjs': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-modules-umd': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-new-target': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-object-super': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-property-literals': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-regenerator': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-reserved-words': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-shorthand-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-spread': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-sticky-regex': 7.12.7_@babel+core@7.12.10
+ '@babel/plugin-transform-template-literals': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-typeof-symbol': 7.12.10_@babel+core@7.12.10
+ '@babel/plugin-transform-unicode-escapes': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-unicode-regex': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-modules': 0.1.4_@babel+core@7.12.10
+ '@babel/types': 7.12.11
+ core-js-compat: 3.8.1
semver: 5.7.1
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==
- /@babel/preset-flow/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw==
+ /@babel/preset-flow/7.12.1_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-transform-flow-strip-types': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-flow-strip-types': 7.12.10_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-UAoyMdioAhM6H99qPoKvpHMzxmNVXno8GYU/7vZmGaHk6/KqfDYL1W0NxszVbJ2EP271b7e6Ox+Vk2A9QsB3Sw==
- /@babel/preset-modules/0.1.4_@babel+core@7.12.3:
+ /@babel/preset-modules/0.1.4_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@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.6
+ '@babel/plugin-proposal-unicode-property-regex': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.12.10
+ '@babel/types': 7.12.11
esutils: 2.0.3
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
- /@babel/preset-react/7.12.5_@babel+core@7.12.3:
+ /@babel/preset-react/7.12.10:
dependencies:
- '@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-transform-react-display-name': 7.12.1_@babel+core@7.12.3
- '@babel/plugin-transform-react-jsx': 7.12.5_@babel+core@7.12.3
- '@babel/plugin-transform-react-jsx-development': 7.12.5_@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
+ '@babel/plugin-transform-react-display-name': 7.12.1
+ '@babel/plugin-transform-react-jsx': 7.12.11
+ '@babel/plugin-transform-react-jsx-development': 7.12.11
+ '@babel/plugin-transform-react-pure-annotations': 7.12.1
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-jcs++VPrgyFehkMezHtezS2BpnUlR7tQFAyesJn1vGTO9aTFZrgIQrA5YydlTwxbcjMwkFY6i04flCigRRr3GA==
- /@babel/preset-typescript/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-vtQNjaHRl4DUpp+t+g4wvTHsLQuye+n0H/wsXIZRn69oz/fvNC7gQ4IK73zGJBaxvHoxElDvnYCthMcT7uzFoQ==
+ /@babel/preset-react/7.12.10_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-transform-typescript': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-react-display-name': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-react-jsx': 7.12.11_@babel+core@7.12.10
+ '@babel/plugin-transform-react-jsx-development': 7.12.11_@babel+core@7.12.10
+ '@babel/plugin-transform-react-pure-annotations': 7.12.1_@babel+core@7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw==
- /@babel/register/7.12.1_@babel+core@7.12.3:
+ integrity: sha512-vtQNjaHRl4DUpp+t+g4wvTHsLQuye+n0H/wsXIZRn69oz/fvNC7gQ4IK73zGJBaxvHoxElDvnYCthMcT7uzFoQ==
+ /@babel/preset-typescript/7.12.7_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/helper-validator-option': 7.12.11
+ '@babel/plugin-transform-typescript': 7.12.1_@babel+core@7.12.10
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-nOoIqIqBmHBSEgBXWR4Dv/XBehtIFcw9PqZw6rFYuKrzsZmOQm3PR5siLBnKZFEsDb03IegG8nSjU/iXXXYRmw==
+ /@babel/register/7.12.10_@babel+core@7.12.10:
+ dependencies:
+ '@babel/core': 7.12.10
find-cache-dir: 2.1.0
lodash: 4.17.20
make-dir: 2.1.0
@@ -1520,10 +1836,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
- integrity: sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q==
+ integrity: sha512-EvX/BvMMJRAA3jZgILWgbsrHwBQvllC5T8B29McyME8DvkdOxk4ujESfrMvME8IHSDvWXrmMXxPvA/lx2gqPLQ==
/@babel/runtime-corejs3/7.12.5:
dependencies:
- core-js-pure: 3.7.0
+ core-js-pure: 3.8.1
regenerator-runtime: 0.13.7
dev: false
resolution:
@@ -1534,44 +1850,54 @@ packages:
dev: false
resolution:
integrity: sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==
- /@babel/standalone/7.12.6:
+ /@babel/standalone/7.12.11:
dev: false
resolution:
- integrity: sha512-yA/OV3jN1nhr0JsAdYWAqbeZ7cAOw/6Fh52rxVMzujr0HF4Z3cau0JBzJfQppFfR9IArrUtcqhBu/+Q/IevoyQ==
- /@babel/template/7.10.4:
+ integrity: sha512-z+iFopDt0/8PUB8D0p7+95wYgXisRX6xi64fXCkpIRbkrA0nCf8t4yBBkSQ5YW/o9jPmmNhmX13OqsirloqdKQ==
+ /@babel/template/7.12.7:
dependencies:
- '@babel/code-frame': 7.10.4
- '@babel/parser': 7.12.5
- '@babel/types': 7.12.6
+ '@babel/code-frame': 7.12.11
+ '@babel/parser': 7.12.11
+ '@babel/types': 7.12.11
dev: false
resolution:
- integrity: sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==
- /@babel/traverse/7.12.5:
+ integrity: sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==
+ /@babel/traverse/7.12.10:
dependencies:
- '@babel/code-frame': 7.10.4
- '@babel/generator': 7.12.5
- '@babel/helper-function-name': 7.10.4
- '@babel/helper-split-export-declaration': 7.11.0
- '@babel/parser': 7.12.5
- '@babel/types': 7.12.6
- debug: 4.2.0
+ '@babel/code-frame': 7.12.11
+ '@babel/generator': 7.12.11
+ '@babel/helper-function-name': 7.12.11
+ '@babel/helper-split-export-declaration': 7.12.11
+ '@babel/parser': 7.12.11
+ '@babel/types': 7.12.11
+ debug: 4.3.1
globals: 11.12.0
lodash: 4.17.20
dev: false
resolution:
- integrity: sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==
- /@babel/types/7.12.6:
+ integrity: sha512-6aEtf0IeRgbYWzta29lePeYSk+YAFIC3kyqESeft8o5CkFlYIMX+EQDDWEiAQ9LHOA3d0oHdgrSsID/CKqXJlg==
+ /@babel/types/7.12.11:
dependencies:
- '@babel/helper-validator-identifier': 7.10.4
+ '@babel/helper-validator-identifier': 7.12.11
lodash: 4.17.20
to-fast-properties: 2.0.0
dev: false
resolution:
- integrity: sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==
+ integrity: sha512-ukA9SQtKThINm++CX1CwmliMrE54J6nIYB5XTwL5f/CLFW9owfls+YSU8tVW15RQ2w+a3fSbPjC6HdQNtWZkiA==
/@base2/pretty-print-object/1.0.0:
dev: false
resolution:
integrity: sha512-4Th98KlMHr5+JkxfcoDT//6vY8vM+iSPrLNpHhRyLx2CFYi8e2RfqPLdpbnpo0Q5lQC5hNB79yes07zb02fvCw==
+ /@chromaui/localtunnel/2.0.1:
+ dependencies:
+ axios: 0.19.0
+ debug: 3.2.7
+ openurl: 1.1.1
+ yargs: 13.3.2
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-QvO1J9drc7K2SeBrHuO5/8nQ1QTks/OOG+vwva4lM7T28pPgf556snMpPE/3KE6uD2UJky8I4A5dNRNbqAXiDw==
/@cnakazawa/watch/1.0.4:
dependencies:
exec-sh: 0.3.4
@@ -1591,6 +1917,19 @@ packages:
dev: false
resolution:
integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==
+ /@emotion/core/10.1.1:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ '@emotion/cache': 10.0.29
+ '@emotion/css': 10.0.27
+ '@emotion/serialize': 0.11.16
+ '@emotion/sheet': 0.9.4
+ '@emotion/utils': 0.11.3
+ dev: false
+ peerDependencies:
+ react: '>=16.3.0'
+ resolution:
+ integrity: sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==
/@emotion/core/10.1.1_react@16.14.0:
dependencies:
'@babel/runtime': 7.12.5
@@ -1605,6 +1944,20 @@ packages:
react: '>=16.3.0'
resolution:
integrity: sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==
+ /@emotion/core/10.1.1_react@17.0.1:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ '@emotion/cache': 10.0.29
+ '@emotion/css': 10.0.27
+ '@emotion/serialize': 0.11.16
+ '@emotion/sheet': 0.9.4
+ '@emotion/utils': 0.11.3
+ react: 17.0.1
+ dev: false
+ peerDependencies:
+ react: '>=16.3.0'
+ resolution:
+ integrity: sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==
/@emotion/css/10.0.27:
dependencies:
'@emotion/serialize': 0.11.16
@@ -1641,6 +1994,20 @@ packages:
dev: false
resolution:
integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==
+ /@emotion/styled-base/10.0.31_10fff9175f8ec0d065857495de794004:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ '@emotion/core': 10.1.1_react@17.0.1
+ '@emotion/is-prop-valid': 0.8.8
+ '@emotion/serialize': 0.11.16
+ '@emotion/utils': 0.11.3
+ react: 17.0.1
+ dev: false
+ peerDependencies:
+ '@emotion/core': ^10.0.28
+ react: '>=16.3.0'
+ resolution:
+ integrity: sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==
/@emotion/styled-base/10.0.31_5f216699bc8c1f24088b3bf77b7cbbdf:
dependencies:
'@babel/runtime': 7.12.5
@@ -1655,6 +2022,31 @@ packages:
react: '>=16.3.0'
resolution:
integrity: sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==
+ /@emotion/styled-base/10.0.31_@emotion+core@10.1.1:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ '@emotion/core': 10.1.1
+ '@emotion/is-prop-valid': 0.8.8
+ '@emotion/serialize': 0.11.16
+ '@emotion/utils': 0.11.3
+ dev: false
+ peerDependencies:
+ '@emotion/core': ^10.0.28
+ react: '>=16.3.0'
+ resolution:
+ integrity: sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==
+ /@emotion/styled/10.0.27_10fff9175f8ec0d065857495de794004:
+ dependencies:
+ '@emotion/core': 10.1.1_react@17.0.1
+ '@emotion/styled-base': 10.0.31_10fff9175f8ec0d065857495de794004
+ babel-plugin-emotion: 10.0.33
+ react: 17.0.1
+ dev: false
+ peerDependencies:
+ '@emotion/core': ^10.0.27
+ react: '>=16.3.0'
+ resolution:
+ integrity: sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==
/@emotion/styled/10.0.27_5f216699bc8c1f24088b3bf77b7cbbdf:
dependencies:
'@emotion/core': 10.1.1_react@16.14.0
@@ -1667,6 +2059,17 @@ packages:
react: '>=16.3.0'
resolution:
integrity: sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==
+ /@emotion/styled/10.0.27_@emotion+core@10.1.1:
+ dependencies:
+ '@emotion/core': 10.1.1
+ '@emotion/styled-base': 10.0.31_@emotion+core@10.1.1
+ babel-plugin-emotion: 10.0.33
+ dev: false
+ peerDependencies:
+ '@emotion/core': ^10.0.27
+ react: '>=16.3.0'
+ resolution:
+ integrity: sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==
/@emotion/stylis/0.8.5:
dev: false
resolution:
@@ -1688,7 +2091,7 @@ packages:
cosmiconfig: 6.0.0
lodash.get: 4.4.2
make-error: 1.3.6
- ts-node: 9.0.0
+ ts-node: 9.1.1
tslib: 2.0.3
dev: false
engines:
@@ -1697,15 +2100,15 @@ packages:
cosmiconfig: '>=6'
resolution:
integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==
- /@eslint/eslintrc/0.2.1:
+ /@eslint/eslintrc/0.2.2:
dependencies:
ajv: 6.12.6
- debug: 4.2.0
- espree: 7.3.0
+ debug: 4.3.1
+ espree: 7.3.1
globals: 12.4.0
ignore: 4.0.6
import-fresh: 3.2.2
- js-yaml: 3.14.0
+ js-yaml: 3.14.1
lodash: 4.17.20
minimatch: 3.0.4
strip-json-comments: 3.1.1
@@ -1713,10 +2116,10 @@ packages:
engines:
node: ^10.12.0 || >=12.0.0
resolution:
- integrity: sha512-XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA==
+ integrity: sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ==
/@graphql-tools/batch-execute/7.0.0_graphql@14.7.0:
dependencies:
- '@graphql-tools/utils': 7.0.2_graphql@14.7.0
+ '@graphql-tools/utils': 7.1.6_graphql@14.7.0
dataloader: 2.0.0
graphql: 14.7.0
is-promise: 4.0.0
@@ -1726,12 +2129,12 @@ packages:
graphql: ^14.0.0 || ^15.0.0
resolution:
integrity: sha512-+ywPfK6N2Ddna6oOa5Qb1Mv7EA8LOwRNOAPP9dL37FEhksJM9pYqPSceUcqMqg7S9b0+Cgr78s408rgvurV3/Q==
- /@graphql-tools/delegate/7.0.5_graphql@14.7.0:
+ /@graphql-tools/delegate/7.0.8_graphql@14.7.0:
dependencies:
'@ardatan/aggregate-error': 0.0.6
'@graphql-tools/batch-execute': 7.0.0_graphql@14.7.0
- '@graphql-tools/schema': 7.0.0_graphql@14.7.0
- '@graphql-tools/utils': 7.0.2_graphql@14.7.0
+ '@graphql-tools/schema': 7.1.2_graphql@14.7.0
+ '@graphql-tools/utils': 7.1.6_graphql@14.7.0
dataloader: 2.0.0
graphql: 14.7.0
is-promise: 4.0.0
@@ -1740,22 +2143,20 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0
resolution:
- integrity: sha512-wkB/L9cRxlPB4m9k9WQJZYPbnRxfEu2bkxvI9pVGHMsmoQxMZiM2GkhCBHDTBYJb7cxCS6Wv3LJb1w0iEqw24w==
- /@graphql-tools/graphql-file-loader/6.2.5_graphql@14.7.0:
+ integrity: sha512-pS1wci7ZxzdCITRrMI66UA+6/E0Z1Yczd3QxJBDb4Kp0nTGy1xy7enGa0+i55EmCvKvuwyx+tzXzwA1fNGRJzg==
+ /@graphql-tools/graphql-file-loader/6.2.6_graphql@14.7.0:
dependencies:
- '@graphql-tools/import': 6.2.4_graphql@14.7.0
- '@graphql-tools/utils': 7.0.2_graphql@14.7.0
- fs-extra: 9.0.1
+ '@graphql-tools/import': 6.2.5_graphql@14.7.0
+ '@graphql-tools/utils': 7.1.6_graphql@14.7.0
graphql: 14.7.0
tslib: 2.0.3
dev: false
peerDependencies:
graphql: ^14.0.0 || ^15.0.0
resolution:
- integrity: sha512-vYDn71FHqwCxWgw8swoVOsD5C0xGz/Lw4zUQnPcgZfAzhAAwl6e/rVWl/HF1UNNSf5CSZu+2oidjOWCI5Wl6Gg==
- /@graphql-tools/import/6.2.4_graphql@14.7.0:
+ integrity: sha512-L+RdYl5C6+X0zdOTUotY0K5zwqvSGpqI/qcZpVvCDenoAcVTyaNLmnd/ViErwedhCaGqAAV0wI1nPtyKFPlMUg==
+ /@graphql-tools/import/6.2.5_graphql@14.7.0:
dependencies:
- fs-extra: 9.0.1
graphql: 14.7.0
resolve-from: 5.0.0
tslib: 2.0.3
@@ -1763,22 +2164,21 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0
resolution:
- integrity: sha512-Q6fk6hbtDevoEVcgwb3WRn7XOqGY4MnX3Mvc+x8/b8k4RZ4wT+0WSLRDXGAKiVKRxGhgouU2lZVnGE/LDrGSCg==
- /@graphql-tools/json-file-loader/6.2.5_graphql@14.7.0:
+ integrity: sha512-ZGXT5tDod7m+LO38fc+o0JzR1LstL0RF35HKEWoUdxRIVaaeYH9VMuan9Gn+9M9RDME3RnzEa9aGzf9ATj8bTA==
+ /@graphql-tools/json-file-loader/6.2.6_graphql@14.7.0:
dependencies:
- '@graphql-tools/utils': 7.0.2_graphql@14.7.0
- fs-extra: 9.0.1
+ '@graphql-tools/utils': 7.1.6_graphql@14.7.0
graphql: 14.7.0
tslib: 2.0.3
dev: false
peerDependencies:
graphql: ^14.0.0 || ^15.0.0
resolution:
- integrity: sha512-9LS7WuQdSHlRUvXD7ixt5aDpr3hWsueURHOaWe7T0xZ+KWMTw+LIRtWIliCRzbjNmZ+4ZhwHB3Vc1SO2bfYLgg==
+ integrity: sha512-CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA==
/@graphql-tools/load/6.2.5_graphql@14.7.0:
dependencies:
- '@graphql-tools/merge': 6.2.5_graphql@14.7.0
- '@graphql-tools/utils': 7.0.2_graphql@14.7.0
+ '@graphql-tools/merge': 6.2.6_graphql@14.7.0
+ '@graphql-tools/utils': 7.1.6_graphql@14.7.0
globby: 11.0.1
graphql: 14.7.0
import-from: 3.0.0
@@ -1792,45 +2192,52 @@ packages:
graphql: ^14.0.0 || ^15.0.0
resolution:
integrity: sha512-TpDgp+id0hhD1iMhdFSgWgWumdI/IpFWwouJeaEhEEAEBkdvH4W9gbBiJBSbPQwMPRNWx8/AZtry0cYKLW4lHg==
- /@graphql-tools/merge/6.2.5_graphql@14.7.0:
+ /@graphql-tools/merge/6.2.6_graphql@14.7.0:
dependencies:
- '@graphql-tools/schema': 7.0.0_graphql@14.7.0
- '@graphql-tools/utils': 7.0.2_graphql@14.7.0
+ '@graphql-tools/schema': 7.1.2_graphql@14.7.0
+ '@graphql-tools/utils': 7.1.6_graphql@14.7.0
graphql: 14.7.0
tslib: 2.0.3
dev: false
peerDependencies:
graphql: ^14.0.0 || ^15.0.0
resolution:
- integrity: sha512-T2UEm7L5MeS1ggbGKBkdV9kTqLqSHQM13RrjPzIAYzkFL/mK837sf+oq8h2+R8B+senuHX8akUhMTcU85kcMvw==
- /@graphql-tools/schema/7.0.0_graphql@14.7.0:
+ integrity: sha512-G6x0QlIzFHoJ3dyF9a4gxmBtaEYJ+EoAAGqXHsE/drRr58K1jscQdfKZdF1wZWZgxkgakHqgt1+oFMeQg/O6ug==
+ /@graphql-tools/schema/7.1.2_graphql@14.7.0:
dependencies:
- '@graphql-tools/utils': 7.0.2_graphql@14.7.0
+ '@graphql-tools/utils': 7.1.6_graphql@14.7.0
graphql: 14.7.0
tslib: 2.0.3
dev: false
peerDependencies:
graphql: ^14.0.0 || ^15.0.0
resolution:
- integrity: sha512-yDKgoT2+Uf3cdLYmiFB9lRIGsB6lZhILtCXHgZigYgURExrEPmfj3ZyszfEpPKYcPmKaO9FI4coDhIN0Toxl3w==
- /@graphql-tools/url-loader/6.4.0_graphql@14.7.0:
+ integrity: sha512-GabNT51ErVHE2riDH4EQdRusUsI+nMElT8LdFHyuP53v8gwtleAj+LePQ9jif4NYUe/JQVqO8V28vPcHrA7gfQ==
+ /@graphql-tools/url-loader/6.7.1_graphql@14.7.0:
dependencies:
- '@graphql-tools/delegate': 7.0.5_graphql@14.7.0
- '@graphql-tools/utils': 7.0.2_graphql@14.7.0
- '@graphql-tools/wrap': 7.0.1_graphql@14.7.0
+ '@graphql-tools/delegate': 7.0.8_graphql@14.7.0
+ '@graphql-tools/utils': 7.1.6_graphql@14.7.0
+ '@graphql-tools/wrap': 7.0.4_graphql@14.7.0
'@types/websocket': 1.0.1
cross-fetch: 3.0.6
+ eventsource: 1.0.7
+ extract-files: 9.0.0
graphql: 14.7.0
- subscriptions-transport-ws: 0.9.18_graphql@14.7.0
+ graphql-upload: 11.0.0_graphql@14.7.0
+ graphql-ws: 3.1.0_graphql@14.7.0
+ is-promise: 4.0.0
+ isomorphic-form-data: 2.0.0
+ isomorphic-ws: 4.0.1_ws@7.4.1
+ sse-z: 0.3.0
sync-fetch: 0.3.0
tslib: 2.0.3
valid-url: 1.0.9
- websocket: 1.0.32
+ ws: 7.4.1
dev: false
peerDependencies:
graphql: ^14.0.0 || ^15.0.0
resolution:
- integrity: sha512-M3mS/VH6vpnai3b3Fa33kYcdCgZvhFh7RqFE1R3NMfhYjphQ10EWwgf31P+VQcBNB2zz+ubxttI6UcJLiGqwuQ==
+ integrity: sha512-7NJ1G5diJAuWYZszQf0mNwPipVMOjIIMteNkutdExBq4CgN0V1xa3/iC25CUrI7sZiq+D367zZNONmKf+3bA2Q==
/@graphql-tools/utils/6.2.4_graphql@14.7.0:
dependencies:
'@ardatan/aggregate-error': 0.0.6
@@ -1842,22 +2249,22 @@ packages:
graphql: ^14.0.0 || ^15.0.0
resolution:
integrity: sha512-ybgZ9EIJE3JMOtTrTd2VcIpTXtDrn2q6eiYkeYMKRVh3K41+LZa6YnR2zKERTXqTWqhobROwLt4BZbw2O3Aeeg==
- /@graphql-tools/utils/7.0.2_graphql@14.7.0:
+ /@graphql-tools/utils/7.1.6_graphql@14.7.0:
dependencies:
'@ardatan/aggregate-error': 0.0.6
- camel-case: 4.1.1
+ camel-case: 4.1.2
graphql: 14.7.0
tslib: 2.0.3
dev: false
peerDependencies:
graphql: ^14.0.0 || ^15.0.0
resolution:
- integrity: sha512-VQQ7krHeoXO0FS3qbWsb/vZb8c8oyiCYPIH4RSgeK9SKOUpatWYt3DW4jmLmyHZLVVMk0yjUbsOhKTBEMejKSA==
- /@graphql-tools/wrap/7.0.1_graphql@14.7.0:
+ integrity: sha512-vupjLA3lobKaqFsQJoPqaUhZ525F+SbqhAtZl/mug96EAjjGMi1KpZMqIMP+eyYlVQFgyV1Mej9LALrGU1c9SQ==
+ /@graphql-tools/wrap/7.0.4_graphql@14.7.0:
dependencies:
- '@graphql-tools/delegate': 7.0.5_graphql@14.7.0
- '@graphql-tools/schema': 7.0.0_graphql@14.7.0
- '@graphql-tools/utils': 7.0.2_graphql@14.7.0
+ '@graphql-tools/delegate': 7.0.8_graphql@14.7.0
+ '@graphql-tools/schema': 7.1.2_graphql@14.7.0
+ '@graphql-tools/utils': 7.1.6_graphql@14.7.0
graphql: 14.7.0
is-promise: 4.0.0
tslib: 2.0.3
@@ -1865,7 +2272,7 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0
resolution:
- integrity: sha512-0feqjgEJSRLm2V0kEUaV2dw7ukVPjRujYMqNdcqHsIyXmf0VO8PGF5hcva/+5U/9Yfbf3Fck+P5JTJ5MlXPlsQ==
+ integrity: sha512-txBs0W4k3WR86aEzBYXtKdGeeUXCNdRNxjQA/95T6ywNYoM8pw2mvpoXrWOvzbeaH3zwhbHY7kwii4atrC9irg==
/@gulp-sourcemaps/identity-map/1.0.2:
dependencies:
acorn: 5.7.4
@@ -1941,12 +2348,20 @@ packages:
react: '*'
resolution:
integrity: sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==
+ /@icons/material/0.2.4_react@17.0.1:
+ dependencies:
+ react: 17.0.1
+ dev: false
+ peerDependencies:
+ react: '*'
+ resolution:
+ integrity: sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==
/@istanbuljs/load-nyc-config/1.1.0:
dependencies:
camelcase: 5.3.1
find-up: 4.1.0
get-package-type: 0.1.0
- js-yaml: 3.14.0
+ js-yaml: 3.14.1
resolve-from: 5.0.0
dev: false
engines:
@@ -1961,7 +2376,7 @@ packages:
integrity: sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==
/@jest/transform/26.6.2:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@jest/types': 26.6.2
babel-plugin-istanbul: 6.0.0
chalk: 4.1.0
@@ -1985,7 +2400,7 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.3
'@types/istanbul-reports': 1.1.2
- '@types/yargs': 15.0.9
+ '@types/yargs': 15.0.12
chalk: 3.0.0
dev: false
engines:
@@ -1996,8 +2411,8 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.3
'@types/istanbul-reports': 3.0.0
- '@types/node': 14.14.7
- '@types/yargs': 15.0.9
+ '@types/node': 14.14.14
+ '@types/yargs': 15.0.12
chalk: 4.1.0
dev: false
engines:
@@ -2379,31 +2794,41 @@ packages:
dev: false
resolution:
integrity: sha512-MY5KFYUru0y74IsgM/9asDwb3ERxWxXEu3CRCZEvE7DtT86y1bR1XgtlSliMrptjz4qbivNGMQSvUBpEFJDp1A==
- /@mdx-js/loader/1.6.21_react@16.14.0:
+ /@mdx-js/loader/1.6.22_react@16.14.0:
+ dependencies:
+ '@mdx-js/mdx': 1.6.22
+ '@mdx-js/react': 1.6.22_react@16.14.0
+ loader-utils: 2.0.0
+ dev: false
+ peerDependencies:
+ react: '*'
+ resolution:
+ integrity: sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==
+ /@mdx-js/loader/1.6.22_react@17.0.1:
dependencies:
- '@mdx-js/mdx': 1.6.21
- '@mdx-js/react': 1.6.21_react@16.14.0
+ '@mdx-js/mdx': 1.6.22
+ '@mdx-js/react': 1.6.22_react@17.0.1
loader-utils: 2.0.0
dev: false
peerDependencies:
react: '*'
resolution:
- integrity: sha512-4xNtT7oal4PrLSpZE+75nj9XMwYwc5BuoHmer1GDmer2Hhg8DCLxskk4lWpXnMv+IUg7MboK0EAtZ2fk0szt3A==
- /@mdx-js/mdx/1.6.21:
+ integrity: sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==
+ /@mdx-js/mdx/1.6.22:
dependencies:
- '@babel/core': 7.11.6
- '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.11.6
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.11.6
- '@mdx-js/util': 1.6.21
- babel-plugin-apply-mdx-type-prop: 1.6.21_@babel+core@7.11.6
- babel-plugin-extract-import-names: 1.6.21
+ '@babel/core': 7.12.9
+ '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.9
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
+ '@mdx-js/util': 1.6.22
+ babel-plugin-apply-mdx-type-prop: 1.6.22_@babel+core@7.12.9
+ babel-plugin-extract-import-names: 1.6.22
camelcase-css: 2.0.1
- detab: 2.0.3
+ detab: 2.0.4
hast-util-raw: 6.0.1
lodash.uniq: 4.5.0
- mdast-util-to-hast: 9.1.2
+ mdast-util-to-hast: 10.0.1
remark-footnotes: 2.0.0
- remark-mdx: 1.6.21
+ remark-mdx: 1.6.22
remark-parse: 8.0.3
remark-squeeze-paragraphs: 4.0.0
style-to-object: 0.3.0
@@ -2412,19 +2837,27 @@ packages:
unist-util-visit: 2.0.3
dev: false
resolution:
- integrity: sha512-z35VI6qDw9eAzR/obtgHbYVUdb/Pm+oUnlP1lLR94Oe05Xs2H7vlAgpuFBCLH5g/egzAc2wZCyoVydr25CsF+A==
- /@mdx-js/react/1.6.21_react@16.14.0:
+ integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==
+ /@mdx-js/react/1.6.22_react@16.14.0:
dependencies:
react: 16.14.0
dev: false
peerDependencies:
react: ^16.13.1 || ^17.0.0
resolution:
- integrity: sha512-CgSNT9sq2LAlhEbVlPg7DwUQkypz+CWaWGcJbkgmp9WCAy6vW33CQ44UbKPiH3wet9o+UbXeQOqzZd041va83g==
- /@mdx-js/util/1.6.21:
+ integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==
+ /@mdx-js/react/1.6.22_react@17.0.1:
+ dependencies:
+ react: 17.0.1
+ dev: false
+ peerDependencies:
+ react: ^16.13.1 || ^17.0.0
+ resolution:
+ integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==
+ /@mdx-js/util/1.6.22:
dev: false
resolution:
- integrity: sha512-6sANhqfEHu6gdHZSrzDjN18Y48mIon8f2Os6J+IFmMHN0IhNG/0PUIIsI07kA1sZ9t6vgZNBloVmcDa5WOSe6A==
+ integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==
/@mdx-js/util/2.0.0-next.8:
dev: false
resolution:
@@ -2442,13 +2875,23 @@ packages:
node: '>=4'
resolution:
integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==
- /@nicolo-ribaudo/chokidar-2/2.1.8:
+ /@nicolo-ribaudo/chokidar-2/2.1.8-no-fsevents:
dependencies:
- chokidar: 2.1.8
+ anymatch: 2.0.0
+ async-each: 1.0.3
+ braces: 2.3.2
+ glob-parent: 3.1.0
+ inherits: 2.0.4
+ is-binary-path: 1.0.1
+ is-glob: 4.0.1
+ normalize-path: 3.0.0
+ path-is-absolute: 1.0.1
+ readdirp: 2.2.1
+ upath: 1.2.0
dev: false
optional: true
resolution:
- integrity: sha512-FohwULwAebCUKi/akMFyGi7jfc7JXTeMHzKxuP3umRd9mK/2Y7/SMBSI2jX+YLopPXi+PF9l307NmpfxTdCegA==
+ integrity: sha512-+nb9vWloHNNMFHjGofEam3wopE3m1yuambrrd/fnPc+lFOMB9ROTqQlche9ByFWNkdNqfSgR/kkQtQ8DzEWt2w==
/@nodelib/fs.scandir/2.1.3:
dependencies:
'@nodelib/fs.stat': 2.0.3
@@ -2487,6 +2930,90 @@ packages:
node: '>=10'
resolution:
integrity: sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw==
+ /@octokit/auth-token/2.4.4:
+ dependencies:
+ '@octokit/types': 6.1.1
+ dev: false
+ resolution:
+ integrity: sha512-LNfGu3Ro9uFAYh10MUZVaT7X2CnNm2C8IDQmabx+3DygYIQjs9FwzFAHN/0t6mu5HEPhxcb1XOuxdpY82vCg2Q==
+ /@octokit/core/3.2.4:
+ dependencies:
+ '@octokit/auth-token': 2.4.4
+ '@octokit/graphql': 4.5.8
+ '@octokit/request': 5.4.12
+ '@octokit/types': 6.1.1
+ before-after-hook: 2.1.0
+ universal-user-agent: 6.0.0
+ dev: false
+ resolution:
+ integrity: sha512-d9dTsqdePBqOn7aGkyRFe7pQpCXdibSJ5SFnrTr0axevObZrpz3qkWm7t/NjYv5a66z6vhfteriaq4FRz3e0Qg==
+ /@octokit/endpoint/6.0.10:
+ dependencies:
+ '@octokit/types': 6.1.1
+ is-plain-object: 5.0.0
+ universal-user-agent: 6.0.0
+ dev: false
+ resolution:
+ integrity: sha512-9+Xef8nT7OKZglfkOMm7IL6VwxXUQyR7DUSU0LH/F7VNqs8vyd7es5pTfz9E7DwUIx7R3pGscxu1EBhYljyu7Q==
+ /@octokit/graphql/4.5.8:
+ dependencies:
+ '@octokit/request': 5.4.12
+ '@octokit/types': 6.1.1
+ universal-user-agent: 6.0.0
+ dev: false
+ resolution:
+ integrity: sha512-WnCtNXWOrupfPJgXe+vSmprZJUr0VIu14G58PMlkWGj3cH+KLZEfKMmbUQ6C3Wwx6fdhzVW1CD5RTnBdUHxhhA==
+ /@octokit/openapi-types/2.0.0:
+ dev: false
+ resolution:
+ integrity: sha512-J4bfM7lf8oZvEAdpS71oTvC1ofKxfEZgU5vKVwzZKi4QPiL82udjpseJwxPid9Pu2FNmyRQOX4iEj6W1iOSnPw==
+ /@octokit/plugin-paginate-rest/2.6.2_@octokit+core@3.2.4:
+ dependencies:
+ '@octokit/core': 3.2.4
+ '@octokit/types': 6.1.1
+ dev: false
+ peerDependencies:
+ '@octokit/core': '>=2'
+ resolution:
+ integrity: sha512-3Dy7/YZAwdOaRpGQoNHPeT0VU1fYLpIUdPyvR37IyFLgd6XSij4j9V/xN/+eSjF2KKvmfIulEh9LF1tRPjIiDA==
+ /@octokit/plugin-rest-endpoint-methods/4.4.1_@octokit+core@3.2.4:
+ dependencies:
+ '@octokit/core': 3.2.4
+ '@octokit/types': 6.1.1
+ deprecation: 2.3.1
+ dev: false
+ peerDependencies:
+ '@octokit/core': '>=3'
+ resolution:
+ integrity: sha512-+v5PcvrUcDeFXf8hv1gnNvNLdm4C0+2EiuWt9EatjjUmfriM1pTMM+r4j1lLHxeBQ9bVDmbywb11e3KjuavieA==
+ /@octokit/request-error/2.0.4:
+ dependencies:
+ '@octokit/types': 6.1.1
+ deprecation: 2.3.1
+ once: 1.4.0
+ dev: false
+ resolution:
+ integrity: sha512-LjkSiTbsxIErBiRh5wSZvpZqT4t0/c9+4dOe0PII+6jXR+oj/h66s7E4a/MghV7iT8W9ffoQ5Skoxzs96+gBPA==
+ /@octokit/request/5.4.12:
+ dependencies:
+ '@octokit/endpoint': 6.0.10
+ '@octokit/request-error': 2.0.4
+ '@octokit/types': 6.1.1
+ deprecation: 2.3.1
+ is-plain-object: 5.0.0
+ node-fetch: 2.6.1
+ once: 1.4.0
+ universal-user-agent: 6.0.0
+ dev: false
+ resolution:
+ integrity: sha512-MvWYdxengUWTGFpfpefBBpVmmEYfkwMoxonIB3sUGp5rhdgwjXL1ejo6JbgzG/QD9B/NYt/9cJX1pxXeSIUCkg==
+ /@octokit/types/6.1.1:
+ dependencies:
+ '@octokit/openapi-types': 2.0.0
+ '@types/node': 14.14.14
+ dev: false
+ resolution:
+ integrity: sha512-btm3D6S7VkRrgyYF31etUtVY/eQ1KzrNRqhFt25KSe2mKlXuLXJilglRC6eDA2P6ou94BUnk/Kz5MPEolXgoiw==
/@pieh/friendly-errors-webpack-plugin/1.7.0-chalk-2_webpack@4.44.2:
dependencies:
chalk: 2.4.2
@@ -2499,11 +3026,48 @@ packages:
webpack: ^2.0.0 || ^3.0.0 || ^4.0.0
resolution:
integrity: sha512-65+vYGuDkHBCWWjqzzR/Ck318+d6yTI00EqII9qe3aPD1J3Olhvw0X38uM5moQb1PK/ksDXwSoPGt/5QhCiotw==
+ /@pmmmwh/react-refresh-webpack-plugin/0.4.3_637fe0af5eea2230ffdb56306b9d64e4:
+ dependencies:
+ ansi-html: 0.0.7
+ error-stack-parser: 2.0.6
+ html-entities: 1.3.3
+ native-url: 0.2.6
+ react-refresh: 0.8.3
+ schema-utils: 2.7.1
+ source-map: 0.7.3
+ webpack: 4.44.2
+ dev: false
+ engines:
+ node: '>= 10.x'
+ peerDependencies:
+ '@types/webpack': 4.x
+ react-refresh: '>=0.8.3 <0.10.0'
+ sockjs-client: ^1.4.0
+ type-fest: ^0.13.1
+ webpack: '>=4.43.0 <6.0.0'
+ webpack-dev-server: 3.x
+ webpack-hot-middleware: 2.x
+ webpack-plugin-serve: 0.x || 1.x
+ peerDependenciesMeta:
+ '@types/webpack':
+ optional: true
+ sockjs-client:
+ optional: true
+ type-fest:
+ optional: true
+ webpack-dev-server:
+ optional: true
+ webpack-hot-middleware:
+ optional: true
+ webpack-plugin-serve:
+ optional: true
+ resolution:
+ integrity: sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==
/@pmmmwh/react-refresh-webpack-plugin/0.4.3_841c9eff94ab17f393870ea41cb9c61a:
dependencies:
ansi-html: 0.0.7
error-stack-parser: 2.0.6
- html-entities: 1.3.1
+ html-entities: 1.3.3
native-url: 0.2.6
react-refresh: 0.8.3
schema-utils: 2.7.1
@@ -2538,6 +3102,10 @@ packages:
optional: true
resolution:
integrity: sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==
+ /@popperjs/core/2.6.0:
+ dev: false
+ resolution:
+ integrity: sha512-cPqjjzuFWNK3BSKLm0abspP0sp/IGOli4p5I5fKFAzdS8fvjdOwDCfZqAaIiXd9lPkOWi3SUUfZof3hEb7J/uw==
/@proscom/gulp-svgr/0.1.5:
dependencies:
'@svgr/core': 5.5.0
@@ -2545,12 +3113,24 @@ packages:
'@svgr/plugin-prettier': 5.5.0
camelcase: 6.2.0
plugin-error: 1.0.1
- prettier: 2.1.2
+ prettier: 2.2.1
through2: 3.0.2
vinyl: 2.2.1
dev: false
resolution:
integrity: sha512-5o5XlhV1XmPq9OM0IPnQS6+grwh8ufvyXdjF2Ogjv5UDMrfTAJJ8SHXLVESq/gbsfDnMW0Jj94HQgzeLe7nq0A==
+ /@reach/router/1.3.4:
+ dependencies:
+ create-react-context: 0.3.0_prop-types@15.7.2
+ invariant: 2.2.4
+ prop-types: 15.7.2
+ react-lifecycles-compat: 3.0.4
+ dev: false
+ peerDependencies:
+ react: 15.x || 16.x || 16.4.0-alpha.0911da3
+ react-dom: 15.x || 16.x || 16.4.0-alpha.0911da3
+ resolution:
+ integrity: sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA==
/@reach/router/1.3.4_react-dom@16.14.0+react@16.14.0:
dependencies:
create-react-context: 0.3.0_prop-types@15.7.2+react@16.14.0
@@ -2565,6 +3145,50 @@ packages:
react-dom: 15.x || 16.x || 16.4.0-alpha.0911da3
resolution:
integrity: sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA==
+ /@reach/router/1.3.4_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ create-react-context: 0.3.0_prop-types@15.7.2+react@17.0.1
+ invariant: 2.2.4
+ prop-types: 15.7.2
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ react-lifecycles-compat: 3.0.4
+ dev: false
+ peerDependencies:
+ react: 15.x || 16.x || 16.4.0-alpha.0911da3
+ react-dom: 15.x || 16.x || 16.4.0-alpha.0911da3
+ resolution:
+ integrity: sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA==
+ /@reach/router/1.3.4_react@16.14.0:
+ dependencies:
+ create-react-context: 0.3.0_prop-types@15.7.2+react@16.14.0
+ invariant: 2.2.4
+ prop-types: 15.7.2
+ react: 16.14.0
+ react-lifecycles-compat: 3.0.4
+ dev: false
+ peerDependencies:
+ react: 15.x || 16.x || 16.4.0-alpha.0911da3
+ react-dom: 15.x || 16.x || 16.4.0-alpha.0911da3
+ resolution:
+ integrity: sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA==
+ /@samverschueren/stream-to-observable/0.3.1_rxjs@6.6.3:
+ dependencies:
+ any-observable: 0.3.0
+ rxjs: 6.6.3
+ dev: false
+ engines:
+ node: '>=6'
+ peerDependencies:
+ rxjs: '*'
+ zen-observable: '*'
+ peerDependenciesMeta:
+ rxjs:
+ optional: true
+ zen-observable:
+ optional: true
+ resolution:
+ integrity: sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==
/@sideway/address/4.1.0:
dependencies:
'@hapi/hoek': 9.1.0
@@ -2615,18 +3239,42 @@ packages:
node: '>=10'
resolution:
integrity: sha512-QSdIQ5keUFAZ3KLbfbsntW39ox0Ym8183RqTwBq/ZEFoN3NQAtGV+qWaNdzKpIDHgj9J2CQ2iNDRVU11Zyr7MQ==
- /@storybook/addon-a11y/6.0.28_react-dom@16.14.0+react@16.14.0:
- dependencies:
- '@storybook/addons': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/api': 6.0.28_react-dom@16.14.0
- '@storybook/channels': 6.0.28
- '@storybook/client-api': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/client-logger': 6.0.28
- '@storybook/components': 6.0.28
- '@storybook/core-events': 6.0.28
- '@storybook/theming': 6.0.28_react-dom@16.14.0+react@16.14.0
+ /@storybook/addon-a11y/6.0.21:
+ dependencies:
+ '@storybook/addons': 6.0.21
+ '@storybook/api': 6.0.21
+ '@storybook/channels': 6.0.21
+ '@storybook/client-api': 6.0.21
+ '@storybook/client-logger': 6.0.21
+ '@storybook/components': 6.0.21
+ '@storybook/core-events': 6.0.21
+ '@storybook/theming': 6.0.21
+ axe-core: 3.5.5
+ core-js: 3.8.1
+ global: 4.4.0
+ lodash: 4.17.20
+ react-sizeme: 2.6.12
+ regenerator-runtime: 0.13.7
+ ts-dedent: 1.2.0
+ util-deprecate: 1.0.2
+ dev: false
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-jB6cOx8UwRjd2h04p6TBBwrZInaeE7w4NnmxWRW6Ifo3GLFiZFuI2oSWOe4LEKWWG1eTrk+285fd11zn0ihsTw==
+ /@storybook/addon-a11y/6.0.21_react-dom@16.14.0+react@16.14.0:
+ dependencies:
+ '@storybook/addons': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/api': 6.0.21_react-dom@16.14.0
+ '@storybook/channels': 6.0.21
+ '@storybook/client-api': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/client-logger': 6.0.21
+ '@storybook/components': 6.0.21
+ '@storybook/core-events': 6.0.21
+ '@storybook/theming': 6.0.21_react-dom@16.14.0+react@16.14.0
axe-core: 3.5.5
- core-js: 3.7.0
+ core-js: 3.8.1
global: 4.4.0
lodash: 4.17.20
react: 16.14.0
@@ -2640,16 +3288,16 @@ packages:
react: '*'
react-dom: '*'
resolution:
- integrity: sha512-ewY+tVl5hV7MMB5Yl5GUWIkvyr9KoqKAR429AtGW/Z5Z3/sDO0S3VhS82mm1X0D7Xsg5YrL8AXv4KpfuZhu2iw==
- /@storybook/addon-actions/6.0.28_react-dom@16.14.0:
+ integrity: sha512-jB6cOx8UwRjd2h04p6TBBwrZInaeE7w4NnmxWRW6Ifo3GLFiZFuI2oSWOe4LEKWWG1eTrk+285fd11zn0ihsTw==
+ /@storybook/addon-actions/6.0.21_react-dom@16.14.0:
dependencies:
- '@storybook/addons': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/api': 6.0.28_react-dom@16.14.0
- '@storybook/client-api': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/components': 6.0.28
- '@storybook/core-events': 6.0.28
- '@storybook/theming': 6.0.28_react-dom@16.14.0+react@16.14.0
- core-js: 3.7.0
+ '@storybook/addons': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/api': 6.0.21_react-dom@16.14.0
+ '@storybook/client-api': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/components': 6.0.21
+ '@storybook/core-events': 6.0.21
+ '@storybook/theming': 6.0.21_react-dom@16.14.0+react@16.14.0
+ core-js: 3.8.1
fast-deep-equal: 3.1.3
global: 4.4.0
lodash: 4.17.20
@@ -2661,58 +3309,106 @@ packages:
regenerator-runtime: 0.13.7
ts-dedent: 1.2.0
util-deprecate: 1.0.2
- uuid: 8.3.1
+ uuid: 8.3.2
dev: false
peerDependencies:
react-dom: '*'
resolution:
- integrity: sha512-DrApIt/rMCBrynJsFbmXPba2BCAj+yOybCsr0cqNNMkaZytAnoeDEqseCdWUtNXSgDnprAQ0HIrS2TIf4twh8w==
- /@storybook/addon-controls/6.0.28_react-dom@16.14.0+react@16.14.0:
+ integrity: sha512-9y3ve+3GK1TsxQ5pxDjhB7E/XJXY+WqcSNlOX8Mb+XbS6AAgpFbkZCw1q8CGzyEUclHsQ6UK2+lo+IRGs4TLpA==
+ /@storybook/addon-actions/6.1.11_react-dom@17.0.1+react@17.0.1:
dependencies:
- '@storybook/addons': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/api': 6.0.28_react-dom@16.14.0
- '@storybook/client-api': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/components': 6.0.28
- '@storybook/node-logger': 6.0.28
- '@storybook/theming': 6.0.28_react-dom@16.14.0+react@16.14.0
- core-js: 3.7.0
- react: 16.14.0
- react-dom: 16.14.0_react@16.14.0
- ts-dedent: 1.2.0
+ '@storybook/addons': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/api': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/client-api': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/components': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/core-events': 6.1.11
+ '@storybook/theming': 6.1.11_react-dom@17.0.1+react@17.0.1
+ core-js: 3.8.1
+ fast-deep-equal: 3.1.3
+ global: 4.4.0
+ lodash: 4.17.20
+ polished: 3.6.7
+ prop-types: 15.7.2
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ react-inspector: 5.1.0_react@17.0.1
+ regenerator-runtime: 0.13.7
+ ts-dedent: 2.0.0
+ util-deprecate: 1.0.2
+ uuid: 8.3.2
dev: false
peerDependencies:
- react: '*'
- react-dom: '*'
- resolution:
- integrity: sha512-wG42u5wkLSuk5M3VPAr6ui/lH75tU1BNGZWtCbDDVPRX/EOF3WxXDhS8gvWefyNcmshnFlbCOhA1Xt7rrLPfpg==
- /@storybook/addon-docs/6.0.28_906d2630cd406e3c0a61bb9152b26dc1:
- dependencies:
- '@babel/core': 7.12.3
- '@babel/generator': 7.12.5
- '@babel/parser': 7.12.5
- '@babel/plugin-transform-react-jsx': 7.12.5_@babel+core@7.12.3
- '@babel/preset-env': 7.12.1_@babel+core@7.12.3
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-dom:
+ optional: true
+ resolution:
+ integrity: sha512-J44XLx2G732OG7Az79Cpk5UlI5SyXHeQqdykwT/4IEQXSBXAYWSTIJJjpJdcjR/D+zpklab1QDSiWxCrKbe81A==
+ /@storybook/addon-controls/6.0.21:
+ dependencies:
+ '@storybook/addons': 6.0.21
+ '@storybook/api': 6.0.21
+ '@storybook/client-api': 6.0.21
+ '@storybook/components': 6.0.21
+ '@storybook/node-logger': 6.0.21
+ '@storybook/theming': 6.0.21
+ core-js: 3.8.1
+ ts-dedent: 1.2.0
+ dev: false
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-ksL+BqzWVTezY3u0AeSuQBZdiDzTImfLx1xjmLkPTeFgfVBzHRKN4sqIWHzy1zVCCVL0fAzZ8g3Sgk5iVNs3uw==
+ /@storybook/addon-controls/6.0.21_react-dom@16.14.0+react@16.14.0:
+ dependencies:
+ '@storybook/addons': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/api': 6.0.21_react-dom@16.14.0
+ '@storybook/client-api': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/components': 6.0.21
+ '@storybook/node-logger': 6.0.21
+ '@storybook/theming': 6.0.21_react-dom@16.14.0+react@16.14.0
+ core-js: 3.8.1
+ react: 16.14.0
+ react-dom: 16.14.0_react@16.14.0
+ ts-dedent: 1.2.0
+ dev: false
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-ksL+BqzWVTezY3u0AeSuQBZdiDzTImfLx1xjmLkPTeFgfVBzHRKN4sqIWHzy1zVCCVL0fAzZ8g3Sgk5iVNs3uw==
+ /@storybook/addon-docs/6.0.21_68787581c8a175dc46973c49b400b292:
+ dependencies:
+ '@babel/core': 7.12.10
+ '@babel/generator': 7.12.11
+ '@babel/parser': 7.12.11
+ '@babel/plugin-transform-react-jsx': 7.12.11_@babel+core@7.12.10
+ '@babel/preset-env': 7.12.11_@babel+core@7.12.10
'@jest/transform': 26.6.2
- '@mdx-js/loader': 1.6.21_react@16.14.0
- '@mdx-js/mdx': 1.6.21
- '@mdx-js/react': 1.6.21_react@16.14.0
- '@storybook/addons': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/api': 6.0.28_react-dom@16.14.0
- '@storybook/client-api': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/client-logger': 6.0.28
- '@storybook/components': 6.0.28
- '@storybook/core': 6.0.28_e022e2c0e03c001c1fe6c7d1c978ba75
- '@storybook/core-events': 6.0.28
+ '@mdx-js/loader': 1.6.22_react@16.14.0
+ '@mdx-js/mdx': 1.6.22
+ '@mdx-js/react': 1.6.22_react@16.14.0
+ '@storybook/addons': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/api': 6.0.21_react-dom@16.14.0
+ '@storybook/client-api': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/client-logger': 6.0.21
+ '@storybook/components': 6.0.21
+ '@storybook/core': 6.0.21_ad73ffc78ffa321d3138a4dec023a174
+ '@storybook/core-events': 6.0.21
'@storybook/csf': 0.0.1
- '@storybook/node-logger': 6.0.28
- '@storybook/postinstall': 6.0.28
- '@storybook/source-loader': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/theming': 6.0.28_react-dom@16.14.0+react@16.14.0
+ '@storybook/node-logger': 6.0.21
+ '@storybook/postinstall': 6.0.21
+ '@storybook/source-loader': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/theming': 6.0.21_react-dom@16.14.0+react@16.14.0
acorn: 7.4.1
acorn-jsx: 5.3.1_acorn@7.4.1
acorn-walk: 7.2.0
- babel-loader: 8.2.1_427212bc1158d185e577033f19ca0757
- core-js: 3.7.0
+ babel-loader: 8.2.2_cb0b35cdd86d43ae111e54bfa48070d7
+ core-js: 3.8.1
doctrine: 3.0.0
escodegen: 1.14.3
fast-deep-equal: 3.1.3
@@ -2724,6 +3420,7 @@ packages:
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
react-element-to-jsx-string: 14.3.2_react-dom@16.14.0+react@16.14.0
+ react-is: 16.13.1
regenerator-runtime: 0.13.7
remark-external-links: 6.1.0
remark-slug: 6.0.0
@@ -2751,16 +3448,86 @@ packages:
webpack:
optional: true
resolution:
- integrity: sha512-JaZTAZsHMuEs3a3Tqk1JOPfVvUmqzmaBrjn4aDv37eNlTGY+IL8kjgy2iQBaotiIDsZjKx6dSMrL/DAxbD2+UQ==
- /@storybook/addon-links/6.0.28_react-dom@16.14.0+react@16.14.0:
+ integrity: sha512-uvlNayXq2W0+LeYDf2hrll9I4fuVdrZZizhQPRiBuJDRuQ8EVP8R62tr1rjfbLdONngOy0k2C9QJgfL32Ohu7w==
+ /@storybook/addon-docs/6.1.11_31893369a904e829e804da5cdd24ea59:
+ dependencies:
+ '@babel/core': 7.12.10
+ '@babel/generator': 7.12.11
+ '@babel/parser': 7.12.11
+ '@babel/plugin-transform-react-jsx': 7.12.11_@babel+core@7.12.10
+ '@babel/preset-env': 7.12.11_@babel+core@7.12.10
+ '@jest/transform': 26.6.2
+ '@mdx-js/loader': 1.6.22_react@17.0.1
+ '@mdx-js/mdx': 1.6.22
+ '@mdx-js/react': 1.6.22_react@17.0.1
+ '@storybook/addons': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/api': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/client-api': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/client-logger': 6.1.11
+ '@storybook/components': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/core': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/core-events': 6.1.11
+ '@storybook/csf': 0.0.1
+ '@storybook/node-logger': 6.1.11
+ '@storybook/postinstall': 6.1.11
+ '@storybook/source-loader': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/theming': 6.1.11_react-dom@17.0.1+react@17.0.1
+ acorn: 7.4.1
+ acorn-jsx: 5.3.1_acorn@7.4.1
+ acorn-walk: 7.2.0
+ babel-loader: 8.2.2_cb0b35cdd86d43ae111e54bfa48070d7
+ core-js: 3.8.1
+ doctrine: 3.0.0
+ escodegen: 1.14.3
+ fast-deep-equal: 3.1.3
+ global: 4.4.0
+ html-tags: 3.1.0
+ js-string-escape: 1.0.1
+ lodash: 4.17.20
+ prettier: 2.0.5
+ prop-types: 15.7.2
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ react-element-to-jsx-string: 14.3.2_react-dom@17.0.1+react@17.0.1
+ regenerator-runtime: 0.13.7
+ remark-external-links: 6.1.0
+ remark-slug: 6.0.0
+ ts-dedent: 2.0.0
+ util-deprecate: 1.0.2
+ webpack: 4.44.2
+ dev: false
+ peerDependencies:
+ '@storybook/vue': 6.1.11
+ babel-loader: ^8.0.0
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
+ sveltedoc-parser: ^3.0.4
+ vue: ^2.6.10
+ webpack: '>=4'
+ peerDependenciesMeta:
+ '@storybook/vue':
+ optional: true
+ react:
+ optional: true
+ react-dom:
+ optional: true
+ sveltedoc-parser:
+ optional: true
+ vue:
+ optional: true
+ webpack:
+ optional: true
+ resolution:
+ integrity: sha512-dC6RpNWFvbEs68WDk30jrzmPncR0u7nn0SQl0Ao1wdLqCU81ptti/t6Yc7zanlo9hokMzGiom87ZMef0ad9nTQ==
+ /@storybook/addon-links/6.0.21_react-dom@16.14.0+react@16.14.0:
dependencies:
- '@storybook/addons': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/client-logger': 6.0.28
- '@storybook/core-events': 6.0.28
+ '@storybook/addons': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/client-logger': 6.0.21
+ '@storybook/core-events': 6.0.21
'@storybook/csf': 0.0.1
- '@storybook/router': 6.0.28_react-dom@16.14.0+react@16.14.0
+ '@storybook/router': 6.0.21_react-dom@16.14.0+react@16.14.0
'@types/qs': 6.9.5
- core-js: 3.7.0
+ core-js: 3.8.1
global: 4.4.0
prop-types: 15.7.2
qs: 6.9.4
@@ -2773,17 +3540,66 @@ packages:
react: '*'
react-dom: '*'
resolution:
- integrity: sha512-5i0nh8vKQKRZGQAnI05VBPSKnZYlaIeB7sPcAzBvb1a8aSVQS4O1MBS9H5e92iN9N4QD7GujhN0aQh3aRbq/hw==
- /@storybook/addon-storysource/6.0.28_react-dom@16.14.0:
- dependencies:
- '@storybook/addons': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/api': 6.0.28_react-dom@16.14.0
- '@storybook/client-logger': 6.0.28
- '@storybook/components': 6.0.28
- '@storybook/router': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/source-loader': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/theming': 6.0.28_react-dom@16.14.0+react@16.14.0
- core-js: 3.7.0
+ integrity: sha512-5cRFxXS9BviDbS+DCKElr1vSafDcRhX74iIAWl/yOBUldUZvR+gX3WOZ7bO+OBSlQ1NJkt1NUAMag3aiJa4UUw==
+ /@storybook/addon-links/6.1.11_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ '@storybook/addons': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/client-logger': 6.1.11
+ '@storybook/core-events': 6.1.11
+ '@storybook/csf': 0.0.1
+ '@storybook/router': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@types/qs': 6.9.5
+ core-js: 3.8.1
+ global: 4.4.0
+ prop-types: 15.7.2
+ qs: 6.9.4
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ regenerator-runtime: 0.13.7
+ ts-dedent: 2.0.0
+ dev: false
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-dom:
+ optional: true
+ resolution:
+ integrity: sha512-OIBeOdTHNr/egIuyOUEtEBtZJXVp9PEPQ4MDxvKsCgpnXruPhjenPNW+mQKxm4SefpePW7zkx6k1ubpYVJUeag==
+ /@storybook/addon-storysource/6.0.21:
+ dependencies:
+ '@storybook/addons': 6.0.21_react@16.14.0
+ '@storybook/api': 6.0.21
+ '@storybook/client-logger': 6.0.21
+ '@storybook/components': 6.0.21
+ '@storybook/router': 6.0.21_react@16.14.0
+ '@storybook/source-loader': 6.0.21_react@16.14.0
+ '@storybook/theming': 6.0.21_react@16.14.0
+ core-js: 3.8.1
+ estraverse: 4.3.0
+ loader-utils: 2.0.0
+ prettier: 2.0.5
+ prop-types: 15.7.2
+ react: 16.14.0
+ react-syntax-highlighter: 12.2.1_react@16.14.0
+ regenerator-runtime: 0.13.7
+ dev: false
+ peerDependencies:
+ react-dom: '*'
+ resolution:
+ integrity: sha512-h8bu2twPfBRbWlxg8LRtCM5/r2FxWahJa0RC70qDX6eNdzDw6Xv0B8bZsVxKPWqBNQbwYPz5ui44ym53dFDM/Q==
+ /@storybook/addon-storysource/6.0.21_react-dom@16.14.0:
+ dependencies:
+ '@storybook/addons': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/api': 6.0.21_react-dom@16.14.0
+ '@storybook/client-logger': 6.0.21
+ '@storybook/components': 6.0.21
+ '@storybook/router': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/source-loader': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/theming': 6.0.21_react-dom@16.14.0+react@16.14.0
+ core-js: 3.8.1
estraverse: 4.3.0
loader-utils: 2.0.0
prettier: 2.0.5
@@ -2796,16 +3612,35 @@ packages:
peerDependencies:
react-dom: '*'
resolution:
- integrity: sha512-Y3IL8pY0gPlZobcp5A6teuiwshgSAmMju9EqliGIJPdeZ3tB0ZD8L0lL0UTV4nQZli2KPvkrAarY8UHLDV6L+A==
- /@storybook/addon-viewport/6.0.28_react-dom@16.14.0+react@16.14.0:
+ integrity: sha512-h8bu2twPfBRbWlxg8LRtCM5/r2FxWahJa0RC70qDX6eNdzDw6Xv0B8bZsVxKPWqBNQbwYPz5ui44ym53dFDM/Q==
+ /@storybook/addon-viewport/6.0.21:
+ dependencies:
+ '@storybook/addons': 6.0.21
+ '@storybook/api': 6.0.21
+ '@storybook/client-logger': 6.0.21
+ '@storybook/components': 6.0.21
+ '@storybook/core-events': 6.0.21
+ '@storybook/theming': 6.0.21
+ core-js: 3.8.1
+ global: 4.4.0
+ memoizerific: 1.11.3
+ prop-types: 15.7.2
+ regenerator-runtime: 0.13.7
+ dev: false
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-FFUkhpZy7npRTaqX9SwMz5Yzo0/ivuApwr47xqblDEEyq7edWqo7YKsPnpAGeM9MlRpQNf6aU9huwDqKeRfKuQ==
+ /@storybook/addon-viewport/6.0.21_react-dom@16.14.0+react@16.14.0:
dependencies:
- '@storybook/addons': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/api': 6.0.28_react-dom@16.14.0
- '@storybook/client-logger': 6.0.28
- '@storybook/components': 6.0.28
- '@storybook/core-events': 6.0.28
- '@storybook/theming': 6.0.28_react-dom@16.14.0+react@16.14.0
- core-js: 3.7.0
+ '@storybook/addons': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/api': 6.0.21_react-dom@16.14.0
+ '@storybook/client-logger': 6.0.21
+ '@storybook/components': 6.0.21
+ '@storybook/core-events': 6.0.21
+ '@storybook/theming': 6.0.21_react-dom@16.14.0+react@16.14.0
+ core-js: 3.8.1
global: 4.4.0
memoizerific: 1.11.3
prop-types: 15.7.2
@@ -2817,16 +3652,33 @@ packages:
react: '*'
react-dom: '*'
resolution:
- integrity: sha512-I2I6+V0GCtypn0AKw4s1EKHicPqHyQfcM9T7RMbeZIf11Dc71hbbRt9U6kajZ8go84qzXGPm8/Vd0kvDO28WaA==
- /@storybook/addons/6.0.28_react-dom@16.14.0+react@16.14.0:
+ integrity: sha512-FFUkhpZy7npRTaqX9SwMz5Yzo0/ivuApwr47xqblDEEyq7edWqo7YKsPnpAGeM9MlRpQNf6aU9huwDqKeRfKuQ==
+ /@storybook/addons/6.0.21:
+ dependencies:
+ '@storybook/api': 6.0.21
+ '@storybook/channels': 6.0.21
+ '@storybook/client-logger': 6.0.21
+ '@storybook/core-events': 6.0.21
+ '@storybook/router': 6.0.21
+ '@storybook/theming': 6.0.21
+ core-js: 3.8.1
+ global: 4.4.0
+ regenerator-runtime: 0.13.7
+ dev: false
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-yDttNLc3vXqBxwK795ykgzTC6MpvuXDQuF4LHSlHZQe6wsMu1m3fljnbYdafJWdx6cNZwUblU3KYcR11PqhkPg==
+ /@storybook/addons/6.0.21_react-dom@16.14.0+react@16.14.0:
dependencies:
- '@storybook/api': 6.0.28_react-dom@16.14.0
- '@storybook/channels': 6.0.28
- '@storybook/client-logger': 6.0.28
- '@storybook/core-events': 6.0.28
- '@storybook/router': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/theming': 6.0.28_react-dom@16.14.0+react@16.14.0
- core-js: 3.7.0
+ '@storybook/api': 6.0.21_react-dom@16.14.0
+ '@storybook/channels': 6.0.21
+ '@storybook/client-logger': 6.0.21
+ '@storybook/core-events': 6.0.21
+ '@storybook/router': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/theming': 6.0.21_react-dom@16.14.0+react@16.14.0
+ core-js: 3.8.1
global: 4.4.0
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
@@ -2836,19 +3688,83 @@ packages:
react: '*'
react-dom: '*'
resolution:
- integrity: sha512-3Brf9w/u2sw0huarcO1iLFBmGt7KtApRxX4bFcsRiPPFxliDrmb1sAsd37UbKp8qBSw1U6FByjuTJQ7xn/TDhg==
- /@storybook/api/6.0.28_react-dom@16.14.0:
+ integrity: sha512-yDttNLc3vXqBxwK795ykgzTC6MpvuXDQuF4LHSlHZQe6wsMu1m3fljnbYdafJWdx6cNZwUblU3KYcR11PqhkPg==
+ /@storybook/addons/6.0.21_react@16.14.0:
+ dependencies:
+ '@storybook/api': 6.0.21
+ '@storybook/channels': 6.0.21
+ '@storybook/client-logger': 6.0.21
+ '@storybook/core-events': 6.0.21
+ '@storybook/router': 6.0.21_react@16.14.0
+ '@storybook/theming': 6.0.21_react@16.14.0
+ core-js: 3.8.1
+ global: 4.4.0
+ react: 16.14.0
+ regenerator-runtime: 0.13.7
+ dev: false
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-yDttNLc3vXqBxwK795ykgzTC6MpvuXDQuF4LHSlHZQe6wsMu1m3fljnbYdafJWdx6cNZwUblU3KYcR11PqhkPg==
+ /@storybook/addons/6.1.11_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ '@storybook/api': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/channels': 6.1.11
+ '@storybook/client-logger': 6.1.11
+ '@storybook/core-events': 6.1.11
+ '@storybook/router': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/theming': 6.1.11_react-dom@17.0.1+react@17.0.1
+ core-js: 3.8.1
+ global: 4.4.0
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ regenerator-runtime: 0.13.7
+ dev: false
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
+ resolution:
+ integrity: sha512-OZXsdmn60dVe482l9zWxzOqqJApD2jggk/8QJKn3/Ub9posmqdqg712bW6v71BBe0UXXG/QfkZA7gcyiyEENbw==
+ /@storybook/api/6.0.21:
+ dependencies:
+ '@reach/router': 1.3.4_react@16.14.0
+ '@storybook/channels': 6.0.21
+ '@storybook/client-logger': 6.0.21
+ '@storybook/core-events': 6.0.21
+ '@storybook/csf': 0.0.1
+ '@storybook/router': 6.0.21_react@16.14.0
+ '@storybook/semver': 7.3.2
+ '@storybook/theming': 6.0.21_react@16.14.0
+ '@types/reach__router': 1.3.6
+ core-js: 3.8.1
+ fast-deep-equal: 3.1.3
+ global: 4.4.0
+ lodash: 4.17.20
+ memoizerific: 1.11.3
+ react: 16.14.0
+ regenerator-runtime: 0.13.7
+ store2: 2.12.0
+ telejson: 5.1.0
+ ts-dedent: 1.2.0
+ util-deprecate: 1.0.2
+ dev: false
+ peerDependencies:
+ react-dom: '*'
+ resolution:
+ integrity: sha512-cRRGf/KGFwYiDouTouEcDdp45N1AbYnAfvLqYZ3KuUTGZ+CiU/PN/vavkp07DQeM4FIQO8TLhzHdsLFpLT7Lkw==
+ /@storybook/api/6.0.21_react-dom@16.14.0:
dependencies:
'@reach/router': 1.3.4_react-dom@16.14.0+react@16.14.0
- '@storybook/channels': 6.0.28
- '@storybook/client-logger': 6.0.28
- '@storybook/core-events': 6.0.28
+ '@storybook/channels': 6.0.21
+ '@storybook/client-logger': 6.0.21
+ '@storybook/core-events': 6.0.21
'@storybook/csf': 0.0.1
- '@storybook/router': 6.0.28_react-dom@16.14.0+react@16.14.0
+ '@storybook/router': 6.0.21_react-dom@16.14.0+react@16.14.0
'@storybook/semver': 7.3.2
- '@storybook/theming': 6.0.28_react-dom@16.14.0+react@16.14.0
+ '@storybook/theming': 6.0.21_react-dom@16.14.0+react@16.14.0
'@types/reach__router': 1.3.6
- core-js: 3.7.0
+ core-js: 3.8.1
fast-deep-equal: 3.1.3
global: 4.4.0
lodash: 4.17.20
@@ -2864,37 +3780,117 @@ packages:
peerDependencies:
react-dom: '*'
resolution:
- integrity: sha512-6dWjz5HSM3v8c+J0Z/lGYGujs4ZKSt1lJUWaH/MPvuoeDiVm+1jKLwWTAMlMnOP9o8xgNTuQtEbQkNG2D66oQA==
- /@storybook/channel-postmessage/6.0.28:
+ integrity: sha512-cRRGf/KGFwYiDouTouEcDdp45N1AbYnAfvLqYZ3KuUTGZ+CiU/PN/vavkp07DQeM4FIQO8TLhzHdsLFpLT7Lkw==
+ /@storybook/api/6.1.11_react-dom@17.0.1+react@17.0.1:
dependencies:
- '@storybook/channels': 6.0.28
- '@storybook/client-logger': 6.0.28
- '@storybook/core-events': 6.0.28
- core-js: 3.7.0
+ '@reach/router': 1.3.4_react-dom@17.0.1+react@17.0.1
+ '@storybook/channels': 6.1.11
+ '@storybook/client-logger': 6.1.11
+ '@storybook/core-events': 6.1.11
+ '@storybook/csf': 0.0.1
+ '@storybook/router': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/semver': 7.3.2
+ '@storybook/theming': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@types/reach__router': 1.3.6
+ core-js: 3.8.1
+ fast-deep-equal: 3.1.3
+ global: 4.4.0
+ lodash: 4.17.20
+ memoizerific: 1.11.3
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ regenerator-runtime: 0.13.7
+ store2: 2.12.0
+ telejson: 5.1.0
+ ts-dedent: 2.0.0
+ util-deprecate: 1.0.2
+ dev: false
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
+ resolution:
+ integrity: sha512-/p4QW/p3uWO0AKVveNezX3I/CotyBKaJ5ui8PuvSPsl7yvqcsK41qI4evKOw7GMQn6oP+2enRbzHpGuCUgQSjA==
+ /@storybook/channel-postmessage/6.0.21:
+ dependencies:
+ '@storybook/channels': 6.0.21
+ '@storybook/client-logger': 6.0.21
+ '@storybook/core-events': 6.0.21
+ core-js: 3.8.1
global: 4.4.0
qs: 6.9.4
telejson: 5.1.0
dev: false
resolution:
- integrity: sha512-HnLKXPIwZo+JvuG1aYfGX+BoDVpmYbZBlFDSSKroBdCWZRxJJ7OQIOjBWfnf9RxOJqtwEZfVylgtmIUr9ult3Q==
- /@storybook/channels/6.0.28:
+ integrity: sha512-ArRnoaS+b7qpAku/SO27z/yjRDCXb37mCPYGX0ntPbiQajootUbGO7otfnjFkaP44hCEC9uDYlOfMU1hYU1N6A==
+ /@storybook/channel-postmessage/6.1.11:
dependencies:
- core-js: 3.7.0
+ '@storybook/channels': 6.1.11
+ '@storybook/client-logger': 6.1.11
+ '@storybook/core-events': 6.1.11
+ core-js: 3.8.1
+ global: 4.4.0
+ qs: 6.9.4
+ telejson: 5.1.0
+ dev: false
+ resolution:
+ integrity: sha512-voW4Z2SUacDOxwN2q1NEBL//8OpgvL2C5CeoG1VQyEllKM8Vg9t1Nxo2FFTJBzv5LeEX7VIJKeBoB25DYvKyng==
+ /@storybook/channels/6.0.21:
+ dependencies:
+ core-js: 3.8.1
ts-dedent: 1.2.0
util-deprecate: 1.0.2
dev: false
resolution:
- integrity: sha512-Ow1fR0GGdlfAQlagOrXHs7QQlCQ0xTKoznQgUFv1KxKw/bMwMtTJcpCYGSAuDzCzypCIR4EHtIHZxJsd/A2ieg==
- /@storybook/cli/6.0.28:
+ integrity: sha512-G6gjcEotSwDmOlxSmOMgsO3VhQ42RLJK7kFp6D5eg0Q6S8vsypltdT8orxdu+6+AbcBrL+5Sla8lThzaCvXsVQ==
+ /@storybook/channels/6.1.11:
+ dependencies:
+ core-js: 3.8.1
+ ts-dedent: 2.0.0
+ util-deprecate: 1.0.2
+ dev: false
+ resolution:
+ integrity: sha512-NvjWzQ95TSV1e18jaQBCOGoe+vptKH2NOKZ7QRQ7I0O5OoHKr47IXoh+MQ5C8CRD9FTdLE/xWdn1sVVEPRyHEw==
+ /@storybook/cli/6.0.21:
+ dependencies:
+ '@babel/core': 7.12.10
+ '@babel/preset-env': 7.12.11_@babel+core@7.12.10
+ '@storybook/codemod': 6.0.21
+ '@storybook/node-logger': 6.0.21
+ '@storybook/semver': 7.3.2
+ chalk: 4.1.0
+ commander: 5.1.0
+ core-js: 3.8.1
+ cross-spawn: 7.0.3
+ envinfo: 7.7.3
+ express: 4.17.1
+ find-up: 4.1.0
+ fs-extra: 9.0.1
+ get-port: 5.1.1
+ globby: 11.0.1
+ inquirer: 7.3.3
+ jscodeshift: 0.6.4
+ json5: 2.1.3
+ leven: 3.1.0
+ puppeteer-core: 2.1.1
+ shelljs: 0.8.4
+ strip-json-comments: 3.1.1
+ update-notifier: 4.1.3
+ dev: false
+ hasBin: true
+ peerDependencies:
+ jest: '*'
+ resolution:
+ integrity: sha512-KLj4dagdFiubj7UyGslOpz838DLXAoWxduoa/OISaGvLN5jUpGF5BflVBK/9k4WrR8VqhYxabMVrXkWDR+98KA==
+ /@storybook/cli/6.1.11:
dependencies:
- '@babel/core': 7.12.3
- '@babel/preset-env': 7.12.1_@babel+core@7.12.3
- '@storybook/codemod': 6.0.28
- '@storybook/node-logger': 6.0.28
+ '@babel/core': 7.12.10
+ '@babel/preset-env': 7.12.11_@babel+core@7.12.10
+ '@storybook/codemod': 6.1.11
+ '@storybook/node-logger': 6.1.11
'@storybook/semver': 7.3.2
chalk: 4.1.0
commander: 5.1.0
- core-js: 3.7.0
+ core-js: 3.8.1
cross-spawn: 7.0.3
envinfo: 7.7.3
express: 4.17.1
@@ -2915,18 +3911,43 @@ packages:
peerDependencies:
jest: '*'
resolution:
- integrity: sha512-7chVzku1w8sQ3epbArQG/XpBSOi/6k+ns11Ljxo7fKSGAvDGbO3rBDkh8sDYb2vNSAOpRuaTdxUHA6bmFrTXBQ==
- /@storybook/client-api/6.0.28_react-dom@16.14.0+react@16.14.0:
+ integrity: sha512-so2T0nUa0xk2kG8cZwUuyznwt3Fyw8ox+dA8DILeFlCLOLfOr1+5IspX2160EJLMLMOFi7C+z3ivJ0zWNcs/hQ==
+ /@storybook/client-api/6.0.21:
dependencies:
- '@storybook/addons': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/channel-postmessage': 6.0.28
- '@storybook/channels': 6.0.28
- '@storybook/client-logger': 6.0.28
- '@storybook/core-events': 6.0.28
+ '@storybook/addons': 6.0.21
+ '@storybook/channel-postmessage': 6.0.21
+ '@storybook/channels': 6.0.21
+ '@storybook/client-logger': 6.0.21
+ '@storybook/core-events': 6.0.21
'@storybook/csf': 0.0.1
'@types/qs': 6.9.5
- '@types/webpack-env': 1.15.3
- core-js: 3.7.0
+ '@types/webpack-env': 1.16.0
+ core-js: 3.8.1
+ global: 4.4.0
+ lodash: 4.17.20
+ memoizerific: 1.11.3
+ qs: 6.9.4
+ stable: 0.1.8
+ store2: 2.12.0
+ ts-dedent: 1.2.0
+ util-deprecate: 1.0.2
+ dev: false
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-emBXd/ml6pc3G8gP3MsR9zQsAq1zZbqof9MxB51tG/jpTXdqWQ8ce1pt1tJS8Xj0QDM072jR6wsY+mmro0GZnA==
+ /@storybook/client-api/6.0.21_react-dom@16.14.0+react@16.14.0:
+ dependencies:
+ '@storybook/addons': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/channel-postmessage': 6.0.21
+ '@storybook/channels': 6.0.21
+ '@storybook/client-logger': 6.0.21
+ '@storybook/core-events': 6.0.21
+ '@storybook/csf': 0.0.1
+ '@types/qs': 6.9.5
+ '@types/webpack-env': 1.16.0
+ core-js: 3.8.1
global: 4.4.0
lodash: 4.17.20
memoizerific: 1.11.3
@@ -2942,108 +3963,304 @@ packages:
react: '*'
react-dom: '*'
resolution:
- integrity: sha512-KZ6cw6MU8exXyahHrpNAG5gmSioCXw6I5k0IOH/xzkJpN/9IMbYSbACvxbSKHeCIZorhcWNVWJjth8Kc6dD4Hg==
- /@storybook/client-logger/6.0.28:
- dependencies:
- core-js: 3.7.0
- global: 4.4.0
- dev: false
- resolution:
- integrity: sha512-FOgeRQknrlm5PTgfY0THPrcrDyxu4ImuFOn+VWQW60mf9ShJQl45BEgm4bm9hbblYYnVHtnskWUOJfxqhHvgjg==
- /@storybook/codemod/6.0.28:
- dependencies:
- '@mdx-js/mdx': 1.6.21
- '@storybook/csf': 0.0.1
- '@storybook/node-logger': 6.0.28
- core-js: 3.7.0
- cross-spawn: 7.0.3
- globby: 11.0.1
- jscodeshift: 0.7.1
- lodash: 4.17.20
- prettier: 2.0.5
- recast: 0.19.1
- regenerator-runtime: 0.13.7
- dev: false
- resolution:
- integrity: sha512-+OXMY3UVKf2mVMsWtqIECf66lRW+RnBT1fXZcBzQGxgMgVkU60uqhYuiMqQB8kzEoeAuDp9c4O41QtBJ9kN3wg==
- /@storybook/components/6.0.28:
- dependencies:
- '@storybook/client-logger': 6.0.28
- '@storybook/csf': 0.0.1
- '@storybook/theming': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@types/overlayscrollbars': 1.12.0
- '@types/react-color': 3.0.4
- '@types/react-syntax-highlighter': 11.0.4
- core-js: 3.7.0
- fast-deep-equal: 3.1.3
- global: 4.4.0
- lodash: 4.17.20
- markdown-to-jsx: 6.11.4_react@16.14.0
- memoizerific: 1.11.3
- overlayscrollbars: 1.13.0
- polished: 3.6.7
- popper.js: 1.16.1
- react: 16.14.0
- react-color: 2.19.3_react@16.14.0
- 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.3.0_react@16.14.0
- ts-dedent: 1.2.0
- dev: false
- resolution:
- integrity: sha512-rp18w+xC5/ATQThnUR6Rv2cg/DAokbV88uZLPCGHX8HsPY2jFPLyCsWnNiIHBF/SfUCjIlljChlX3bzGk+SQUA==
- /@storybook/core-events/6.0.28:
- dependencies:
- core-js: 3.7.0
- dev: false
- resolution:
- integrity: sha512-YT691sQEyoTabXZGCeCXulIO31aXfiWpvE7vW7t3F/uo/Xv6aiNcY/Fzy1vRNcbgCAf3EWsBtzb1eh0FCJkyuA==
- /@storybook/core/6.0.28_e022e2c0e03c001c1fe6c7d1c978ba75:
- 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.5_@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.28_react-dom@16.14.0+react@16.14.0
- '@storybook/api': 6.0.28_react-dom@16.14.0
- '@storybook/channel-postmessage': 6.0.28
- '@storybook/channels': 6.0.28
- '@storybook/client-api': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/client-logger': 6.0.28
- '@storybook/components': 6.0.28
- '@storybook/core-events': 6.0.28
+ integrity: sha512-emBXd/ml6pc3G8gP3MsR9zQsAq1zZbqof9MxB51tG/jpTXdqWQ8ce1pt1tJS8Xj0QDM072jR6wsY+mmro0GZnA==
+ /@storybook/client-api/6.1.11_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ '@storybook/addons': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/channel-postmessage': 6.1.11
+ '@storybook/channels': 6.1.11
+ '@storybook/client-logger': 6.1.11
+ '@storybook/core-events': 6.1.11
+ '@storybook/csf': 0.0.1
+ '@types/qs': 6.9.5
+ '@types/webpack-env': 1.16.0
+ core-js: 3.8.1
+ global: 4.4.0
+ lodash: 4.17.20
+ memoizerific: 1.11.3
+ qs: 6.9.4
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ regenerator-runtime: 0.13.7
+ stable: 0.1.8
+ store2: 2.12.0
+ ts-dedent: 2.0.0
+ util-deprecate: 1.0.2
+ dev: false
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
+ resolution:
+ integrity: sha512-DodJQzGCR+PYs26klvbquTjfBgkw5nvCZd3jpgWQtOrYaY/cMY1LLkVkKqrm2ENW8f7vf7tiw78RtxaXy7xeIQ==
+ /@storybook/client-logger/6.0.21:
+ dependencies:
+ core-js: 3.8.1
+ global: 4.4.0
+ dev: false
+ resolution:
+ integrity: sha512-8aUEbhjXV+UMYQWukVYnp+kZafF+LD4Dm7eMo37IUZvt3VIjV1VvhxIDVJtqjk2vv0KZTepESFBkZQLmBzI9Zg==
+ /@storybook/client-logger/6.1.11:
+ dependencies:
+ core-js: 3.8.1
+ global: 4.4.0
+ dev: false
+ resolution:
+ integrity: sha512-dSc+VKLW1UaiMPMhlZYRqhynrrHdHFiBEgU28+8LcmoZ1yhZBwLkcKdSD4YTT0CbMJAG1/+NUW5kRI8Geeg+rA==
+ /@storybook/codemod/6.0.21:
+ dependencies:
+ '@mdx-js/mdx': 1.6.22
+ '@storybook/csf': 0.0.1
+ '@storybook/node-logger': 6.0.21
+ core-js: 3.8.1
+ cross-spawn: 7.0.3
+ globby: 11.0.1
+ jscodeshift: 0.7.1
+ lodash: 4.17.20
+ prettier: 2.0.5
+ recast: 0.19.1
+ regenerator-runtime: 0.13.7
+ dev: false
+ resolution:
+ integrity: sha512-FK6duydJqcqVbL/FhbV1WVnpoRgp0oAavpHAzVpCWUf9Vx4zlb1UAUGJYsTP0E7zKr+J7UglUGnzZAjUUyclng==
+ /@storybook/codemod/6.1.11:
+ dependencies:
+ '@mdx-js/mdx': 1.6.22
+ '@storybook/csf': 0.0.1
+ '@storybook/node-logger': 6.1.11
+ core-js: 3.8.1
+ cross-spawn: 7.0.3
+ globby: 11.0.1
+ jscodeshift: 0.7.1
+ lodash: 4.17.20
+ prettier: 2.0.5
+ recast: 0.19.1
+ regenerator-runtime: 0.13.7
+ dev: false
+ resolution:
+ integrity: sha512-T0FcuYijXi6vhji55HEShSi9tQhjEswrYTz9FGDRDmEP2gcISqkJXlxhQV3ReAAgzs4aeLMcwInTSqpxk5LfXA==
+ /@storybook/components/6.0.21:
+ dependencies:
+ '@storybook/client-logger': 6.0.21
+ '@storybook/csf': 0.0.1
+ '@storybook/theming': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@types/overlayscrollbars': 1.12.0
+ '@types/react-color': 3.0.4
+ '@types/react-syntax-highlighter': 11.0.4
+ core-js: 3.8.1
+ fast-deep-equal: 3.1.3
+ global: 4.4.0
+ lodash: 4.17.20
+ markdown-to-jsx: 6.11.4_react@16.14.0
+ memoizerific: 1.11.3
+ overlayscrollbars: 1.13.1
+ polished: 3.6.7
+ popper.js: 1.16.1
+ react: 16.14.0
+ react-color: 2.19.3_react@16.14.0
+ 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.3.0_react@16.14.0
+ ts-dedent: 1.2.0
+ dev: false
+ resolution:
+ integrity: sha512-r6btqFW/rcXIU5v231EifZfdh9O0fy7bJDXwwDf8zVUgLx8JRc0VnSs3nvK3Is9HF1wZ9vjx/7Lh4rTIDZAjgg==
+ /@storybook/components/6.1.11_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ '@popperjs/core': 2.6.0
+ '@storybook/client-logger': 6.1.11
+ '@storybook/csf': 0.0.1
+ '@storybook/theming': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@types/overlayscrollbars': 1.12.0
+ '@types/react-color': 3.0.4
+ '@types/react-syntax-highlighter': 11.0.4
+ core-js: 3.8.1
+ fast-deep-equal: 3.1.3
+ global: 4.4.0
+ lodash: 4.17.20
+ markdown-to-jsx: 6.11.4_react@17.0.1
+ memoizerific: 1.11.3
+ overlayscrollbars: 1.13.1
+ polished: 3.6.7
+ react: 17.0.1
+ react-color: 2.19.3_react@17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ react-popper-tooltip: 3.1.1_react-dom@17.0.1+react@17.0.1
+ react-syntax-highlighter: 13.5.3_react@17.0.1
+ react-textarea-autosize: 8.3.0_react@17.0.1
+ ts-dedent: 2.0.0
+ dev: false
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
+ resolution:
+ integrity: sha512-DGDl76uONTkg0rpsa36TpVuXv4K7rFYe8GnQ/Q8n4By5tvldC4s9YXwcDRYHVrfnYybKzuZ/+jv2ZAp4/8ZaeA==
+ /@storybook/core-events/6.0.21:
+ dependencies:
+ core-js: 3.8.1
+ dev: false
+ resolution:
+ integrity: sha512-p84fbPcsAhnqDhp+HJ4P8+vI2BqJus4IRoVAemLAwuPjyPElrV9UvOa/RHy1BN8Z6jXwFA+FFzfGl2kPJ3WYcA==
+ /@storybook/core-events/6.1.11:
+ dependencies:
+ core-js: 3.8.1
+ dev: false
+ resolution:
+ integrity: sha512-hTib81W8PxepM7iXVvl3pBXSaGpChl5LTzaLCoIRO9sSB8dy0/x2DLAHzbQvShk/l1wqUc3TtOLIxq+eC9l3wg==
+ /@storybook/core/6.0.21_ad73ffc78ffa321d3138a4dec023a174:
+ dependencies:
+ '@babel/core': 7.12.10
+ '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-decorators': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-export-default-from': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.10
+ '@babel/plugin-proposal-private-methods': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.10
+ '@babel/plugin-transform-arrow-functions': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-block-scoping': 7.12.11_@babel+core@7.12.10
+ '@babel/plugin-transform-classes': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-destructuring': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-for-of': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-shorthand-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-spread': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-template-literals': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-env': 7.12.11_@babel+core@7.12.10
+ '@babel/preset-react': 7.12.10_@babel+core@7.12.10
+ '@babel/preset-typescript': 7.12.7_@babel+core@7.12.10
+ '@babel/register': 7.12.10_@babel+core@7.12.10
+ '@storybook/addons': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/api': 6.0.21_react-dom@16.14.0
+ '@storybook/channel-postmessage': 6.0.21
+ '@storybook/channels': 6.0.21
+ '@storybook/client-api': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/client-logger': 6.0.21
+ '@storybook/components': 6.0.21
+ '@storybook/core-events': 6.0.21
+ '@storybook/csf': 0.0.1
+ '@storybook/node-logger': 6.0.21
+ '@storybook/router': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/semver': 7.3.2
+ '@storybook/theming': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/ui': 6.0.21
+ '@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.2.2_cb0b35cdd86d43ae111e54bfa48070d7
+ babel-plugin-emotion: 10.0.33
+ babel-plugin-macros: 2.8.0
+ babel-preset-minify: 0.5.1
+ better-opn: 2.1.1
+ boxen: 4.2.0
+ case-sensitive-paths-webpack-plugin: 2.3.0
+ chalk: 4.1.0
+ cli-table3: 0.6.0
+ commander: 5.1.0
+ core-js: 3.8.1
+ css-loader: 3.6.0_webpack@4.44.2
+ detect-port: 1.3.0
+ dotenv-webpack: 1.8.0_webpack@4.44.2
+ ejs: 3.1.5
+ express: 4.17.1
+ file-loader: 6.2.0_webpack@4.44.2
+ file-system-cache: 1.0.5
+ find-up: 4.1.0
+ fork-ts-checker-webpack-plugin: 4.1.6
+ fs-extra: 9.0.1
+ glob: 7.1.6
+ glob-base: 0.3.0
+ glob-promise: 3.4.0_glob@7.1.6
+ global: 4.4.0
+ html-webpack-plugin: 4.5.0_webpack@4.44.2
+ inquirer: 7.3.3
+ interpret: 2.2.0
+ ip: 1.1.5
+ json5: 2.1.3
+ lazy-universal-dotenv: 3.0.1
+ micromatch: 4.0.2
+ node-fetch: 2.6.1
+ pkg-dir: 4.2.0
+ pnp-webpack-plugin: 1.6.4
+ postcss-flexbugs-fixes: 4.2.1
+ postcss-loader: 3.0.0
+ pretty-hrtime: 1.0.3
+ qs: 6.9.4
+ raw-loader: 4.0.2_webpack@4.44.2
+ react: 16.14.0
+ react-dev-utils: 10.2.1
+ react-dom: 16.14.0_react@16.14.0
+ regenerator-runtime: 0.13.7
+ resolve-from: 5.0.0
+ serve-favicon: 2.5.0
+ shelljs: 0.8.4
+ stable: 0.1.8
+ style-loader: 1.3.0_webpack@4.44.2
+ terser-webpack-plugin: 3.1.0_webpack@4.44.2
+ ts-dedent: 1.2.0
+ unfetch: 4.2.0
+ url-loader: 4.1.1_file-loader@6.2.0+webpack@4.44.2
+ util-deprecate: 1.0.2
+ webpack: 4.44.2
+ webpack-dev-middleware: 3.7.3_webpack@4.44.2
+ webpack-hot-middleware: 2.25.0
+ webpack-virtual-modules: 0.2.2
+ dev: false
+ peerDependencies:
+ '@babel/core': '*'
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-/Et5NLabB12dnuPdhHDA/Q1pj0Mm2DGdL3KiLO4IC2VZeICCLGmU3/EGJBgjLK+anQ59pkclOiQ8i9eMXFiJ6A==
+ /@storybook/core/6.1.11_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ '@babel/core': 7.12.10
+ '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-decorators': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-export-default-from': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.10
+ '@babel/plugin-proposal-private-methods': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.10
+ '@babel/plugin-transform-arrow-functions': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-block-scoping': 7.12.11_@babel+core@7.12.10
+ '@babel/plugin-transform-classes': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-destructuring': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-for-of': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-shorthand-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-spread': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-transform-template-literals': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-env': 7.12.11_@babel+core@7.12.10
+ '@babel/preset-react': 7.12.10_@babel+core@7.12.10
+ '@babel/preset-typescript': 7.12.7_@babel+core@7.12.10
+ '@babel/register': 7.12.10_@babel+core@7.12.10
+ '@storybook/addons': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/api': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/channel-postmessage': 6.1.11
+ '@storybook/channels': 6.1.11
+ '@storybook/client-api': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/client-logger': 6.1.11
+ '@storybook/components': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/core-events': 6.1.11
'@storybook/csf': 0.0.1
- '@storybook/node-logger': 6.0.28
- '@storybook/router': 6.0.28_react-dom@16.14.0+react@16.14.0
+ '@storybook/node-logger': 6.1.11
+ '@storybook/router': 6.1.11_react-dom@17.0.1+react@17.0.1
'@storybook/semver': 7.3.2
- '@storybook/theming': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/ui': 6.0.28
+ '@storybook/theming': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/ui': 6.1.11_react-dom@17.0.1+react@17.0.1
'@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.2.1_427212bc1158d185e577033f19ca0757
+ babel-loader: 8.2.2_cb0b35cdd86d43ae111e54bfa48070d7
babel-plugin-emotion: 10.0.33
babel-plugin-macros: 2.8.0
babel-preset-minify: 0.5.1
@@ -3053,7 +4270,8 @@ packages:
chalk: 4.1.0
cli-table3: 0.6.0
commander: 5.1.0
- core-js: 3.7.0
+ core-js: 3.8.1
+ cpy: 8.1.1
css-loader: 3.6.0_webpack@4.44.2
detect-port: 1.3.0
dotenv-webpack: 1.8.0_webpack@4.44.2
@@ -3083,57 +4301,86 @@ packages:
pretty-hrtime: 1.0.3
qs: 6.9.4
raw-loader: 4.0.2_webpack@4.44.2
- react: 16.14.0
+ react: 17.0.1
react-dev-utils: 10.2.1
- react-dom: 16.14.0_react@16.14.0
+ react-dom: 17.0.1_react@17.0.1
regenerator-runtime: 0.13.7
resolve-from: 5.0.0
serve-favicon: 2.5.0
shelljs: 0.8.4
stable: 0.1.8
style-loader: 1.3.0_webpack@4.44.2
+ telejson: 5.1.0
terser-webpack-plugin: 3.1.0_webpack@4.44.2
- ts-dedent: 1.2.0
+ ts-dedent: 2.0.0
unfetch: 4.2.0
url-loader: 4.1.1_file-loader@6.2.0+webpack@4.44.2
util-deprecate: 1.0.2
webpack: 4.44.2
- webpack-dev-middleware: 3.7.2_webpack@4.44.2
+ webpack-dev-middleware: 3.7.3_webpack@4.44.2
+ webpack-filter-warnings-plugin: 1.2.1_webpack@4.44.2
webpack-hot-middleware: 2.25.0
webpack-virtual-modules: 0.2.2
dev: false
peerDependencies:
- '@babel/core': '*'
- react: '*'
- react-dom: '*'
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
resolution:
- integrity: sha512-NIEeU4NXl6vK6NVIisR90QYWomTexXEmF9cFcr02DcxKwFTNixSfBuquDFt6o7OTLNgmUQ5r2y+fXlQ4vDTG4w==
+ integrity: sha512-pYOOQwiNJ5myLRn6p6nnLUjjjISHK/N55vS4HFnETYSaRLA++h1coN1jk7Zwt89dOQTdF0EsTJn+6snYOC+lxQ==
/@storybook/csf/0.0.1:
dependencies:
lodash: 4.17.20
dev: false
resolution:
integrity: sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==
- /@storybook/node-logger/6.0.28:
+ /@storybook/node-logger/6.0.21:
+ dependencies:
+ '@types/npmlog': 4.1.2
+ chalk: 4.1.0
+ core-js: 3.8.1
+ npmlog: 4.1.2
+ pretty-hrtime: 1.0.3
+ dev: false
+ resolution:
+ integrity: sha512-KRBf+Fz7fgtwHdnYt70JTZbcYMZ1pQPtDyqbrFYCjwkbx5GPX5vMOozlxCIj9elseqPIsF8CKgHOW7cFHVyWYw==
+ /@storybook/node-logger/6.1.11:
dependencies:
'@types/npmlog': 4.1.2
chalk: 4.1.0
- core-js: 3.7.0
+ core-js: 3.8.1
npmlog: 4.1.2
pretty-hrtime: 1.0.3
dev: false
resolution:
- integrity: sha512-foGRKU9n6tRcN+Os2XJvsWMQQoUubUjuX6/pIyh+rGVOfOxbK56logE/UDOAsdibGMiof9MOldNeGmYS51vPCg==
- /@storybook/postinstall/6.0.28:
+ integrity: sha512-MASonXDWpSMU9HF9mqbGOR1Ps/DTJ8AVmYD50+OnB9kXl4M42Dliobeq7JwKFMnZ42RelUCCSXdWW80hGrUKKA==
+ /@storybook/postinstall/6.0.21:
+ dependencies:
+ core-js: 3.8.1
+ dev: false
+ resolution:
+ integrity: sha512-DnfMD332J6J/0bx75rE5i3LvlPFGosmkUz1N2opfFV5RQt3gCKVYjm9oAyFpqm1pKx0Hnzhij93QjlTABHWq0w==
+ /@storybook/postinstall/6.1.11:
dependencies:
- core-js: 3.7.0
+ core-js: 3.8.1
+ dev: false
+ resolution:
+ integrity: sha512-ICW70RuOJOHD7PcKq62yr7hCmo04F7yRMuy5/MD/G+Neaw3YpfYTc6pQ228h5UrmXiKSKG1unPkjzuIAoIeN7w==
+ /@storybook/preset-scss/1.0.2_676d7bba63aef161cee7df81d55967e5:
+ dependencies:
+ css-loader: 3.6.0_webpack@4.44.2
+ sass-loader: 8.0.2_sass@1.30.0+webpack@4.44.2
+ style-loader: 1.3.0_webpack@4.44.2
dev: false
+ peerDependencies:
+ css-loader: '*'
+ sass-loader: '*'
+ style-loader: '*'
resolution:
- integrity: sha512-XskRT8G3QQ9kW3xRuiXrM/77IZXu6pYLK0cNuVSiWqvd5FDQ0lPYdaeiZv75ZAxVBtoKFYISLu89rhGPosGkUA==
- /@storybook/preset-scss/1.0.3_676d7bba63aef161cee7df81d55967e5:
+ integrity: sha512-Kq+Y3H7qRBxocLW57V9HtQhrw9ZzmTodFCjf+OelMh1k6SZ7/FvJHb7mtWofafHcqq1tSQlNIgYMtHRDJ64WVg==
+ /@storybook/preset-scss/1.0.3_86e6589ad1641e1eae393e6536006f06:
dependencies:
css-loader: 3.6.0_webpack@4.44.2
- sass-loader: 8.0.2_webpack@4.44.2
+ sass-loader: 10.0.5_sass@1.30.0+webpack@4.44.2
style-loader: 1.3.0_webpack@4.44.2
dev: false
peerDependencies:
@@ -3142,21 +4389,21 @@ packages:
style-loader: '*'
resolution:
integrity: sha512-o9Iz6wxPeNENrQa2mKlsDKynBfqU2uWaRP80HeWp4TkGgf7/x3DVF2O7yi9N0x/PI1qzzTTpxlQ90D62XmpiTw==
- /@storybook/react/6.0.28_e022e2c0e03c001c1fe6c7d1c978ba75:
- dependencies:
- '@babel/core': 7.12.3
- '@babel/preset-flow': 7.12.1_@babel+core@7.12.3
- '@babel/preset-react': 7.12.5_@babel+core@7.12.3
- '@storybook/addons': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/core': 6.0.28_e022e2c0e03c001c1fe6c7d1c978ba75
- '@storybook/node-logger': 6.0.28
+ /@storybook/react/6.0.21_ad73ffc78ffa321d3138a4dec023a174:
+ dependencies:
+ '@babel/core': 7.12.10
+ '@babel/preset-flow': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-react': 7.12.10_@babel+core@7.12.10
+ '@storybook/addons': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/core': 6.0.21_ad73ffc78ffa321d3138a4dec023a174
+ '@storybook/node-logger': 6.0.21
'@storybook/semver': 7.3.2
'@svgr/webpack': 5.5.0
- '@types/webpack-env': 1.15.3
+ '@types/webpack-env': 1.16.0
babel-plugin-add-react-displayname: 0.0.5
- babel-plugin-named-asset-import: 0.3.7_@babel+core@7.12.3
+ babel-plugin-named-asset-import: 0.3.7_@babel+core@7.12.10
babel-plugin-react-docgen: 4.2.1
- core-js: 3.7.0
+ core-js: 3.8.1
global: 4.4.0
lodash: 4.17.20
prop-types: 15.7.2
@@ -3176,12 +4423,62 @@ packages:
react: '*'
react-dom: '*'
resolution:
- integrity: sha512-a0X5htjhqlBYQbuQlllTHD8VBeiEUs0UMU3lnJv79B2B2BiIaXK0w5ptyQyiOznP5OzSLnjZEQwmiefepFpr3g==
- /@storybook/router/6.0.28_react-dom@16.14.0+react@16.14.0:
+ integrity: sha512-L3PcoBJq5aK1aTaJNfwsSJ8Kxgcyk0WknN4TDqhP7a+oXmuMY1YEi96hEvQVIm0TBCkQxs61K70/T7vlilEtHg==
+ /@storybook/react/6.1.11_4499d4579d0b01cd4dafe75021a29d9f:
+ dependencies:
+ '@babel/core': 7.12.10
+ '@babel/preset-flow': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-react': 7.12.10_@babel+core@7.12.10
+ '@pmmmwh/react-refresh-webpack-plugin': 0.4.3_637fe0af5eea2230ffdb56306b9d64e4
+ '@storybook/addons': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/core': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/node-logger': 6.1.11
+ '@storybook/semver': 7.3.2
+ '@types/webpack-env': 1.16.0
+ babel-plugin-add-react-displayname: 0.0.5
+ babel-plugin-named-asset-import: 0.3.7_@babel+core@7.12.10
+ babel-plugin-react-docgen: 4.2.1
+ core-js: 3.8.1
+ global: 4.4.0
+ lodash: 4.17.20
+ prop-types: 15.7.2
+ react: 17.0.1
+ react-dev-utils: 10.2.1
+ react-docgen-typescript-plugin: 0.6.3
+ react-dom: 17.0.1_react@17.0.1
+ react-refresh: 0.8.3
+ regenerator-runtime: 0.13.7
+ ts-dedent: 2.0.0
+ webpack: 4.44.2
+ dev: false
+ engines:
+ node: '>=8.0.0'
+ hasBin: true
+ peerDependencies:
+ '@babel/core': ^7.11.5
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
+ resolution:
+ integrity: sha512-EmR7yvVW6z6AYhfzAgJMGR/5+igeBGa1EePaEIibn51r5uboSB72N12NaADyF2OaycIdV+0sW6vP9Zvlvexa/w==
+ /@storybook/router/6.0.21:
+ dependencies:
+ '@reach/router': 1.3.4
+ '@types/reach__router': 1.3.6
+ core-js: 3.8.1
+ global: 4.4.0
+ memoizerific: 1.11.3
+ qs: 6.9.4
+ dev: false
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-46SsKJfcd12lRrISnfrWhicJx8EylkgGDGohfH0n5p7inkkGOkKV8QFZoYPRKZueMXmUKpzJ0Z3HmVsLTCrCDw==
+ /@storybook/router/6.0.21_react-dom@16.14.0+react@16.14.0:
dependencies:
'@reach/router': 1.3.4_react-dom@16.14.0+react@16.14.0
'@types/reach__router': 1.3.6
- core-js: 3.7.0
+ core-js: 3.8.1
global: 4.4.0
memoizerific: 1.11.3
qs: 6.9.4
@@ -3192,10 +4489,41 @@ packages:
react: '*'
react-dom: '*'
resolution:
- integrity: sha512-omp2LRq3LYc7A89PM0WpJnioedzCme3jJbJXRR7tFva4N+aP6JGaFTJZZdk2NHXHxerGfWG0Cs9G6HNAw9nN1A==
+ integrity: sha512-46SsKJfcd12lRrISnfrWhicJx8EylkgGDGohfH0n5p7inkkGOkKV8QFZoYPRKZueMXmUKpzJ0Z3HmVsLTCrCDw==
+ /@storybook/router/6.0.21_react@16.14.0:
+ dependencies:
+ '@reach/router': 1.3.4_react@16.14.0
+ '@types/reach__router': 1.3.6
+ core-js: 3.8.1
+ global: 4.4.0
+ memoizerific: 1.11.3
+ qs: 6.9.4
+ react: 16.14.0
+ dev: false
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-46SsKJfcd12lRrISnfrWhicJx8EylkgGDGohfH0n5p7inkkGOkKV8QFZoYPRKZueMXmUKpzJ0Z3HmVsLTCrCDw==
+ /@storybook/router/6.1.11_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ '@reach/router': 1.3.4_react-dom@17.0.1+react@17.0.1
+ '@types/reach__router': 1.3.6
+ core-js: 3.8.1
+ global: 4.4.0
+ memoizerific: 1.11.3
+ qs: 6.9.4
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ dev: false
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
+ resolution:
+ integrity: sha512-YEYOoKMo/WI13MZCkdqI9X3H1G0Oj5OUxi7So4qd3khX3zcCjSr3LjiMDBcmIVZpFo5VAvzjhIY4KqpgvzTG0A==
/@storybook/semver/7.3.2:
dependencies:
- core-js: 3.7.0
+ core-js: 3.8.1
find-up: 4.1.0
dev: false
engines:
@@ -3203,12 +4531,30 @@ packages:
hasBin: true
resolution:
integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==
- /@storybook/source-loader/6.0.28_react-dom@16.14.0+react@16.14.0:
+ /@storybook/source-loader/6.0.21:
+ dependencies:
+ '@storybook/addons': 6.0.21
+ '@storybook/client-logger': 6.0.21
+ '@storybook/csf': 0.0.1
+ core-js: 3.8.1
+ estraverse: 4.3.0
+ global: 4.4.0
+ loader-utils: 2.0.0
+ lodash: 4.17.20
+ prettier: 2.0.5
+ regenerator-runtime: 0.13.7
+ dev: false
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-Duzpz8udadR7wzH8/4F3GnMRe23oBOxTm4jBZw/T8NA+HqBtd9Y16swWw4BfwsRwfdZS4EVw3PtWgsAfoqF7ow==
+ /@storybook/source-loader/6.0.21_react-dom@16.14.0+react@16.14.0:
dependencies:
- '@storybook/addons': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/client-logger': 6.0.28
+ '@storybook/addons': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/client-logger': 6.0.21
'@storybook/csf': 0.0.1
- core-js: 3.7.0
+ core-js: 3.8.1
estraverse: 4.3.0
global: 4.4.0
loader-utils: 2.0.0
@@ -3222,14 +4568,74 @@ packages:
react: '*'
react-dom: '*'
resolution:
- integrity: sha512-oBWQlIS6fgkcPt5CzE7ASqNKKxlks/1b1GxPr95fLiIhAkPs64DdvZ+6QP1req62CI4zBOyFj4wZHX/sYpfPzQ==
- /@storybook/theming/6.0.28_react-dom@16.14.0+react@16.14.0:
+ integrity: sha512-Duzpz8udadR7wzH8/4F3GnMRe23oBOxTm4jBZw/T8NA+HqBtd9Y16swWw4BfwsRwfdZS4EVw3PtWgsAfoqF7ow==
+ /@storybook/source-loader/6.0.21_react@16.14.0:
+ dependencies:
+ '@storybook/addons': 6.0.21_react@16.14.0
+ '@storybook/client-logger': 6.0.21
+ '@storybook/csf': 0.0.1
+ core-js: 3.8.1
+ estraverse: 4.3.0
+ global: 4.4.0
+ loader-utils: 2.0.0
+ lodash: 4.17.20
+ prettier: 2.0.5
+ react: 16.14.0
+ regenerator-runtime: 0.13.7
+ dev: false
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-Duzpz8udadR7wzH8/4F3GnMRe23oBOxTm4jBZw/T8NA+HqBtd9Y16swWw4BfwsRwfdZS4EVw3PtWgsAfoqF7ow==
+ /@storybook/source-loader/6.1.11_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ '@storybook/addons': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/client-logger': 6.1.11
+ '@storybook/csf': 0.0.1
+ core-js: 3.8.1
+ estraverse: 4.3.0
+ global: 4.4.0
+ loader-utils: 2.0.0
+ lodash: 4.17.20
+ prettier: 2.0.5
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ regenerator-runtime: 0.13.7
+ source-map: 0.7.3
+ dev: false
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
+ resolution:
+ integrity: sha512-pEMWGn3XwZYAXwIrtmd7ziH5d1zN8NCpJM8vNJssntZFW45rDo69xgGM/PrTLPDca6f/Mhv+vqzR99tdfarJSw==
+ /@storybook/theming/6.0.21:
+ dependencies:
+ '@emotion/core': 10.1.1
+ '@emotion/is-prop-valid': 0.8.8
+ '@emotion/styled': 10.0.27_@emotion+core@10.1.1
+ '@storybook/client-logger': 6.0.21
+ core-js: 3.8.1
+ deep-object-diff: 1.1.0
+ emotion-theming: 10.0.27_@emotion+core@10.1.1
+ global: 4.4.0
+ memoizerific: 1.11.3
+ polished: 3.6.7
+ resolve-from: 5.0.0
+ ts-dedent: 1.2.0
+ dev: false
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-n97DfB9kG6WrV1xBGDyeQibTrh8pBBCp3dSL3UTGH+KX3C2+4sm6QHlTgyekbi5FrbFEbnuZOKAS3YbLVONsRQ==
+ /@storybook/theming/6.0.21_react-dom@16.14.0+react@16.14.0:
dependencies:
'@emotion/core': 10.1.1_react@16.14.0
'@emotion/is-prop-valid': 0.8.8
'@emotion/styled': 10.0.27_5f216699bc8c1f24088b3bf77b7cbbdf
- '@storybook/client-logger': 6.0.28
- core-js: 3.7.0
+ '@storybook/client-logger': 6.0.21
+ core-js: 3.8.1
deep-object-diff: 1.1.0
emotion-theming: 10.0.27_5f216699bc8c1f24088b3bf77b7cbbdf
global: 4.4.0
@@ -3244,23 +4650,66 @@ packages:
react: '*'
react-dom: '*'
resolution:
- integrity: sha512-dcZXDkO1LYcnWUejAzvjl3OPBnAB1m2+fzmRx0dBrgm2O+fcNXTadQ6SXZYKaSz37lS+aGtYG7I9nurwhXMMXA==
- /@storybook/ui/6.0.28:
+ integrity: sha512-n97DfB9kG6WrV1xBGDyeQibTrh8pBBCp3dSL3UTGH+KX3C2+4sm6QHlTgyekbi5FrbFEbnuZOKAS3YbLVONsRQ==
+ /@storybook/theming/6.0.21_react@16.14.0:
+ dependencies:
+ '@emotion/core': 10.1.1_react@16.14.0
+ '@emotion/is-prop-valid': 0.8.8
+ '@emotion/styled': 10.0.27_5f216699bc8c1f24088b3bf77b7cbbdf
+ '@storybook/client-logger': 6.0.21
+ core-js: 3.8.1
+ deep-object-diff: 1.1.0
+ emotion-theming: 10.0.27_5f216699bc8c1f24088b3bf77b7cbbdf
+ global: 4.4.0
+ memoizerific: 1.11.3
+ polished: 3.6.7
+ react: 16.14.0
+ resolve-from: 5.0.0
+ ts-dedent: 1.2.0
+ dev: false
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ resolution:
+ integrity: sha512-n97DfB9kG6WrV1xBGDyeQibTrh8pBBCp3dSL3UTGH+KX3C2+4sm6QHlTgyekbi5FrbFEbnuZOKAS3YbLVONsRQ==
+ /@storybook/theming/6.1.11_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ '@emotion/core': 10.1.1_react@17.0.1
+ '@emotion/is-prop-valid': 0.8.8
+ '@emotion/styled': 10.0.27_10fff9175f8ec0d065857495de794004
+ '@storybook/client-logger': 6.1.11
+ core-js: 3.8.1
+ deep-object-diff: 1.1.0
+ emotion-theming: 10.0.27_10fff9175f8ec0d065857495de794004
+ global: 4.4.0
+ memoizerific: 1.11.3
+ polished: 3.6.7
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ resolve-from: 5.0.0
+ ts-dedent: 2.0.0
+ dev: false
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
+ resolution:
+ integrity: sha512-zRChacVgKoU2BmpvwK1ntiF3KIpc8QblJT7IGiKfP/BNpy9gNeXbLPLk3g/tkHszOvVYtkaZhEXni4Od8tqy1A==
+ /@storybook/ui/6.0.21:
dependencies:
'@emotion/core': 10.1.1_react@16.14.0
- '@storybook/addons': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/api': 6.0.28_react-dom@16.14.0
- '@storybook/channels': 6.0.28
- '@storybook/client-logger': 6.0.28
- '@storybook/components': 6.0.28
- '@storybook/core-events': 6.0.28
- '@storybook/router': 6.0.28_react-dom@16.14.0+react@16.14.0
+ '@storybook/addons': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/api': 6.0.21_react-dom@16.14.0
+ '@storybook/channels': 6.0.21
+ '@storybook/client-logger': 6.0.21
+ '@storybook/components': 6.0.21
+ '@storybook/core-events': 6.0.21
+ '@storybook/router': 6.0.21_react-dom@16.14.0+react@16.14.0
'@storybook/semver': 7.3.2
- '@storybook/theming': 6.0.28_react-dom@16.14.0+react@16.14.0
+ '@storybook/theming': 6.0.21_react-dom@16.14.0+react@16.14.0
'@types/markdown-to-jsx': 6.11.3
copy-to-clipboard: 3.3.1
- core-js: 3.7.0
- core-js-pure: 3.7.0
+ core-js: 3.8.1
+ core-js-pure: 3.8.1
emotion-theming: 10.0.27_5f216699bc8c1f24088b3bf77b7cbbdf
fuse.js: 3.6.1
global: 4.4.0
@@ -3280,10 +4729,50 @@ packages:
store2: 2.12.0
dev: false
resolution:
- integrity: sha512-LGYW+hGiRu+5QRrZXamEt7aoHWQMfYWAaSO8hJldD5lfIXUXcoWUm0Mx7CRpUhw22LzmidrwZijyxlTnuTRZyw==
+ integrity: sha512-50QYF8tHUgpVq7B7PWp7kmyf79NySWJO0piQFjHv027vV8GfbXMWVswAXwo3IfCihPlnLKe01WbsigM/9T1HCQ==
+ /@storybook/ui/6.1.11_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ '@emotion/core': 10.1.1_react@17.0.1
+ '@storybook/addons': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/api': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/channels': 6.1.11
+ '@storybook/client-logger': 6.1.11
+ '@storybook/components': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/core-events': 6.1.11
+ '@storybook/router': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/semver': 7.3.2
+ '@storybook/theming': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@types/markdown-to-jsx': 6.11.3
+ copy-to-clipboard: 3.3.1
+ core-js: 3.8.1
+ core-js-pure: 3.8.1
+ downshift: 6.0.7_react@17.0.1
+ emotion-theming: 10.0.27_10fff9175f8ec0d065857495de794004
+ fuse.js: 3.6.1
+ global: 4.4.0
+ lodash: 4.17.20
+ markdown-to-jsx: 6.11.4_react@17.0.1
+ memoizerific: 1.11.3
+ polished: 3.6.7
+ qs: 6.9.4
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ react-draggable: 4.4.3
+ react-helmet-async: 1.0.7_react-dom@17.0.1+react@17.0.1
+ react-hotkeys: 2.0.0_react@17.0.1
+ react-sizeme: 2.6.12_react-dom@17.0.1+react@17.0.1
+ regenerator-runtime: 0.13.7
+ resolve-from: 5.0.0
+ store2: 2.12.0
+ dev: false
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
+ resolution:
+ integrity: sha512-Qth2dxS5+VbKHcqgkiKpeD+xr/hRUuUIDUA/2Ierh/BaA8Up/krlso/mCLaQOa5E8Og9WJAdDFO0cUbt939c2Q==
/@stylelint/postcss-css-in-js/0.37.2_4fe96148bf77e6cee792ae366c9083f9:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
postcss: 7.0.35
postcss-syntax: 0.36.2_postcss@7.0.35
dev: false
@@ -3375,7 +4864,7 @@ packages:
'@svgr/plugin-svgo': 5.5.0
camelcase: 6.2.0
chalk: 4.1.0
- commander: 6.2.0
+ commander: 6.2.1
dashify: 2.0.0
glob: 7.1.6
dev: false
@@ -3396,7 +4885,7 @@ packages:
integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==
/@svgr/hast-util-to-babel-ast/5.5.0:
dependencies:
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
dev: false
engines:
node: '>=10'
@@ -3404,7 +4893,7 @@ packages:
integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==
/@svgr/plugin-jsx/5.5.0:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@svgr/babel-preset': 5.5.0
'@svgr/hast-util-to-babel-ast': 5.5.0
svg-parser: 2.0.4
@@ -3416,7 +4905,7 @@ packages:
/@svgr/plugin-prettier/5.5.0:
dependencies:
deepmerge: 4.2.2
- prettier: 2.1.2
+ prettier: 2.2.1
dev: false
engines:
node: '>=10'
@@ -3434,10 +4923,10 @@ packages:
integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==
/@svgr/webpack/5.5.0:
dependencies:
- '@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.5_@babel+core@7.12.3
+ '@babel/core': 7.12.10
+ '@babel/plugin-transform-react-constant-elements': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-env': 7.12.11_@babel+core@7.12.10
+ '@babel/preset-react': 7.12.10_@babel+core@7.12.10
'@svgr/core': 5.5.0
'@svgr/plugin-jsx': 5.5.0
'@svgr/plugin-svgo': 5.5.0
@@ -3463,6 +4952,10 @@ packages:
node: '>=10'
resolution:
integrity: sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==
+ /@tokenizer/token/0.1.1:
+ dev: false
+ resolution:
+ integrity: sha512-XO6INPbZCxdprl+9qa/AAbFFOMzzwqYxpjPgLICrMD6C2FCw6qfJOPcBk6JqqPLSaZ/Qx87qn4rpPmPMwaAK6w==
/@turist/fetch/7.1.7_node-fetch@2.6.1:
dependencies:
'@types/node-fetch': 2.5.7
@@ -3488,7 +4981,7 @@ packages:
dependencies:
'@types/http-cache-semantics': 4.0.0
'@types/keyv': 3.1.1
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
'@types/responselike': 1.0.0
dev: false
resolution:
@@ -3505,6 +4998,10 @@ packages:
dev: false
resolution:
integrity: sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==
+ /@types/debug/4.1.5:
+ dev: false
+ resolution:
+ integrity: sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ==
/@types/eslint-visitor-keys/1.0.0:
dev: false
resolution:
@@ -3525,20 +5022,20 @@ packages:
dependencies:
'@types/events': 3.0.0
'@types/minimatch': 3.0.3
- '@types/node': 14.14.7
+ '@types/node': 8.10.66
dev: false
resolution:
integrity: sha512-KEzSKuP2+3oOjYYjujue6Z3Yqis5HKA1BsIC+jZ1v3lrRNdsqyNNtX0rQf6LSuI4DJJ2z5UV//zBZCcvM0xikg==
/@types/glob/7.1.3:
dependencies:
'@types/minimatch': 3.0.3
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
dev: false
resolution:
integrity: sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==
/@types/graceful-fs/4.1.4:
dependencies:
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
dev: false
resolution:
integrity: sha512-mWA/4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg==
@@ -3562,7 +5059,7 @@ packages:
integrity: sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==
/@types/http-proxy/1.17.4:
dependencies:
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
dev: false
resolution:
integrity: sha512-IrSHl2u6AWXduUaDLqYpt45tLVCtYv7o4Z0s1KghBCDgIIS9oW5K1H8mZG/A2CfeLdEa7rTd1ACOiHBc1EMT2Q==
@@ -3603,7 +5100,7 @@ packages:
integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
/@types/keyv/3.1.1:
dependencies:
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
dev: false
resolution:
integrity: sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==
@@ -3613,7 +5110,7 @@ packages:
integrity: sha512-tjSSOTHhI5mCHTy/OOXYIhi2Wt1qcbHmuXD1Ha7q70CgI/I71afO4XtLb/cVexki1oVYchpul/TOuu3Arcdxrg==
/@types/markdown-to-jsx/6.11.3:
dependencies:
- '@types/react': 16.9.56
+ '@types/react': 17.0.0
dev: false
resolution:
integrity: sha512-30nFYpceM/ZEvhGiqWjm5quLUxNeld0HCzJEXMZZDpq53FPkS85mTwkWtCXzCqq8s5JYLgM5W392a02xn8Bdaw==
@@ -3643,21 +5140,21 @@ packages:
integrity: sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg==
/@types/mkdirp/0.5.2:
dependencies:
- '@types/node': 14.14.7
+ '@types/node': 8.10.66
dev: false
resolution:
integrity: sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==
/@types/node-fetch/2.5.7:
dependencies:
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
form-data: 3.0.0
dev: false
resolution:
integrity: sha512-o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw==
- /@types/node/14.14.7:
+ /@types/node/14.14.14:
dev: false
resolution:
- integrity: sha512-Zw1vhUSQZYw+7u5dAwNbIA9TuTotpzY/OF7sJM9FqPOF3SPjKnxrjoTktXDZgUjybf4cWVBP7O8wvKdSaGHweg==
+ integrity: sha512-UHnOPWVWV1z+VV8k6L1HhG7UbGBgIdghqF3l9Ny9ApPghbjICXkUJSd/b9gOgQfjM1r+37cipdw/HJ3F6ICEnQ==
/@types/node/8.10.66:
dev: false
resolution:
@@ -3697,52 +5194,59 @@ packages:
/@types/reach__router/1.3.6:
dependencies:
'@types/history': 4.7.8
- '@types/react': 16.9.56
+ '@types/react': 17.0.0
dev: false
resolution:
integrity: sha512-RHYataCUPQnt+GHoASyRLq6wmZ0n8jWlBW8Lxcwd30NN6vQfbmTeoSDfkgxO0S1lEzArp8OFDsq5KIs7FygjtA==
/@types/react-color/3.0.4:
dependencies:
- '@types/react': 16.9.56
+ '@types/react': 17.0.0
'@types/reactcss': 1.2.3
dev: false
resolution:
integrity: sha512-EswbYJDF1kkrx93/YU+BbBtb46CCtDMvTiGmcOa/c5PETnwTiSWoseJ1oSWeRl/4rUXkhME9bVURvvPg0W5YQw==
/@types/react-syntax-highlighter/11.0.4:
dependencies:
- '@types/react': 16.9.56
+ '@types/react': 17.0.0
dev: false
resolution:
integrity: sha512-9GfTo3a0PHwQeTVoqs0g5bS28KkSY48pp5659wA+Dp4MqceDEa8EHBqrllJvvtyusszyJhViUEap0FDvlk/9Zg==
/@types/react-table/6.8.7:
dependencies:
- '@types/react': 16.9.56
+ '@types/react': 17.0.0
dev: false
resolution:
integrity: sha512-1U0xl47jk0BzE+HNHgxZYSLvtybSvnlLhOpW9Mfqf9iuRm/fGqgRab3TKivPCY6Tl7WPFM2hWEJ1GnsuSFc9AQ==
- /@types/react/16.9.56:
+ /@types/react/17.0.0:
dependencies:
'@types/prop-types': 15.7.3
csstype: 3.0.5
dev: false
resolution:
- integrity: sha512-gIkl4J44G/qxbuC6r2Xh+D3CGZpJ+NdWTItAPmZbR5mUS+JQ8Zvzpl0ea5qT/ZT3ZNTUcDKUVqV3xBE8wv/DyQ==
+ integrity: sha512-aj/L7RIMsRlWML3YB6KZiXB3fV2t41+5RBGYF8z+tAKU43Px8C3cYUZsDvf1/+Bm4FK21QWBrDutu8ZJ/70qOw==
/@types/reactcss/1.2.3:
dependencies:
- '@types/react': 16.9.56
+ '@types/react': 17.0.0
dev: false
resolution:
integrity: sha512-d2gQQ0IL6hXLnoRfVYZukQNWHuVsE75DzFTLPUuyyEhJS8G2VvlE+qfQQ91SJjaMqlURRCNIsX7Jcsw6cEuJlA==
+ /@types/readable-stream/2.3.9:
+ dependencies:
+ '@types/node': 14.14.14
+ safe-buffer: 5.2.1
+ dev: false
+ resolution:
+ integrity: sha512-sqsgQqFT7HmQz/V5jH1O0fvQQnXAJO46Gg9LRO/JPfjmVmGUlcx831TZZO3Y3HtWhIkzf3kTsNT0Z0kzIhIvZw==
/@types/responselike/1.0.0:
dependencies:
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
dev: false
resolution:
integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==
/@types/rimraf/2.0.4:
dependencies:
- '@types/glob': 7.1.3
- '@types/node': 14.14.7
+ '@types/glob': 5.0.36
+ '@types/node': 8.10.66
dev: false
resolution:
integrity: sha512-8gBudvllD2A/c0CcEX/BivIDorHFt5UI5m46TsNj8DjWCCTTZT74kEe4g+QsY7P/B9WdO98d82zZgXO/RQzu2Q==
@@ -3768,32 +5272,32 @@ packages:
dev: false
resolution:
integrity: sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==
- /@types/webpack-env/1.15.3:
+ /@types/webpack-env/1.16.0:
dev: false
resolution:
- integrity: sha512-5oiXqR7kwDGZ6+gmzIO2lTC+QsriNuQXZDWNYRV3l2XRN/zmPgnC21DLSx2D05zvD8vnXW6qUg7JnXZ4I6qLVQ==
- /@types/webpack-sources/2.0.0:
+ integrity: sha512-Fx+NpfOO0CpeYX2g9bkvX8O5qh9wrU1sOF4g8sft4Mu7z+qfe387YlyY8w8daDyDsKY5vUxM0yxkAYnbkRbZEw==
+ /@types/webpack-sources/2.1.0:
dependencies:
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
'@types/source-list-map': 0.1.2
source-map: 0.7.3
dev: false
resolution:
- integrity: sha512-a5kPx98CNFRKQ+wqawroFunvFqv7GHm/3KOI52NY9xWADgc8smu4R6prt4EU/M4QfVjvgBkMqU4fBhw3QfMVkg==
+ integrity: sha512-LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg==
/@types/webpack/4.41.25:
dependencies:
'@types/anymatch': 1.3.1
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
'@types/tapable': 1.0.6
'@types/uglify-js': 3.11.1
- '@types/webpack-sources': 2.0.0
+ '@types/webpack-sources': 2.1.0
source-map: 0.6.1
dev: false
resolution:
integrity: sha512-cr6kZ+4m9lp86ytQc1jPOJXgINQyz3kLLunZ57jznW+WIAL0JqZbGubQk4GlD42MuQL5JGOABrxdpqqWeovlVQ==
/@types/websocket/1.0.1:
dependencies:
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
dev: false
resolution:
integrity: sha512-f5WLMpezwVxCLm1xQe/kdPpQIOmL0TXYx2O15VYfYzc7hTIdxiOoOvez+McSIw3b7z/1zGovew9YSL7+h4h7/Q==
@@ -3801,12 +5305,12 @@ packages:
dev: false
resolution:
integrity: sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==
- /@types/yargs/15.0.9:
+ /@types/yargs/15.0.12:
dependencies:
'@types/yargs-parser': 15.0.0
dev: false
resolution:
- integrity: sha512-HmU8SeIRhZCWcnRskCs36Q1Q00KBV6Cqh/ora8WN1+22dY07AZdn6Gel8QZ3t26XYPImtcL8WV/eqjhVmMEw4g==
+ integrity: sha512-f+fD/fQAo3BCbCDlrUpznF1A5Zp9rB0noS5vnoormHSIPFKL0Z2DcUJ3Gxp5ytH4uLRNxy7AwYUC9exZzqGMAw==
/@types/yoga-layout/1.9.2:
dev: false
resolution:
@@ -3865,12 +5369,12 @@ packages:
integrity: sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA==
/@typescript-eslint/typescript-estree/2.34.0:
dependencies:
- debug: 4.2.0
+ debug: 4.3.1
eslint-visitor-keys: 1.3.0
glob: 7.1.6
is-glob: 4.0.1
lodash: 4.17.20
- semver: 7.3.2
+ semver: 7.3.4
tsutils: 3.17.1
dev: false
engines:
@@ -4139,34 +5643,50 @@ packages:
integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==
/airbnb-js-shims/2.2.1:
dependencies:
- array-includes: 3.1.1
- array.prototype.flat: 1.2.3
- array.prototype.flatmap: 1.2.3
+ array-includes: 3.1.2
+ array.prototype.flat: 1.2.4
+ array.prototype.flatmap: 1.2.4
es5-shim: 4.5.14
es6-shim: 0.35.6
- function.prototype.name: 1.1.2
+ function.prototype.name: 1.1.3
globalthis: 1.0.1
- object.entries: 1.1.2
- object.fromentries: 2.0.2
- object.getownpropertydescriptors: 2.1.0
- object.values: 1.1.1
+ object.entries: 1.1.3
+ object.fromentries: 2.0.3
+ object.getownpropertydescriptors: 2.1.1
+ object.values: 1.1.2
promise.allsettled: 1.0.2
promise.prototype.finally: 3.1.2
- string.prototype.matchall: 4.0.2
- string.prototype.padend: 3.1.0
- string.prototype.padstart: 3.1.0
- symbol.prototype.description: 1.0.2
+ string.prototype.matchall: 4.0.3
+ string.prototype.padend: 3.1.1
+ string.prototype.padstart: 3.1.1
+ symbol.prototype.description: 1.0.3
dev: false
resolution:
integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==
+ /airbnb-prop-types/2.16.0:
+ dependencies:
+ array.prototype.find: 2.1.1
+ function.prototype.name: 1.1.3
+ is-regex: 1.1.1
+ object-is: 1.1.4
+ object.assign: 4.1.2
+ object.entries: 1.1.3
+ prop-types: 15.7.2
+ prop-types-exact: 1.2.0
+ react-is: 16.13.1
+ dev: false
+ peerDependencies:
+ react: ^0.14 || ^15.0.0 || ^16.0.0-alpha
+ resolution:
+ integrity: sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==
/airbnb-prop-types/2.16.0_react@16.14.0:
dependencies:
array.prototype.find: 2.1.1
- function.prototype.name: 1.1.2
+ function.prototype.name: 1.1.3
is-regex: 1.1.1
- object-is: 1.1.3
+ object-is: 1.1.4
object.assign: 4.1.2
- object.entries: 1.1.2
+ object.entries: 1.1.3
prop-types: 15.7.2
prop-types-exact: 1.2.0
react: 16.14.0
@@ -4345,6 +5865,12 @@ packages:
dev: false
resolution:
integrity: sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==
+ /any-observable/0.3.0:
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==
/anymatch/2.0.0:
dependencies:
micromatch: 3.1.10
@@ -4506,16 +6032,22 @@ packages:
dev: false
resolution:
integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
- /array-includes/3.1.1:
+ /array-flatten/3.0.0:
+ dev: false
+ resolution:
+ integrity: sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA==
+ /array-includes/3.1.2:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.17.7
+ es-abstract: 1.18.0-next.1
+ get-intrinsic: 1.0.1
is-string: 1.0.5
dev: false
engines:
node: '>= 0.4'
resolution:
- integrity: sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==
+ integrity: sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw==
/array-initial/1.1.0:
dependencies:
array-slice: 1.1.0
@@ -4596,36 +6128,39 @@ packages:
dev: false
resolution:
integrity: sha512-mi+MYNJYLTx2eNYy+Yh6raoQacCsNeeMUaspFPh9Y141lFSsWxxB8V9mM2ye+eqiRs917J6/pJ4M9ZPzenWckA==
- /array.prototype.flat/1.2.3:
+ /array.prototype.flat/1.2.4:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.17.7
+ es-abstract: 1.18.0-next.1
dev: false
engines:
node: '>= 0.4'
resolution:
- integrity: sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==
- /array.prototype.flatmap/1.2.3:
+ integrity: sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==
+ /array.prototype.flatmap/1.2.4:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.17.7
+ es-abstract: 1.18.0-next.1
function-bind: 1.1.1
dev: false
engines:
node: '>= 0.4'
resolution:
- integrity: sha512-OOEk+lkePcg+ODXIpvuU9PAryCikCJyo7GlDG1upleEpQRx6mzL9puEBkozQ5iAx20KV0l3DbyQwqciJtqe5Pg==
- /array.prototype.map/1.0.2:
+ integrity: sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==
+ /array.prototype.map/1.0.3:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.17.7
+ es-abstract: 1.18.0-next.1
es-array-method-boxes-properly: 1.0.0
is-string: 1.0.5
dev: false
engines:
node: '>= 0.4'
resolution:
- integrity: sha512-Az3OYxgsa1g7xDYp86l0nnN4bcmuEITGe1rbdEBVkrqkzMgDcbdQ2R7r41pNzti+4NMces3H8gMmuioZUilLgw==
+ integrity: sha512-nNcb30v0wfDyIe26Yif3PcV1JXQp4zEeEfupG7L4SRjnD6HLbO5b2a7eVSba53bOx4YCHYMBHt+Fp4vYstneRA==
/arraybuffer.slice/0.0.7:
dev: false
resolution:
@@ -4636,6 +6171,12 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
+ /arrify/2.0.1:
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==
/asn1.js/5.4.1:
dependencies:
bn.js: 4.11.9
@@ -4749,6 +6290,12 @@ packages:
dev: false
resolution:
integrity: sha512-iitlc2murdQ3/A5Re3CcplQBEf7vOmFrFQ6RFn3+/+zZUyIHYkZnnEziMSa6YIb2Bs2EJEPZWReTxjHqvQbDbw==
+ /async-retry/1.3.1:
+ dependencies:
+ retry: 0.12.0
+ dev: false
+ resolution:
+ integrity: sha512-aiieFW/7h3hY0Bq5d+ktDBejxuwR78vRu9hDUdR8rNhSaQ29VzPL4AoIRG7D/c7tdenwOcKvgPM6tIxB3cB6HA==
/async-settle/1.0.0:
dependencies:
async-done: 1.3.2
@@ -4795,7 +6342,7 @@ packages:
/autoprefixer/8.6.5:
dependencies:
browserslist: 3.2.8
- caniuse-lite: 1.0.30001158
+ caniuse-lite: 1.0.30001168
normalize-range: 0.1.2
num2fraction: 1.2.2
postcss: 6.0.23
@@ -4806,8 +6353,8 @@ packages:
integrity: sha512-PLWJN3Xo/rycNkx+mp8iBDMTm3FeWe4VmYaZDSqL5QQB9sLsQkG5k8n+LNDFnhh9kdq2K+egL/icpctOmDHwig==
/autoprefixer/9.8.6:
dependencies:
- browserslist: 4.14.7
- caniuse-lite: 1.0.30001158
+ browserslist: 4.16.0
+ caniuse-lite: 1.0.30001168
colorette: 1.2.1
normalize-range: 0.1.2
num2fraction: 1.2.2
@@ -4837,12 +6384,12 @@ packages:
node: '>=4'
resolution:
integrity: sha512-5P0QZ6J5xGikH780pghEdbEKijCTrruK9KxtPZCFWUpef0f6GipO+xEZ5GKCb020mmqgbiNO6TcA55CriL784Q==
- /axe-core/4.1.0:
+ /axe-core/4.1.1:
dev: false
engines:
node: '>=4'
resolution:
- integrity: sha512-9atDIOTDLsWL+1GbBec6omflaT5Cxh88J0GtJtGfCVIXpI02rXHkju59W5mMqWa7eiC5OR168v3TK3kUKBW98g==
+ integrity: sha512-5Kgy8Cz6LPC9DJcNb3yjAXTu3XihQgEdnIg50c//zOC/MyLP0Clg+Y8Sh9ZjjnvBrDZU4DgXS9C3T9r4/scGZQ==
/axios/0.19.0:
dependencies:
follow-redirects: 1.5.10
@@ -4856,10 +6403,12 @@ packages:
dev: false
resolution:
integrity: sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==
- /axios/0.20.0:
+ /axios/0.20.0_debug@3.2.7:
dependencies:
- follow-redirects: 1.13.0
+ follow-redirects: 1.13.1_debug@3.2.7
dev: false
+ peerDependencies:
+ debug: '*'
resolution:
integrity: sha512-ANA4rr2BDcmmAQLOKft2fufrtuvlqR+cXNNinUmvfeSNCOF98PZL+7M/v1zIdGo7OLjEA9J2gXJL+j4zGsl0bA==
/axobject-query/2.2.0:
@@ -4902,9 +6451,9 @@ packages:
dev: false
resolution:
integrity: sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==
- /babel-core/7.0.0-bridge.0_@babel+core@7.12.3:
+ /babel-core/7.0.0-bridge.0_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4912,10 +6461,10 @@ packages:
integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==
/babel-eslint/10.1.0_eslint@6.8.0:
dependencies:
- '@babel/code-frame': 7.10.4
- '@babel/parser': 7.12.5
- '@babel/traverse': 7.12.5
- '@babel/types': 7.12.6
+ '@babel/code-frame': 7.12.11
+ '@babel/parser': 7.12.11
+ '@babel/traverse': 7.12.10
+ '@babel/types': 7.12.11
eslint: 6.8.0
eslint-visitor-keys: 1.3.0
resolve: 1.19.0
@@ -4926,13 +6475,13 @@ packages:
eslint: '>= 4.12.1'
resolution:
integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==
- /babel-eslint/10.1.0_eslint@7.13.0:
+ /babel-eslint/10.1.0_eslint@7.15.0:
dependencies:
- '@babel/code-frame': 7.10.4
- '@babel/parser': 7.12.5
- '@babel/traverse': 7.12.5
- '@babel/types': 7.12.6
- eslint: 7.13.0
+ '@babel/code-frame': 7.12.11
+ '@babel/parser': 7.12.11
+ '@babel/traverse': 7.12.10
+ '@babel/types': 7.12.11
+ eslint: 7.15.0
eslint-visitor-keys: 1.3.0
resolve: 1.19.0
dev: false
@@ -5092,13 +6641,27 @@ packages:
dev: false
resolution:
integrity: sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=
- /babel-loader/8.2.1_427212bc1158d185e577033f19ca0757:
+ /babel-loader/8.2.2_cb0b35cdd86d43ae111e54bfa48070d7:
dependencies:
- '@babel/core': 7.12.3
- find-cache-dir: 2.1.0
+ '@babel/core': 7.12.10
+ find-cache-dir: 3.3.1
loader-utils: 1.4.0
- make-dir: 2.1.0
- pify: 4.0.1
+ make-dir: 3.1.0
+ schema-utils: 2.7.1
+ webpack: 4.44.2
+ dev: false
+ engines:
+ node: '>= 8.9'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ webpack: '>=2'
+ resolution:
+ integrity: sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==
+ /babel-loader/8.2.2_webpack@4.44.2:
+ dependencies:
+ find-cache-dir: 3.3.1
+ loader-utils: 1.4.0
+ make-dir: 3.1.0
schema-utils: 2.7.1
webpack: 4.44.2
dev: false
@@ -5108,7 +6671,7 @@ packages:
'@babel/core': ^7.0.0
webpack: '>=2'
resolution:
- integrity: sha512-dMF8sb2KQ8kJl21GUjkW1HWmcsL39GOV5vnzjqrCzEPNY0S0UfMLnumidiwIajDSBmKhYf5iRW+HXaM4cvCKBw==
+ integrity: sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==
/babel-messages/6.23.0:
dependencies:
babel-runtime: 6.26.0
@@ -5129,16 +6692,16 @@ packages:
dev: false
resolution:
integrity: sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=
- /babel-plugin-apply-mdx-type-prop/1.6.21_@babel+core@7.11.6:
+ /babel-plugin-apply-mdx-type-prop/1.6.22_@babel+core@7.12.9:
dependencies:
- '@babel/core': 7.11.6
+ '@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.10.4
- '@mdx-js/util': 1.6.21
+ '@mdx-js/util': 1.6.22
dev: false
peerDependencies:
'@babel/core': ^7.11.6
resolution:
- integrity: sha512-+vQarmm+g+kePH4CMp2iEN/HOx1oEvZeSKCdKCEZlnJOthXzkpaRAbM3ZNCiKqVr9WuoqPNfoXQ0EVppYpIwfg==
+ integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==
/babel-plugin-check-es2015-constants/6.22.0:
dependencies:
babel-runtime: 6.26.0
@@ -5166,12 +6729,12 @@ packages:
dev: false
resolution:
integrity: sha512-bxZbTTGz0AJQDHm8k6Rf3RQJ8tX2scsfsRyKVgAbiUPUNIRtlK+7JxP+TAd1kRLABFxe0CFm2VdK4ePkoA9FxQ==
- /babel-plugin-extract-import-names/1.6.21:
+ /babel-plugin-extract-import-names/1.6.22:
dependencies:
'@babel/helper-plugin-utils': 7.10.4
dev: false
resolution:
- integrity: sha512-mCjTry00HB/4xHGunxQNMOGZ7JEGJdEScNh7C1WJBto7nePyn9wCdYAZP61pGC6+z3ETH5btY20mqg0plcxZGA==
+ integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==
/babel-plugin-istanbul/6.0.0:
dependencies:
'@babel/helper-plugin-utils': 7.10.4
@@ -5187,7 +6750,7 @@ packages:
/babel-plugin-lodash/3.3.4:
dependencies:
'@babel/helper-module-imports': 7.12.5
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
glob: 7.1.6
lodash: 4.17.20
require-package-name: 2.0.1
@@ -5267,7 +6830,7 @@ packages:
dev: false
resolution:
integrity: sha1-G8bxW4f3qxCF1CszC3F2V6IVZQA=
- /babel-plugin-module-resolver/4.0.0:
+ /babel-plugin-module-resolver/4.1.0:
dependencies:
find-babel-config: 1.2.0
glob: 7.1.6
@@ -5278,10 +6841,10 @@ packages:
engines:
node: '>= 8.0.0'
resolution:
- integrity: sha512-3pdEq3PXALilSJ6dnC4wMWr0AZixHRM4utpdpBR9g5QG7B7JwWyukQv7a9hVxkbGFl+nQbrHDqqQOIBtTXTP/Q==
- /babel-plugin-named-asset-import/0.3.7_@babel+core@7.12.3:
+ integrity: sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==
+ /babel-plugin-named-asset-import/0.3.7_@babel+core@7.12.10:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
dev: false
peerDependencies:
'@babel/core': ^7.1.0
@@ -5295,23 +6858,27 @@ packages:
dev: false
resolution:
integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==
- /babel-plugin-remove-graphql-queries/2.10.0_gatsby@2.25.4:
+ /babel-plugin-remove-graphql-queries/2.13.0_gatsby@2.25.4:
dependencies:
- gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
+ gatsby: 2.25.4
dev: false
engines:
node: '>=10.13.0'
peerDependencies:
gatsby: ^2.0.0
resolution:
- integrity: sha512-uKgTE+KGNuNVVAofCHYKAqe6pLzAQ0Qh+3L43SAN1LrN9Mc9HBWSzQTEzj3VM0HR2DgBO281S1SDk+B14t9XGg==
+ integrity: sha512-6sL3JVKDa3OjXtmBYrr467BnQeUjNI7p2dy+aBwbB8WqChHLJOFh5+lxfzC0z/7hBehqmWpBV7xHfZdIP1lAzQ==
/babel-plugin-remove-import-export/1.1.1:
dev: false
resolution:
integrity: sha512-XBhHk/NDQQbNZcf1/ZbSG0M4ylz9cIz83EqzjyUlYUoSQW5GT7s847BJQV8xyEh6SjAvpJo0QBEuI4G5deMp1g==
+ /babel-plugin-require-context-hook/1.0.0:
+ dev: false
+ resolution:
+ integrity: sha512-EMZD1563QUqLhzrqcThk759RhuNVX/ZJdrtGK6drwzgvnR+ARjWyXIHPbu+tUNaMGtPz/gQeAM2M6VUw2UiUeA==
/babel-plugin-rewire-exports/2.2.0:
dependencies:
- '@babel/template': 7.10.4
+ '@babel/template': 7.12.7
dev: false
resolution:
integrity: sha512-2AJEO1GhDDXSA/ixSS2PfLfpLPvbm1VpbJOh/TXVDDEYVNJIeuLa74yaYQueCdQYAQhEitkfnFohVZAt1L1R5w==
@@ -5527,7 +7094,7 @@ packages:
integrity: sha512-scDmJ3c0VvP4eREOVqv03XoeiN6NnEc57zbM2WycyjMVG07YrJ2qWWYjP8hALoFFJaYW9AZ1T/nUnYq5SgeZOA==
/babel-plugin-transform-imports/2.0.0:
dependencies:
- '@babel/types': 7.12.6
+ '@babel/types': 7.12.11
is-valid-path: 0.1.1
dev: false
resolution:
@@ -5645,23 +7212,23 @@ packages:
dev: false
resolution:
integrity: sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==
- /babel-preset-gatsby/0.5.16_@babel+core@7.12.3+core-js@3.7.0:
- dependencies:
- '@babel/core': 7.12.3
- '@babel/plugin-proposal-class-properties': 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-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/plugin-transform-spread': 7.12.1_@babel+core@7.12.3
- '@babel/preset-env': 7.12.1_@babel+core@7.12.3
- '@babel/preset-react': 7.12.5_@babel+core@7.12.3
+ /babel-preset-gatsby/0.5.16_2f8c275785611b7f64cc18865bfef033:
+ dependencies:
+ '@babel/core': 7.12.10
+ '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.10
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.10
+ '@babel/plugin-transform-runtime': 7.12.10_@babel+core@7.12.10
+ '@babel/plugin-transform-spread': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-env': 7.12.11_@babel+core@7.12.10
+ '@babel/preset-react': 7.12.10_@babel+core@7.12.10
'@babel/runtime': 7.12.5
babel-plugin-dynamic-import-node: 2.3.3
babel-plugin-macros: 2.8.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
- core-js: 3.7.0
- gatsby-core-utils: 1.4.0
+ core-js: 3.8.1
+ gatsby-core-utils: 1.7.0
gatsby-legacy-polyfills: 0.0.6
dev: false
engines:
@@ -5699,21 +7266,41 @@ packages:
dev: false
resolution:
integrity: sha512-1IajDumYOAPYImkHbrKeiN5AKKP9iOmRoO2IPbIuVp0j2iuCcj0n7P260z38siKMZZ+85d3mJZdtW8IgOv+Tzg==
- /babel-preset-proposals/0.3.0_@babel+core@7.12.3:
- dependencies:
- '@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-do-expressions': 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-export-namespace-from': 7.12.1_@babel+core@7.12.3
- '@babel/plugin-proposal-function-bind': 7.12.1_@babel+core@7.12.3
- '@babel/plugin-proposal-function-sent': 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-numeric-separator': 7.12.5_@babel+core@7.12.3
- '@babel/plugin-proposal-pipeline-operator': 7.12.1_@babel+core@7.12.3
- '@babel/plugin-proposal-throw-expressions': 7.12.1_@babel+core@7.12.3
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.12.3
+ /babel-preset-proposals/0.3.0:
+ dependencies:
+ '@babel/plugin-proposal-class-properties': 7.12.1
+ '@babel/plugin-proposal-decorators': 7.12.1
+ '@babel/plugin-proposal-do-expressions': 7.12.1
+ '@babel/plugin-proposal-export-default-from': 7.12.1
+ '@babel/plugin-proposal-export-namespace-from': 7.12.1
+ '@babel/plugin-proposal-function-bind': 7.12.1
+ '@babel/plugin-proposal-function-sent': 7.12.1
+ '@babel/plugin-proposal-logical-assignment-operators': 7.12.1
+ '@babel/plugin-proposal-numeric-separator': 7.12.7
+ '@babel/plugin-proposal-pipeline-operator': 7.12.1
+ '@babel/plugin-proposal-throw-expressions': 7.12.1
+ '@babel/plugin-syntax-dynamic-import': 7.8.3
+ '@babel/plugin-syntax-import-meta': 7.10.4
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-AKSaoGwQuj5klG50uG8dbNkXT2MD3oqQr+ceGhve6ju5TjyoGUHSjw+p4V8DH340NfFp8LIqv4EKv/uDFLIsTQ==
+ /babel-preset-proposals/0.3.0_@babel+core@7.12.10:
+ dependencies:
+ '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-decorators': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-do-expressions': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-export-default-from': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-export-namespace-from': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-function-bind': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-function-sent': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-logical-assignment-operators': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-numeric-separator': 7.12.7_@babel+core@7.12.10
+ '@babel/plugin-proposal-pipeline-operator': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-throw-expressions': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.10
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.12.10
dev: false
engines:
node: '>=8'
@@ -5725,7 +7312,7 @@ packages:
dependencies:
babel-core: 6.26.3
babel-runtime: 6.26.0
- core-js: 2.6.11
+ core-js: 2.6.12
home-or-tmp: 2.0.0
lodash: 4.17.20
mkdirp: 0.5.5
@@ -5735,7 +7322,7 @@ packages:
integrity: sha1-btAhFz4vy0htestFxgCahW9kcHE=
/babel-runtime/6.26.0:
dependencies:
- core-js: 2.6.11
+ core-js: 2.6.12
regenerator-runtime: 0.11.1
dev: false
resolution:
@@ -5880,6 +7467,10 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=
+ /before-after-hook/2.1.0:
+ dev: false
+ resolution:
+ integrity: sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A==
/better-assert/1.0.2:
dependencies:
callsite: 1.0.0
@@ -6191,7 +7782,7 @@ packages:
serve-static: 1.13.2
server-destroy: 1.0.1
socket.io: 2.1.1
- ua-parser-js: 0.7.22
+ ua-parser-js: 0.7.23
yargs: 15.4.1
dev: false
engines:
@@ -6321,8 +7912,8 @@ packages:
integrity: sha512-TkOR1cQGdmXU9zW4YukWzWVSJwrxmNdADFbqbE3HFgQWe5wqZmOawqZ7J/8MPCwk/W8yY7Y0h+7mOtcZxLP23g==
/browserslist/1.7.7:
dependencies:
- caniuse-db: 1.0.30001158
- electron-to-chromium: 1.3.598
+ caniuse-db: 1.0.30001168
+ electron-to-chromium: 1.3.629
deprecated: Browserslist 2 could fail on reading Browserslist >3.0 config used in other tools.
dev: false
hasBin: true
@@ -6330,27 +7921,27 @@ packages:
integrity: sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=
/browserslist/3.2.8:
dependencies:
- caniuse-lite: 1.0.30001158
- electron-to-chromium: 1.3.598
+ caniuse-lite: 1.0.30001168
+ electron-to-chromium: 1.3.629
dev: false
hasBin: true
resolution:
integrity: sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==
/browserslist/4.10.0:
dependencies:
- caniuse-lite: 1.0.30001158
- electron-to-chromium: 1.3.598
+ caniuse-lite: 1.0.30001168
+ electron-to-chromium: 1.3.629
node-releases: 1.1.67
pkg-up: 3.1.0
dev: false
hasBin: true
resolution:
integrity: sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA==
- /browserslist/4.14.7:
+ /browserslist/4.16.0:
dependencies:
- caniuse-lite: 1.0.30001158
+ caniuse-lite: 1.0.30001168
colorette: 1.2.1
- electron-to-chromium: 1.3.598
+ electron-to-chromium: 1.3.629
escalade: 3.1.1
node-releases: 1.1.67
dev: false
@@ -6358,7 +7949,7 @@ packages:
node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7
hasBin: true
resolution:
- integrity: sha512-BSVRLCeG3Xt/j/1cCGj1019Wbty0H+Yvu2AOuZSuoaUWn3RatbL33Cxk+Q4jRMRAbOm0p7SLravLjpnT6s0vzQ==
+ integrity: sha512-/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ==
/bs-recipes/1.3.4:
dev: false
resolution:
@@ -6438,13 +8029,6 @@ packages:
dev: false
resolution:
integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==
- /bufferutil/4.0.2:
- dependencies:
- node-gyp-build: 4.2.3
- dev: false
- requiresBuild: true
- resolution:
- integrity: sha512-AtnG3W6M8B2n4xDQ5R+70EXvOpnXsFYg/AK2yTZd+HQ/oxAdz+GI+DvjmhBw3L0ole+LJ0ngqY4JMbDzkfNzhA==
/builtin-modules/3.1.0:
dev: false
engines:
@@ -6459,6 +8043,14 @@ packages:
dev: false
resolution:
integrity: sha1-XQBhZtpxYQvCvPcwGfDwzEMwl1U=
+ /busboy/0.3.1:
+ dependencies:
+ dicer: 0.3.0
+ dev: false
+ engines:
+ node: '>=4.5.0'
+ resolution:
+ integrity: sha512-y7tTxhGKXcyBxRKAni+awqx8uqaJKrSFSNFSeRG5CsWNdmy2BIK+6VGWEW7TZnIO/533mtMEA4rOevQV815YJw==
/bytes/3.0.0:
dev: false
engines:
@@ -6487,7 +8079,7 @@ packages:
rimraf: 2.7.1
ssri: 6.0.1
unique-filename: 1.1.1
- y18n: 4.0.0
+ y18n: 4.0.1
dev: false
resolution:
integrity: sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==
@@ -6670,11 +8262,18 @@ packages:
integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
/camel-case/4.1.1:
dependencies:
- pascal-case: 3.1.1
+ pascal-case: 3.1.2
tslib: 1.14.1
dev: false
resolution:
integrity: sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q==
+ /camel-case/4.1.2:
+ dependencies:
+ pascal-case: 3.1.2
+ tslib: 2.0.3
+ dev: false
+ resolution:
+ integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==
/camelcase-css/2.0.1:
dev: false
engines:
@@ -6726,21 +8325,21 @@ packages:
integrity: sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
/caniuse-api/3.0.0:
dependencies:
- browserslist: 4.14.7
- caniuse-lite: 1.0.30001158
+ browserslist: 4.16.0
+ caniuse-lite: 1.0.30001168
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: false
resolution:
integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==
- /caniuse-db/1.0.30001158:
+ /caniuse-db/1.0.30001168:
dev: false
resolution:
- integrity: sha512-NknNNrTTwyf7woTu/Nsdv3iKAZNlVQgeXtV5DysNGbHsS10VXo0cYOmxcMad+VHyO2TKiaWBh9Si7mmkcZ26tw==
- /caniuse-lite/1.0.30001158:
+ integrity: sha512-Nq5zfHhWwS+TlfmNVzlIZqAv790nYSoyNMsfIL/Xd8YUGhYkhlUNLzykOdvQ8TJLVWgmhrG1erYwNevS9hsoxQ==
+ /caniuse-lite/1.0.30001168:
dev: false
resolution:
- integrity: sha512-s5loVYY+yKpuVA3HyW8BarzrtJvwHReuzugQXlv1iR3LKSReoFXRm86mT6hT7PEF5RxW+XQZg+6nYjlywYzQ+g==
+ integrity: sha512-P2zmX7swIXKu+GMMR01TWa4csIKELTNnZKc+f1CjebmZJQtTAEXmpQSoKVJVVcvPGAA0TEYTOUp3VehavZSFPQ==
/capture-exit/2.0.0:
dependencies:
rsvp: 4.8.5
@@ -6904,6 +8503,98 @@ packages:
node: '>=10'
resolution:
integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
+ /chromatic/5.3.0:
+ dependencies:
+ '@actions/core': 1.2.6
+ '@actions/github': 4.0.0
+ '@babel/preset-react': 7.12.10
+ '@babel/runtime': 7.12.5
+ '@chromaui/localtunnel': 2.0.1
+ async-retry: 1.3.1
+ babel-plugin-require-context-hook: 1.0.0
+ chalk: 4.1.0
+ cross-spawn: 7.0.3
+ debug: 4.3.1
+ dotenv: 8.2.0
+ env-ci: 5.0.2
+ esm: 3.2.25
+ execa: 4.1.0
+ fake-tag: 2.0.0
+ fs-extra: 9.0.1
+ jsonfile: 6.1.0
+ junit-report-builder: 2.0.0
+ listr: 0.14.3
+ meow: 6.1.1
+ node-ask: 1.0.1
+ node-fetch: 2.6.1
+ node-loggly-bulk: 2.2.4
+ p-limit: 2.3.0
+ picomatch: 2.2.2
+ pkg-up: 3.1.0
+ pluralize: 8.0.0
+ progress: 2.0.3
+ progress-stream: 2.0.0
+ semver: 7.3.4
+ slash: 3.0.0
+ strip-ansi: 6.0.0
+ tmp: 0.1.0
+ tmp-promise: 2.1.1
+ tree-kill: 1.2.2
+ ts-dedent: 1.2.0
+ util-deprecate: 1.0.2
+ uuid: 7.0.3
+ yarn-or-npm: 3.0.1
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-AaItd0h4W3uYMI4otbsE8Pv/lz2nMEUrz24oHK6TYRH/+IeTjfgpEgaojKK3NNr6c9seJ+/ihp4DQ60sjKhvAA==
+ /chromatic/5.3.0_@babel+core@7.12.10:
+ dependencies:
+ '@actions/core': 1.2.6
+ '@actions/github': 4.0.0
+ '@babel/preset-react': 7.12.10_@babel+core@7.12.10
+ '@babel/runtime': 7.12.5
+ '@chromaui/localtunnel': 2.0.1
+ async-retry: 1.3.1
+ babel-plugin-require-context-hook: 1.0.0
+ chalk: 4.1.0
+ cross-spawn: 7.0.3
+ debug: 4.3.1
+ dotenv: 8.2.0
+ env-ci: 5.0.2
+ esm: 3.2.25
+ execa: 4.1.0
+ fake-tag: 2.0.0
+ fs-extra: 9.0.1
+ jsonfile: 6.1.0
+ junit-report-builder: 2.0.0
+ listr: 0.14.3
+ meow: 6.1.1
+ node-ask: 1.0.1
+ node-fetch: 2.6.1
+ node-loggly-bulk: 2.2.4
+ p-limit: 2.3.0
+ picomatch: 2.2.2
+ pkg-up: 3.1.0
+ pluralize: 8.0.0
+ progress: 2.0.3
+ progress-stream: 2.0.0
+ semver: 7.3.4
+ slash: 3.0.0
+ strip-ansi: 6.0.0
+ tmp: 0.1.0
+ tmp-promise: 2.1.1
+ tree-kill: 1.2.2
+ ts-dedent: 1.2.0
+ util-deprecate: 1.0.2
+ uuid: 7.0.3
+ yarn-or-npm: 3.0.1
+ dev: false
+ hasBin: true
+ peerDependencies:
+ '@babel/core': '*'
+ resolution:
+ integrity: sha512-AaItd0h4W3uYMI4otbsE8Pv/lz2nMEUrz24oHK6TYRH/+IeTjfgpEgaojKK3NNr6c9seJ+/ihp4DQ60sjKhvAA==
/chrome-trace-event/1.0.2:
dependencies:
tslib: 1.14.1
@@ -7000,6 +8691,15 @@ packages:
colors: 1.4.0
resolution:
integrity: sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ==
+ /cli-truncate/0.2.1:
+ dependencies:
+ slice-ansi: 0.0.4
+ string-width: 1.0.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=
/cli-width/2.2.1:
dev: false
resolution:
@@ -7053,6 +8753,14 @@ packages:
dev: false
resolution:
integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
+ /cliui/7.0.4:
+ dependencies:
+ string-width: 4.2.0
+ strip-ansi: 6.0.0
+ wrap-ansi: 7.0.0
+ dev: false
+ resolution:
+ integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
/clone-buffer/1.0.0:
dev: false
engines:
@@ -7248,12 +8956,12 @@ packages:
node: '>= 6'
resolution:
integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==
- /commander/6.2.0:
+ /commander/6.2.1:
dev: false
engines:
node: '>= 6'
resolution:
- integrity: sha512-zP4jEKbe8SHzKJYQmq8Y9gYjtO/POJLgIdKgV7B9qNmABVFVc+ctqSX6iXh4mCpJfRBOabiZ2YKPg8ciDw6C+Q==
+ integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==
/common-tags/1.8.0:
dev: false
engines:
@@ -7312,6 +9020,10 @@ packages:
node: '>= 0.8.0'
resolution:
integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
+ /compute-scroll-into-view/1.0.16:
+ dev: false
+ resolution:
+ integrity: sha512-a85LHKY81oQnikatZYA90pufpZ6sQx++BoCxOEMsjpZx+ZnaKGQnCyCehTRr/1p9GBIAHTjcU9k71kSYWloLiQ==
/concat-map/0.0.1:
dev: false
resolution:
@@ -7335,7 +9047,7 @@ packages:
integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==
/config-chain/1.1.12:
dependencies:
- ini: 1.3.5
+ ini: 1.3.8
proto-list: 1.2.4
dev: false
resolution:
@@ -7413,7 +9125,7 @@ packages:
/contentful-management/5.28.0:
dependencies:
axios: 0.19.2
- contentful-sdk-core: 6.4.6
+ contentful-sdk-core: 6.7.0
lodash: 4.17.20
type-fest: 0.15.1
dev: false
@@ -7421,15 +9133,15 @@ packages:
node: '>=6'
resolution:
integrity: sha512-o+qihN3zrD6+/BT/e8n26jl/zQvmV6+9S6NY5QDmzM+IaiSeCk6yvPMq74s+IZT9mOS54igl6qFTbeIpdJ9FDA==
- /contentful-sdk-core/6.4.6:
+ /contentful-sdk-core/6.7.0:
dependencies:
- lodash: 4.17.20
+ fast-copy: 2.1.0
qs: 6.9.4
dev: false
engines:
node: '>=6'
resolution:
- integrity: sha512-6KVLeCdn1akqjGvVMUgMxQ3B+zNIYeq3MUlqWsSLLJozr++0ZYWU76XmHf4n5MPTMoX9RGbRSR8hJAaKcUNDFw==
+ integrity: sha512-+b8UXVE249Z6WzMLXvsu3CIvN/s5xXRZ9o+zY7zDdPkIYBMW15xcs9N2ATI6ncmc+s1uj4XZij/2skflletHiw==
/convert-hrtime/3.0.0:
dev: false
engines:
@@ -7496,7 +9208,7 @@ packages:
dev: false
resolution:
integrity: sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==
- /copyfiles/2.4.0:
+ /copyfiles/2.4.1:
dependencies:
glob: 7.1.6
minimatch: 3.0.4
@@ -7504,34 +9216,34 @@ packages:
noms: 0.0.0
through2: 2.0.5
untildify: 4.0.0
- yargs: 15.4.1
+ yargs: 16.2.0
dev: false
hasBin: true
resolution:
- integrity: sha512-yGjpR3yjQdxccW8EcJ4a7ZCA6wGER6/Q2Y+b7bXbVxGeSHBf93i9d7MzTsx+VV1CpMKQa3v4ThZfXBcltMzl0w==
- /core-js-compat/3.7.0:
+ integrity: sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==
+ /core-js-compat/3.8.1:
dependencies:
- browserslist: 4.14.7
+ browserslist: 4.16.0
semver: 7.0.0
dev: false
resolution:
- integrity: sha512-V8yBI3+ZLDVomoWICO6kq/CD28Y4r1M7CWeO4AGpMdMfseu8bkSubBmUPySMGKRTS+su4XQ07zUkAsiu9FCWTg==
- /core-js-pure/3.7.0:
+ integrity: sha512-a16TLmy9NVD1rkjUGbwuyWkiDoN0FDpAwrfLONvHFQx0D9k7J9y0srwMT8QP/Z6HE3MIFaVynEeYwZwPX1o5RQ==
+ /core-js-pure/3.8.1:
dev: false
requiresBuild: true
resolution:
- integrity: sha512-EZD2ckZysv8MMt4J6HSvS9K2GdtlZtdBncKAmF9lr2n0c9dJUaUN88PSTjvgwCgQPWKTkERXITgS6JJRAnljtg==
- /core-js/2.6.11:
+ integrity: sha512-Se+LaxqXlVXGvmexKGPvnUIYC1jwXu1H6Pkyb3uBM5d8/NELMYCHs/4/roD7721NxrTLyv7e5nXd5/QLBO+10g==
+ /core-js/2.6.12:
deprecated: 'core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3.'
dev: false
requiresBuild: true
resolution:
- integrity: sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
- /core-js/3.7.0:
+ integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
+ /core-js/3.8.1:
dev: false
requiresBuild: true
resolution:
- integrity: sha512-NwS7fI5M5B85EwpWuIwJN4i/fbisQUwLwiSNUWeXlkAZ0sbBjLEvLvFLf1uzAUV66PcEPt4xCGCmOZSxVf3xzA==
+ integrity: sha512-9Id2xHY1W7m8hCl8NkhQn5CufmF/WuR30BTRewvCXc1aZd3kMECwNZ69ndLbekKfakw9Rf2Xyc+QR6E7Gg+obg==
/core-util-is/1.0.2:
dev: false
resolution:
@@ -7555,7 +9267,7 @@ packages:
dependencies:
import-fresh: 2.0.0
is-directory: 0.3.1
- js-yaml: 3.14.0
+ js-yaml: 3.14.1
parse-json: 4.0.0
dev: false
engines:
@@ -7586,6 +9298,33 @@ packages:
node: '>=10'
resolution:
integrity: sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==
+ /cp-file/7.0.0:
+ dependencies:
+ graceful-fs: 4.2.4
+ make-dir: 3.1.0
+ nested-error-stacks: 2.1.0
+ p-event: 4.2.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==
+ /cpy/8.1.1:
+ dependencies:
+ arrify: 2.0.1
+ cp-file: 7.0.0
+ globby: 9.2.0
+ has-glob: 1.0.0
+ junk: 3.1.0
+ nested-error-stacks: 2.1.0
+ p-all: 2.1.0
+ p-filter: 2.1.0
+ p-map: 3.0.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-vqHT+9o67sMwJ5hUd/BAOYeemkU+MuFRsK2c36Xc3eefQpAsp1kAsyDxEDcc5JS1+y9l/XHPrIsVTcyGGmkUUQ==
/create-ecdh/4.0.4:
dependencies:
bn.js: 4.11.9
@@ -7593,6 +9332,11 @@ packages:
dev: false
resolution:
integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
+ /create-gatsby/0.2.1:
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-TYg5jfi97GWCuotU2otZUqNtNBmjIZTHlW1RE49JDK/QujtJ4pur9cp7oFJm9QaOqeiH+oq1/LK7JFzq9B44HA==
/create-hash/1.2.0:
dependencies:
cipher-base: 1.0.4
@@ -7614,6 +9358,17 @@ packages:
dev: false
resolution:
integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
+ /create-react-context/0.3.0_prop-types@15.7.2:
+ dependencies:
+ gud: 1.0.0
+ prop-types: 15.7.2
+ warning: 4.0.3
+ dev: false
+ peerDependencies:
+ prop-types: ^15.0.0
+ react: ^0.14.0 || ^15.0.0 || ^16.0.0
+ resolution:
+ integrity: sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==
/create-react-context/0.3.0_prop-types@15.7.2+react@16.14.0:
dependencies:
gud: 1.0.0
@@ -7626,6 +9381,22 @@ packages:
react: ^0.14.0 || ^15.0.0 || ^16.0.0
resolution:
integrity: sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==
+ /create-react-context/0.3.0_prop-types@15.7.2+react@17.0.1:
+ dependencies:
+ gud: 1.0.0
+ prop-types: 15.7.2
+ react: 17.0.1
+ warning: 4.0.3
+ dev: false
+ peerDependencies:
+ prop-types: ^15.0.0
+ react: ^0.14.0 || ^15.0.0 || ^16.0.0
+ resolution:
+ integrity: sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==
+ /create-require/1.1.1:
+ dev: false
+ resolution:
+ integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
/cross-env/5.2.1:
dependencies:
cross-spawn: 6.0.5
@@ -7635,7 +9406,7 @@ packages:
hasBin: true
resolution:
integrity: sha512-1yHhtcfAd1r4nwQgknowuUNfIT9E8dOMMspC36g45dN+iD1blloi7xp8X/xAIDnjHWyt1uQ8PHk2fkNaym7soQ==
- /cross-env/7.0.2:
+ /cross-env/7.0.3:
dependencies:
cross-spawn: 7.0.3
dev: false
@@ -7645,7 +9416,7 @@ packages:
yarn: '>=1'
hasBin: true
resolution:
- integrity: sha512-KZP/bMEOJEDCkDQAyRhu3RL2ZO/SUVrxQVI0G3YEQ+OLbRA3c6zgixe8Mq8a/z7+HKlNEjo8oiLUs8iRijY2Rw==
+ integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==
/cross-fetch/3.0.6:
dependencies:
node-fetch: 2.6.1
@@ -7831,15 +9602,15 @@ packages:
node: '>=8.0.0'
resolution:
integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==
- /css-tree/1.0.1:
+ /css-tree/1.1.2:
dependencies:
- mdn-data: 2.0.12
+ mdn-data: 2.0.14
source-map: 0.6.1
dev: false
engines:
node: '>=8.0.0'
resolution:
- integrity: sha512-WroX+2MvsYcRGP8QA0p+rxzOniT/zpAoQ/DTKDSJzh5T3IQKUkFHeIIfgIapm2uaP178GWY3Mime1qbk8GO/tA==
+ integrity: sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ==
/css-what/2.1.3:
dev: false
resolution:
@@ -7944,14 +9715,14 @@ packages:
node: '>=6.9.0'
resolution:
integrity: sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==
- /csso/4.1.1:
+ /csso/4.2.0:
dependencies:
- css-tree: 1.0.1
+ css-tree: 1.1.2
dev: false
engines:
node: '>=8.0.0'
resolution:
- integrity: sha512-Rvq+e1e0TFB8E8X+8MQjHSY6vtol45s5gxtLI/018UsAn2IBMmwNEZRM/h+HVnAJRHjasLIKKUO3uvoMM28LvA==
+ integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==
/csstype/2.6.14:
dev: false
resolution:
@@ -8013,19 +9784,27 @@ packages:
dev: false
resolution:
integrity: sha512-YzhyDAwA4TaQIhM5go+vCLmU0UikghC/t9DTQYZR2M/UvZ1MdOhPezSDZcjj9uqQJOMqjLcpWtyW2iNINdlatQ==
+ /date-fns/1.30.1:
+ dev: false
+ resolution:
+ integrity: sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==
/date-fns/2.16.1:
dev: false
engines:
node: '>=0.11'
resolution:
integrity: sha512-sAJVKx/FqrLYHAQeN7VpJrPhagZc9R4ImZIWYRFZaaohR3KzmuK88touwsSwSVT8Qcbd4zoDsnGfX4GFB4imyQ==
+ /date-format/0.0.2:
+ dev: false
+ resolution:
+ integrity: sha1-+v1Ej3IRXvHitzkVWukvK+bCjdE=
/dateformat/2.2.0:
dev: false
resolution:
integrity: sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI=
/debug-fabulous/1.1.0:
dependencies:
- debug: 3.2.6
+ debug: 3.2.7
memoizee: 0.4.14
object-assign: 4.1.1
dev: false
@@ -8043,19 +9822,20 @@ packages:
dev: false
resolution:
integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==
- /debug/3.2.6:
+ /debug/3.2.7:
dependencies:
- ms: 2.1.2
+ ms: 2.1.3
dev: false
resolution:
- integrity: sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
+ integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
/debug/4.1.1:
dependencies:
- ms: 2.1.2
+ ms: 2.1.3
+ deprecated: 'Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)'
dev: false
resolution:
integrity: sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
- /debug/4.2.0:
+ /debug/4.3.1:
dependencies:
ms: 2.1.2
dev: false
@@ -8067,8 +9847,8 @@ packages:
supports-color:
optional: true
resolution:
- integrity: sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==
- /debug/4.2.0_supports-color@6.1.0:
+ integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
+ /debug/4.3.1_supports-color@6.1.0:
dependencies:
ms: 2.1.2
supports-color: 6.1.0
@@ -8081,7 +9861,7 @@ packages:
supports-color:
optional: true
resolution:
- integrity: sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==
+ integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
/decamelize-keys/1.1.0:
dependencies:
decamelize: 1.2.0
@@ -8199,10 +9979,10 @@ packages:
integrity: sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=
/deep-equal/1.1.1:
dependencies:
- is-arguments: 1.0.4
+ is-arguments: 1.1.0
is-date-object: 1.0.2
is-regex: 1.1.1
- object-is: 1.1.3
+ object-is: 1.1.4
object-keys: 1.1.1
regexp.prototype.flags: 1.3.0
dev: false
@@ -8363,6 +10143,10 @@ packages:
node: '>= 0.6'
resolution:
integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
+ /deprecation/2.3.1:
+ dev: false
+ resolution:
+ integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==
/deps-sort/2.0.1:
dependencies:
JSONStream: 1.3.5
@@ -8384,12 +10168,12 @@ packages:
dev: false
resolution:
integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
- /detab/2.0.3:
+ /detab/2.0.4:
dependencies:
repeat-string: 1.6.1
dev: false
resolution:
- integrity: sha512-Up8P0clUVwq0FnFjDclzZsy9PadzRn5FFxrr47tQQvMHqyiFYVbpH8oXDzWtF0Q7pYy3l+RPmtBl+BsFF6wH0A==
+ integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==
/detect-file/1.0.0:
dev: false
engines:
@@ -8498,7 +10282,7 @@ packages:
'@types/tmp': 0.0.33
application-config-path: 0.1.0
command-exists: 1.2.9
- debug: 3.2.6
+ debug: 3.2.7
eol: 0.9.1
get-port: 3.2.0
glob: 7.1.6
@@ -8516,6 +10300,14 @@ packages:
dev: false
resolution:
integrity: sha1-/CqIe1pbwKCoVPthTHwvIJBh7gQ=
+ /dicer/0.3.0:
+ dependencies:
+ streamsearch: 0.1.2
+ dev: false
+ engines:
+ node: '>=4.5.0'
+ resolution:
+ integrity: sha512-MdceRRWqltEG2dZqO769g27N/3PXfcKl04VhYnBlo2YhH7zPi88VebsjTKclaOyiuMaGU72hTfw3VkUitGcVCA==
/diff-sequences/25.2.6:
dev: false
engines:
@@ -8545,6 +10337,14 @@ packages:
node: '>=4'
resolution:
integrity: sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==
+ /dir-glob/2.2.2:
+ dependencies:
+ path-type: 3.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==
/dir-glob/3.0.1:
dependencies:
path-type: 4.0.0
@@ -8647,7 +10447,7 @@ packages:
integrity: sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==
/dom-serializer/0.2.2:
dependencies:
- domelementtype: 2.0.2
+ domelementtype: 2.1.0
entities: 2.1.0
dev: false
resolution:
@@ -8667,10 +10467,10 @@ packages:
dev: false
resolution:
integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
- /domelementtype/2.0.2:
+ /domelementtype/2.1.0:
dev: false
resolution:
- integrity: sha512-wFwTwCVebUrMgGeAwRL/NhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA==
+ integrity: sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==
/domhandler/2.4.2:
dependencies:
domelementtype: 1.3.1
@@ -8679,7 +10479,7 @@ packages:
integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==
/domutils/1.5.1:
dependencies:
- dom-serializer: 0.2.2
+ dom-serializer: 0.1.1
domelementtype: 1.3.1
dev: false
resolution:
@@ -8691,13 +10491,13 @@ packages:
dev: false
resolution:
integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==
- /dot-case/3.0.3:
+ /dot-case/3.0.4:
dependencies:
- no-case: 3.0.3
- tslib: 1.14.1
+ no-case: 3.0.4
+ tslib: 2.0.3
dev: false
resolution:
- integrity: sha512-7hwEmg6RiSQfm/GwPL4AAWXKy3YNNZA3oFv2Pdiey0mwkRCPZ9x6SZbkLcn8Ma5PYeVokzoD4Twv2n7LKp5WeA==
+ integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==
/dot-prop/5.3.0:
dependencies:
is-obj: 2.0.0
@@ -8774,6 +10574,18 @@ packages:
node: '>=6'
resolution:
integrity: sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==
+ /downshift/6.0.7_react@17.0.1:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ compute-scroll-into-view: 1.0.16
+ prop-types: 15.7.2
+ react: 17.0.1
+ react-is: 17.0.1
+ dev: false
+ peerDependencies:
+ react: '>=16.8.0'
+ resolution:
+ integrity: sha512-+rqgx3JTSs8b4V9q++hsLvaP8mhMOdX7u+jy5S2etg7+Y7uFLVzZaI0S7Xo2yEnNDmTcNnYZZ/vFjdWuJ2kZdg==
/duplexer/0.1.2:
dev: false
resolution:
@@ -8846,10 +10658,16 @@ packages:
hasBin: true
resolution:
integrity: sha512-dldq3ZfFtgVTJMLjOe+/3sROTzALlL9E34V4/sDtUd/KlBSS0s6U1/+WPE1B4sj9CXHJpL1M6rhNJnc9Wbal9w==
- /electron-to-chromium/1.3.598:
+ /electron-to-chromium/1.3.629:
dev: false
resolution:
- integrity: sha512-G5Ztk23/ubLYVPxPXnB1uu105uzIPd4xB/D8ld8x1GaSC9+vU9NZL16nYZya8H77/7CCKKN7dArzJL3pBs8N7A==
+ integrity: sha512-iSPPJtPvHrMAvYOt+9cdbDmTasPqwnwz4lkP8Dn200gDNUBQOLQ96xUsWXBwXslAo5XxdoXAoQQ3RAy4uao9IQ==
+ /elegant-spinner/1.0.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=
/element-resize-detector/1.2.1:
dependencies:
batch-processor: 1.0.0
@@ -8896,6 +10714,19 @@ packages:
node: '>= 4'
resolution:
integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
+ /emotion-theming/10.0.27_10fff9175f8ec0d065857495de794004:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ '@emotion/core': 10.1.1_react@17.0.1
+ '@emotion/weak-memoize': 0.2.5
+ hoist-non-react-statics: 3.3.2
+ react: 17.0.1
+ dev: false
+ peerDependencies:
+ '@emotion/core': ^10.0.27
+ react: '>=16.3.0'
+ resolution:
+ integrity: sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==
/emotion-theming/10.0.27_5f216699bc8c1f24088b3bf77b7cbbdf:
dependencies:
'@babel/runtime': 7.12.5
@@ -8909,6 +10740,18 @@ packages:
react: '>=16.3.0'
resolution:
integrity: sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==
+ /emotion-theming/10.0.27_@emotion+core@10.1.1:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ '@emotion/core': 10.1.1
+ '@emotion/weak-memoize': 0.2.5
+ hoist-non-react-statics: 3.3.2
+ dev: false
+ peerDependencies:
+ '@emotion/core': ^10.0.27
+ react: '>=16.3.0'
+ resolution:
+ integrity: sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==
/encodeurl/1.0.2:
dev: false
engines:
@@ -8999,7 +10842,7 @@ packages:
cookie: 0.3.1
debug: 4.1.1
engine.io-parser: 2.2.1
- ws: 7.4.0
+ ws: 7.4.1
dev: false
engines:
node: '>=8.0.0'
@@ -9035,6 +10878,15 @@ packages:
dev: false
resolution:
integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==
+ /env-ci/5.0.2:
+ dependencies:
+ execa: 4.1.0
+ java-properties: 1.0.2
+ dev: false
+ engines:
+ node: '>=10.13'
+ resolution:
+ integrity: sha512-Xc41mKvjouTXD3Oy9AqySz1IeyvJvHZ20Twf5ZLYbNpPPIuCnL/qHCmNlD01LoNy0JTunw9HPYVptD19Ac7Mbw==
/env-cmd/10.1.0:
dependencies:
commander: 4.1.1
@@ -9056,13 +10908,13 @@ packages:
dev: false
resolution:
integrity: sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==
- /errno/0.1.7:
+ /errno/0.1.8:
dependencies:
prr: 1.0.1
dev: false
hasBin: true
resolution:
- integrity: sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==
+ integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==
/error-ex/1.3.2:
dependencies:
is-arrayish: 0.2.1
@@ -9083,11 +10935,11 @@ packages:
has-symbols: 1.0.1
is-callable: 1.2.2
is-regex: 1.1.1
- object-inspect: 1.8.0
+ object-inspect: 1.9.0
object-keys: 1.1.1
object.assign: 4.1.2
- string.prototype.trimend: 1.0.2
- string.prototype.trimstart: 1.0.2
+ string.prototype.trimend: 1.0.3
+ string.prototype.trimstart: 1.0.3
dev: false
engines:
node: '>= 0.4'
@@ -9100,13 +10952,13 @@ packages:
has: 1.0.3
has-symbols: 1.0.1
is-callable: 1.2.2
- is-negative-zero: 2.0.0
+ is-negative-zero: 2.0.1
is-regex: 1.1.1
- object-inspect: 1.8.0
+ object-inspect: 1.9.0
object-keys: 1.1.1
object.assign: 4.1.2
- string.prototype.trimend: 1.0.2
- string.prototype.trimstart: 1.0.2
+ string.prototype.trimend: 1.0.3
+ string.prototype.trimstart: 1.0.3
dev: false
engines:
node: '>= 0.4'
@@ -9121,9 +10973,9 @@ packages:
call-bind: 1.0.0
get-intrinsic: 1.0.1
has-symbols: 1.0.1
- is-arguments: 1.0.4
- is-map: 2.0.1
- is-set: 2.0.1
+ is-arguments: 1.1.0
+ is-map: 2.0.2
+ is-set: 2.0.2
is-string: 1.0.5
isarray: 2.0.5
dev: false
@@ -9233,13 +11085,13 @@ packages:
source-map: 0.6.1
resolution:
integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
- /eslint-config-airbnb-base/14.2.1_537fbdca934358ea9709e7f14f1334c7:
+ /eslint-config-airbnb-base/14.2.1_00d09b02c6185f3347dd86516a55f6ae:
dependencies:
confusing-browser-globals: 1.0.10
- eslint: 7.13.0
- eslint-plugin-import: 2.22.1_eslint@7.13.0
+ eslint: 7.15.0
+ eslint-plugin-import: 2.22.1_eslint@7.15.0
object.assign: 4.1.2
- object.entries: 1.1.2
+ object.entries: 1.1.3
dev: false
engines:
node: '>= 6'
@@ -9248,16 +11100,16 @@ packages:
eslint-plugin-import: ^2.22.1
resolution:
integrity: sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==
- /eslint-config-airbnb/18.2.1_1ba96e5057f09441420006a53a4a64be:
- dependencies:
- eslint: 7.13.0
- eslint-config-airbnb-base: 14.2.1_537fbdca934358ea9709e7f14f1334c7
- eslint-plugin-import: 2.22.1_eslint@7.13.0
- eslint-plugin-jsx-a11y: 6.4.1_eslint@7.13.0
- eslint-plugin-react: 7.21.5_eslint@7.13.0
- eslint-plugin-react-hooks: 2.5.1_eslint@7.13.0
+ /eslint-config-airbnb/18.2.1_82dacb0a2a81988b908259ac316079e5:
+ dependencies:
+ eslint: 7.15.0
+ eslint-config-airbnb-base: 14.2.1_00d09b02c6185f3347dd86516a55f6ae
+ eslint-plugin-import: 2.22.1_eslint@7.15.0
+ eslint-plugin-jsx-a11y: 6.4.1_eslint@7.15.0
+ eslint-plugin-react: 7.21.5_eslint@7.15.0
+ eslint-plugin-react-hooks: 2.5.1_eslint@7.15.0
object.assign: 4.1.2
- object.entries: 1.1.2
+ object.entries: 1.1.3
dev: false
engines:
node: '>= 6'
@@ -9296,7 +11148,7 @@ packages:
integrity: sha512-pGIZ8t0mFLcV+6ZirRgYK6RVqUIKRIi9MmgzUEmrIknsn3AdO0I32asO86dJgloHq+9ZPl8UIg8mYrvgP5u2wQ==
/eslint-import-resolver-alias/1.1.2_eslint-plugin-import@2.22.1:
dependencies:
- eslint-plugin-import: 2.22.1_eslint@7.13.0
+ eslint-plugin-import: 2.22.1_eslint@7.15.0
dev: false
engines:
node: '>= 4'
@@ -9304,10 +11156,23 @@ packages:
eslint-plugin-import: '>=1.4.0'
resolution:
integrity: sha512-WdviM1Eu834zsfjHtcGHtGfcu+F30Od3V7I9Fi57uhBEwPkjDcii7/yW8jAT+gOhn4P/vOxxNAXbFAKsrrc15w==
- /eslint-import-resolver-babel-module/5.2.0_c29e6beeb245c629047b173ad0d8d907:
+ /eslint-import-resolver-babel-module/5.2.0_5332d3de48a0e1d3b6a06f3b329b80fc:
+ dependencies:
+ '@babel/core': 7.12.10
+ babel-plugin-module-resolver: 4.1.0
+ pkg-up: 2.0.0
+ resolve: 1.19.0
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ babel-plugin-module-resolver: ^3.0.0 || ^4.0.0
+ resolution:
+ integrity: sha512-BoVKAfaveJSzKGI1wIaomg/lEbE7Zr08+fDSCWccgYrE9wRQjCbtYIQsNRNYFCcwbFv48/y+Qa19FwOv0B5g5A==
+ /eslint-import-resolver-babel-module/5.2.0_e51044130ac762fd207a8cd2109b5344:
dependencies:
- '@babel/core': 7.12.3
- babel-plugin-module-resolver: 4.0.0
+ babel-plugin-module-resolver: 4.1.0
pkg-up: 2.0.0
resolve: 1.19.0
dev: false
@@ -9320,7 +11185,7 @@ packages:
integrity: sha512-BoVKAfaveJSzKGI1wIaomg/lEbE7Zr08+fDSCWccgYrE9wRQjCbtYIQsNRNYFCcwbFv48/y+Qa19FwOv0B5g5A==
/eslint-import-resolver-custom-alias/1.2.0_eslint-plugin-import@2.22.1:
dependencies:
- eslint-plugin-import: 2.22.1_eslint@7.13.0
+ eslint-plugin-import: 2.22.1_eslint@7.15.0
glob-parent: 5.1.1
resolve: 1.19.0
dev: false
@@ -9351,9 +11216,9 @@ packages:
webpack: '>=2.0.0 <5.0.0'
resolution:
integrity: sha512-RLgV9hoCVsMLvOxCuNjdqOrUqIj9oJg8hF44vzJaYqsAHuY9G2YAeN3joQ9nxP0p5Th9iFSIpKo+SD8KISxXRg==
- /eslint-loader/4.0.2_eslint@7.13.0+webpack@4.44.2:
+ /eslint-loader/4.0.2_eslint@7.15.0+webpack@4.44.2:
dependencies:
- eslint: 7.13.0
+ eslint: 7.15.0
find-cache-dir: 3.3.1
fs-extra: 8.1.0
loader-utils: 2.0.0
@@ -9405,8 +11270,8 @@ packages:
integrity: sha512-d5tQm24YkVvCEk29ZR5ScsgXqAGCjKlMS8lx3mS7FS/EKsWbkvXQImpvic03EpMIvNTBW5e+2xnHzXB/VHNZJw==
/eslint-plugin-import/2.22.1_eslint@6.8.0:
dependencies:
- array-includes: 3.1.1
- array.prototype.flat: 1.2.3
+ array-includes: 3.1.2
+ array.prototype.flat: 1.2.4
contains-path: 0.1.0
debug: 2.6.9
doctrine: 1.5.0
@@ -9415,7 +11280,7 @@ packages:
eslint-module-utils: 2.6.0
has: 1.0.3
minimatch: 3.0.4
- object.values: 1.1.1
+ object.values: 1.1.2
read-pkg-up: 2.0.0
resolve: 1.19.0
tsconfig-paths: 3.9.0
@@ -9426,19 +11291,19 @@ packages:
eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0
resolution:
integrity: sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==
- /eslint-plugin-import/2.22.1_eslint@7.13.0:
+ /eslint-plugin-import/2.22.1_eslint@7.15.0:
dependencies:
- array-includes: 3.1.1
- array.prototype.flat: 1.2.3
+ array-includes: 3.1.2
+ array.prototype.flat: 1.2.4
contains-path: 0.1.0
debug: 2.6.9
doctrine: 1.5.0
- eslint: 7.13.0
+ eslint: 7.15.0
eslint-import-resolver-node: 0.3.4
eslint-module-utils: 2.6.0
has: 1.0.3
minimatch: 3.0.4
- object.values: 1.1.1
+ object.values: 1.1.2
read-pkg-up: 2.0.0
resolve: 1.19.0
tsconfig-paths: 3.9.0
@@ -9451,7 +11316,7 @@ packages:
integrity: sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==
/eslint-plugin-json/1.4.0:
dependencies:
- vscode-json-languageservice: 3.10.0
+ vscode-json-languageservice: 3.11.0
dev: false
engines:
node: '>=0.10.0'
@@ -9461,15 +11326,15 @@ packages:
dependencies:
'@babel/runtime': 7.12.5
aria-query: 4.2.2
- array-includes: 3.1.1
+ array-includes: 3.1.2
ast-types-flow: 0.0.7
- axe-core: 4.1.0
+ axe-core: 4.1.1
axobject-query: 2.2.0
damerau-levenshtein: 1.0.6
emoji-regex: 9.2.0
eslint: 6.8.0
has: 1.0.3
- jsx-ast-utils: 3.1.0
+ jsx-ast-utils: 3.2.0
language-tags: 1.0.5
dev: false
engines:
@@ -9478,19 +11343,19 @@ packages:
eslint: ^3 || ^4 || ^5 || ^6 || ^7
resolution:
integrity: sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==
- /eslint-plugin-jsx-a11y/6.4.1_eslint@7.13.0:
+ /eslint-plugin-jsx-a11y/6.4.1_eslint@7.15.0:
dependencies:
'@babel/runtime': 7.12.5
aria-query: 4.2.2
- array-includes: 3.1.1
+ array-includes: 3.1.2
ast-types-flow: 0.0.7
- axe-core: 4.1.0
+ axe-core: 4.1.1
axobject-query: 2.2.0
damerau-levenshtein: 1.0.6
emoji-regex: 9.2.0
- eslint: 7.13.0
+ eslint: 7.15.0
has: 1.0.3
- jsx-ast-utils: 3.1.0
+ jsx-ast-utils: 3.2.0
language-tags: 1.0.5
dev: false
engines:
@@ -9509,9 +11374,9 @@ packages:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
resolution:
integrity: sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA==
- /eslint-plugin-react-hooks/2.5.1_eslint@7.13.0:
+ /eslint-plugin-react-hooks/2.5.1_eslint@7.15.0:
dependencies:
- eslint: 7.13.0
+ eslint: 7.15.0
dev: false
engines:
node: '>=7'
@@ -9521,18 +11386,18 @@ packages:
integrity: sha512-Y2c4b55R+6ZzwtTppKwSmK/Kar8AdLiC2f9NADCuxbcTgPPg41Gyqa6b9GppgXSvCtkRw43ZE86CT5sejKC6/g==
/eslint-plugin-react/7.21.5_eslint@6.8.0:
dependencies:
- array-includes: 3.1.1
- array.prototype.flatmap: 1.2.3
+ array-includes: 3.1.2
+ array.prototype.flatmap: 1.2.4
doctrine: 2.1.0
eslint: 6.8.0
has: 1.0.3
- jsx-ast-utils: 3.1.0
- object.entries: 1.1.2
- object.fromentries: 2.0.2
- object.values: 1.1.1
+ jsx-ast-utils: 3.2.0
+ object.entries: 1.1.3
+ object.fromentries: 2.0.3
+ object.values: 1.1.2
prop-types: 15.7.2
resolve: 1.19.0
- string.prototype.matchall: 4.0.2
+ string.prototype.matchall: 4.0.3
dev: false
engines:
node: '>=4'
@@ -9540,20 +11405,20 @@ packages:
eslint: ^3 || ^4 || ^5 || ^6 || ^7
resolution:
integrity: sha512-8MaEggC2et0wSF6bUeywF7qQ46ER81irOdWS4QWxnnlAEsnzeBevk1sWh7fhpCghPpXb+8Ks7hvaft6L/xsR6g==
- /eslint-plugin-react/7.21.5_eslint@7.13.0:
+ /eslint-plugin-react/7.21.5_eslint@7.15.0:
dependencies:
- array-includes: 3.1.1
- array.prototype.flatmap: 1.2.3
+ array-includes: 3.1.2
+ array.prototype.flatmap: 1.2.4
doctrine: 2.1.0
- eslint: 7.13.0
+ eslint: 7.15.0
has: 1.0.3
- jsx-ast-utils: 3.1.0
- object.entries: 1.1.2
- object.fromentries: 2.0.2
- object.values: 1.1.1
+ jsx-ast-utils: 3.2.0
+ object.entries: 1.1.3
+ object.fromentries: 2.0.3
+ object.values: 1.1.2
prop-types: 15.7.2
resolve: 1.19.0
- string.prototype.matchall: 4.0.2
+ string.prototype.matchall: 4.0.3
dev: false
engines:
node: '>=4'
@@ -9609,11 +11474,11 @@ packages:
integrity: sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
/eslint/6.8.0:
dependencies:
- '@babel/code-frame': 7.10.4
+ '@babel/code-frame': 7.12.11
ajv: 6.12.6
chalk: 2.4.2
cross-spawn: 6.0.5
- debug: 4.2.0
+ debug: 4.3.1
doctrine: 3.0.0
eslint-scope: 5.1.1
eslint-utils: 1.4.3
@@ -9630,7 +11495,7 @@ packages:
imurmurhash: 0.1.4
inquirer: 7.3.3
is-glob: 4.0.1
- js-yaml: 3.14.0
+ js-yaml: 3.14.1
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.3.0
lodash: 4.17.20
@@ -9652,23 +11517,23 @@ packages:
hasBin: true
resolution:
integrity: sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==
- /eslint/7.13.0:
+ /eslint/7.15.0:
dependencies:
- '@babel/code-frame': 7.10.4
- '@eslint/eslintrc': 0.2.1
+ '@babel/code-frame': 7.12.11
+ '@eslint/eslintrc': 0.2.2
ajv: 6.12.6
chalk: 4.1.0
cross-spawn: 7.0.3
- debug: 4.2.0
+ debug: 4.3.1
doctrine: 3.0.0
enquirer: 2.3.6
eslint-scope: 5.1.1
eslint-utils: 2.1.0
eslint-visitor-keys: 2.0.0
- espree: 7.3.0
+ espree: 7.3.1
esquery: 1.3.1
esutils: 2.0.3
- file-entry-cache: 5.0.1
+ file-entry-cache: 6.0.0
functional-red-black-tree: 1.0.1
glob-parent: 5.1.1
globals: 12.4.0
@@ -9676,7 +11541,7 @@ packages:
import-fresh: 3.2.2
imurmurhash: 0.1.4
is-glob: 4.0.1
- js-yaml: 3.14.0
+ js-yaml: 3.14.1
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.4.1
lodash: 4.17.20
@@ -9685,7 +11550,7 @@ packages:
optionator: 0.9.1
progress: 2.0.3
regexpp: 3.1.0
- semver: 7.3.2
+ semver: 7.3.4
strip-ansi: 6.0.0
strip-json-comments: 3.1.1
table: 5.4.6
@@ -9696,7 +11561,7 @@ packages:
node: ^10.12.0 || >=12.0.0
hasBin: true
resolution:
- integrity: sha512-uCORMuOO8tUzJmsdRtrvcGq5qposf7Rw0LwkTJkoDbOycVQtQjmnhZSuLQnozLE4TmAzlMVV45eCHmQ1OpDKUQ==
+ integrity: sha512-Vr64xFDT8w30wFll643e7cGrIkPEU50yIiI36OdSIDoSGguIeaLzBo0vpGvzo9RECUqq7htURfwEtKqwytkqzA==
/esm/3.2.25:
dev: false
engines:
@@ -9713,7 +11578,7 @@ packages:
node: '>=6.0.0'
resolution:
integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==
- /espree/7.3.0:
+ /espree/7.3.1:
dependencies:
acorn: 7.4.1
acorn-jsx: 5.3.1_acorn@7.4.1
@@ -9722,7 +11587,7 @@ packages:
engines:
node: ^10.12.0 || >=12.0.0
resolution:
- integrity: sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==
+ integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
/esprima/4.0.1:
dev: false
engines:
@@ -9777,14 +11642,10 @@ packages:
dev: false
resolution:
integrity: sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=
- /event-source-polyfill/1.0.21:
- dev: false
- resolution:
- integrity: sha512-Mz8LO8hPgg2X6VcSXmq7gvgFU3kUnTZb4zU3tTYDx8cJHRXP15tjdpGUiP2IUUwOqAGZ1TEfe+KagjMXfFgwLA==
- /eventemitter3/3.1.2:
+ /event-source-polyfill/1.0.22:
dev: false
resolution:
- integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==
+ integrity: sha512-Fnk9E2p4rkZ3eJGBn2HDeZoBTpyjPxj8RX/whdr4Pm5622xYgYo1k48SUD649Xlo6nnoKRr2WwcUlneil/AZ8g==
/eventemitter3/4.0.7:
dev: false
resolution:
@@ -10075,6 +11936,12 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
+ /extract-files/9.0.0:
+ dev: false
+ engines:
+ node: ^10.17.0 || ^12.0.0 || >= 13.7.0
+ resolution:
+ integrity: sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==
/extract-zip/1.7.0:
dependencies:
concat-stream: 1.6.2
@@ -10091,6 +11958,12 @@ packages:
'0': node >=0.6.0
resolution:
integrity: sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=
+ /fake-tag/2.0.0:
+ dev: false
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-QDz+8qiNQ9AfBZ31EXlID5JIbUkU3e1nXDWk4tidFzd2gy8XJaEUW1HCuDY6DUy6t2Y0nvhD6PsUc+2WYy5w0w==
/fancy-log/1.3.3:
dependencies:
ansi-gray: 0.1.1
@@ -10102,6 +11975,10 @@ packages:
node: '>= 0.10'
resolution:
integrity: sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==
+ /fast-copy/2.1.0:
+ dev: false
+ resolution:
+ integrity: sha512-j4VxAVJsu9NHveYrIj0+nJxXe2lOlibKTlyy0jH8DBwcuV6QyXTy0zTqZhmMKo7EYvuaUk/BFj/o6NU6grE5ag==
/fast-deep-equal/3.1.3:
dev: false
resolution:
@@ -10174,7 +12051,7 @@ packages:
integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==
/faye-websocket/0.10.0:
dependencies:
- websocket-driver: 0.7.4
+ websocket-driver: 0.6.5
dev: false
engines:
node: '>=0.4.0'
@@ -10295,6 +12172,17 @@ packages:
node: '>=8'
resolution:
integrity: sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg==
+ /file-type/16.0.1:
+ dependencies:
+ readable-web-to-node-stream: 3.0.0
+ strtok3: 6.0.4
+ token-types: 2.0.0
+ typedarray-to-buffer: 3.1.5
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-rwXqMZiizJd0uXZE52KN2DtPBAV99qz9cUTHHt8pSyaQzgVYrHJGR0qt2p4N/yzHEL/tGrlB/TgawQb4Fnxxyw==
/file-type/3.9.0:
dev: false
engines:
@@ -10583,25 +12471,56 @@ packages:
dev: false
resolution:
integrity: sha1-VURAdm2goNYDmZ9DNFP2wvxqdcE=
- /flow-parser/0.138.0:
+ /flow-parser/0.140.0:
dev: false
engines:
node: '>=0.4.0'
resolution:
- integrity: sha512-LFnTyjrv39UvCWl8NOcpByr/amj8a5k5z7isO2wv4T43nNrUnHQwX3rarTz9zcpHXkDAQv6X4MfQ4ZzJUptpbw==
+ integrity: sha512-z57YJZXcO0mmlNoOf9uvdnoZXanu8ALTqSaAWAv6kQavpnA5Kpdd4R7B3wP56+/yi/yODjrtarQYV/bgv867Iw==
/flush-write-stream/1.1.1:
dependencies:
inherits: 2.0.4
readable-stream: 2.3.7
dev: false
resolution:
- integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
- /follow-redirects/1.13.0:
+ integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
+ /follow-redirects/1.13.1:
+ dev: false
+ engines:
+ node: '>=4.0'
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+ resolution:
+ integrity: sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg==
+ /follow-redirects/1.13.1_debug@3.2.7:
+ dependencies:
+ debug: 3.2.7
+ dev: false
+ engines:
+ node: '>=4.0'
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+ resolution:
+ integrity: sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg==
+ /follow-redirects/1.13.1_debug@4.3.1:
+ dependencies:
+ debug: 4.3.1_supports-color@6.1.0
dev: false
engines:
node: '>=4.0'
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
resolution:
- integrity: sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==
+ integrity: sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg==
/follow-redirects/1.5.10:
dependencies:
debug: 3.1.0
@@ -10654,7 +12573,7 @@ packages:
integrity: sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ==
/fork-ts-checker-webpack-plugin/4.1.6:
dependencies:
- '@babel/code-frame': 7.10.4
+ '@babel/code-frame': 7.12.11
chalk: 2.4.2
micromatch: 3.1.10
minimatch: 3.0.4
@@ -10677,6 +12596,16 @@ packages:
node: '>= 0.12'
resolution:
integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==
+ /form-data/2.5.1:
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ mime-types: 2.1.27
+ dev: false
+ engines:
+ node: '>= 0.12'
+ resolution:
+ integrity: sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==
/form-data/3.0.0:
dependencies:
asynckit: 0.4.0
@@ -10720,6 +12649,12 @@ packages:
dev: false
resolution:
integrity: sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
+ /fs-capacitor/6.2.0:
+ dev: false
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-nKcE1UduoSKX27NSZlg879LdQc94OtbOsEmKMN2MBNudXREvijRKx2GEBsTMTfws+BrbkJoEuynbGSVRSpauvw==
/fs-constants/1.0.0:
dev: false
resolution:
@@ -10824,6 +12759,7 @@ packages:
resolution:
integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==
/fsevents/2.1.3:
+ deprecated: Please update to v 2.2.x
dev: false
engines:
node: ^8.16.0 || ^10.6.0 || >=11.0.0
@@ -10856,33 +12792,34 @@ packages:
dev: false
resolution:
integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
- /function.prototype.name/1.1.2:
+ /function.prototype.name/1.1.3:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.17.7
- functions-have-names: 1.2.1
+ es-abstract: 1.18.0-next.1
+ functions-have-names: 1.2.2
dev: false
engines:
node: '>= 0.4'
resolution:
- integrity: sha512-C8A+LlHBJjB2AdcRPorc5JvJ5VUoWlXdEHLOJdCI7kjHEtGTpHQUiqMvCIKUwIsGwZX2jZJy761AXsn356bJQg==
+ integrity: sha512-H51qkbNSp8mtkJt+nyW1gyStBiKZxfRqySNUR99ylq6BPXHKI4SEvIlTKp4odLfjRKJV04DFWMU3G/YRlQOsag==
/functional-red-black-tree/1.0.1:
dev: false
resolution:
integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
- /functions-have-names/1.2.1:
+ /functions-have-names/1.2.2:
dev: false
resolution:
- integrity: sha512-j48B/ZI7VKs3sgeI2cZp7WXWmZXu7Iq5pl5/vptV5N2mq+DGFuS/ulaDjtaoLpYzuD6u8UgrUKHfgo7fDTSiBA==
+ integrity: sha512-bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA==
/fuse.js/3.6.1:
dev: false
engines:
node: '>=6'
resolution:
integrity: sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==
- /gatsby-cli/2.13.1:
+ /gatsby-cli/2.16.1:
dependencies:
- '@babel/code-frame': 7.10.4
+ '@babel/code-frame': 7.12.11
'@hapi/joi': 15.1.1
'@types/common-tags': 1.8.0
better-opn: 2.1.1
@@ -10891,13 +12828,14 @@ packages:
common-tags: 1.8.0
configstore: 5.0.1
convert-hrtime: 3.0.0
+ create-gatsby: 0.2.1
envinfo: 7.7.3
execa: 3.4.0
fs-exists-cached: 1.0.0
fs-extra: 8.1.0
- gatsby-core-utils: 1.4.0
- gatsby-recipes: 0.3.1
- gatsby-telemetry: 1.4.1
+ gatsby-core-utils: 1.7.0
+ gatsby-recipes: 0.6.0
+ gatsby-telemetry: 1.7.0
hosted-git-info: 3.0.7
is-valid-path: 0.1.1
lodash: 4.17.20
@@ -10909,12 +12847,12 @@ packages:
prompts: 2.4.0
redux: 4.0.5
resolve-cwd: 3.0.0
- semver: 7.3.2
+ semver: 7.3.4
signal-exit: 3.0.3
source-map: 0.7.3
stack-trace: 0.0.10
strip-ansi: 5.2.0
- update-notifier: 4.1.3
+ update-notifier: 5.0.1
uuid: 3.4.0
yargs: 15.4.1
yoga-layout-prebuilt: 1.10.0
@@ -10925,8 +12863,8 @@ packages:
hasBin: true
requiresBuild: true
resolution:
- integrity: sha512-k27GTZXQHIgIZHjyYTSzI7OhaxUOLuIIvgTcrKOx/t+9ztH941g0EhoBr0XbsvI1lknumuUPC7/66/RPYTsmTg==
- /gatsby-core-utils/1.4.0:
+ integrity: sha512-LIuvOCfkGCNkdApb0UpqwyhHhmfn0weEQ2ZVW07/DLbqOJ8bzilzoCZHCBNZUKiSSQwADaInLcr5L2/EbEZzZw==
+ /gatsby-core-utils/1.7.0:
dependencies:
ci-info: 2.0.0
configstore: 5.0.1
@@ -10939,7 +12877,7 @@ packages:
engines:
node: '>=10.13.0'
resolution:
- integrity: sha512-wU6huyGZ8aJ/8Izfc7D39ujxaCz/jFtznufmMSXLnEBwLF5MWGsmECx4i2nfTb2kkkTFc+n0i/rx///UnPUURg==
+ integrity: sha512-DYYkmlgpfkQBuc/vWEkSmp1xh7LGI00HA0AzH2U8AblrqAff3JBezeS3v8thkeuOm7FhlwkZGPNza+PIHYcwKA==
/gatsby-graphiql-explorer/0.4.15:
dependencies:
'@babel/runtime': 7.12.5
@@ -10948,7 +12886,7 @@ packages:
node: '>=10.13.0'
resolution:
integrity: sha512-Mo6wo6EX3pIL7ErKI0yJIfJw9iYDZyPyEsCQJDhcxymhqf1x0d8DRGDjyJDndDBiSuSUfgdBrHz/MKh3ZOZnAg==
- /gatsby-image/2.5.0:
+ /gatsby-image/2.8.0:
dependencies:
'@babel/runtime': 7.12.5
object-fit-images: 3.2.4
@@ -10957,14 +12895,14 @@ packages:
engines:
node: '>=10.13.0'
resolution:
- integrity: sha512-XS57PyRHSKileshs6kBqRs3KXsRVSR1xDYiSoCipDa3C4GDgUUPUPYFz+YjWAa2lk5vCkOEYk8vWdm4d2I77zA==
+ integrity: sha512-yKoOdmO5E97PThF6W8KOr5zeg7nYu3sE44iOupyFKqUvCDRNg9aPBpruCE4Adfc3yxyhFIN70CGV6nAQNOtmvA==
/gatsby-legacy-polyfills/0.0.6:
dependencies:
- core-js-compat: 3.7.0
+ core-js-compat: 3.8.1
dev: false
resolution:
integrity: sha512-23O0orFhu1zkCluIFBs8pu8psfyyWquczfRk2NNdT2x4wW/HkZEjonWM5AkM6kjzZL9JrVCAZEgL4qf9OjgUoA==
- /gatsby-link/2.5.0_832005e77e970d80ad4bd3eb87f2200a:
+ /gatsby-link/2.8.0_832005e77e970d80ad4bd3eb87f2200a:
dependencies:
'@babel/runtime': 7.12.5
'@reach/router': 1.3.4_react-dom@16.14.0+react@16.14.0
@@ -10980,14 +12918,29 @@ packages:
react: ^16.4.2
react-dom: ^16.4.2
resolution:
- integrity: sha512-vCTvrHaeGv50wfH5qGmHvTxktDDMC0dKa/mIjw+0pmBk+F9V9PJQkAgkAWGqNqGcLBbq5hUstVPynurrvSxjSA==
- /gatsby-page-utils/0.3.0:
+ integrity: sha512-b+VvvsnIyukn9asDa2U9I8zjq3SL6KX53Ln7KwR0qzNwtK//GSTIifrjREtTLS3xBbwCRKkZ2eVmc5NWeNkiAw==
+ /gatsby-link/2.8.0_@reach+router@1.3.4:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ '@reach/router': 1.3.4
+ '@types/reach__router': 1.3.6
+ prop-types: 15.7.2
+ dev: false
+ engines:
+ node: '>=10.13.0'
+ peerDependencies:
+ '@reach/router': ^1.3.3
+ react: ^16.4.2
+ react-dom: ^16.4.2
+ resolution:
+ integrity: sha512-b+VvvsnIyukn9asDa2U9I8zjq3SL6KX53Ln7KwR0qzNwtK//GSTIifrjREtTLS3xBbwCRKkZ2eVmc5NWeNkiAw==
+ /gatsby-page-utils/0.6.0:
dependencies:
'@babel/runtime': 7.12.5
bluebird: 3.7.2
chokidar: 3.4.3
fs-exists-cached: 1.0.0
- gatsby-core-utils: 1.4.0
+ gatsby-core-utils: 1.7.0
glob: 7.1.6
lodash: 4.17.20
micromatch: 4.0.2
@@ -10995,28 +12948,28 @@ packages:
engines:
node: '>=10.13.0'
resolution:
- integrity: sha512-6KbalAQFQ+Ko+DWbgpK+9+9wagETzvMOZLXmQiusBeHdXyR5t7aO9qPW4tUPR9eWDZ0x3cxR3Up1ZvV/hQ0BSw==
- /gatsby-plugin-manifest/2.6.1_gatsby@2.25.4:
+ integrity: sha512-DG1uFBdru3Lvvp13HsDIgssbeNaO9ydirEu5OO4s6BiYHnropABEkjFow2FXJ6D451fm4i+KFI1JbVtKOiu8qg==
+ /gatsby-plugin-manifest/2.9.0_gatsby@2.25.4:
dependencies:
'@babel/runtime': 7.12.5
- gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
- gatsby-core-utils: 1.4.0
- gatsby-plugin-utils: 0.3.0_gatsby@2.25.4
- semver: 7.3.2
- sharp: 0.25.4
+ gatsby: 2.25.4
+ gatsby-core-utils: 1.7.0
+ gatsby-plugin-utils: 0.6.0_gatsby@2.25.4
+ semver: 7.3.4
+ sharp: 0.26.3
dev: false
engines:
node: '>=10.13.0'
peerDependencies:
- gatsby: ^2.4.0
+ gatsby: ^2.25.0
resolution:
- integrity: sha512-LIDdRi3AAahU9GVLj/leKyRDkWdNHO5p93Q3FS9xiA71ysZ/hJJbDOWB2n8YvCK4Ulx0CCSsr01nVvoMyai+Hw==
- /gatsby-plugin-offline/3.4.0_gatsby@2.25.4:
+ integrity: sha512-bOXcix1ZfnwDY66NYmySYFGLCi09wq5Hsci1eWMhGwsFnRxI0X2pAzd3NoG6iosvYyuPnDovmAxgVWG0qcs7Lw==
+ /gatsby-plugin-offline/3.7.0_gatsby@2.25.4:
dependencies:
'@babel/runtime': 7.12.5
cheerio: 1.0.0-rc.3
- gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
- gatsby-core-utils: 1.4.0
+ gatsby: 2.25.4
+ gatsby-core-utils: 1.7.0
glob: 7.1.6
idb-keyval: 3.2.0
lodash: 4.17.20
@@ -11027,17 +12980,17 @@ packages:
peerDependencies:
gatsby: ^2.4.0
resolution:
- integrity: sha512-l+H/paD635OGHcoMetNM5Wqt8FIx3By1eg+fpX7dnhxFUH5znQBYLmE6UsyKgO/WJq2F05nlOYLxghNUH4fJ1A==
- /gatsby-plugin-page-creator/2.4.0_gatsby@2.25.4:
+ integrity: sha512-mhwR4E/59xUCRv9TrEJLf0l8yI/+o8NNtVfQllRsqj64mBlg6x2KGyWjdPea2W0ictd4gi6HnMT/cRa1brjKZQ==
+ /gatsby-plugin-page-creator/2.7.1_gatsby@2.25.4:
dependencies:
- '@babel/traverse': 7.12.5
+ '@babel/traverse': 7.12.10
'@sindresorhus/slugify': 1.1.0
chokidar: 3.4.3
fs-exists-cached: 1.0.0
- gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
- gatsby-page-utils: 0.3.0
+ gatsby: 2.25.4
+ gatsby-page-utils: 0.6.0
+ gatsby-telemetry: 1.7.0
globby: 11.0.1
- graphql: 14.7.0
lodash: 4.17.20
dev: false
engines:
@@ -11045,21 +12998,21 @@ packages:
peerDependencies:
gatsby: ^2.0.0
resolution:
- integrity: sha512-lE6H++qSz2ZFbc+9TMfpz1i6jLdGVBxUYE7KY2ohNJb4POJF9wm4XfTwKLQsFNlQzH7GCKMIi3QqWhuNOgH2WQ==
+ integrity: sha512-rGFbwBy24pk9RX+4ekBdKkzX9Xkc42GD917DsroQ7hPc5fHAFnJ6a1wJPrAH1+frOHovGQFMCBdtrokAD/U1Aw==
/gatsby-plugin-pnpm/1.2.5_gatsby@2.25.4:
dependencies:
- gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
+ gatsby: 2.25.4
lodash.uniq: 4.5.0
dev: false
peerDependencies:
gatsby: ~2.x.x
resolution:
integrity: sha512-zGJUVApj641WTPiE0L4ZEFbt0iK8pEVIP0dtG5hPTRaTrb0zeZRp8Id9COf5sciwO0zGfT1/CmF6OyhV8KZr+g==
- /gatsby-plugin-react-helmet/3.4.0_gatsby@2.25.4+react-helmet@5.2.1:
+ /gatsby-plugin-react-helmet/3.7.0_gatsby@2.25.4+react-helmet@5.2.1:
dependencies:
'@babel/runtime': 7.12.5
- gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
- react-helmet: 5.2.1_react@16.14.0
+ gatsby: 2.25.4
+ react-helmet: 5.2.1
dev: false
engines:
node: '>=10.13.0'
@@ -11067,11 +13020,11 @@ packages:
gatsby: ^2.0.0
react-helmet: ^5.1.3 || ^6.0.0
resolution:
- integrity: sha512-SPMXDDDwMJ9AQKqNbyWhlE2rJwmm6f/HDx7mOn8Jnkcu0jlq/ZiAfbNMfCzX2gufeRiQR9VTRPz0Fs6rUuoxgQ==
- /gatsby-plugin-sass/2.5.1_gatsby@2.25.4+webpack@4.44.2:
+ integrity: sha512-vynqIMOUR/sOfM2eXpZiECuEZ6G/97ic+ulkyCVw7CjHNTQCW2evzJKNbHQrBYgmQCGXzQJuyGf1F5khLm8H7g==
+ /gatsby-plugin-sass/2.8.0_gatsby@2.25.4+webpack@4.44.2:
dependencies:
'@babel/runtime': 7.12.5
- gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
+ gatsby: 2.25.4
sass-loader: 7.3.1_webpack@4.44.2
dev: false
engines:
@@ -11081,15 +13034,16 @@ packages:
node-sass: ^4.9.0
webpack: '*'
resolution:
- integrity: sha512-q9EpTBALoBa5kZRhTEEbYILRxBaoEdYTWnb5imRutl1DAxpeqyA9wZzF2mBMPESTB7F9+1GVAt4n4mhabPUy0Q==
- /gatsby-plugin-sharp/2.8.0_gatsby@2.25.4:
+ integrity: sha512-lUEM5f4bPr6+m8cgB0uq6YBSbqIUxk8tfIthGmsFVbAulnrGBswMRSynyNSAE5APWmUGqwp9GuATDdsV+B5BVg==
+ /gatsby-plugin-sharp/2.11.1_gatsby@2.25.4:
dependencies:
'@babel/runtime': 7.12.5
async: 3.2.0
bluebird: 3.7.2
fs-extra: 9.0.1
- gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
- gatsby-core-utils: 1.4.0
+ gatsby: 2.25.4
+ gatsby-core-utils: 1.7.0
+ gatsby-telemetry: 1.7.0
got: 10.7.0
imagemin: 7.0.1
imagemin-mozjpeg: 9.0.0
@@ -11099,8 +13053,8 @@ packages:
potrace: 2.1.8
probe-image-size: 5.0.0
progress: 2.0.3
- semver: 7.3.2
- sharp: 0.25.4
+ semver: 7.3.4
+ sharp: 0.26.3
svgo: 1.3.2
uuid: 3.4.0
dev: false
@@ -11109,26 +13063,26 @@ packages:
peerDependencies:
gatsby: '>2.0.15'
resolution:
- integrity: sha512-Ao0rSWS1zjcRloWZgw0DkMV8/W+agf+cXoKSJHI0br7nWrLMyFjWcC5e89iU+t8U40ivngzMUjxBm9S7qYCa4g==
- /gatsby-plugin-typescript/2.6.0_gatsby@2.25.4:
+ integrity: sha512-x+szZDBequnh8bCn/TAS4TYXybPFM/jcu9MwkV85M2tnBZwU9/1Y/XFQMV6pMfrkc5xASTqG0UR9wMSPQGBtUg==
+ /gatsby-plugin-typescript/2.9.0_gatsby@2.25.4:
dependencies:
- '@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.5_@babel+core@7.12.3
- '@babel/plugin-proposal-optional-chaining': 7.12.1_@babel+core@7.12.3
- '@babel/preset-typescript': 7.12.1_@babel+core@7.12.3
+ '@babel/core': 7.12.10
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-numeric-separator': 7.12.7_@babel+core@7.12.10
+ '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.10
+ '@babel/preset-typescript': 7.12.7_@babel+core@7.12.10
'@babel/runtime': 7.12.5
- babel-plugin-remove-graphql-queries: 2.10.0_gatsby@2.25.4
+ babel-plugin-remove-graphql-queries: 2.13.0_gatsby@2.25.4
dev: false
engines:
node: '>=10.13.0'
peerDependencies:
gatsby: '*'
resolution:
- integrity: sha512-1LRSoM8y/8SDkAu+CQbxNrP/fOXGI+mIaZXQ9lWkeVcOJzpkzinSSCMs2f0jgBM0HqQtBR44B0rQhQJ+W8Vykw==
+ integrity: sha512-PoyvCt1E2y0TnGH3KIadPeiPB3691iXPYW5S8o0nKam3PcVo1UXcyTK5CRFUgVpsLsfzFcI+2HJ+TDrANDTWNw==
/gatsby-plugin-utils/0.2.40_gatsby@2.25.4:
dependencies:
- gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
+ gatsby: 2.25.4
joi: 17.3.0
dev: false
engines:
@@ -11137,9 +13091,9 @@ packages:
gatsby: ^2.24.79
resolution:
integrity: sha512-RKjmpPhmi8TDR9hAKxmD4ZJMje3BLs6nt6mxMWT0F8gf5giCYEywplJikyCvaPfuyaFlq1hMmFaVvzmeZNussg==
- /gatsby-plugin-utils/0.3.0_gatsby@2.25.4:
+ /gatsby-plugin-utils/0.6.0_gatsby@2.25.4:
dependencies:
- gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
+ gatsby: 2.25.4
joi: 17.3.0
dev: false
engines:
@@ -11147,8 +13101,8 @@ packages:
peerDependencies:
gatsby: ^2.24.79
resolution:
- integrity: sha512-z0FgEM/uU/7IgDYLaNHmUK0m09TJwYaaiefSrj7NWyavF8uEyOd+52qI9TsK2Exv4DYiQI/L7zsC28iKtPbW1g==
- /gatsby-react-router-scroll/3.1.0_832005e77e970d80ad4bd3eb87f2200a:
+ integrity: sha512-xoniyZtU1NLQJtb1JQaGQOjt7rriJcklfSaUnWfWojg0HmOxs+tm1ImpfHL9AOhNkVGim/YbQFXZqOQj/oUM+Q==
+ /gatsby-react-router-scroll/3.4.0_832005e77e970d80ad4bd3eb87f2200a:
dependencies:
'@babel/runtime': 7.12.5
'@reach/router': 1.3.4_react-dom@16.14.0+react@16.14.0
@@ -11162,34 +13116,47 @@ packages:
react: ^16.4.2
react-dom: ^16.4.2
resolution:
- integrity: sha512-sbHOiHKNfSPlmWFNUoVujYwOaBh+ESSDeKKjY0ULEQ7scU8Gr2cgD2ZHPxO+eMcy7SZyDs/eBvkR+9QfLqdz9A==
- /gatsby-recipes/0.3.1:
+ integrity: sha512-bk+9CIQPVvVwmwqHwXgkmuMVaoaqkl5mT6qnqzEsR+Tg1HuSk+5T42KE8KF6riO3mqI/13Lo6eEy0UGTlUKKdw==
+ /gatsby-react-router-scroll/3.4.0_@reach+router@1.3.4:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ '@reach/router': 1.3.4
+ dev: false
+ engines:
+ node: '>=10.13.0'
+ peerDependencies:
+ '@reach/router': ^1.0.0
+ react: ^16.4.2
+ react-dom: ^16.4.2
+ resolution:
+ integrity: sha512-bk+9CIQPVvVwmwqHwXgkmuMVaoaqkl5mT6qnqzEsR+Tg1HuSk+5T42KE8KF6riO3mqI/13Lo6eEy0UGTlUKKdw==
+ /gatsby-recipes/0.6.0:
dependencies:
- '@babel/core': 7.12.3
- '@babel/generator': 7.12.5
+ '@babel/core': 7.12.10
+ '@babel/generator': 7.12.11
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-proposal-optional-chaining': 7.12.1_@babel+core@7.12.3
- '@babel/plugin-transform-react-jsx': 7.12.5_@babel+core@7.12.3
- '@babel/standalone': 7.12.6
- '@babel/template': 7.10.4
- '@babel/types': 7.12.6
- '@graphql-tools/schema': 7.0.0_graphql@14.7.0
- '@graphql-tools/utils': 7.0.2_graphql@14.7.0
+ '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.10
+ '@babel/plugin-transform-react-jsx': 7.12.11_@babel+core@7.12.10
+ '@babel/standalone': 7.12.11
+ '@babel/template': 7.12.7
+ '@babel/types': 7.12.11
+ '@graphql-tools/schema': 7.1.2_graphql@14.7.0
+ '@graphql-tools/utils': 7.1.6_graphql@14.7.0
'@hapi/hoek': 8.5.1
'@hapi/joi': 15.1.1
better-queue: 3.8.10
chokidar: 3.4.3
contentful-management: 5.28.0
cors: 2.8.5
- debug: 4.2.0
+ debug: 4.3.1
detect-port: 1.3.0
dotenv: 8.2.0
execa: 4.1.0
express: 4.17.1
express-graphql: 0.9.0_graphql@14.7.0
fs-extra: 8.1.0
- gatsby-core-utils: 1.4.0
- gatsby-telemetry: 1.4.1
+ gatsby-core-utils: 1.7.0
+ gatsby-telemetry: 1.7.0
glob: 7.1.6
graphql: 14.7.0
graphql-compose: 6.3.8_graphql@14.7.0
@@ -11205,14 +13172,14 @@ packages:
mkdirp: 0.5.5
node-fetch: 2.6.1
pkg-dir: 4.2.0
- prettier: 2.1.2
+ prettier: 2.2.1
prop-types: 15.7.2
remark-mdx: 2.0.0-next.8
remark-mdxjs: 2.0.0-next.8
remark-parse: 6.0.3
remark-stringify: 8.1.1
resolve-from: 5.0.0
- semver: 7.3.2
+ semver: 7.3.4
single-trailing-newline: 1.0.0
strip-ansi: 6.0.0
style-to-object: 0.3.0
@@ -11220,48 +13187,46 @@ packages:
unist-util-remove: 2.0.1
unist-util-visit: 2.0.3
uuid: 3.4.0
- ws: 7.4.0
- xstate: 4.14.0
+ ws: 7.4.1
+ xstate: 4.15.1
yoga-layout-prebuilt: 1.10.0
dev: false
resolution:
- integrity: sha512-006frKSNhL0Wuc0fNN31YDOZBUkRn5Vslsthz2Fw+P/ydM/WmWplhOrESpmAi2i5GQkePUmJSQ7p+/A51GU3DA==
- /gatsby-source-filesystem/2.5.0_gatsby@2.25.4:
+ integrity: sha512-YH1BFCbuMNuvfw/3+DbQk5GDVNnz+1eVNdaBtE8Fo/Sa7rAfuezHnGtaa2CASI3V7ZKI3D1U6HnhQNULlfSa7g==
+ /gatsby-source-filesystem/2.8.0_gatsby@2.25.4:
dependencies:
'@babel/runtime': 7.12.5
better-queue: 3.8.10
chokidar: 3.4.3
- file-type: 12.4.2
+ file-type: 16.0.1
fs-extra: 8.1.0
- gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
- gatsby-core-utils: 1.4.0
+ gatsby: 2.25.4
+ gatsby-core-utils: 1.7.0
got: 9.6.0
md5-file: 5.0.0
- mime: 2.4.6
+ mime: 2.4.7
pretty-bytes: 5.4.1
progress: 2.0.3
- read-chunk: 3.2.0
valid-url: 1.0.9
- xstate: 4.14.0
+ xstate: 4.15.1
dev: false
engines:
node: '>=10.13.0'
peerDependencies:
gatsby: ^2.2.0
resolution:
- integrity: sha512-wDTcAqhhgf8ElotfOHU0d0itX1ir1GSoge/PCH/X6b/cEFLxLCgcqUVPHr1/opdRqzoQN/PGO/xVHeK3myQB+Q==
- /gatsby-telemetry/1.4.1:
+ integrity: sha512-wZXwL/B+PvgSAi4Fkrw33yBk6FdDoz6g2mRfS6NxVVQotbA2oNe+jFc+IL0j9/cUMTItP3rW+8V8U9ufASQfAw==
+ /gatsby-telemetry/1.7.0:
dependencies:
- '@babel/code-frame': 7.10.4
+ '@babel/code-frame': 7.12.11
'@babel/runtime': 7.12.5
'@turist/fetch': 7.1.7_node-fetch@2.6.1
'@turist/time': 0.0.1
async-retry-ng: 2.0.1
boxen: 4.2.0
configstore: 5.0.1
- envinfo: 7.7.3
fs-extra: 8.1.0
- gatsby-core-utils: 1.4.0
+ gatsby-core-utils: 1.7.0
git-up: 4.0.2
is-docker: 2.1.1
lodash: 4.17.20
@@ -11272,30 +13237,30 @@ packages:
node: '>=10.13.0'
requiresBuild: true
resolution:
- integrity: sha512-2OWhJq+u4p05ji33E0H+RDJxomG6kTVb3NtSruSZINQ9lTksXk9y8ROVUulIV+JAoKlPMBE89uKsGJFfwAjGWA==
- /gatsby-transformer-json/2.5.0_gatsby@2.25.4:
+ integrity: sha512-0hHskxnPV667snd6uSkZ32vKfBsv+9mFe0Pl3A9c9NC4HoKQlfmoluUTZr0nOjWdMMslz08XydzqxNdb6wB+oQ==
+ /gatsby-transformer-json/2.8.0_gatsby@2.25.4:
dependencies:
'@babel/runtime': 7.12.5
bluebird: 3.7.2
- gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
+ gatsby: 2.25.4
dev: false
engines:
node: '>=10.13.0'
peerDependencies:
gatsby: ^2.0.15
resolution:
- integrity: sha512-nnXS5/rRuuFDdFfkqS0bTqhf5EMD7WVEO0wy+Y485OfvqOHptCAuqfTyOU9paqq08rN5zLlvy7T/WZL4orRTsA==
- /gatsby-transformer-sharp/2.6.0_10b77ea86b4a1cd7f6aa12445c9bbb71:
+ integrity: sha512-fKexGFE5omoubberI2LkM9nI73F0TZuVdZsywkyaeTZgv71SftHjiq3xHh4e8PuKjhvR+MIPPsn1owmVb+UMCw==
+ /gatsby-transformer-sharp/2.9.0_45bf498f67fe6e8dcb4a621c3106a185:
dependencies:
'@babel/runtime': 7.12.5
bluebird: 3.7.2
fs-extra: 9.0.1
- gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
- gatsby-plugin-sharp: 2.8.0_gatsby@2.25.4
+ gatsby: 2.25.4
+ gatsby-plugin-sharp: 2.11.1_gatsby@2.25.4
potrace: 2.1.8
probe-image-size: 5.0.0
- semver: 7.3.2
- sharp: 0.25.4
+ semver: 7.3.4
+ sharp: 0.26.3
dev: false
engines:
node: '>=10.13.0'
@@ -11303,15 +13268,175 @@ packages:
gatsby: ^2.12.1
gatsby-plugin-sharp: ^2.0.0-beta.3
resolution:
- integrity: sha512-60kPbVe8/o9xOiYAU1kgNpJPm39zpyO+hZRTsNjylTzqCKjXBMdo6am7paGJqkk9E7CUuYPFBQSSC7ICRewKNw==
+ integrity: sha512-v8kKgySAZtO7ko+XKbSFLXM0JUPP5s08PI7S8krBPsrhclSY9plRGOqtef1dNG7LIxbGCggy58fGTaD3aad12g==
+ /gatsby/2.25.4:
+ dependencies:
+ '@babel/code-frame': 7.12.11
+ '@babel/core': 7.12.10
+ '@babel/parser': 7.12.11
+ '@babel/runtime': 7.12.5
+ '@babel/traverse': 7.12.10
+ '@babel/types': 7.12.11
+ '@hapi/joi': 15.1.1
+ '@mikaelkristiansson/domready': 1.0.10
+ '@nodelib/fs.walk': 1.2.4
+ '@pieh/friendly-errors-webpack-plugin': 1.7.0-chalk-2_webpack@4.44.2
+ '@pmmmwh/react-refresh-webpack-plugin': 0.4.3_841c9eff94ab17f393870ea41cb9c61a
+ '@reach/router': 1.3.4
+ '@types/http-proxy': 1.17.4
+ '@typescript-eslint/eslint-plugin': 2.34.0_984cbb313f9ea271f36cadd8f9814e06
+ '@typescript-eslint/parser': 2.34.0_eslint@6.8.0
+ address: 1.1.2
+ autoprefixer: 9.8.6
+ axios: 0.20.0_debug@3.2.7
+ babel-core: 7.0.0-bridge.0_@babel+core@7.12.10
+ babel-eslint: 10.1.0_eslint@6.8.0
+ babel-loader: 8.2.2_cb0b35cdd86d43ae111e54bfa48070d7
+ babel-plugin-add-module-exports: 0.3.3
+ babel-plugin-dynamic-import-node: 2.3.3
+ babel-plugin-lodash: 3.3.4
+ babel-plugin-remove-graphql-queries: 2.13.0_gatsby@2.25.4
+ babel-preset-gatsby: 0.5.16_2f8c275785611b7f64cc18865bfef033
+ better-opn: 2.1.1
+ better-queue: 3.8.10
+ bluebird: 3.7.2
+ body-parser: 1.19.0
+ browserslist: 4.16.0
+ cache-manager: 2.11.1
+ cache-manager-fs-hash: 0.0.9
+ chalk: 4.1.0
+ chokidar: 3.4.3
+ common-tags: 1.8.0
+ compression: 1.7.4
+ convert-hrtime: 3.0.0
+ copyfiles: 2.4.1
+ core-js: 3.8.1
+ cors: 2.8.5
+ css-loader: 1.0.1_webpack@4.44.2
+ date-fns: 2.16.1
+ debug: 3.2.7
+ del: 5.1.0
+ detect-port: 1.3.0
+ devcert: 1.1.3
+ dotenv: 8.2.0
+ eslint: 6.8.0
+ eslint-config-react-app: 5.2.1_c694f1c0aacf0a9f46387ae0927d5ab4
+ eslint-loader: 2.2.1_eslint@6.8.0+webpack@4.44.2
+ eslint-plugin-flowtype: 3.13.0_eslint@6.8.0
+ eslint-plugin-graphql: 4.0.0_graphql@14.7.0
+ eslint-plugin-import: 2.22.1_eslint@6.8.0
+ eslint-plugin-jsx-a11y: 6.4.1_eslint@6.8.0
+ eslint-plugin-react: 7.21.5_eslint@6.8.0
+ eslint-plugin-react-hooks: 1.7.0_eslint@6.8.0
+ event-source-polyfill: 1.0.22
+ execa: 4.1.0
+ express: 4.17.1
+ express-graphql: 0.9.0_graphql@14.7.0
+ fastest-levenshtein: 1.0.12
+ file-loader: 1.1.11_webpack@4.44.2
+ find-cache-dir: 3.3.1
+ fs-exists-cached: 1.0.0
+ fs-extra: 8.1.0
+ gatsby-cli: 2.16.1
+ gatsby-core-utils: 1.7.0
+ gatsby-graphiql-explorer: 0.4.15
+ gatsby-legacy-polyfills: 0.0.6
+ gatsby-link: 2.8.0_@reach+router@1.3.4
+ gatsby-plugin-page-creator: 2.7.1_gatsby@2.25.4
+ gatsby-plugin-typescript: 2.9.0_gatsby@2.25.4
+ gatsby-plugin-utils: 0.2.40_gatsby@2.25.4
+ gatsby-react-router-scroll: 3.4.0_@reach+router@1.3.4
+ gatsby-telemetry: 1.7.0
+ glob: 7.1.6
+ got: 8.3.2
+ graphql: 14.7.0
+ graphql-compose: 6.3.8_graphql@14.7.0
+ graphql-playground-middleware-express: 1.7.22_express@4.17.1
+ hasha: 5.2.2
+ http-proxy: 1.18.1_debug@3.2.7
+ invariant: 2.2.4
+ is-relative: 1.0.0
+ is-relative-url: 3.0.0
+ jest-worker: 24.9.0
+ joi: 17.3.0
+ json-loader: 0.5.7
+ json-stringify-safe: 5.0.1
+ latest-version: 5.1.0
+ lodash: 4.17.20
+ md5-file: 5.0.0
+ meant: 1.0.3
+ micromatch: 4.0.2
+ mime: 2.4.7
+ mini-css-extract-plugin: 0.11.3_webpack@4.44.2
+ mitt: 1.2.0
+ mkdirp: 0.5.5
+ moment: 2.29.1
+ name-all-modules-plugin: 1.0.1
+ normalize-path: 3.0.0
+ null-loader: 3.0.0_webpack@4.44.2
+ opentracing: 0.14.5
+ optimize-css-assets-webpack-plugin: 5.0.4_webpack@4.44.2
+ p-defer: 3.0.0
+ parseurl: 1.3.3
+ physical-cpu-count: 2.0.0
+ pnp-webpack-plugin: 1.6.4
+ postcss-flexbugs-fixes: 4.2.1
+ postcss-loader: 3.0.0
+ prompts: 2.4.0
+ prop-types: 15.7.2
+ query-string: 6.13.7
+ raw-loader: 0.5.1
+ react-dev-utils: 4.2.3
+ react-error-overlay: 6.0.8
+ react-hot-loader: 4.13.0
+ react-refresh: 0.8.3
+ redux: 4.0.5
+ redux-thunk: 2.3.0
+ semver: 7.3.4
+ shallow-compare: 1.2.2
+ signal-exit: 3.0.3
+ slugify: 1.4.6
+ socket.io: 2.3.0
+ socket.io-client: 2.3.0
+ st: 2.0.0
+ stack-trace: 0.0.10
+ string-similarity: 1.2.2
+ style-loader: 0.23.1
+ terser-webpack-plugin: 2.3.8_webpack@4.44.2
+ tmp: 0.2.1
+ true-case-path: 2.2.1
+ type-of: 2.0.1
+ url-loader: 1.1.2_webpack@4.44.2
+ util.promisify: 1.0.1
+ uuid: 3.4.0
+ v8-compile-cache: 1.1.2
+ webpack: 4.44.2
+ webpack-dev-middleware: 3.7.3_webpack@4.44.2
+ webpack-dev-server: 3.11.0_webpack@4.44.2
+ webpack-hot-middleware: 2.25.0
+ webpack-merge: 4.2.2
+ webpack-stats-plugin: 0.3.2
+ webpack-virtual-modules: 0.2.2
+ xstate: 4.15.1
+ yaml-loader: 0.6.0
+ dev: false
+ engines:
+ node: '>=10.13.0'
+ hasBin: true
+ peerDependencies:
+ react: ^16.4.2
+ react-dom: ^16.4.2
+ requiresBuild: true
+ resolution:
+ integrity: sha512-DjnhEA0tc5KhSVxBO105hrQCRqRklJOFJ0TQ8Fv9GX1KhdADJ0G5fBiqTCobXM3VoATeRhFkOK5LLrpD9ct74g==
/gatsby/2.25.4_react-dom@16.14.0+react@16.14.0:
dependencies:
- '@babel/code-frame': 7.10.4
- '@babel/core': 7.12.3
- '@babel/parser': 7.12.5
+ '@babel/code-frame': 7.12.11
+ '@babel/core': 7.12.10
+ '@babel/parser': 7.12.11
'@babel/runtime': 7.12.5
- '@babel/traverse': 7.12.5
- '@babel/types': 7.12.6
+ '@babel/traverse': 7.12.10
+ '@babel/types': 7.12.11
'@hapi/joi': 15.1.1
'@mikaelkristiansson/domready': 1.0.10
'@nodelib/fs.walk': 1.2.4
@@ -11323,20 +13448,20 @@ packages:
'@typescript-eslint/parser': 2.34.0_eslint@6.8.0
address: 1.1.2
autoprefixer: 9.8.6
- axios: 0.20.0
- babel-core: 7.0.0-bridge.0_@babel+core@7.12.3
+ axios: 0.20.0_debug@3.2.7
+ babel-core: 7.0.0-bridge.0_@babel+core@7.12.10
babel-eslint: 10.1.0_eslint@6.8.0
- babel-loader: 8.2.1_427212bc1158d185e577033f19ca0757
+ babel-loader: 8.2.2_cb0b35cdd86d43ae111e54bfa48070d7
babel-plugin-add-module-exports: 0.3.3
babel-plugin-dynamic-import-node: 2.3.3
babel-plugin-lodash: 3.3.4
- babel-plugin-remove-graphql-queries: 2.10.0_gatsby@2.25.4
- babel-preset-gatsby: 0.5.16_@babel+core@7.12.3+core-js@3.7.0
+ babel-plugin-remove-graphql-queries: 2.13.0_gatsby@2.25.4
+ babel-preset-gatsby: 0.5.16_2f8c275785611b7f64cc18865bfef033
better-opn: 2.1.1
better-queue: 3.8.10
bluebird: 3.7.2
body-parser: 1.19.0
- browserslist: 4.14.7
+ browserslist: 4.16.0
cache-manager: 2.11.1
cache-manager-fs-hash: 0.0.9
chalk: 4.1.0
@@ -11344,12 +13469,12 @@ packages:
common-tags: 1.8.0
compression: 1.7.4
convert-hrtime: 3.0.0
- copyfiles: 2.4.0
- core-js: 3.7.0
+ copyfiles: 2.4.1
+ core-js: 3.8.1
cors: 2.8.5
css-loader: 1.0.1_webpack@4.44.2
date-fns: 2.16.1
- debug: 3.2.6
+ debug: 3.2.7
del: 5.1.0
detect-port: 1.3.0
devcert: 1.1.3
@@ -11363,7 +13488,7 @@ packages:
eslint-plugin-jsx-a11y: 6.4.1_eslint@6.8.0
eslint-plugin-react: 7.21.5_eslint@6.8.0
eslint-plugin-react-hooks: 1.7.0_eslint@6.8.0
- event-source-polyfill: 1.0.21
+ event-source-polyfill: 1.0.22
execa: 4.1.0
express: 4.17.1
express-graphql: 0.9.0_graphql@14.7.0
@@ -11372,23 +13497,23 @@ packages:
find-cache-dir: 3.3.1
fs-exists-cached: 1.0.0
fs-extra: 8.1.0
- gatsby-cli: 2.13.1
- gatsby-core-utils: 1.4.0
+ gatsby-cli: 2.16.1
+ gatsby-core-utils: 1.7.0
gatsby-graphiql-explorer: 0.4.15
gatsby-legacy-polyfills: 0.0.6
- gatsby-link: 2.5.0_832005e77e970d80ad4bd3eb87f2200a
- gatsby-plugin-page-creator: 2.4.0_gatsby@2.25.4
- gatsby-plugin-typescript: 2.6.0_gatsby@2.25.4
+ gatsby-link: 2.8.0_832005e77e970d80ad4bd3eb87f2200a
+ gatsby-plugin-page-creator: 2.7.1_gatsby@2.25.4
+ gatsby-plugin-typescript: 2.9.0_gatsby@2.25.4
gatsby-plugin-utils: 0.2.40_gatsby@2.25.4
- gatsby-react-router-scroll: 3.1.0_832005e77e970d80ad4bd3eb87f2200a
- gatsby-telemetry: 1.4.1
+ gatsby-react-router-scroll: 3.4.0_832005e77e970d80ad4bd3eb87f2200a
+ gatsby-telemetry: 1.7.0
glob: 7.1.6
got: 8.3.2
graphql: 14.7.0
graphql-compose: 6.3.8_graphql@14.7.0
graphql-playground-middleware-express: 1.7.22_express@4.17.1
hasha: 5.2.2
- http-proxy: 1.18.1
+ http-proxy: 1.18.1_debug@3.2.7
invariant: 2.2.4
is-relative: 1.0.0
is-relative-url: 3.0.0
@@ -11401,7 +13526,7 @@ packages:
md5-file: 5.0.0
meant: 1.0.3
micromatch: 4.0.2
- mime: 2.4.6
+ mime: 2.4.7
mini-css-extract-plugin: 0.11.3_webpack@4.44.2
mitt: 1.2.0
mkdirp: 0.5.5
@@ -11429,7 +13554,7 @@ packages:
react-refresh: 0.8.3
redux: 4.0.5
redux-thunk: 2.3.0
- semver: 7.3.2
+ semver: 7.3.4
shallow-compare: 1.2.2
signal-exit: 3.0.3
slugify: 1.4.6
@@ -11448,13 +13573,13 @@ packages:
uuid: 3.4.0
v8-compile-cache: 1.1.2
webpack: 4.44.2
- webpack-dev-middleware: 3.7.2_webpack@4.44.2
+ webpack-dev-middleware: 3.7.3_webpack@4.44.2
webpack-dev-server: 3.11.0_webpack@4.44.2
webpack-hot-middleware: 2.25.0
webpack-merge: 4.2.2
webpack-stats-plugin: 0.3.2
webpack-virtual-modules: 0.2.2
- xstate: 4.14.0
+ xstate: 4.15.1
yaml-loader: 0.6.0
dev: false
engines:
@@ -11711,14 +13836,14 @@ packages:
dev: false
resolution:
integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
- /global-dirs/2.0.1:
+ /global-dirs/2.1.0:
dependencies:
- ini: 1.3.5
+ ini: 1.3.7
dev: false
engines:
node: '>=8'
resolution:
- integrity: sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==
+ integrity: sha512-MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ==
/global-modules/1.0.0:
dependencies:
global-prefix: 1.0.2
@@ -11741,7 +13866,7 @@ packages:
dependencies:
expand-tilde: 2.0.2
homedir-polyfill: 1.0.3
- ini: 1.3.5
+ ini: 1.3.8
is-windows: 1.0.2
which: 1.3.1
dev: false
@@ -11751,7 +13876,7 @@ packages:
integrity: sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=
/global-prefix/3.0.0:
dependencies:
- ini: 1.3.5
+ ini: 1.3.8
kind-of: 6.0.3
which: 1.3.1
dev: false
@@ -11759,13 +13884,6 @@ packages:
node: '>=6'
resolution:
integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==
- /global/4.3.2:
- dependencies:
- min-document: 2.19.0
- process: 0.5.2
- dev: false
- resolution:
- integrity: sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=
/global/4.4.0:
dependencies:
min-document: 2.19.0
@@ -11855,6 +13973,21 @@ packages:
node: '>=4'
resolution:
integrity: sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==
+ /globby/9.2.0:
+ dependencies:
+ '@types/glob': 7.1.3
+ array-union: 1.0.2
+ dir-glob: 2.2.2
+ fast-glob: 2.2.7
+ glob: 7.1.6
+ ignore: 4.0.6
+ pify: 4.0.1
+ slash: 2.0.0
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==
/globjoin/0.1.4:
dev: false
resolution:
@@ -11997,11 +14130,11 @@ packages:
/graphql-config/3.2.0_graphql@14.7.0:
dependencies:
'@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2_cosmiconfig@6.0.0
- '@graphql-tools/graphql-file-loader': 6.2.5_graphql@14.7.0
- '@graphql-tools/json-file-loader': 6.2.5_graphql@14.7.0
+ '@graphql-tools/graphql-file-loader': 6.2.6_graphql@14.7.0
+ '@graphql-tools/json-file-loader': 6.2.6_graphql@14.7.0
'@graphql-tools/load': 6.2.5_graphql@14.7.0
- '@graphql-tools/merge': 6.2.5_graphql@14.7.0
- '@graphql-tools/url-loader': 6.4.0_graphql@14.7.0
+ '@graphql-tools/merge': 6.2.6_graphql@14.7.0
+ '@graphql-tools/url-loader': 6.7.1_graphql@14.7.0
'@graphql-tools/utils': 6.2.4_graphql@14.7.0
cosmiconfig: 6.0.0
cosmiconfig-toml-loader: 1.0.0
@@ -12056,6 +14189,31 @@ packages:
graphql: '>=0.8.0'
resolution:
integrity: sha512-J+vjof74oMlCWXSvt0DOf2APEdZOCdubEvGDUAlqH//VBYcOYsGgRW7Xzorr44LvkjiuvecWc8fChxuZZbChtg==
+ /graphql-upload/11.0.0_graphql@14.7.0:
+ dependencies:
+ busboy: 0.3.1
+ fs-capacitor: 6.2.0
+ graphql: 14.7.0
+ http-errors: 1.8.0
+ isobject: 4.0.0
+ object-path: 0.11.5
+ dev: false
+ engines:
+ node: ^10.13.0 || ^12.0.0 || >= 13.7.0
+ peerDependencies:
+ graphql: 0.13.1 - 15
+ resolution:
+ integrity: sha512-zsrDtu5gCbQFDWsNa5bMB4nf1LpKX9KDgh+f8oL1288ijV4RxeckhVozAjqjXAfRpxOHD1xOESsh6zq8SjdgjA==
+ /graphql-ws/3.1.0_graphql@14.7.0:
+ dependencies:
+ graphql: 14.7.0
+ dev: false
+ engines:
+ node: '>=10'
+ peerDependencies:
+ graphql: '>=0.11 <=15'
+ resolution:
+ integrity: sha512-zbex3FSiFz0iRgfkzDNWpOY/sYWoX+iZ5XUhakaDwOh99HSuk8rPt5suuxdXUVzEg5TGQ9rwzNaz/+mTPtS0yg==
/graphql/14.7.0:
dependencies:
iterall: 1.3.0
@@ -12081,9 +14239,22 @@ packages:
node: '>=4.5'
resolution:
integrity: sha1-gjfCeKaXdScKHK/n1vEBz81YVUQ=
- /gulp-babel/8.0.0_@babel+core@7.12.3:
+ /gulp-babel/8.0.0:
dependencies:
- '@babel/core': 7.12.3
+ plugin-error: 1.0.1
+ replace-ext: 1.0.1
+ through2: 2.0.5
+ vinyl-sourcemaps-apply: 0.2.1
+ dev: false
+ engines:
+ node: '>=6'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-oomaIqDXxFkg7lbpBou/gnUkX51/Y/M2ZfSjL2hdqXTAlSWZcgZtd2o0cOH0r/eE8LWD0+Q/PsLsr2DKOoqToQ==
+ /gulp-babel/8.0.0_@babel+core@7.12.10:
+ dependencies:
+ '@babel/core': 7.12.10
plugin-error: 1.0.1
replace-ext: 1.0.1
through2: 2.0.5
@@ -12131,21 +14302,6 @@ packages:
node: '>= 0.10'
resolution:
integrity: sha1-Yz0WyV2IUEYorQJmVmPO5aR5M1M=
- /gulp-debug/4.0.0:
- dependencies:
- chalk: 2.4.2
- fancy-log: 1.3.3
- plur: 3.1.1
- stringify-object: 3.3.0
- through2: 2.0.5
- tildify: 1.2.0
- dev: false
- engines:
- node: '>=6'
- peerDependencies:
- gulp: '>=4'
- resolution:
- integrity: sha512-cn/GhMD2nVZCVxAl5vWao4/dcoZ8wUJ8w3oqTvQaGDmC1vT7swNOEbhQTWJp+/otKePT64aENcqAQXDcdj5H1g==
/gulp-debug/4.0.0_gulp@4.0.2:
dependencies:
chalk: 2.4.2
@@ -12351,7 +14507,7 @@ packages:
node: '>=0.4.7'
hasBin: true
optionalDependencies:
- uglify-js: 3.11.6
+ uglify-js: 3.12.2
resolution:
integrity: sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA==
/har-schema/2.0.0:
@@ -12409,9 +14565,17 @@ packages:
/has-flag/4.0.0:
dev: false
engines:
- node: '>=8'
+ node: '>=8'
+ resolution:
+ integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
+ /has-glob/1.0.0:
+ dependencies:
+ is-glob: 3.1.0
+ dev: false
+ engines:
+ node: '>=0.10.0'
resolution:
- integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
+ integrity: sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=
/has-gulplog/0.1.0:
dependencies:
sparkles: 1.0.1
@@ -12522,7 +14686,7 @@ packages:
property-information: 5.6.0
space-separated-tokens: 1.1.5
style-to-object: 0.3.0
- unist-util-is: 4.0.3
+ unist-util-is: 4.0.4
web-namespaces: 1.1.4
dev: false
resolution:
@@ -12532,7 +14696,7 @@ packages:
'@types/parse5': 5.0.3
hastscript: 6.0.0
property-information: 5.6.0
- vfile: 4.2.0
+ vfile: 4.2.1
vfile-location: 3.2.0
web-namespaces: 1.1.4
dev: false
@@ -12550,7 +14714,7 @@ packages:
html-void-elements: 1.0.5
parse5: 6.0.1
unist-util-position: 3.1.0
- vfile: 4.2.0
+ vfile: 4.2.1
web-namespaces: 1.1.4
xtend: 4.0.2
zwitch: 1.0.5
@@ -12603,11 +14767,17 @@ packages:
hasBin: true
resolution:
integrity: sha1-pwTLP1fkn719OMLt16ujj/CzUmM=
+ /highlight.js/10.4.1:
+ dev: false
+ resolution:
+ integrity: sha512-yR5lWvNz7c85OhVAEAeFhVCc/GV4C30Fjzc/rCP0aCWzc1UUOPUk55dK/qdwTZHBvMZo+eZ2jpk62ndX/xMFlg==
/highlight.js/8.9.1:
+ deprecated: Version no longer supported. Upgrade to @latest
dev: false
resolution:
integrity: sha1-uKnFSTISqTkvAiK2SclhFJfr+4g=
/highlight.js/9.15.10:
+ deprecated: Version no longer supported. Upgrade to @latest
dev: false
resolution:
integrity: sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw==
@@ -12675,17 +14845,17 @@ packages:
dev: false
resolution:
integrity: sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==
- /html-entities/1.3.1:
+ /html-entities/1.3.3:
dev: false
resolution:
- integrity: sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA==
+ integrity: sha512-/VulV3SYni1taM7a4RMdceqzJWR39gpZHjBwUnsCFKWV/GJkD14CJ5F7eWcZozmHJK0/f/H5U3b3SiPkuvxMgg==
/html-minifier-terser/5.1.1:
dependencies:
- camel-case: 4.1.1
+ camel-case: 4.1.2
clean-css: 4.2.3
commander: 4.1.1
he: 1.2.0
- param-case: 3.0.3
+ param-case: 3.0.4
relateurl: 0.2.7
terser: 4.8.0
dev: false
@@ -12803,25 +14973,51 @@ packages:
dev: false
resolution:
integrity: sha512-opCO9ASqg5Wy2FNo7A0sxy71yGbbkJJXLdgMK04Tcypw9jr2MgWbyubb0+WdmDmGnFflO7fRbqbaihh/ENDlRQ==
- /http-proxy-middleware/0.19.1:
+ /http-proxy-middleware/0.19.1_debug@4.3.1:
dependencies:
- http-proxy: 1.18.1
+ http-proxy: 1.18.1_debug@4.3.1
is-glob: 4.0.1
lodash: 4.17.20
micromatch: 3.1.10
dev: false
engines:
node: '>=4.0.0'
+ peerDependencies:
+ debug: '*'
resolution:
integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==
/http-proxy/1.18.1:
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.13.0
+ follow-redirects: 1.13.1
+ requires-port: 1.0.0
+ dev: false
+ engines:
+ node: '>=8.0.0'
+ resolution:
+ integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==
+ /http-proxy/1.18.1_debug@3.2.7:
+ dependencies:
+ eventemitter3: 4.0.7
+ follow-redirects: 1.13.1_debug@3.2.7
+ requires-port: 1.0.0
+ dev: false
+ engines:
+ node: '>=8.0.0'
+ peerDependencies:
+ debug: '*'
+ resolution:
+ integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==
+ /http-proxy/1.18.1_debug@4.3.1:
+ dependencies:
+ eventemitter3: 4.0.7
+ follow-redirects: 1.13.1_debug@4.3.1
requires-port: 1.0.0
dev: false
engines:
node: '>=8.0.0'
+ peerDependencies:
+ debug: '*'
resolution:
integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==
/http-signature/1.2.0:
@@ -12842,7 +15038,7 @@ packages:
/https-proxy-agent/4.0.0:
dependencies:
agent-base: 5.1.1
- debug: 4.2.0
+ debug: 4.3.1
dev: false
engines:
node: '>= 6.0.0'
@@ -13049,6 +15245,12 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=
+ /indent-string/3.2.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=
/indent-string/4.0.0:
dev: false
engines:
@@ -13086,10 +15288,14 @@ packages:
dev: false
resolution:
integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
- /ini/1.3.5:
+ /ini/1.3.7:
+ dev: false
+ resolution:
+ integrity: sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ==
+ /ini/1.3.8:
dev: false
resolution:
- integrity: sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
+ integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
/inline-source-map/0.6.2:
dependencies:
source-map: 0.5.7
@@ -13303,12 +15509,14 @@ packages:
dev: false
resolution:
integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==
- /is-arguments/1.0.4:
+ /is-arguments/1.1.0:
+ dependencies:
+ call-bind: 1.0.0
dev: false
engines:
node: '>= 0.4'
resolution:
- integrity: sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==
+ integrity: sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==
/is-arrayish/0.2.1:
dev: false
resolution:
@@ -13375,12 +15583,12 @@ packages:
dev: false
resolution:
integrity: sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=
- /is-core-module/2.1.0:
+ /is-core-module/2.2.0:
dependencies:
has: 1.0.3
dev: false
resolution:
- integrity: sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==
+ integrity: sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==
/is-data-descriptor/0.1.4:
dependencies:
kind-of: 3.2.2
@@ -13442,7 +15650,7 @@ packages:
integrity: sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==
/is-dom/1.1.0:
dependencies:
- is-object: 1.0.1
+ is-object: 1.0.2
is-window: 1.0.2
dev: false
resolution:
@@ -13533,7 +15741,7 @@ packages:
integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==
/is-installed-globally/0.3.2:
dependencies:
- global-dirs: 2.0.1
+ global-dirs: 2.1.0
is-path-inside: 3.0.2
dev: false
engines:
@@ -13554,10 +15762,10 @@ packages:
node: '>=6'
resolution:
integrity: sha1-LhmX+m6RZuqsAkLarkQ0A+TvHZc=
- /is-map/2.0.1:
+ /is-map/2.0.2:
dev: false
resolution:
- integrity: sha512-T/S49scO8plUiAOA2DBTBG3JHpn1yiw0kRp6dgiZ0v2/6twi5eiB0rHtHFH9ZIrvlWc6+4O+m4zg5+Z833aXgw==
+ integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==
/is-natural-number/4.0.1:
dev: false
resolution:
@@ -13568,18 +15776,24 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=
- /is-negative-zero/2.0.0:
+ /is-negative-zero/2.0.1:
dev: false
engines:
node: '>= 0.4'
resolution:
- integrity: sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=
+ integrity: sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==
/is-npm/4.0.0:
dev: false
engines:
node: '>=8'
resolution:
integrity: sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig==
+ /is-npm/5.0.0:
+ dev: false
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==
/is-number-like/1.0.8:
dependencies:
lodash.isfinite: 3.3.2
@@ -13618,10 +15832,18 @@ packages:
node: '>=8'
resolution:
integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
- /is-object/1.0.1:
+ /is-object/1.0.2:
+ dev: false
+ resolution:
+ integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==
+ /is-observable/1.1.0:
+ dependencies:
+ symbol-observable: 1.2.0
dev: false
+ engines:
+ node: '>=4'
resolution:
- integrity: sha1-iVJojF7C/9awPsyF52ngKQMINHA=
+ integrity: sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==
/is-path-cwd/2.2.0:
dev: false
engines:
@@ -13676,6 +15898,12 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==
+ /is-plain-object/5.0.0:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==
/is-png/2.0.0:
dev: false
engines:
@@ -13748,10 +15976,10 @@ packages:
node: '>=6'
resolution:
integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==
- /is-set/2.0.1:
+ /is-set/2.0.2:
dev: false
resolution:
- integrity: sha512-eJEzOtVyenDs1TMzSQ3kU3K+E0GUS9sno+F0OBT97xsgcJsF9nXMBtkT9/kut5JEpM7oL7X/0qxR17K3mcwIAA==
+ integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==
/is-ssh/1.3.2:
dependencies:
protocols: 1.4.8
@@ -13906,6 +16134,20 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==
+ /isomorphic-form-data/2.0.0:
+ dependencies:
+ form-data: 2.5.1
+ dev: false
+ resolution:
+ integrity: sha512-TYgVnXWeESVmQSg4GLVbalmQ+B4NPi/H4eWxqALKj63KsUrcu301YDjBqaOw3h+cbak7Na4Xyps3BiptHtxTfg==
+ /isomorphic-ws/4.0.1_ws@7.4.1:
+ dependencies:
+ ws: 7.4.1
+ dev: false
+ peerDependencies:
+ ws: '*'
+ resolution:
+ integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==
/isstream/0.1.2:
dev: false
resolution:
@@ -13918,7 +16160,7 @@ packages:
integrity: sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
/istanbul-lib-instrument/4.0.3:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@istanbuljs/schema': 0.1.2
istanbul-lib-coverage: 3.0.0
semver: 6.3.0
@@ -13930,7 +16172,7 @@ packages:
/isurl/1.0.0:
dependencies:
has-to-string-tag-x: 1.4.1
- is-object: 1.0.1
+ is-object: 1.0.2
dev: false
engines:
node: '>= 4'
@@ -13961,6 +16203,12 @@ packages:
hasBin: true
resolution:
integrity: sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A==
+ /java-properties/1.0.2:
+ dev: false
+ engines:
+ node: '>= 0.6.0'
+ resolution:
+ integrity: sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==
/jest-diff/25.5.0:
dependencies:
chalk: 3.0.0
@@ -13982,7 +16230,7 @@ packages:
dependencies:
'@jest/types': 26.6.2
'@types/graceful-fs': 4.1.4
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
anymatch: 3.1.1
fb-watchman: 2.0.1
graceful-fs: 4.2.4
@@ -14008,7 +16256,7 @@ packages:
integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==
/jest-serializer/26.6.2:
dependencies:
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
graceful-fs: 4.2.4
dev: false
engines:
@@ -14018,7 +16266,7 @@ packages:
/jest-util/26.6.2:
dependencies:
'@jest/types': 26.6.2
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
chalk: 4.1.0
graceful-fs: 4.2.4
is-ci: 2.0.0
@@ -14048,7 +16296,7 @@ packages:
integrity: sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==
/jest-worker/26.6.2:
dependencies:
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
merge-stream: 2.0.0
supports-color: 7.2.0
dev: false
@@ -14102,32 +16350,32 @@ packages:
dev: false
resolution:
integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
- /js-yaml/3.14.0:
+ /js-yaml/3.14.1:
dependencies:
argparse: 1.0.10
esprima: 4.0.1
dev: false
hasBin: true
resolution:
- integrity: sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==
+ integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
/jsbn/0.1.1:
dev: false
resolution:
integrity: sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
/jscodeshift/0.10.0:
dependencies:
- '@babel/core': 7.12.3
- '@babel/parser': 7.12.5
- '@babel/plugin-proposal-class-properties': 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-optional-chaining': 7.12.1_@babel+core@7.12.3
- '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.3
- '@babel/preset-flow': 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
- babel-core: 7.0.0-bridge.0_@babel+core@7.12.3
+ '@babel/core': 7.12.10
+ '@babel/parser': 7.12.11
+ '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.10
+ '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-flow': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-typescript': 7.12.7_@babel+core@7.12.10
+ '@babel/register': 7.12.10_@babel+core@7.12.10
+ babel-core: 7.0.0-bridge.0_@babel+core@7.12.10
colors: 1.4.0
- flow-parser: 0.138.0
+ flow-parser: 0.140.0
graceful-fs: 4.2.4
micromatch: 3.1.10
neo-async: 2.6.2
@@ -14141,21 +16389,21 @@ packages:
'@babel/preset-env': ^7.1.6
resolution:
integrity: sha512-xpH2FVSEepXoNr6+cPlPHzPzBY1W9bPulufhCHOShzk8+CTCzAOQKytuOXT0b/9PvmO4biRi0g/ZIylVew815w==
- /jscodeshift/0.10.0_@babel+preset-env@7.12.1:
- dependencies:
- '@babel/core': 7.12.3
- '@babel/parser': 7.12.5
- '@babel/plugin-proposal-class-properties': 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-optional-chaining': 7.12.1_@babel+core@7.12.3
- '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.3
- '@babel/preset-env': 7.12.1_@babel+core@7.12.3
- '@babel/preset-flow': 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
- babel-core: 7.0.0-bridge.0_@babel+core@7.12.3
+ /jscodeshift/0.10.0_@babel+preset-env@7.12.11:
+ dependencies:
+ '@babel/core': 7.12.10
+ '@babel/parser': 7.12.11
+ '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.10
+ '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-env': 7.12.11_@babel+core@7.12.10
+ '@babel/preset-flow': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-typescript': 7.12.7_@babel+core@7.12.10
+ '@babel/register': 7.12.10_@babel+core@7.12.10
+ babel-core: 7.0.0-bridge.0_@babel+core@7.12.10
colors: 1.4.0
- flow-parser: 0.138.0
+ flow-parser: 0.140.0
graceful-fs: 4.2.4
micromatch: 3.1.10
neo-async: 2.6.2
@@ -14171,17 +16419,17 @@ packages:
integrity: sha512-xpH2FVSEepXoNr6+cPlPHzPzBY1W9bPulufhCHOShzk8+CTCzAOQKytuOXT0b/9PvmO4biRi0g/ZIylVew815w==
/jscodeshift/0.6.4:
dependencies:
- '@babel/core': 7.12.3
- '@babel/parser': 7.12.5
- '@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/preset-env': 7.12.1_@babel+core@7.12.3
- '@babel/preset-flow': 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
- babel-core: 7.0.0-bridge.0_@babel+core@7.12.3
+ '@babel/core': 7.12.10
+ '@babel/parser': 7.12.11
+ '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-env': 7.12.11_@babel+core@7.12.10
+ '@babel/preset-flow': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-typescript': 7.12.7_@babel+core@7.12.10
+ '@babel/register': 7.12.10_@babel+core@7.12.10
+ babel-core: 7.0.0-bridge.0_@babel+core@7.12.10
colors: 1.4.0
- flow-parser: 0.138.0
+ flow-parser: 0.140.0
graceful-fs: 4.2.4
micromatch: 3.1.10
neo-async: 2.6.2
@@ -14195,17 +16443,17 @@ packages:
integrity: sha512-+NF/tlNbc2WEhXUuc4WEJLsJumF84tnaMUZW2hyJw3jThKKRvsPX4sPJVgO1lPE28z0gNL+gwniLG9d8mYvQCQ==
/jscodeshift/0.7.1:
dependencies:
- '@babel/core': 7.12.3
- '@babel/parser': 7.12.5
- '@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/preset-env': 7.12.1_@babel+core@7.12.3
- '@babel/preset-flow': 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
- babel-core: 7.0.0-bridge.0_@babel+core@7.12.3
+ '@babel/core': 7.12.10
+ '@babel/parser': 7.12.11
+ '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-env': 7.12.11_@babel+core@7.12.10
+ '@babel/preset-flow': 7.12.1_@babel+core@7.12.10
+ '@babel/preset-typescript': 7.12.7_@babel+core@7.12.10
+ '@babel/register': 7.12.10_@babel+core@7.12.10
+ babel-core: 7.0.0-bridge.0_@babel+core@7.12.10
colors: 1.4.0
- flow-parser: 0.138.0
+ flow-parser: 0.140.0
graceful-fs: 4.2.4
micromatch: 3.1.10
neo-async: 2.6.2
@@ -14301,10 +16549,10 @@ packages:
hasBin: true
resolution:
integrity: sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==
- /jsonc-parser/2.3.1:
+ /jsonc-parser/3.0.0:
dev: false
resolution:
- integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==
+ integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==
/jsonfile/2.4.0:
dev: false
optionalDependencies:
@@ -14352,15 +16600,26 @@ packages:
'0': node >=0.6.0
resolution:
integrity: sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=
- /jsx-ast-utils/3.1.0:
+ /jsx-ast-utils/3.2.0:
dependencies:
- array-includes: 3.1.1
+ array-includes: 3.1.2
object.assign: 4.1.2
dev: false
engines:
node: '>=4.0'
resolution:
- integrity: sha512-d4/UOjg+mxAWxCiF0c5UTSwyqbchkbqCvK87aBovhnh8GtysTjWmgC63tY0cJx/HzGgm9qnA147jVBdpOiQ2RA==
+ integrity: sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==
+ /junit-report-builder/2.0.0:
+ dependencies:
+ date-format: 0.0.2
+ lodash: 4.17.20
+ make-dir: 1.3.0
+ xmlbuilder: 10.1.1
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-/CkUScz5G7U1Fehna9swd8YfA+o5tV07NZz+3pea27okD0+ZEgyXQ5E0etyxMaqzXOjBvN8HGmNpVO/79yj5TA==
/junk/3.1.0:
dev: false
engines:
@@ -14439,6 +16698,12 @@ packages:
node: '>=6'
resolution:
integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
+ /klona/2.0.4:
+ dev: false
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==
/known-css-properties/0.20.0:
dev: false
resolution:
@@ -14488,7 +16753,7 @@ packages:
dependencies:
'@babel/runtime': 7.12.5
app-root-dir: 1.0.2
- core-js: 3.7.0
+ core-js: 3.8.1
dotenv: 8.2.0
dotenv-expand: 5.1.0
dev: false
@@ -14583,6 +16848,57 @@ packages:
dev: false
resolution:
integrity: sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==
+ /listr-silent-renderer/1.1.1:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=
+ /listr-update-renderer/0.5.0_listr@0.14.3:
+ dependencies:
+ chalk: 1.1.3
+ cli-truncate: 0.2.1
+ elegant-spinner: 1.0.1
+ figures: 1.7.0
+ indent-string: 3.2.0
+ listr: 0.14.3
+ log-symbols: 1.0.2
+ log-update: 2.3.0
+ strip-ansi: 3.0.1
+ dev: false
+ engines:
+ node: '>=6'
+ peerDependencies:
+ listr: ^0.14.2
+ resolution:
+ integrity: sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==
+ /listr-verbose-renderer/0.5.0:
+ dependencies:
+ chalk: 2.4.2
+ cli-cursor: 2.1.0
+ date-fns: 1.30.1
+ figures: 2.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==
+ /listr/0.14.3:
+ dependencies:
+ '@samverschueren/stream-to-observable': 0.3.1_rxjs@6.6.3
+ is-observable: 1.1.0
+ is-promise: 2.2.2
+ is-stream: 1.1.0
+ listr-silent-renderer: 1.1.1
+ listr-update-renderer: 0.5.0_listr@0.14.3
+ listr-verbose-renderer: 0.5.0
+ p-map: 2.1.0
+ rxjs: 6.6.3
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==
/load-bmfont/1.4.1:
dependencies:
buffer-equal: 0.0.1
@@ -14591,7 +16907,7 @@ packages:
parse-bmfont-binary: 1.0.6
parse-bmfont-xml: 1.1.4
phin: 2.9.3
- xhr: 2.5.0
+ xhr: 2.6.0
xtend: 4.0.2
dev: false
resolution:
@@ -14893,6 +17209,14 @@ packages:
dev: false
resolution:
integrity: sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
+ /log-symbols/1.0.2:
+ dependencies:
+ chalk: 1.1.3
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=
/log-symbols/2.2.0:
dependencies:
chalk: 2.4.2
@@ -14909,6 +17233,16 @@ packages:
node: '>=10'
resolution:
integrity: sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==
+ /log-update/2.3.0:
+ dependencies:
+ ansi-escapes: 3.2.0
+ cli-cursor: 2.1.0
+ wrap-ansi: 3.0.1
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-iDKP19HOeTiykoN0bwsbwSayRwg=
/logalot/2.1.0:
dependencies:
figures: 1.7.0
@@ -14918,12 +17252,12 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha1-X46MkNME7fElMJUaVVSruMXj9VI=
- /loglevel/1.7.0:
+ /loglevel/1.7.1:
dev: false
engines:
node: '>= 0.6.0'
resolution:
- integrity: sha512-i2sY04nal5jDcagM3FMfG++T69GEEM8CYuOfeOIvmXzOIcwE9a/CJPR0MFM97pYMj/u10lzz7/zd7+qwhrBTqQ==
+ integrity: sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==
/loglevelnext/1.0.5:
dependencies:
es6-symbol: 3.1.3
@@ -14968,12 +17302,12 @@ packages:
node: '>=8'
resolution:
integrity: sha512-S0FayMXku80toa5sZ6Ro4C+s+EtFDCsyJNG/AzFMfX3AxD5Si4dZsgzm/kKnbOxHl5Cv8jBlno8+3XYIh2pNjQ==
- /lower-case/2.0.1:
+ /lower-case/2.0.2:
dependencies:
- tslib: 1.14.1
+ tslib: 2.0.3
dev: false
resolution:
- integrity: sha512-LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ==
+ integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==
/lowercase-keys/1.0.0:
dev: false
engines:
@@ -14999,6 +17333,13 @@ packages:
dev: false
resolution:
integrity: sha512-OqaVxMGIESnawn+TU/QMV5BJLbUghUfjDWPAtFqDYDmDtr4FnB+op8xM+pR7nKlauHNUHXGt0VgWatFB8voS5w==
+ /lowlight/1.17.0:
+ dependencies:
+ fault: 1.0.4
+ highlight.js: 10.4.1
+ dev: false
+ resolution:
+ integrity: sha512-vmtBgYKD+QVNy7tIa7ulz5d//Il9R4MooOVh4nkOf9R9Cb/Dk5TXMSTieg/vDulkBkIWj59/BIlyFQxT9X1oAQ==
/lpad-align/1.1.2:
dependencies:
get-stdin: 4.0.1
@@ -15159,6 +17500,18 @@ packages:
react: '>= 0.14.0'
resolution:
integrity: sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==
+ /markdown-to-jsx/6.11.4_react@17.0.1:
+ dependencies:
+ prop-types: 15.7.2
+ react: 17.0.1
+ unquote: 1.1.1
+ dev: false
+ engines:
+ node: '>= 4'
+ peerDependencies:
+ react: '>= 0.14.0'
+ resolution:
+ integrity: sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==
/matchdep/2.0.0:
dependencies:
findup-sync: 2.0.0
@@ -15174,10 +17527,10 @@ packages:
dev: false
resolution:
integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==
- /math-expression-evaluator/1.3.1:
+ /math-expression-evaluator/1.3.6:
dev: false
resolution:
- integrity: sha512-N1Rj0ZfsjPSKDH97ceiDgV1KTD2TsvQJmMzx6JsXIJj20YxLz/W9kdgIFiSc0oiPOheu/TyjD3imeGgCCduO0g==
+ integrity: sha512-gbzsZEUgefao+OqOUOr03GlpjkdOySxVNHQDuiUZXPbLHgDZqiMtOgDSxuzBEtyt9BDXWS503a16bAmlJW/oFA==
/mathml-tag-names/2.1.3:
dev: false
resolution:
@@ -15215,26 +17568,27 @@ packages:
dev: false
resolution:
integrity: sha512-Co+DQ6oZlUzvUR7JCpP249PcexxygiaKk9axJh+eRzHDZJk2julbIdKB4PXHVxdBuLzvJ1Izb+YDpj2deGMOuA==
- /mdast-util-definitions/3.0.1:
+ /mdast-util-definitions/4.0.0:
dependencies:
unist-util-visit: 2.0.3
dev: false
resolution:
- integrity: sha512-BAv2iUm/e6IK/b2/t+Fx69EL/AGcq/IG2S+HxHjDJGfLJtd6i9SZUS76aC9cig+IEucsqxKTR0ot3m933R3iuA==
- /mdast-util-from-markdown/0.8.1:
+ integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==
+ /mdast-util-from-markdown/0.8.4:
dependencies:
'@types/mdast': 3.0.3
- mdast-util-to-string: 1.1.0
- micromark: 2.10.1
+ mdast-util-to-string: 2.0.0
+ micromark: 2.11.2
parse-entities: 2.0.0
+ unist-util-stringify-position: 2.0.3
dev: false
resolution:
- integrity: sha512-qJXNcFcuCSPqUF0Tb0uYcFDIq67qwB3sxo9RPdf9vG8T90ViKnksFqdB/Coq2a7sTnxL/Ify2y7aIQXDkQFH0w==
- /mdast-util-to-hast/9.1.2:
+ integrity: sha512-jj891B5pV2r63n2kBTFh8cRI2uR9LQHsXG1zSDqfhXkIlDzrTcIlbB5+5aaYEkl8vOPIOPLf8VT7Ere1wWTMdw==
+ /mdast-util-to-hast/10.0.1:
dependencies:
'@types/mdast': 3.0.3
'@types/unist': 2.0.3
- mdast-util-definitions: 3.0.1
+ mdast-util-definitions: 4.0.0
mdurl: 1.0.1
unist-builder: 2.0.3
unist-util-generated: 1.1.6
@@ -15242,26 +17596,30 @@ packages:
unist-util-visit: 2.0.3
dev: false
resolution:
- integrity: sha512-OpkFLBC2VnNAb2FNKcKWu9FMbJhQKog+FCT8nuKmQNIKXyT1n3SIskE7uWDep6x+cA20QXlK5AETHQtYmQmxtQ==
- /mdast-util-to-markdown/0.5.3:
+ integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==
+ /mdast-util-to-markdown/0.6.1:
dependencies:
'@types/unist': 2.0.3
longest-streak: 2.0.4
- mdast-util-to-string: 1.1.0
+ mdast-util-to-string: 2.0.0
parse-entities: 2.0.0
repeat-string: 1.6.1
zwitch: 1.0.5
dev: false
resolution:
- integrity: sha512-sr8q7fQJ1xoCqZSXW6dO/MYu2Md+a4Hfk9uO+XHCfiBhVM0EgWtfAV7BuN+ff6otUeu2xDyt1o7vhZGwOG3+BA==
+ integrity: sha512-4qJtZ0qdyYeexAXoOZiU0uHIFVncJAmCkHkSluAsvDaVWODtPyNEo9I1ns0T4ulxu2EHRH5u/bt1cV0pdHCX+A==
/mdast-util-to-string/1.1.0:
dev: false
resolution:
integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==
- /mdn-data/2.0.12:
+ /mdast-util-to-string/2.0.0:
+ dev: false
+ resolution:
+ integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==
+ /mdn-data/2.0.14:
dev: false
resolution:
- integrity: sha512-ULbAlgzVb8IqZ0Hsxm6hHSlQl3Jckst2YEQS7fODu9ilNWy2LvcoSY7TRFIktABP2mdppBioc66va90T+NUs8Q==
+ integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==
/mdn-data/2.0.4:
dev: false
resolution:
@@ -15305,14 +17663,14 @@ packages:
integrity: sha1-fIekZGREwy11Q4VwkF8tvRsagFo=
/memory-fs/0.4.1:
dependencies:
- errno: 0.1.7
+ errno: 0.1.8
readable-stream: 2.3.7
dev: false
resolution:
integrity: sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
/memory-fs/0.5.0:
dependencies:
- errno: 0.1.7
+ errno: 0.1.8
readable-stream: 2.3.7
dev: false
engines:
@@ -15342,6 +17700,24 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=
+ /meow/6.1.1:
+ dependencies:
+ '@types/minimist': 1.2.1
+ camelcase-keys: 6.2.2
+ decamelize-keys: 1.1.0
+ hard-rejection: 2.1.0
+ minimist-options: 4.1.0
+ normalize-package-data: 2.5.0
+ read-pkg-up: 7.0.1
+ redent: 3.0.0
+ trim-newlines: 3.0.0
+ type-fest: 0.13.1
+ yargs-parser: 18.1.3
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==
/meow/8.0.0:
dependencies:
'@types/minimist': 1.2.1
@@ -15390,13 +17766,13 @@ packages:
dev: false
resolution:
integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==
- /micromark/2.10.1:
+ /micromark/2.11.2:
dependencies:
- debug: 4.2.0
+ debug: 4.3.1
parse-entities: 2.0.0
dev: false
resolution:
- integrity: sha512-fUuVF8sC1X7wsCS29SYQ2ZfIZYbTymp0EYr6sab3idFjigFFjGa5UwoniPlV9tAgntjuapW1t9U+S0yDYeGKHQ==
+ integrity: sha512-IXuP76p2uj8uMg4FQc1cRE7lPCLsfAXuEfdjtdO55VRiFO1asrCSQ5g43NmPqFtRwzEnEhafRVzn2jg0UiKArQ==
/micromatch/3.1.10:
dependencies:
arr-diff: 4.0.0
@@ -15466,13 +17842,13 @@ packages:
hasBin: true
resolution:
integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
- /mime/2.4.6:
+ /mime/2.4.7:
dev: false
engines:
node: '>=4.0.0'
hasBin: true
resolution:
- integrity: sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==
+ integrity: sha512-dhNd1uA2u397uQk3Nv5LM4lm93WYDUXFn3Fu291FJerns4jyTudqhIWe4W04YLy7Uk1tm1Ore04NpjRvQp/NPA==
/mimic-fn/1.2.0:
dev: false
engines:
@@ -15739,6 +18115,10 @@ packages:
dev: false
resolution:
integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+ /ms/2.1.3:
+ dev: false
+ resolution:
+ integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
/multicast-dns-service-types/1.1.0:
dev: false
resolution:
@@ -15836,6 +18216,10 @@ packages:
dev: false
resolution:
integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
+ /nested-error-stacks/2.1.0:
+ dev: false
+ resolution:
+ integrity: sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==
/next-tick/1.0.0:
dev: false
resolution:
@@ -15848,23 +18232,27 @@ packages:
dev: false
resolution:
integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
- /no-case/3.0.3:
+ /no-case/3.0.4:
dependencies:
- lower-case: 2.0.1
- tslib: 1.14.1
+ lower-case: 2.0.2
+ tslib: 2.0.3
dev: false
resolution:
- integrity: sha512-ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw==
- /node-abi/2.19.1:
+ integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==
+ /node-abi/2.19.3:
dependencies:
semver: 5.7.1
dev: false
resolution:
- integrity: sha512-HbtmIuByq44yhAzK7b9j/FelKlHYISKQn0mtvcBrU5QBkhoCMp5bu8Hv5AI34DcKfOAcJBcOEMwLlwO62FFu9A==
- /node-addon-api/3.0.2:
+ integrity: sha512-9xZrlyfvKhWme2EXFKQhZRp1yNWT/uI1luYPr3sFl+H4keYY4xR+1jO7mvTTijIsHf1M+QDe9uWuKeEpLInIlg==
+ /node-addon-api/3.1.0:
dev: false
resolution:
- integrity: sha512-+D4s2HCnxPd5PjjI0STKwncjXTUKKqm74MDMz9OPXavjsGmjkvwgLtA5yoxJUdmpj52+2u+RrXgPipahKczMKg==
+ integrity: sha512-flmrDNB06LIl5lywUz7YlNGZH/5p0M7W28k8hzd9Lshtdh1wshD2Y+U4h9LD6KObOy1f+fEVdgprPrEymjM5uw==
+ /node-ask/1.0.1:
+ dev: false
+ resolution:
+ integrity: sha1-yqoQdsxY4DZCZ6CQPj6t+sFYOWs=
/node-dir/0.1.17:
dependencies:
minimatch: 3.0.4
@@ -15895,11 +18283,6 @@ packages:
node: '>= 6.0.0'
resolution:
integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==
- /node-gyp-build/4.2.3:
- dev: false
- hasBin: true
- resolution:
- integrity: sha512-MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg==
/node-gyp/3.8.0:
dependencies:
fstream: 1.0.12
@@ -15952,6 +18335,16 @@ packages:
dev: false
resolution:
integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
+ /node-loggly-bulk/2.2.4:
+ dependencies:
+ json-stringify-safe: 5.0.1
+ moment: 2.29.1
+ request: 2.88.2
+ dev: false
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-DfhtsDfkSBU6Dp1zvK+H1MgHRcA2yb4z07ctyA6uo+bNwKtv1exhohN910zcWNkdSYq1TImCq+O+3bOTuYHvmQ==
/node-modules-regexp/1.0.0:
dev: false
engines:
@@ -16031,7 +18424,7 @@ packages:
dependencies:
hosted-git-info: 3.0.7
resolve: 1.19.0
- semver: 7.3.2
+ semver: 7.3.4
validate-npm-package-license: 3.0.4
dev: false
engines:
@@ -16126,7 +18519,7 @@ packages:
pidtree: 0.3.1
read-pkg: 3.0.0
shell-quote: 1.7.2
- string.prototype.padend: 3.1.0
+ string.prototype.padend: 3.1.1
dev: false
engines:
node: '>= 4'
@@ -16238,19 +18631,19 @@ packages:
node: '>= 6'
resolution:
integrity: sha512-JPKn0GMu+Fa3zt3Bmr66JhokJU5BaNBIh4ZeTlaCBzrBsOeXzwcKKAK1tbLiPKgvwmPXsDvvLHoWh5Bm7ofIYg==
- /object-inspect/1.8.0:
+ /object-inspect/1.9.0:
dev: false
resolution:
- integrity: sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==
- /object-is/1.1.3:
+ integrity: sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==
+ /object-is/1.1.4:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.18.0-next.1
dev: false
engines:
node: '>= 0.4'
resolution:
- integrity: sha512-teyqLvFWzLkq5B9ki8FVWA902UER2qkxmdA4nLf+wjOLAWgxzCWZNCxpDq9MvE8MmhWNr+I8w3BN49Vx36Y6Xg==
+ integrity: sha512-1ZvAZ4wlF7IyPVOcE1Omikt7UpaFlOQq0HlSti+ZvDH3UiD2brwGMwDbyV43jao2bKJ+4+WdPJHSd7kgzKYVqg==
/object-keys/1.1.1:
dev: false
engines:
@@ -16293,36 +18686,38 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=
- /object.entries/1.1.2:
+ /object.entries/1.1.3:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.17.7
+ es-abstract: 1.18.0-next.1
has: 1.0.3
dev: false
engines:
node: '>= 0.4'
resolution:
- integrity: sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA==
- /object.fromentries/2.0.2:
+ integrity: sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==
+ /object.fromentries/2.0.3:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.17.7
- function-bind: 1.1.1
+ es-abstract: 1.18.0-next.1
has: 1.0.3
dev: false
engines:
node: '>= 0.4'
resolution:
- integrity: sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ==
- /object.getownpropertydescriptors/2.1.0:
+ integrity: sha512-IDUSMXs6LOSJBWE++L0lzIbSqHl9KDCfff2x/JSEIDtEUavUnyMYC2ZGay/04Zq4UT8lvd4xNhU4/YHKibAOlw==
+ /object.getownpropertydescriptors/2.1.1:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.17.7
+ es-abstract: 1.18.0-next.1
dev: false
engines:
node: '>= 0.8'
resolution:
- integrity: sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==
+ integrity: sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng==
/object.map/1.0.1:
dependencies:
for-own: 1.0.0
@@ -16349,17 +18744,17 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=
- /object.values/1.1.1:
+ /object.values/1.1.2:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.17.7
- function-bind: 1.1.1
+ es-abstract: 1.18.0-next.1
has: 1.0.3
dev: false
engines:
node: '>= 0.4'
resolution:
- integrity: sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==
+ integrity: sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==
/objectorarray/1.0.4:
dev: false
resolution:
@@ -16550,10 +18945,10 @@ packages:
dev: false
resolution:
integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==
- /overlayscrollbars/1.13.0:
+ /overlayscrollbars/1.13.1:
dev: false
resolution:
- integrity: sha512-p8oHrMeRAKxXDMPI/EBNITj/zTVHKNnAnM59Im+xnoZUlV07FyTg46wom2286jJlXGGfcPFG/ba5NUiCwWNd4w==
+ integrity: sha512-gIQfzgGgu1wy80EB4/6DaJGHMEGmizq27xHIESrzXq0Y/J0Ay1P3DWk6tuVmEPIZH15zaBlxeEJOqdJKmowHCQ==
/ow/0.17.0:
dependencies:
type-fest: 0.11.0
@@ -16562,6 +18957,14 @@ packages:
node: '>=10'
resolution:
integrity: sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==
+ /p-all/2.1.0:
+ dependencies:
+ p-map: 2.1.0
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==
/p-cancelable/0.3.0:
dev: false
engines:
@@ -16616,6 +19019,14 @@ packages:
node: '>=8'
resolution:
integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==
+ /p-filter/2.1.0:
+ dependencies:
+ p-map: 2.1.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==
/p-finally/1.0.0:
dev: false
engines:
@@ -16658,6 +19069,14 @@ packages:
node: '>=10'
resolution:
integrity: sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==
+ /p-limit/3.1.0:
+ dependencies:
+ yocto-queue: 0.1.0
+ dev: false
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
/p-locate/2.0.0:
dependencies:
p-limit: 1.3.0
@@ -16791,13 +19210,13 @@ packages:
dev: false
resolution:
integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==
- /param-case/3.0.3:
+ /param-case/3.0.4:
dependencies:
- dot-case: 3.0.3
- tslib: 1.14.1
+ dot-case: 3.0.4
+ tslib: 2.0.3
dev: false
resolution:
- integrity: sha512-VWBVyimc1+QrzappRs7waeN2YmoZFCGXWASRYX1/rGHtXqEcrGEIDm+jqIwFa2fRXNgQEwrxaYuIrX0WcAguTA==
+ integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==
/parent-module/1.0.1:
dependencies:
callsites: 3.1.0
@@ -16892,7 +19311,7 @@ packages:
integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
/parse-json/5.1.0:
dependencies:
- '@babel/code-frame': 7.10.4
+ '@babel/code-frame': 7.12.11
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.1.6
@@ -16931,7 +19350,7 @@ packages:
integrity: sha512-Czj+GIit4cdWtxo3ISZCvLiUjErSo0iI3wJ+q9Oi3QuMYTI6OZu+7cewMWZ+C1YAnKhYTk6/TLuhIgCypLthPA==
/parse5/3.0.3:
dependencies:
- '@types/node': 14.14.7
+ '@types/node': 14.14.14
dev: false
resolution:
integrity: sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==
@@ -16965,13 +19384,13 @@ packages:
node: '>= 0.8'
resolution:
integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
- /pascal-case/3.1.1:
+ /pascal-case/3.1.2:
dependencies:
- no-case: 3.0.3
- tslib: 1.14.1
+ no-case: 3.0.4
+ tslib: 2.0.3
dev: false
resolution:
- integrity: sha512-XIeHKqIrsquVTQL2crjq3NfJUxmdLasn3TYOU0VBM+UX2a6ztAWBlJQBePLGY7VHW8+2dRadeIPK5+KImwTxQA==
+ integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==
/pascalcase/0.1.1:
dev: false
engines:
@@ -17107,6 +19526,12 @@ packages:
node: '>=0.12'
resolution:
integrity: sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==
+ /peek-readable/3.1.0:
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-KGuODSTV6hcgdZvDrIDBUkN0utcAVj1LL7FfGbM0viKTtCHmtZcuEJ+lGqsp0fTFkGqesdtemV2yUSMeyy3ddA==
/pend/1.2.0:
dev: false
resolution:
@@ -17287,6 +19712,12 @@ packages:
node: '>=6'
resolution:
integrity: sha512-t1Ax8KUvV3FFII8ltczPn2tJdjqbd1sIzu6t4JL7nQ3EyeL/lTrj5PWKb06ic5/6XYDr65rQ4uzQEGN70/6X5w==
+ /pluralize/8.0.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==
/pngjs/3.4.0:
dev: false
engines:
@@ -17330,7 +19761,7 @@ packages:
/portfinder/1.0.28:
dependencies:
async: 2.6.3
- debug: 3.2.6
+ debug: 3.2.7
mkdirp: 0.5.5
dev: false
engines:
@@ -17363,7 +19794,7 @@ packages:
integrity: sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==
/postcss-colormin/4.0.3:
dependencies:
- browserslist: 4.14.7
+ browserslist: 4.16.0
color: 3.1.3
has: 1.0.3
postcss: 7.0.35
@@ -17476,7 +19907,7 @@ packages:
integrity: sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==
/postcss-merge-rules/4.0.3:
dependencies:
- browserslist: 4.14.7
+ browserslist: 4.16.0
caniuse-api: 3.0.0
cssnano-util-same-parent: 4.0.1
postcss: 7.0.35
@@ -17510,7 +19941,7 @@ packages:
/postcss-minify-params/4.0.2:
dependencies:
alphanum-sort: 1.0.2
- browserslist: 4.14.7
+ browserslist: 4.16.0
cssnano-util-get-arguments: 4.0.0
postcss: 7.0.35
postcss-value-parser: 3.3.1
@@ -17655,7 +20086,7 @@ packages:
integrity: sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==
/postcss-normalize-unicode/4.0.1:
dependencies:
- browserslist: 4.14.7
+ browserslist: 4.16.0
postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: false
@@ -17695,7 +20126,7 @@ packages:
integrity: sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==
/postcss-reduce-initial/4.0.3:
dependencies:
- browserslist: 4.14.7
+ browserslist: 4.16.0
caniuse-api: 3.0.0
has: 1.0.3
postcss: 7.0.35
@@ -17854,7 +20285,7 @@ packages:
requiresBuild: true
resolution:
integrity: sha1-Kip5gn0kOnbJEImJescH9F5xaqw=
- /prebuild-install/5.3.6:
+ /prebuild-install/6.0.0:
dependencies:
detect-libc: 1.0.3
expand-template: 2.0.3
@@ -17862,7 +20293,7 @@ packages:
minimist: 1.2.5
mkdirp-classic: 0.5.3
napi-build-utils: 1.0.2
- node-abi: 2.19.1
+ node-abi: 2.19.3
noop-logger: 0.1.1
npmlog: 4.1.2
pump: 3.0.0
@@ -17876,7 +20307,7 @@ packages:
node: '>=6'
hasBin: true
resolution:
- integrity: sha512-s8Aai8++QQGi4sSbs/M1Qku62PFK49Jm1CbgXklGz4nmHveDq0wzJkg7Na5QbnO1uNH8K7iqx2EQ/mV0MZEmOg==
+ integrity: sha512-h2ZJ1PXHKWZpp1caLw0oX9sagVpL2YTk+ZwInQbQ3QqNd4J03O6MpFNmMTJlkfgPENWqe5kP0WjQLqz5OjLfsw==
/prelude-ls/1.1.2:
dev: false
engines:
@@ -17915,13 +20346,13 @@ packages:
hasBin: true
resolution:
integrity: sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==
- /prettier/2.1.2:
+ /prettier/2.2.1:
dev: false
engines:
node: '>=10.13.0'
hasBin: true
resolution:
- integrity: sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==
+ integrity: sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==
/pretty-bytes/5.4.1:
dev: false
engines:
@@ -17990,12 +20421,13 @@ packages:
node: '>= 0.6.0'
resolution:
integrity: sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
- /process/0.5.2:
+ /progress-stream/2.0.0:
+ dependencies:
+ speedometer: 1.0.0
+ through2: 2.0.5
dev: false
- engines:
- node: '>= 0.6.0'
resolution:
- integrity: sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8=
+ integrity: sha1-+sY6Cz0R3qy7CWmrzJOyFLzhntU=
/progress/2.0.3:
dev: false
engines:
@@ -18012,7 +20444,7 @@ packages:
integrity: sha1-36lpQ+qcEh/KTem1hoyznTRy4Fc=
/promise.allsettled/1.0.2:
dependencies:
- array.prototype.map: 1.0.2
+ array.prototype.map: 1.0.3
define-properties: 1.1.3
es-abstract: 1.17.7
function-bind: 1.1.1
@@ -18162,10 +20594,10 @@ packages:
/puppeteer-core/2.1.1:
dependencies:
'@types/mime-types': 2.1.0
- debug: 4.2.0
+ debug: 4.3.1
extract-zip: 1.7.0
https-proxy-agent: 4.0.0
- mime: 2.4.6
+ mime: 2.4.7
mime-types: 2.1.27
progress: 2.0.3
proxy-from-env: 1.1.0
@@ -18322,13 +20754,23 @@ packages:
/rc/1.2.8:
dependencies:
deep-extend: 0.6.0
- ini: 1.3.5
+ ini: 1.3.8
minimist: 1.2.5
strip-json-comments: 2.0.1
dev: false
hasBin: true
resolution:
integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
+ /react-autosuggest/9.4.3:
+ dependencies:
+ prop-types: 15.7.2
+ react-autowhatever: 10.2.1
+ shallow-equal: 1.2.1
+ dev: false
+ peerDependencies:
+ react: '>=0.14.7'
+ resolution:
+ integrity: sha512-wFbp5QpgFQRfw9cwKvcgLR8theikOUkv8PFsuLYqI2PUgVlx186Cz8MYt5bLxculi+jxGGUUVt+h0esaBZZouw==
/react-autosuggest/9.4.3_react@16.14.0:
dependencies:
prop-types: 15.7.2
@@ -18340,6 +20782,16 @@ packages:
react: '>=0.14.7'
resolution:
integrity: sha512-wFbp5QpgFQRfw9cwKvcgLR8theikOUkv8PFsuLYqI2PUgVlx186Cz8MYt5bLxculi+jxGGUUVt+h0esaBZZouw==
+ /react-autowhatever/10.2.1:
+ dependencies:
+ prop-types: 15.7.2
+ react-themeable: 1.1.0
+ section-iterator: 2.0.0
+ dev: false
+ peerDependencies:
+ react: '>=0.14.7'
+ resolution:
+ integrity: sha512-5gQyoETyBH6GmuW1N1J81CuoAV+Djeg66DEo03xiZOl3WOwJHBP5LisKUvCGOakjrXU4M3hcIvCIqMBYGUmqOA==
/react-autowhatever/10.2.1_react@16.14.0:
dependencies:
prop-types: 15.7.2
@@ -18367,9 +20819,35 @@ packages:
tinycolor2: 1.4.2
dev: false
peerDependencies:
- react: '*'
+ react: '*'
+ resolution:
+ integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==
+ /react-color/2.19.3_react@17.0.1:
+ dependencies:
+ '@icons/material': 0.2.4_react@17.0.1
+ lodash: 4.17.20
+ lodash-es: 4.17.15
+ material-colors: 1.2.6
+ prop-types: 15.7.2
+ react: 17.0.1
+ reactcss: 1.2.3
+ tinycolor2: 1.4.2
+ dev: false
+ peerDependencies:
+ react: '*'
+ resolution:
+ integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==
+ /react-compound-slider/0.19.2:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ d3-array: 1.2.4
+ prop-types: 15.7.2
+ warning: 3.0.0
+ dev: false
+ peerDependencies:
+ react: ^16.3.0
resolution:
- integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==
+ integrity: sha512-JYw8rAUCOL5wFrkk23t98GnEU3SppYKOPdIWqGVa1aKIwKCCnb5rGYuusR+878asHMl837BHifExKFnM+aqIeA==
/react-compound-slider/0.19.2_react@16.14.0:
dependencies:
'@babel/runtime': 7.12.5
@@ -18451,7 +20929,7 @@ packages:
integrity: sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA==
/react-docgen-typescript-plugin/0.5.2_webpack@4.44.2:
dependencies:
- debug: 4.2.0
+ debug: 4.3.1
endent: 2.0.1
micromatch: 4.0.2
react-docgen-typescript: 1.20.5
@@ -18463,6 +20941,18 @@ packages:
webpack: '*'
resolution:
integrity: sha512-NQfWyWLmzUnedkiN2nPDb6Nkm68ik6fqbC3UvgjqYSeZsbKijXUA4bmV6aU7qICOXdop9PevPdjEgJuAN0nNVQ==
+ /react-docgen-typescript-plugin/0.6.3:
+ dependencies:
+ debug: 4.3.1
+ endent: 2.0.1
+ micromatch: 4.0.2
+ react-docgen-typescript: 1.20.5
+ tslib: 2.0.3
+ dev: false
+ peerDependencies:
+ typescript: '>= 3.x'
+ resolution:
+ integrity: sha512-av1S/fmWBNFGgNa4qtkidFjjOz23eEi6EdCtwSWo9WNhGzUMyMygbD/DosMWoeFlZpk9R3MXPkRE7PDH6j5GMQ==
/react-docgen-typescript/1.20.5:
dev: false
peerDependencies:
@@ -18471,7 +20961,7 @@ packages:
integrity: sha512-AbLGMtn76bn7SYBJSSaKJrZ0lgNRRR3qL60PucM5M4v/AXyC8221cKBXW5Pyt9TfDRfe+LDnPNlg7TibxX0ovA==
/react-docgen/5.3.1:
dependencies:
- '@babel/core': 7.12.3
+ '@babel/core': 7.12.10
'@babel/runtime': 7.12.5
ast-types: 0.14.2
commander: 2.20.3
@@ -18497,6 +20987,17 @@ packages:
react: ^16.14.0
resolution:
integrity: sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==
+ /react-dom/17.0.1_react@17.0.1:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ react: 17.0.1
+ scheduler: 0.20.1
+ dev: false
+ peerDependencies:
+ react: 17.0.1
+ resolution:
+ integrity: sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==
/react-draggable/4.4.3:
dependencies:
classnames: 2.2.6
@@ -18516,6 +21017,18 @@ packages:
react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1
resolution:
integrity: sha512-WZbvG72cjLXAxV7VOuSzuHEaI3RHj10DZu8EcKQpkKcAj7+qAkG5XUeSdX5FXrA0vPrlx0QsnAzZEBJwzV0e+w==
+ /react-element-to-jsx-string/14.3.2_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ '@base2/pretty-print-object': 1.0.0
+ is-plain-object: 3.0.1
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ dev: false
+ peerDependencies:
+ react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1
+ react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1
+ resolution:
+ integrity: sha512-WZbvG72cjLXAxV7VOuSzuHEaI3RHj10DZu8EcKQpkKcAj7+qAkG5XUeSdX5FXrA0vPrlx0QsnAzZEBJwzV0e+w==
/react-error-overlay/3.0.0:
dev: false
resolution:
@@ -18547,6 +21060,32 @@ packages:
react-dom: ^16.6.0
resolution:
integrity: sha512-By90p5uxAriGukbyejq2poK41DwTxpNWOpOjN8mIyX/BKrCd3+sXZ5pHUZXjHyjR5OYS7PGsOD9dbM61YxfFmA==
+ /react-helmet-async/1.0.7_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ invariant: 2.2.4
+ prop-types: 15.7.2
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ react-fast-compare: 3.2.0
+ shallowequal: 1.1.0
+ dev: false
+ peerDependencies:
+ react: ^16.6.0
+ react-dom: ^16.6.0
+ resolution:
+ integrity: sha512-By90p5uxAriGukbyejq2poK41DwTxpNWOpOjN8mIyX/BKrCd3+sXZ5pHUZXjHyjR5OYS7PGsOD9dbM61YxfFmA==
+ /react-helmet/5.2.1:
+ dependencies:
+ object-assign: 4.1.1
+ prop-types: 15.7.2
+ react-fast-compare: 2.0.4
+ react-side-effect: 1.2.0
+ dev: false
+ peerDependencies:
+ react: '>=15.0.0'
+ resolution:
+ integrity: sha512-CnwD822LU8NDBnjCpZ4ySh8L6HYyngViTZLfBBb3NjtrpN8m49clH8hidHouq20I51Y6TpCTISCBbqiY5GamwA==
/react-helmet/5.2.1_react@16.14.0:
dependencies:
object-assign: 4.1.1
@@ -18559,6 +21098,28 @@ packages:
react: '>=15.0.0'
resolution:
integrity: sha512-CnwD822LU8NDBnjCpZ4ySh8L6HYyngViTZLfBBb3NjtrpN8m49clH8hidHouq20I51Y6TpCTISCBbqiY5GamwA==
+ /react-hot-loader/4.13.0:
+ dependencies:
+ fast-levenshtein: 2.0.6
+ global: 4.4.0
+ hoist-non-react-statics: 3.3.2
+ loader-utils: 1.4.0
+ prop-types: 15.7.2
+ react-lifecycles-compat: 3.0.4
+ shallowequal: 1.1.0
+ source-map: 0.7.3
+ dev: false
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ '@types/react': '^15.0.0 || ^16.0.0 || ^17.0.0 '
+ react: '^15.0.0 || ^16.0.0 || ^17.0.0 '
+ react-dom: '^15.0.0 || ^16.0.0 || ^17.0.0 '
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ resolution:
+ integrity: sha512-JrLlvUPqh6wIkrK2hZDfOyq/Uh/WeVEr8nc7hkn2/3Ul0sx1Kr5y4kOGNacNRoj7RhwLNcQ3Udf1KJXrqc0ZtA==
/react-hot-loader/4.13.0_react-dom@16.14.0+react@16.14.0:
dependencies:
fast-levenshtein: 2.0.6
@@ -18592,6 +21153,23 @@ packages:
react: '>= 0.14.0'
resolution:
integrity: sha512-3n3OU8vLX/pfcJrR3xJ1zlww6KS1kEJt0Whxc4FiGV+MJrQ1mYSYI3qS/11d2MJDFm8IhOXMTFQirfu6AVOF6Q==
+ /react-hotkeys/2.0.0_react@17.0.1:
+ dependencies:
+ prop-types: 15.7.2
+ react: 17.0.1
+ dev: false
+ peerDependencies:
+ react: '>= 0.14.0'
+ resolution:
+ integrity: sha512-3n3OU8vLX/pfcJrR3xJ1zlww6KS1kEJt0Whxc4FiGV+MJrQ1mYSYI3qS/11d2MJDFm8IhOXMTFQirfu6AVOF6Q==
+ /react-html-parser/2.0.2:
+ dependencies:
+ htmlparser2: 3.10.1
+ dev: false
+ peerDependencies:
+ react: ^0.14.0 || ^15.0.0 || ^16.0.0-0
+ resolution:
+ integrity: sha512-XeerLwCVjTs3njZcgCOeDUqLgNIt/t+6Jgi5/qPsO/krUWl76kWKXMeVs2LhY2gwM6X378DkhLjur0zUQdpz0g==
/react-html-parser/2.0.2_react@16.14.0:
dependencies:
htmlparser2: 3.10.1
@@ -18601,6 +21179,14 @@ packages:
react: ^0.14.0 || ^15.0.0 || ^16.0.0-0
resolution:
integrity: sha512-XeerLwCVjTs3njZcgCOeDUqLgNIt/t+6Jgi5/qPsO/krUWl76kWKXMeVs2LhY2gwM6X378DkhLjur0zUQdpz0g==
+ /react-input-autosize/2.2.2:
+ dependencies:
+ prop-types: 15.7.2
+ dev: false
+ peerDependencies:
+ react: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0
+ resolution:
+ integrity: sha512-jQJgYCA3S0j+cuOwzuCd1OjmBmnZLdqQdiLKRYrsMMzbjUrVDS5RvJUDwJqA7sKuksDuzFtm6hZGKFu7Mjk5aw==
/react-input-autosize/2.2.2_react@16.14.0:
dependencies:
prop-types: 15.7.2
@@ -18621,10 +21207,25 @@ packages:
react: ^16.8.4
resolution:
integrity: sha512-JAwswiengIcxi4X/Ssb8nf6suOuQsyit8Fxo04+iPKTnPNY3XIOuagjMZSzpJDDKkYcc/ARlySOYZZv626WUvA==
+ /react-inspector/5.1.0_react@17.0.1:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ is-dom: 1.1.0
+ prop-types: 15.7.2
+ react: 17.0.1
+ dev: false
+ peerDependencies:
+ react: ^16.8.4
+ resolution:
+ integrity: sha512-JAwswiengIcxi4X/Ssb8nf6suOuQsyit8Fxo04+iPKTnPNY3XIOuagjMZSzpJDDKkYcc/ARlySOYZZv626WUvA==
/react-is/16.13.1:
dev: false
resolution:
integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
+ /react-is/17.0.1:
+ dev: false
+ resolution:
+ integrity: sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==
/react-lifecycles-compat/3.0.4:
dev: false
resolution:
@@ -18641,6 +21242,19 @@ packages:
react-dom: ^16.6.0
resolution:
integrity: sha512-04A2f24GhyyMicKvg/koIOQ5BzlrRbKiAgP6L+Pdj1MVX3yJ1NeZ8+EidndQsbejFT55oW1b++wg2Z8KlAyhfQ==
+ /react-popper-tooltip/3.1.1_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ '@popperjs/core': 2.6.0
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ react-popper: 2.2.4_3da0a162a96308e0a1fa93a02ed91581
+ dev: false
+ peerDependencies:
+ react: ^16.6.0 || ^17.0.0
+ react-dom: ^16.6.0 || ^17.0.0
+ resolution:
+ integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==
/react-popper/1.3.7_react@16.14.0:
dependencies:
'@babel/runtime': 7.12.5
@@ -18656,6 +21270,26 @@ packages:
react: 0.14.x || ^15.0.0 || ^16.0.0
resolution:
integrity: sha512-nmqYTx7QVjCm3WUZLeuOomna138R1luC4EqkW3hxJUrAe+3eNz3oFCLYdnPwILfn0mX1Ew2c3wctrjlUMYYUww==
+ /react-popper/2.2.4_3da0a162a96308e0a1fa93a02ed91581:
+ dependencies:
+ '@popperjs/core': 2.6.0
+ react: 17.0.1
+ react-fast-compare: 3.2.0
+ warning: 4.0.3
+ dev: false
+ peerDependencies:
+ '@popperjs/core': ^2.0.0
+ react: ^16.8.0 || ^17
+ resolution:
+ integrity: sha512-NacOu4zWupdQjVXq02XpTD3yFPSfg5a7fex0wa3uGKVkFK7UN6LvVxgcb+xYr56UCuWiNPMH20tntdVdJRwYew==
+ /react-portal/4.2.1:
+ dependencies:
+ prop-types: 15.7.2
+ dev: false
+ peerDependencies:
+ react: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0
+ resolution:
+ integrity: sha512-fE9kOBagwmTXZ3YGRYb4gcMy+kSA+yLO0xnPankjRlfBv4uCpFXqKPfkpsGQQR15wkZ9EssnvTOl1yMzbkxhPQ==
/react-portal/4.2.1_react@16.14.0:
dependencies:
prop-types: 15.7.2
@@ -18671,6 +21305,17 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==
+ /react-select/1.3.0:
+ dependencies:
+ classnames: 2.2.6
+ prop-types: 15.7.2
+ react-input-autosize: 2.2.2
+ dev: false
+ peerDependencies:
+ react: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0
+ react-dom: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0
+ resolution:
+ integrity: sha512-g/QAU1HZrzSfxkwMAo/wzi6/ezdWye302RGZevsATec07hI/iSxcpB1hejFIp7V63DJ8mwuign6KmB3VjdlinQ==
/react-select/1.3.0_react-dom@16.14.0+react@16.14.0:
dependencies:
classnames: 2.2.6
@@ -18684,6 +21329,14 @@ packages:
react-dom: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0
resolution:
integrity: sha512-g/QAU1HZrzSfxkwMAo/wzi6/ezdWye302RGZevsATec07hI/iSxcpB1hejFIp7V63DJ8mwuign6KmB3VjdlinQ==
+ /react-side-effect/1.2.0:
+ dependencies:
+ shallowequal: 1.1.0
+ dev: false
+ peerDependencies:
+ react: ^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0
+ resolution:
+ integrity: sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==
/react-side-effect/1.2.0_react@16.14.0:
dependencies:
react: 16.14.0
@@ -18693,6 +21346,18 @@ packages:
react: ^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0
resolution:
integrity: sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==
+ /react-sizeme/2.6.12:
+ dependencies:
+ element-resize-detector: 1.2.1
+ invariant: 2.2.4
+ shallowequal: 1.1.0
+ throttle-debounce: 2.3.0
+ dev: false
+ peerDependencies:
+ react: ^0.14.0 || ^15.0.0-0 || ^16.0.0
+ react-dom: ^0.14.0 || ^15.0.0-0 || ^16.0.0
+ resolution:
+ integrity: sha512-tL4sCgfmvapYRZ1FO2VmBmjPVzzqgHA7kI8lSJ6JS6L78jXFNRdOZFpXyK6P1NBZvKPPCZxReNgzZNUajAerZw==
/react-sizeme/2.6.12_react-dom@16.14.0+react@16.14.0:
dependencies:
element-resize-detector: 1.2.1
@@ -18707,6 +21372,20 @@ packages:
react-dom: ^0.14.0 || ^15.0.0-0 || ^16.0.0
resolution:
integrity: sha512-tL4sCgfmvapYRZ1FO2VmBmjPVzzqgHA7kI8lSJ6JS6L78jXFNRdOZFpXyK6P1NBZvKPPCZxReNgzZNUajAerZw==
+ /react-sizeme/2.6.12_react-dom@17.0.1+react@17.0.1:
+ dependencies:
+ element-resize-detector: 1.2.1
+ invariant: 2.2.4
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ shallowequal: 1.1.0
+ throttle-debounce: 2.3.0
+ dev: false
+ peerDependencies:
+ react: ^0.14.0 || ^15.0.0-0 || ^16.0.0
+ react-dom: ^0.14.0 || ^15.0.0-0 || ^16.0.0
+ resolution:
+ integrity: sha512-tL4sCgfmvapYRZ1FO2VmBmjPVzzqgHA7kI8lSJ6JS6L78jXFNRdOZFpXyK6P1NBZvKPPCZxReNgzZNUajAerZw==
/react-syntax-highlighter/12.2.1_react@16.14.0:
dependencies:
'@babel/runtime': 7.12.5
@@ -18720,6 +21399,31 @@ packages:
react: '>= 0.14.0'
resolution:
integrity: sha512-CTsp0ZWijwKRYFg9xhkWD4DSpQqE4vb2NKVMdPAkomnILSmsNBHE0n5GuI5zB+PU3ySVvXvdt9jo+ViD9XibCA==
+ /react-syntax-highlighter/13.5.3_react@17.0.1:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ highlight.js: 10.4.1
+ lowlight: 1.17.0
+ prismjs: 1.22.0
+ react: 17.0.1
+ refractor: 3.2.0
+ dev: false
+ peerDependencies:
+ react: '>= 0.14.0'
+ resolution:
+ integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==
+ /react-table/6.11.5:
+ dependencies:
+ '@types/react-table': 6.8.7
+ classnames: 2.2.6
+ react-is: 16.13.1
+ dev: false
+ peerDependencies:
+ prop-types: ^15.7.0
+ react: ^16.x.x
+ react-dom: ^16.x.x
+ resolution:
+ integrity: sha512-LM+AS9v//7Y7lAlgTWW/cW6Sn5VOb3EsSkKQfQTzOW8FngB1FUskLLNEVkAYsTX9LjOWR3QlGjykJqCE6eXT/g==
/react-table/6.11.5_0106054ed56650b7cf08997e12b36ef5:
dependencies:
'@types/react-table': 6.8.7
@@ -18748,12 +21452,37 @@ packages:
react: ^16.8.0 || ^17.0.0
resolution:
integrity: sha512-3GLWFAan2pbwBeoeNDoqGmSbrShORtgWfaWX0RJDivsUrpShh01saRM5RU/i4Zmf+whpBVEY5cA90Eq8Ub1N3w==
+ /react-textarea-autosize/8.3.0_react@17.0.1:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ react: 17.0.1
+ use-composed-ref: 1.1.0_react@17.0.1
+ use-latest: 1.2.0_react@17.0.1
+ dev: false
+ engines:
+ node: '>=10'
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ resolution:
+ integrity: sha512-3GLWFAan2pbwBeoeNDoqGmSbrShORtgWfaWX0RJDivsUrpShh01saRM5RU/i4Zmf+whpBVEY5cA90Eq8Ub1N3w==
/react-themeable/1.1.0:
dependencies:
object-assign: 3.0.0
dev: false
resolution:
integrity: sha1-fURm3ZsrX6dQWHJ4JenxUro3mg4=
+ /react-transition-group/2.9.0:
+ dependencies:
+ dom-helpers: 3.4.0
+ loose-envify: 1.4.0
+ prop-types: 15.7.2
+ react-lifecycles-compat: 3.0.4
+ dev: false
+ peerDependencies:
+ react: '>=15.0.0'
+ react-dom: '>=15.0.0'
+ resolution:
+ integrity: sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==
/react-transition-group/2.9.0_react-dom@16.14.0+react@16.14.0:
dependencies:
dom-helpers: 3.4.0
@@ -18768,6 +21497,20 @@ packages:
react-dom: '>=15.0.0'
resolution:
integrity: sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==
+ /react-virtualized/9.22.2:
+ dependencies:
+ '@babel/runtime': 7.12.5
+ clsx: 1.1.1
+ dom-helpers: 5.2.0
+ loose-envify: 1.4.0
+ prop-types: 15.7.2
+ react-lifecycles-compat: 3.0.4
+ dev: false
+ peerDependencies:
+ react: ^15.3.0 || ^16.0.0-alpha
+ react-dom: ^15.3.0 || ^16.0.0-alpha
+ resolution:
+ integrity: sha512-5j4h4FhxTdOpBKtePSs1yk6LDNT4oGtUwjT7Nkh61Z8vv3fTG/XeOf8J4li1AYaexOwTXnw0HFVxsV0GBUqwRw==
/react-virtualized/9.22.2_react-dom@16.14.0+react@16.14.0:
dependencies:
'@babel/runtime': 7.12.5
@@ -18794,21 +21537,21 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==
- /reactcss/1.2.3:
+ /react/17.0.1:
dependencies:
- lodash: 4.17.20
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
dev: false
+ engines:
+ node: '>=0.10.0'
resolution:
- integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==
- /read-chunk/3.2.0:
+ integrity: sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==
+ /reactcss/1.2.3:
dependencies:
- pify: 4.0.1
- with-open-file: 0.1.7
+ lodash: 4.17.20
dev: false
- engines:
- node: '>=6'
resolution:
- integrity: sha512-CEjy9LCzhmD7nUpJ1oVOE6s/hBkejlcJEgLQHVnQznOSilOPb+kpKktlLfFDK3/WP43+F80xkUTM2VOkYoSYvQ==
+ integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==
/read-only-stream/2.0.0:
dependencies:
readable-stream: 2.3.7
@@ -18932,6 +21675,15 @@ packages:
node: '>= 6'
resolution:
integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
+ /readable-web-to-node-stream/3.0.0:
+ dependencies:
+ '@types/readable-stream': 2.3.9
+ readable-stream: 3.6.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-HNmLb3n0SteGAs8HQlErYPGeO+y7cvL/mVUKtXeUkl0iCZ/2GIgKGrCFHyS7UXFnO8uc9U+0y3pYIzAPsjFfvA==
/readdirp/2.2.1:
dependencies:
graceful-fs: 4.2.4
@@ -19028,7 +21780,7 @@ packages:
/reduce-css-calc/1.3.0:
dependencies:
balanced-match: 0.4.2
- math-expression-evaluator: 1.3.1
+ math-expression-evaluator: 1.3.6
reduce-function-call: 1.0.3
dev: false
resolution:
@@ -19062,6 +21814,14 @@ packages:
dev: false
resolution:
integrity: sha512-Xh9o7hQiQlDbxo5/XkOX6H+x/q8rmlmZKr97Ie1Q8ZM32IRRd3B/UxuA/yXDW79DBSXGWxm2yRTbcTVmAciJRw==
+ /refractor/3.2.0:
+ dependencies:
+ hastscript: 6.0.0
+ parse-entities: 2.0.0
+ prismjs: 1.22.0
+ dev: false
+ resolution:
+ integrity: sha512-hSo+EyMIZTLBvNNgIU5lW4yjCzNYMZ4dcEhBq/3nReGfqzd2JfVhdlPDfU9rEsgcAyWx+OimIIUoL4ZU7NtYHQ==
/regenerate-unicode-properties/8.2.0:
dependencies:
regenerate: 1.4.2
@@ -19209,19 +21969,19 @@ packages:
dev: false
resolution:
integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==
- /remark-mdx/1.6.21:
+ /remark-mdx/1.6.22:
dependencies:
- '@babel/core': 7.11.6
+ '@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-proposal-object-rest-spread': 7.11.0_@babel+core@7.11.6
- '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.11.6
- '@mdx-js/util': 1.6.21
+ '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.9
+ '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.9
+ '@mdx-js/util': 1.6.22
is-alphabetical: 1.0.4
remark-parse: 8.0.3
unified: 9.2.0
dev: false
resolution:
- integrity: sha512-IGb3l46a6NFi62egT+WXeTT3T8wYTunmPCEGTfDO6oRAfuss9VAb/3InVCKKGXXoiNi0mTuplI0EFusdCLGk3A==
+ integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==
/remark-mdx/2.0.0-next.8:
dependencies:
parse-entities: 2.0.0
@@ -19285,7 +22045,7 @@ packages:
integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==
/remark-parse/9.0.0:
dependencies:
- mdast-util-from-markdown: 0.8.1
+ mdast-util-from-markdown: 0.8.4
dev: false
resolution:
integrity: sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==
@@ -19322,16 +22082,16 @@ packages:
dev: false
resolution:
integrity: sha512-q4EyPZT3PcA3Eq7vPpT6bIdokXzFGp9i85igjmhRyXWmPs0Y6/d2FYwUNotKAWyLch7g0ASZJn/KHHcHZQ163A==
- /remark-stringify/9.0.0:
+ /remark-stringify/9.0.1:
dependencies:
- mdast-util-to-markdown: 0.5.3
+ mdast-util-to-markdown: 0.6.1
dev: false
resolution:
- integrity: sha512-8x29DpTbVzEc6Dwb90qhxCtbZ6hmj3BxWWDpMhA+1WM4dOEGH5U5/GFe3Be5Hns5MvPSFAr1e2KSVtKZkK5nUw==
+ integrity: sha512-mWmNg3ZtESvZS8fv5PTvaPckdL4iNlCHTt8/e/8oN08nArHRHjNZMKzA/YW3+p7/lYqIw4nx1XsjCBo/AxNChg==
/remark/13.0.0:
dependencies:
remark-parse: 9.0.0
- remark-stringify: 9.0.0
+ remark-stringify: 9.0.1
unified: 9.2.0
dev: false
resolution:
@@ -19395,12 +22155,6 @@ packages:
node: '>= 0.4'
resolution:
integrity: sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=
- /replace-ext/1.0.0:
- dev: false
- engines:
- node: '>= 0.10'
- resolution:
- integrity: sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=
/replace-ext/1.0.1:
dev: false
engines:
@@ -19546,7 +22300,7 @@ packages:
integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
/resolve/1.19.0:
dependencies:
- is-core-module: 2.1.0
+ is-core-module: 2.2.0
path-parse: 1.0.6
dev: false
resolution:
@@ -19753,40 +22507,25 @@ packages:
lodash: 4.17.20
scss-tokenizer: 0.2.3
yargs: 13.3.2
- dev: false
- hasBin: true
- resolution:
- integrity: sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag==
- /sass-loader/7.3.1_webpack@4.44.2:
- dependencies:
- clone-deep: 4.0.1
- loader-utils: 1.4.0
- neo-async: 2.6.2
- pify: 4.0.1
- semver: 6.3.0
- webpack: 4.44.2
- dev: false
- engines:
- node: '>= 6.9.0'
- peerDependencies:
- webpack: ^3.0.0 || ^4.0.0
+ dev: false
+ hasBin: true
resolution:
- integrity: sha512-tuU7+zm0pTCynKYHpdqaPpe+MMTQ76I9TPZ7i4/5dZsigE350shQWe5EZNl5dBidM49TPET75tNqRbcsUZWeNA==
- /sass-loader/8.0.2_sass@1.29.0+webpack@4.44.2:
+ integrity: sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag==
+ /sass-loader/10.0.5_sass@1.30.0+webpack@4.44.2:
dependencies:
- clone-deep: 4.0.1
- loader-utils: 1.4.0
+ klona: 2.0.4
+ loader-utils: 2.0.0
neo-async: 2.6.2
- sass: 1.29.0
- schema-utils: 2.7.1
- semver: 6.3.0
+ sass: 1.30.0
+ schema-utils: 3.0.0
+ semver: 7.3.4
webpack: 4.44.2
dev: false
engines:
- node: '>= 8.9.0'
+ node: '>= 10.13.0'
peerDependencies:
fibers: '>= 3.1.0'
- node-sass: ^4.0.0
+ node-sass: ^4.0.0 || ^5.0.0
sass: ^1.3.0
webpack: ^4.36.0 || ^5.0.0
peerDependenciesMeta:
@@ -19797,12 +22536,28 @@ packages:
sass:
optional: true
resolution:
- integrity: sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==
- /sass-loader/8.0.2_webpack@4.44.2:
+ integrity: sha512-2LqoNPtKkZq/XbXNQ4C64GFEleSEHKv6NPSI+bMC/l+jpEXGJhiRYkAQToO24MR7NU4JRY2RpLpJ/gjo2Uf13w==
+ /sass-loader/7.3.1_webpack@4.44.2:
+ dependencies:
+ clone-deep: 4.0.1
+ loader-utils: 1.4.0
+ neo-async: 2.6.2
+ pify: 4.0.1
+ semver: 6.3.0
+ webpack: 4.44.2
+ dev: false
+ engines:
+ node: '>= 6.9.0'
+ peerDependencies:
+ webpack: ^3.0.0 || ^4.0.0
+ resolution:
+ integrity: sha512-tuU7+zm0pTCynKYHpdqaPpe+MMTQ76I9TPZ7i4/5dZsigE350shQWe5EZNl5dBidM49TPET75tNqRbcsUZWeNA==
+ /sass-loader/8.0.2_sass@1.30.0+webpack@4.44.2:
dependencies:
clone-deep: 4.0.1
loader-utils: 1.4.0
neo-async: 2.6.2
+ sass: 1.30.0
schema-utils: 2.7.1
semver: 6.3.0
webpack: 4.44.2
@@ -19823,16 +22578,7 @@ packages:
optional: true
resolution:
integrity: sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==
- /sass/1.27.2:
- dependencies:
- chokidar: 3.4.3
- dev: false
- engines:
- node: '>=8.9.0'
- hasBin: true
- resolution:
- integrity: sha512-8gUAdqW1sdNKcZ6ccf37WKIkuS/wP5tlK52QLNLV3e3JqqgT5ACuT/0CboDElnXJRD7ld+SRAd8oZ++nMI1mrQ==
- /sass/1.29.0:
+ /sass/1.30.0:
dependencies:
chokidar: 3.4.3
dev: false
@@ -19840,7 +22586,7 @@ packages:
node: '>=8.9.0'
hasBin: true
resolution:
- integrity: sha512-ZpwAUFgnvAUCdkjwPREny+17BpUj8nh5Yr6zKPGtLNTLrmtoRYIjm7njP24COhjJldjwW1dcv52Lpf4tNZVVRA==
+ integrity: sha512-26EUhOXRLaUY7+mWuRFqGeGGNmhB1vblpTENO1Z7mAzzIZeVxZr9EZoaY1kyGLFWdSOZxRMAufiN2mkbO6dAlw==
/sax/1.2.4:
dev: false
resolution:
@@ -19852,6 +22598,13 @@ packages:
dev: false
resolution:
integrity: sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==
+ /scheduler/0.20.1:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ dev: false
+ resolution:
+ integrity: sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==
/schema-utils/0.4.7:
dependencies:
ajv: 6.12.6
@@ -19974,13 +22727,15 @@ packages:
hasBin: true
resolution:
integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
- /semver/7.3.2:
+ /semver/7.3.4:
+ dependencies:
+ lru-cache: 6.0.0
dev: false
engines:
node: '>=10'
hasBin: true
resolution:
- integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
+ integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==
/send/0.16.2:
dependencies:
debug: 2.6.9
@@ -20138,23 +22893,24 @@ packages:
dev: false
resolution:
integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==
- /sharp/0.25.4:
+ /sharp/0.26.3:
dependencies:
+ array-flatten: 3.0.0
color: 3.1.3
detect-libc: 1.0.3
- node-addon-api: 3.0.2
+ node-addon-api: 3.1.0
npmlog: 4.1.2
- prebuild-install: 5.3.6
- semver: 7.3.2
+ prebuild-install: 6.0.0
+ semver: 7.3.4
simple-get: 4.0.0
- tar: 6.0.5
+ tar-fs: 2.1.1
tunnel-agent: 0.6.0
dev: false
engines:
node: '>=10'
requiresBuild: true
resolution:
- integrity: sha512-umSzJJ1oBwIOfwFFt/fJ7JgCva9FvrEU2cbbm7u/3hSDZhXvkME8WE5qpaJqLIe2Har5msF5UG4CzYlEg5o3BQ==
+ integrity: sha512-NdEJ9S6AMr8Px0zgtFo1TJjMK/ROMU92MkDtYn2BBrDjIx3YfH9TUyGdzPC+I/L619GeYQc690Vbaxc5FPCCWg==
/shasum-object/1.0.0:
dependencies:
fast-safe-stringify: 2.0.7
@@ -20236,7 +22992,7 @@ packages:
/side-channel/1.0.3:
dependencies:
es-abstract: 1.18.0-next.1
- object-inspect: 1.8.0
+ object-inspect: 1.9.0
dev: false
resolution:
integrity: sha512-A6+ByhlLkksFoUepsGxfj5x1gTSrs+OydsRptUxeNCabQpCFUvcwIczgOigI8vhY/OJCnPnyE9rGiwgvr9cS1g==
@@ -20298,6 +23054,12 @@ packages:
node: '>=8'
resolution:
integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
+ /slice-ansi/0.0.4:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=
/slice-ansi/2.1.0:
dependencies:
ansi-styles: 3.2.1
@@ -20478,7 +23240,7 @@ packages:
integrity: sha1-W6vjhrd15M8U51IJEUUmVAFsixI=
/sockjs-client/1.4.0:
dependencies:
- debug: 3.2.6
+ debug: 3.2.7
eventsource: 1.0.7
faye-websocket: 0.11.3
inherits: 2.0.4
@@ -20601,7 +23363,7 @@ packages:
/spdx-correct/3.1.1:
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.6
+ spdx-license-ids: 3.0.7
dev: false
resolution:
integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
@@ -20612,17 +23374,17 @@ packages:
/spdx-expression-parse/3.0.1:
dependencies:
spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.6
+ spdx-license-ids: 3.0.7
dev: false
resolution:
integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
- /spdx-license-ids/3.0.6:
+ /spdx-license-ids/3.0.7:
dev: false
resolution:
- integrity: sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw==
+ integrity: sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==
/spdy-transport/3.0.0_supports-color@6.1.0:
dependencies:
- debug: 4.2.0_supports-color@6.1.0
+ debug: 4.3.1_supports-color@6.1.0
detect-node: 2.0.4
hpack.js: 2.1.6
obuf: 1.1.2
@@ -20635,7 +23397,7 @@ packages:
integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==
/spdy/4.0.2_supports-color@6.1.0:
dependencies:
- debug: 4.2.0_supports-color@6.1.0
+ debug: 4.3.1_supports-color@6.1.0
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -20652,6 +23414,10 @@ packages:
hasBin: true
resolution:
integrity: sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==
+ /speedometer/1.0.0:
+ dev: false
+ resolution:
+ integrity: sha1-zWccsGdSwivKM3Di8zREC+T8YuI=
/split-on-first/1.1.0:
dev: false
engines:
@@ -20680,6 +23446,10 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha1-MwRQN7ZDiLVnZ0uEMiplIQc5FsM=
+ /sse-z/0.3.0:
+ dev: false
+ resolution:
+ integrity: sha512-jfcXynl9oAOS9YJ7iqS2JMUEHOlvrRAD+54CENiWnc4xsuVLQVSgmwf7cwOTcBd/uq3XkQKBGojgvEtVXcJ/8w==
/sshpk/1.16.1:
dependencies:
asn1: 0.2.4
@@ -20725,7 +23495,7 @@ packages:
async-cache: 1.1.0
bl: 4.0.3
fd: 0.0.3
- mime: 2.4.6
+ mime: 2.4.7
negotiator: 0.6.2
dev: false
hasBin: true
@@ -20870,6 +23640,12 @@ packages:
dev: false
resolution:
integrity: sha512-Gk6KZM+yNA1JpW0KzlZIhjo3EaBJDkYfXtYSbOwNIQ7Zd6006E6+sCFlW1NDvFG/vnXhKmw6TJJgiEQg/8lXfQ==
+ /streamsearch/0.1.2:
+ dev: false
+ engines:
+ node: '>=0.8.0'
+ resolution:
+ integrity: sha1-gIudDlb8Jz2Am6VzOOkpkZoanxo=
/strict-uri-encode/1.1.0:
dev: false
engines:
@@ -20935,49 +23711,52 @@ packages:
node: '>=8'
resolution:
integrity: sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
- /string.prototype.matchall/4.0.2:
+ /string.prototype.matchall/4.0.3:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.17.7
+ es-abstract: 1.18.0-next.1
has-symbols: 1.0.1
internal-slot: 1.0.2
regexp.prototype.flags: 1.3.0
side-channel: 1.0.3
dev: false
resolution:
- integrity: sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg==
- /string.prototype.padend/3.1.0:
+ integrity: sha512-OBxYDA2ifZQ2e13cP82dWFMaCV9CGF8GzmN4fljBVw5O5wep0lu4gacm1OL6MjROoUnB8VbkWRThqkV2YFLNxw==
+ /string.prototype.padend/3.1.1:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.17.7
+ es-abstract: 1.18.0-next.1
dev: false
engines:
node: '>= 0.4'
resolution:
- integrity: sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA==
- /string.prototype.padstart/3.1.0:
+ integrity: sha512-eCzTASPnoCr5Ht+Vn1YXgm8SB015hHKgEIMu9Nr9bQmLhRBxKRfmzSj/IQsxDFc8JInJDDFA0qXwK+xxI7wDkg==
+ /string.prototype.padstart/3.1.1:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.17.7
+ es-abstract: 1.18.0-next.1
dev: false
engines:
node: '>= 0.4'
resolution:
- integrity: sha512-envqZvUp2JItI+OeQ5UAh1ihbAV5G/2bixTojvlIa090GGqF+NQRxbWb2nv9fTGrZABv6+pE6jXoAZhhS2k4Hw==
- /string.prototype.trimend/1.0.2:
+ integrity: sha512-kcFjKhQYg40AK9MITCWYr/vIebruAD01sc/fxi8szHJaEG7Rke4XHw6LU9c1VWXh/+J/PxvWLLf/aIAGKhXkAQ==
+ /string.prototype.trimend/1.0.3:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.18.0-next.1
dev: false
resolution:
- integrity: sha512-8oAG/hi14Z4nOVP0z6mdiVZ/wqjDtWSLygMigTzAb+7aPEDTleeFf+WrF+alzecxIRkckkJVn+dTlwzJXORATw==
- /string.prototype.trimstart/1.0.2:
+ integrity: sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==
+ /string.prototype.trimstart/1.0.3:
dependencies:
+ call-bind: 1.0.0
define-properties: 1.1.3
- es-abstract: 1.18.0-next.1
dev: false
resolution:
- integrity: sha512-7F6CdBTl5zyu30BJFdzSTlSlLPwODC23Od+iLoVH8X6+3fvDPPuBVVj9iaB1GOsSTSIgVfsfm27R2FGrAPznWg==
+ integrity: sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==
/string_decoder/0.10.31:
dev: false
resolution:
@@ -21134,6 +23913,16 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==
+ /strtok3/6.0.4:
+ dependencies:
+ '@tokenizer/token': 0.1.1
+ '@types/debug': 4.1.5
+ peek-readable: 3.1.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-rqWMKwsbN9APU47bQTMEYTPcwdpKDtmf1jVhHzNW2cL1WqAxaM9iBb9t5P2fj+RV2YsErUWgQzHD5JwV0uCTEQ==
/style-loader/0.23.1:
dependencies:
loader-utils: 1.4.0
@@ -21167,7 +23956,7 @@ packages:
integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==
/stylehacks/4.0.3:
dependencies:
- browserslist: 4.14.7
+ browserslist: 4.16.0
postcss: 7.0.35
postcss-selector-parser: 3.1.2
dev: false
@@ -21217,7 +24006,7 @@ packages:
balanced-match: 1.0.0
chalk: 4.1.0
cosmiconfig: 7.0.0
- debug: 4.2.0
+ debug: 4.3.1
execall: 2.0.0
fast-glob: 3.2.4
fastest-levenshtein: 1.0.12
@@ -21256,7 +24045,7 @@ packages:
style-search: 0.1.0
sugarss: 2.0.0
svg-tags: 1.0.0
- table: 6.0.3
+ table: 6.0.4
v8-compile-cache: 2.2.0
write-file-atomic: 3.0.3
dev: false
@@ -21271,19 +24060,6 @@ packages:
dev: false
resolution:
integrity: sha1-9izxdYHplrSPyWVpn1TAauJouNI=
- /subscriptions-transport-ws/0.9.18_graphql@14.7.0:
- dependencies:
- backo2: 1.0.2
- eventemitter3: 3.1.2
- graphql: 14.7.0
- iterall: 1.3.0
- symbol-observable: 1.2.0
- ws: 5.2.2
- dev: false
- peerDependencies:
- graphql: '>=0.10.0'
- resolution:
- integrity: sha512-tztzcBTNoEbuErsVQpTN2xUNN/efAZXyCyL5m3x4t6SKrEiTL2N8SaKWBFWM4u56pL79ULif3zjyeq+oV+nOaA==
/sudo-prompt/8.2.5:
dev: false
resolution:
@@ -21360,10 +24136,10 @@ packages:
css-select: 2.1.0
css-select-base-adapter: 0.1.1
css-tree: 1.0.0-alpha.37
- csso: 4.1.1
- js-yaml: 3.14.0
+ csso: 4.2.0
+ js-yaml: 3.14.1
mkdirp: 0.5.5
- object.values: 1.1.1
+ object.values: 1.1.2
sax: 1.2.4
stable: 0.1.8
unquote: 1.1.1
@@ -21386,15 +24162,17 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==
- /symbol.prototype.description/1.0.2:
+ /symbol.prototype.description/1.0.3:
dependencies:
- es-abstract: 1.17.7
+ call-bind: 1.0.0
+ es-abstract: 1.18.0-next.1
has-symbols: 1.0.1
+ object.getownpropertydescriptors: 2.1.1
dev: false
engines:
- node: '>= 0.12'
+ node: '>= 0.11.15'
resolution:
- integrity: sha512-2CW5SU4/Ki1cYOOHcL2cXK4rxSg5hCU1TwZ7X4euKhV9VnfqKslh7T6/UyKkubA8cq2tOmsOv7m3ZUmQslBRuw==
+ integrity: sha512-NvwWb5AdyTtmFNa1x0ksJakFUV/WJ+z7iRrYGU1xZew77Qd+kMrZKsk3uatCckk6yPNpbHhRcOO+JBU+ohcMBw==
/sync-fetch/0.3.0:
dependencies:
buffer: 5.7.1
@@ -21421,7 +24199,7 @@ packages:
node: '>=6.0.0'
resolution:
integrity: sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==
- /table/6.0.3:
+ /table/6.0.4:
dependencies:
ajv: 6.12.6
lodash: 4.17.20
@@ -21431,7 +24209,7 @@ packages:
engines:
node: '>=10.0.0'
resolution:
- integrity: sha512-8321ZMcf1B9HvVX/btKv8mMZahCjn2aYrDlpqHaBFCfnox64edeH9kEid0vTLTRR8gWR2A20aDgeuTTea4sVtw==
+ integrity: sha512-sBT4xRLdALd+NFBvwOz8bw4b15htyythha+q+DVZqy2RS08PPC8O2sZFgJYEY7bJvbCFKccs+WIZ/cd+xxTWCw==
/tapable/1.1.3:
dev: false
engines:
@@ -21590,7 +24368,7 @@ packages:
cacache: 15.0.5
find-cache-dir: 3.3.1
jest-worker: 26.6.2
- p-limit: 3.0.2
+ p-limit: 3.1.0
schema-utils: 2.7.1
serialize-javascript: 4.0.0
source-map: 0.6.1
@@ -21741,6 +24519,12 @@ packages:
dev: false
resolution:
integrity: sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==
+ /tmp-promise/2.1.1:
+ dependencies:
+ tmp: 0.1.0
+ dev: false
+ resolution:
+ integrity: sha512-Z048AOz/w9b6lCbJUpevIJpRpUztENl8zdv1bmAKVHimfqRFl92ROkmT9rp7TVBnrEw2gtMTol/2Cp2S2kJa4Q==
/tmp/0.0.33:
dependencies:
os-tmpdir: 1.0.2
@@ -21749,6 +24533,14 @@ packages:
node: '>=0.6.0'
resolution:
integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==
+ /tmp/0.1.0:
+ dependencies:
+ rimraf: 2.7.1
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw==
/tmp/0.2.1:
dependencies:
rimraf: 3.0.2
@@ -21860,6 +24652,15 @@ packages:
node: '>=0.6'
resolution:
integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
+ /token-types/2.0.0:
+ dependencies:
+ '@tokenizer/token': 0.1.1
+ ieee754: 1.2.1
+ dev: false
+ engines:
+ node: '>=0.1.98'
+ resolution:
+ integrity: sha512-WWvu8sGK8/ZmGusekZJJ5NM6rRVTTDO7/bahz4NGiSDb/XsmdYBn6a1N/bymUHuWYTWeuLUg98wUzvE4jPdCZw==
/tough-cookie/2.5.0:
dependencies:
psl: 1.8.0
@@ -21869,6 +24670,11 @@ packages:
node: '>=0.8'
resolution:
integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
+ /tree-kill/1.2.2:
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==
/trim-newlines/1.0.0:
dev: false
engines:
@@ -21923,13 +24729,20 @@ packages:
node: '>=6.10'
resolution:
integrity: sha512-6zSJp23uQI+Txyz5LlXMXAHpUhY4Hi0oluXny0OgIR7g/Cromq4vDBnhtbBdyIV34g0pgwxUvnvg+jLJe4c1NA==
+ /ts-dedent/2.0.0:
+ dev: false
+ engines:
+ node: '>=6.10'
+ resolution:
+ integrity: sha512-DfxKjSFQfw9+uf7N9Cy8Ebx9fv5fquK4hZ6SD3Rzr+1jKP6AVA6H8+B5457ZpUs0JKsGpGqIevbpZ9DMQJDp1A==
/ts-essentials/2.0.12:
dev: false
resolution:
integrity: sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w==
- /ts-node/9.0.0:
+ /ts-node/9.1.1:
dependencies:
arg: 4.1.3
+ create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
source-map-support: 0.5.19
@@ -21941,7 +24754,7 @@ packages:
peerDependencies:
typescript: '>=2.7'
resolution:
- integrity: sha512-/TqB4SnererCDR/vb4S/QvSZvzQMJN8daAslg7MeaiHvD8rDZsSfXmNeNumyZZzMned72Xoq/isQljYSt8Ynfg==
+ integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==
/ts-pnp/1.2.0:
dev: false
engines:
@@ -21994,11 +24807,17 @@ packages:
dev: false
resolution:
integrity: sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=
+ /tunnel/0.0.6:
+ dev: false
+ engines:
+ node: '>=0.6.11 <=0.7.0 || >=0.7.3'
+ resolution:
+ integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==
/tweetnacl/0.14.5:
dev: false
resolution:
integrity: sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=
- /twig/1.15.3:
+ /twig/1.15.4:
dependencies:
'@babel/runtime': 7.12.5
locutus: 2.0.14
@@ -22009,7 +24828,7 @@ packages:
node: '>=8.16'
hasBin: true
resolution:
- integrity: sha512-ePfzzS7vzzn/Kb8vs/IkCvCNZltBPeBW8B/1blN/Bxh5ubxnZEGI5ysgr8t1Dr0/We9ahLDfqC78fNzDvCMkpw==
+ integrity: sha512-gRpGrpdf+MswqF6eSjEdYZTa/jt3ZWHK/NU59IbTYJMBQXJ1W+7IxaGEwLkQjd+mNT15j9sQTzQumxUBkuQueQ==
/type-check/0.3.2:
dependencies:
prelude-ls: 1.1.2
@@ -22038,6 +24857,12 @@ packages:
node: '>=8'
resolution:
integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==
+ /type-fest/0.13.1:
+ dev: false
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==
/type-fest/0.15.1:
dev: false
engines:
@@ -22097,22 +24922,22 @@ packages:
dev: false
resolution:
integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
- /ua-parser-js/0.7.22:
+ /ua-parser-js/0.7.23:
dev: false
resolution:
- integrity: sha512-YUxzMjJ5T71w6a8WWVcMGM6YWOTX27rCoIQgLXiWaxqXSx9D7DNjiGWn1aJIRSQ5qr0xuhra77bSIh6voR/46Q==
+ integrity: sha512-m4hvMLxgGHXG3O3fQVAyyAQpZzDOvwnhOTjYz5Xmr7r/+LpkNy3vJXdVRWgd1TkAb7NGROZuSy96CrlNVjA7KA==
/uc.micro/1.0.6:
dev: false
resolution:
integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==
- /uglify-js/3.11.6:
+ /uglify-js/3.12.2:
dev: false
engines:
node: '>=0.8.0'
hasBin: true
optional: true
resolution:
- integrity: sha512-oASI1FOJ7BBFkSCNDZ446EgkSuHkOZBuqRFrwXIKWCoXw8ZXQETooTQjkAcBS03Acab7ubCKsXnwuV2svy061g==
+ integrity: sha512-rWYleAvfJPjduYCt+ELvzybNah/zIkRteGXIBO8X0lteRZPGladF61hFi8tU7qKTsF7u6DUQCtT9k00VlFOgkg==
/ultron/1.1.1:
dev: false
resolution:
@@ -22213,7 +25038,7 @@ packages:
extend: 3.0.2
is-plain-obj: 2.1.0
trough: 1.0.5
- vfile: 4.2.0
+ vfile: 4.2.1
dev: false
resolution:
integrity: sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==
@@ -22224,7 +25049,7 @@ packages:
is-buffer: 2.0.5
is-plain-obj: 2.1.0
trough: 1.0.5
- vfile: 4.2.0
+ vfile: 4.2.1
dev: false
resolution:
integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==
@@ -22280,7 +25105,7 @@ packages:
integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==
/unist-util-find-all-after/3.0.2:
dependencies:
- unist-util-is: 4.0.3
+ unist-util-is: 4.0.4
dev: false
resolution:
integrity: sha512-xaTC/AGZ0rIM2gM28YVRAFPIZpzbpDtU3dRmp7EXlNVA8ziQc4hY3H7BHXM1J49nEmiqc3svnqMReW+PGqbZKQ==
@@ -22292,10 +25117,10 @@ packages:
dev: false
resolution:
integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==
- /unist-util-is/4.0.3:
+ /unist-util-is/4.0.4:
dev: false
resolution:
- integrity: sha512-bTofCFVx0iQM8Jqb1TBDVRIQW03YkD3p66JOd/aCWuqzlLyUtx1ZAGw/u+Zw+SttKvSVcvTiKYbfrtLoLefykw==
+ integrity: sha512-3dF39j/u423v4BBQrk1AQ2Ve1FxY5W3JKwXxVFzBODQ6WEvccguhgp802qQLKSnxPODE6WuRZtV+ohlUg4meBA==
/unist-util-position/3.1.0:
dev: false
resolution:
@@ -22314,7 +25139,7 @@ packages:
integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==
/unist-util-remove/2.0.1:
dependencies:
- unist-util-is: 4.0.3
+ unist-util-is: 4.0.4
dev: false
resolution:
integrity: sha512-YtuetK6o16CMfG+0u4nndsWpujgsHDHHLyE0yGpJLLn5xSjKeyGyzEBOI2XbmoUHCYabmNgX52uxlWoQhcvR7Q==
@@ -22333,7 +25158,7 @@ packages:
/unist-util-visit-parents/3.1.1:
dependencies:
'@types/unist': 2.0.3
- unist-util-is: 4.0.3
+ unist-util-is: 4.0.4
dev: false
resolution:
integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==
@@ -22346,11 +25171,15 @@ packages:
/unist-util-visit/2.0.3:
dependencies:
'@types/unist': 2.0.3
- unist-util-is: 4.0.3
+ unist-util-is: 4.0.4
unist-util-visit-parents: 3.1.1
dev: false
resolution:
integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==
+ /universal-user-agent/6.0.0:
+ dev: false
+ resolution:
+ integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==
/universalify/0.1.2:
dev: false
engines:
@@ -22428,6 +25257,27 @@ packages:
node: '>=8'
resolution:
integrity: sha512-Yld6Z0RyCYGB6ckIjffGOSOmHXj1gMeE7aROz4MG+XMkmixBX4jUngrGXNYz7wPKBmtoD4MnBa2Anu7RSKht/A==
+ /update-notifier/5.0.1:
+ dependencies:
+ boxen: 4.2.0
+ chalk: 4.1.0
+ configstore: 5.0.1
+ has-yarn: 2.1.0
+ import-lazy: 2.1.0
+ is-ci: 2.0.0
+ is-installed-globally: 0.3.2
+ is-npm: 5.0.0
+ is-yarn-global: 0.3.0
+ latest-version: 5.1.0
+ pupa: 2.1.1
+ semver: 7.3.4
+ semver-diff: 3.1.1
+ xdg-basedir: 4.0.0
+ dev: false
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-BuVpRdlwxeIOvmc32AGYvO1KVdPlsmqSh8KDDBxS6kDE5VR7R8OMP1d8MdhaVBvxl4H3551k9akXr0Y1iIB2Wg==
/uri-js/4.4.0:
dependencies:
punycode: 2.1.1
@@ -22442,7 +25292,7 @@ packages:
/url-loader/1.1.2_webpack@4.44.2:
dependencies:
loader-utils: 1.4.0
- mime: 2.4.6
+ mime: 2.4.7
schema-utils: 1.0.0
webpack: 4.44.2
dev: false
@@ -22536,6 +25386,15 @@ packages:
react: ^16.8.0 || ^17.0.0
resolution:
integrity: sha512-my1lNHGWsSDAhhVAT4MKs6IjBUtG6ZG11uUqexPH9PptiIZDQOzaF4f5tEbJ2+7qvNbtXNBbU3SfmN+fXlWDhg==
+ /use-composed-ref/1.1.0_react@17.0.1:
+ dependencies:
+ react: 17.0.1
+ ts-essentials: 2.0.12
+ dev: false
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ resolution:
+ integrity: sha512-my1lNHGWsSDAhhVAT4MKs6IjBUtG6ZG11uUqexPH9PptiIZDQOzaF4f5tEbJ2+7qvNbtXNBbU3SfmN+fXlWDhg==
/use-isomorphic-layout-effect/1.1.0_react@16.14.0:
dependencies:
react: 16.14.0
@@ -22548,6 +25407,18 @@ packages:
optional: true
resolution:
integrity: sha512-kady5Z1O1qx5RitodCCKbpJSVEtECXYcnBnb5Q48Bz5V6gBmTu85ZcGdVwVFs8+DaOurNb/L5VdGHoQRMknghw==
+ /use-isomorphic-layout-effect/1.1.0_react@17.0.1:
+ dependencies:
+ react: 17.0.1
+ dev: false
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ resolution:
+ integrity: sha512-kady5Z1O1qx5RitodCCKbpJSVEtECXYcnBnb5Q48Bz5V6gBmTu85ZcGdVwVFs8+DaOurNb/L5VdGHoQRMknghw==
/use-latest/1.2.0_react@16.14.0:
dependencies:
react: 16.14.0
@@ -22561,19 +25432,25 @@ packages:
optional: true
resolution:
integrity: sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==
+ /use-latest/1.2.0_react@17.0.1:
+ dependencies:
+ react: 17.0.1
+ use-isomorphic-layout-effect: 1.1.0_react@17.0.1
+ dev: false
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ resolution:
+ integrity: sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==
/use/3.1.1:
dev: false
engines:
node: '>=0.10.0'
resolution:
integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
- /utf-8-validate/5.0.3:
- dependencies:
- node-gyp-build: 4.2.3
- dev: false
- requiresBuild: true
- resolution:
- integrity: sha512-jtJM6fpGv8C1SoH4PtG22pGto6x+Y8uPprW0tw3//gGFhDDTiuksgradgFN6yRayDP4SyZZa6ZMGHLIa17+M8A==
/utif/2.0.1:
dependencies:
pako: 1.0.11
@@ -22587,7 +25464,7 @@ packages:
/util.promisify/1.0.0:
dependencies:
define-properties: 1.1.3
- object.getownpropertydescriptors: 2.1.0
+ object.getownpropertydescriptors: 2.1.1
dev: false
resolution:
integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==
@@ -22596,7 +25473,7 @@ packages:
define-properties: 1.1.3
es-abstract: 1.17.7
has-symbols: 1.0.1
- object.getownpropertydescriptors: 2.1.0
+ object.getownpropertydescriptors: 2.1.1
dev: false
resolution:
integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==
@@ -22633,11 +25510,16 @@ packages:
hasBin: true
resolution:
integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
- /uuid/8.3.1:
+ /uuid/7.0.3:
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==
+ /uuid/8.3.2:
dev: false
hasBin: true
resolution:
- integrity: sha512-FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg==
+ integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
/v8-compile-cache/1.1.2:
dev: false
resolution:
@@ -22706,16 +25588,15 @@ packages:
dev: false
resolution:
integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==
- /vfile/4.2.0:
+ /vfile/4.2.1:
dependencies:
'@types/unist': 2.0.3
is-buffer: 2.0.5
- replace-ext: 1.0.0
unist-util-stringify-position: 2.0.3
vfile-message: 2.0.4
dev: false
resolution:
- integrity: sha512-a/alcwCvtuc8OX92rqqo7PflxiCgXRFjdyoGVuYV+qbgCb0GgZJRvIgCD4+U/Kl1yhaRsaTwksF88xbPyGsgpw==
+ integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==
/vinyl-fs/3.0.3:
dependencies:
fs-mkdirp-stream: 1.0.0
@@ -22793,16 +25674,16 @@ packages:
dev: false
resolution:
integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
- /vscode-json-languageservice/3.10.0:
+ /vscode-json-languageservice/3.11.0:
dependencies:
- jsonc-parser: 2.3.1
+ jsonc-parser: 3.0.0
vscode-languageserver-textdocument: 1.0.1
vscode-languageserver-types: 3.16.0-next.2
vscode-nls: 5.0.0
vscode-uri: 2.1.2
dev: false
resolution:
- integrity: sha512-8IvuRSQnjznu+obqy6Dy4S4H68Ke7a3Kb+A0FcdctyAMAWEnrORpCpMOMqEYiPLm/OTYLVWJ7ql3qToDTozu4w==
+ integrity: sha512-QxI+qV97uD7HHOCjh3MrM1TfbdwmTXrMckri5Tus1/FQiG3baDZb2C9Y0y8QThs7PwHYBIQXcAc59ZveCRZKPA==
/vscode-languageserver-textdocument/1.0.1:
dev: false
resolution:
@@ -22870,10 +25751,10 @@ packages:
dev: false
resolution:
integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==
- /webpack-dev-middleware/3.7.2_webpack@4.44.2:
+ /webpack-dev-middleware/3.7.3_webpack@4.44.2:
dependencies:
memory-fs: 0.4.1
- mime: 2.4.6
+ mime: 2.4.7
mkdirp: 0.5.5
range-parser: 1.2.1
webpack: 4.44.2
@@ -22882,9 +25763,9 @@ packages:
engines:
node: '>= 6'
peerDependencies:
- webpack: ^4.0.0
+ webpack: ^4.0.0 || ^5.0.0
resolution:
- integrity: sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==
+ integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==
/webpack-dev-server/3.11.0_webpack@4.44.2:
dependencies:
ansi-html: 0.0.7
@@ -22892,17 +25773,17 @@ packages:
chokidar: 2.1.8
compression: 1.7.4
connect-history-api-fallback: 1.6.0
- debug: 4.2.0_supports-color@6.1.0
+ debug: 4.3.1_supports-color@6.1.0
del: 4.1.1
express: 4.17.1
- html-entities: 1.3.1
- http-proxy-middleware: 0.19.1
+ html-entities: 1.3.3
+ http-proxy-middleware: 0.19.1_debug@4.3.1
import-local: 2.0.0
internal-ip: 4.3.0
ip: 1.1.5
is-absolute-url: 3.0.3
killable: 1.0.1
- loglevel: 1.7.0
+ loglevel: 1.7.1
opn: 5.5.0
p-retry: 3.0.1
portfinder: 1.0.28
@@ -22917,7 +25798,7 @@ packages:
supports-color: 6.1.0
url: 0.11.0
webpack: 4.44.2
- webpack-dev-middleware: 3.7.2_webpack@4.44.2
+ webpack-dev-middleware: 3.7.3_webpack@4.44.2
webpack-log: 2.0.0
ws: 6.2.1
yargs: 13.3.2
@@ -22933,10 +25814,20 @@ packages:
optional: true
resolution:
integrity: sha512-PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg==
+ /webpack-filter-warnings-plugin/1.2.1_webpack@4.44.2:
+ dependencies:
+ webpack: 4.44.2
+ dev: false
+ engines:
+ node: '>= 4.3 < 5.0.0 || >= 5.10'
+ peerDependencies:
+ webpack: ^2.0.0 || ^3.0.0 || ^4.0.0
+ resolution:
+ integrity: sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==
/webpack-hot-middleware/2.25.0:
dependencies:
ansi-html: 0.0.7
- html-entities: 1.3.1
+ html-entities: 1.3.3
querystring: 0.2.0
strip-ansi: 3.0.1
dev: false
@@ -22983,7 +25874,7 @@ packages:
integrity: sha512-kxEtPQ6lBBik2qtJlsZkiaDMI6rGXe9w1kLH9ZCdt0wgCGVnbwwPlP60cMqG6tILNFYqXDxNt4+c4OIIuE+Fnw==
/webpack-virtual-modules/0.2.2:
dependencies:
- debug: 3.2.6
+ debug: 3.2.7
dev: false
resolution:
integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==
@@ -23050,19 +25941,6 @@ packages:
node: '>=0.8.0'
resolution:
integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==
- /websocket/1.0.32:
- dependencies:
- bufferutil: 4.0.2
- debug: 2.6.9
- es5-ext: 0.10.53
- typedarray-to-buffer: 3.1.5
- utf-8-validate: 5.0.3
- yaeti: 0.0.6
- dev: false
- engines:
- node: '>=4.0.0'
- resolution:
- integrity: sha512-i4yhcllSP4wrpoPMU2N0TQ/q0O94LRG/eUQjEAamRltjQ1oT1PFFKOG4i877OlJgCG8rw6LrrowJp+TYCEWF7Q==
/whatwg-fetch/3.5.0:
dev: false
resolution:
@@ -23097,7 +25975,7 @@ packages:
integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
/wide-align/1.1.3:
dependencies:
- string-width: 2.1.1
+ string-width: 1.0.2
dev: false
resolution:
integrity: sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==
@@ -23109,16 +25987,6 @@ packages:
node: '>=8'
resolution:
integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==
- /with-open-file/0.1.7:
- dependencies:
- p-finally: 1.0.0
- p-try: 2.2.0
- pify: 4.0.1
- dev: false
- engines:
- node: '>=6'
- resolution:
- integrity: sha512-ecJS2/oHtESJ1t3ZfMI3B7KIDKyfN0O16miWxdn30zdh66Yd3LsRFebXZXq6GU4xfxLf6nVxp9kIqElb5fqczA==
/word-wrap/1.2.3:
dev: false
engines:
@@ -23250,7 +26118,7 @@ packages:
integrity: sha512-C5gWKh6I58w3GeSc0wp2Ne+rqVw8qwcmZnQGpjiek8A2wpbxSJb1FdCoQVO+jDJs35bFgo/WETgl1fqgsxN0Hg==
/worker-farm/1.7.0:
dependencies:
- errno: 0.1.7
+ errno: 0.1.8
dev: false
resolution:
integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
@@ -23269,6 +26137,15 @@ packages:
node: '>=0.10.0'
resolution:
integrity: sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=
+ /wrap-ansi/3.0.1:
+ dependencies:
+ string-width: 2.1.1
+ strip-ansi: 4.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=
/wrap-ansi/5.1.0:
dependencies:
ansi-styles: 3.2.1
@@ -23289,6 +26166,16 @@ packages:
node: '>=8'
resolution:
integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
+ /wrap-ansi/7.0.0:
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.0
+ strip-ansi: 6.0.0
+ dev: false
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
/wrappy/1.0.2:
dev: false
resolution:
@@ -23326,12 +26213,6 @@ packages:
dev: false
resolution:
integrity: sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==
- /ws/5.2.2:
- dependencies:
- async-limiter: 1.0.1
- dev: false
- resolution:
- integrity: sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==
/ws/6.1.4:
dependencies:
async-limiter: 1.0.1
@@ -23344,7 +26225,7 @@ packages:
dev: false
resolution:
integrity: sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==
- /ws/7.4.0:
+ /ws/7.4.1:
dev: false
engines:
node: '>=8.3.0'
@@ -23357,22 +26238,22 @@ packages:
utf-8-validate:
optional: true
resolution:
- integrity: sha512-kyFwXuV/5ymf+IXhS6f0+eAFvydbaBW3zjpT6hUdAh/hbVjTIB5EHBGi0bPoCLSK2wcuz3BrEkB9LrYv1Nm4NQ==
+ integrity: sha512-pTsP8UAfhy3sk1lSk/O/s4tjD0CRwvMnzvwr4OKGX7ZvqZtUyx4KIJB5JWbkykPoc55tixMGgTNoh3k4FkNGFQ==
/xdg-basedir/4.0.0:
dev: false
engines:
node: '>=8'
resolution:
integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==
- /xhr/2.5.0:
+ /xhr/2.6.0:
dependencies:
- global: 4.3.2
+ global: 4.4.0
is-function: 1.0.2
parse-headers: 2.0.3
xtend: 4.0.2
dev: false
resolution:
- integrity: sha512-4nlO/14t3BNUZRXIXfXe+3N6w3s1KoxcJUUURctd64BLRe67E4gRwp4PjywtDY72fXpZ1y6Ch0VZQRY/gMPzzQ==
+ integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==
/xml-parse-from-string/1.0.1:
dev: false
resolution:
@@ -23386,6 +26267,12 @@ packages:
node: '>=4.0.0'
resolution:
integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==
+ /xmlbuilder/10.1.1:
+ dev: false
+ engines:
+ node: '>=4.0'
+ resolution:
+ integrity: sha512-OyzrcFLL/nb6fMGHbiRDuPup9ljBycsdCypwuyg5AAHvyWzGfChJpCXMG88AGTIMFhGZ9RccFN1e6lhg3hkwKg==
/xmlbuilder/11.0.1:
dev: false
engines:
@@ -23408,10 +26295,10 @@ packages:
hasBin: true
resolution:
integrity: sha512-3MgPdaXV8rfQ/pNn16Eio6VXYPTkqwa0vc7GkiymmY/DqR1SE/7VPAAVZz1GJsJFrllMYO3RHfEaiUGjab6TNw==
- /xstate/4.14.0:
+ /xstate/4.15.1:
dev: false
resolution:
- integrity: sha512-nz+T5rlPl0Vu1L9NZdI7JYVq57k/pKpyLwmztqgcj/HqUVsopnMKBP6cQJCb4Op9TC8kffyJSMwHDFthuRpooQ==
+ integrity: sha512-8dD/GnTwxUuDr/cY42vi+Enu4mpbuUXWISYJ0a9BC+cIFvqufJsepyDLS6lLsznfUP0GS5Yx9m3IQWFhAoGt/A==
/xtend/4.0.2:
dev: false
engines:
@@ -23422,16 +26309,16 @@ packages:
dev: false
resolution:
integrity: sha1-bRX7qITAhnnA136I53WegR4H+kE=
- /y18n/4.0.0:
+ /y18n/4.0.1:
dev: false
resolution:
- integrity: sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
- /yaeti/0.0.6:
+ integrity: sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==
+ /y18n/5.0.5:
dev: false
engines:
- node: '>=0.10.32'
+ node: '>=10'
resolution:
- integrity: sha1-8m9ITXJoTPQr7ft2lwqhYI+/lXc=
+ integrity: sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==
/yallist/2.1.2:
dev: false
resolution:
@@ -23498,7 +26385,7 @@ packages:
set-blocking: 2.0.0
string-width: 3.1.0
which-module: 2.0.0
- y18n: 4.0.0
+ y18n: 4.0.1
yargs-parser: 13.1.2
dev: false
resolution:
@@ -23513,7 +26400,7 @@ packages:
set-blocking: 2.0.0
string-width: 3.1.0
which-module: 2.0.0
- y18n: 4.0.0
+ y18n: 4.0.1
yargs-parser: 13.1.2
dev: false
resolution:
@@ -23529,13 +26416,27 @@ packages:
set-blocking: 2.0.0
string-width: 4.2.0
which-module: 2.0.0
- y18n: 4.0.0
+ y18n: 4.0.1
yargs-parser: 18.1.3
dev: false
engines:
node: '>=8'
resolution:
integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
+ /yargs/16.2.0:
+ dependencies:
+ cliui: 7.0.4
+ escalade: 3.1.1
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ string-width: 4.2.0
+ y18n: 5.0.5
+ yargs-parser: 20.2.4
+ dev: false
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
/yargs/7.1.1:
dependencies:
camelcase: 3.0.0
@@ -23554,6 +26455,16 @@ packages:
dev: false
resolution:
integrity: sha512-huO4Fr1f9PmiJJdll5kwoS2e4GqzGSsMT3PPMpOwoVkOK8ckqAewMTZyA6LXVQWflleb/Z8oPBEvNsMft0XE+g==
+ /yarn-or-npm/3.0.1:
+ dependencies:
+ cross-spawn: 6.0.5
+ pkg-dir: 4.2.0
+ dev: false
+ engines:
+ node: '>=8.6.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-fTiQP6WbDAh5QZAVdbMQkecZoahnbOjClTQhzv74WX5h2Uaidj1isf9FDes11TKtsZ0/ZVfZsqZ+O3x6aLERHQ==
/yauzl/2.10.0:
dependencies:
buffer-crc32: 0.2.13
@@ -23571,6 +26482,12 @@ packages:
node: '>=6'
resolution:
integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==
+ /yocto-queue/0.1.0:
+ dev: false
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
/yoga-layout-prebuilt/1.10.0:
dependencies:
'@types/yoga-layout': 1.9.2
@@ -23584,7 +26501,7 @@ packages:
babel-runtime: 6.26.0
chalk: 2.4.2
cli-table3: 0.5.1
- debug: 4.2.0
+ debug: 4.3.1
deep-equal: 1.1.1
detect-indent: 6.0.0
inquirer: 7.3.3
@@ -23611,20 +26528,20 @@ packages:
integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==
'file:projects/mayflower-assets.tgz':
dependencies:
- '@babel/core': 7.12.3
- '@babel/preset-env': 7.12.1_@babel+core@7.12.3
+ '@babel/core': 7.12.10
+ '@babel/preset-env': 7.12.11_@babel+core@7.12.10
babel-plugin-remove-import-export: 1.1.1
babel-plugin-rewire-exports: 2.2.0
del: 6.0.0
gulp: 4.0.2
- gulp-babel: 8.0.0_@babel+core@7.12.3
+ gulp-babel: 8.0.0_@babel+core@7.12.10
gulp-concat: 2.6.1
gulp-rename: 2.0.0
gulp-sass: 4.1.0
gulp-terser: 1.4.1
jquery: 3.5.1
normalize-scss: 7.0.1
- sass: 1.27.2
+ sass: 1.30.0
stylelint: 13.8.0
stylelint-config-recommended: 3.0.0_stylelint@13.8.0
stylelint-config-recommended-scss: 4.2.0_ecb35a9753d1cb8d84508f1c383a41ff
@@ -23632,84 +26549,127 @@ packages:
dev: false
name: '@rush-temp/mayflower-assets'
resolution:
- integrity: sha512-r7nN+yaJoaMczq+3vupgcJ0w1Y5gtc+RNQghZ1Vz7zTcUzHPkHhljJtf3nsKvmX3XpiyMvLzxuJYxXISMNVXFQ==
+ integrity: sha512-gz7E36db8I9crnNlSBNGOIyOuiTag0+QXdT7SwmMBMsBx0ReWkHBQr8O8zNrfmnH/Xz34roaxF6Uev0Ao2zC9w==
tarball: 'file:projects/mayflower-assets.tgz'
version: 0.0.0
- 'file:projects/mayflower-react.tgz':
- dependencies:
- '@babel/cli': 7.12.1_@babel+core@7.12.3
- '@babel/core': 7.12.3
- '@babel/parser': 7.12.5
- '@babel/plugin-proposal-class-properties': 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-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.5_@babel+core@7.12.3
+ 'file:projects/mayflower-core.tgz_d904222d91dd332e1a97e8de0ecc6d4e':
+ dependencies:
+ '@babel/core': 7.12.10
+ '@storybook/addon-actions': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/addon-docs': 6.1.11_31893369a904e829e804da5cdd24ea59
+ '@storybook/addon-links': 6.1.11_react-dom@17.0.1+react@17.0.1
+ '@storybook/cli': 6.1.11
+ '@storybook/node-logger': 6.1.11
+ '@storybook/preset-scss': 1.0.3_86e6589ad1641e1eae393e6536006f06
+ '@storybook/react': 6.1.11_4499d4579d0b01cd4dafe75021a29d9f
+ babel-eslint: 10.1.0_eslint@7.15.0
+ babel-loader: 8.2.2_cb0b35cdd86d43ae111e54bfa48070d7
+ chromatic: 5.3.0_@babel+core@7.12.10
+ eslint: 7.15.0
+ eslint-config-airbnb: 18.2.1_82dacb0a2a81988b908259ac316079e5
+ eslint-import-resolver-alias: 1.1.2_eslint-plugin-import@2.22.1
+ eslint-import-resolver-babel-module: 5.2.0_5332d3de48a0e1d3b6a06f3b329b80fc
+ eslint-import-resolver-custom-alias: 1.2.0_eslint-plugin-import@2.22.1
+ eslint-loader: 4.0.2_eslint@7.15.0+webpack@4.44.2
+ eslint-plugin-import: 2.22.1_eslint@7.15.0
+ eslint-plugin-jsx-a11y: 6.4.1_eslint@7.15.0
+ eslint-plugin-react: 7.21.5_eslint@7.15.0
+ eslint-plugin-react-hooks: 2.5.1_eslint@7.15.0
+ prettier: 2.2.1
+ prop-types: 15.7.2
+ react: 17.0.1
+ react-dom: 17.0.1_react@17.0.1
+ react-is: 16.13.1
+ sass: 1.30.0
+ sass-loader: 10.0.5_sass@1.30.0+webpack@4.44.2
+ url-loader: 4.1.1_webpack@4.44.2
+ dev: false
+ id: 'file:projects/mayflower-core.tgz'
+ name: '@rush-temp/mayflower-core'
+ peerDependencies:
+ babel-plugin-module-resolver: '*'
+ css-loader: '*'
+ style-loader: '*'
+ webpack: '*'
+ resolution:
+ integrity: sha512-7qChR3wRRBUSbMC6b0K+NH/Ydu/Z+2et7WcKan3t+cWaV2AocON9QhS0Fd/au/SgFBLrwrg7qH9ElX71Q9FOlQ==
+ tarball: 'file:projects/mayflower-core.tgz'
+ version: 0.0.0
+ 'file:projects/mayflower-react.tgz_react-is@16.13.1':
+ dependencies:
+ '@babel/cli': 7.12.10_@babel+core@7.12.10
+ '@babel/core': 7.12.10
+ '@babel/parser': 7.12.11
+ '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-export-default-from': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.10
+ '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.10
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.10
+ '@babel/plugin-transform-runtime': 7.12.10_@babel+core@7.12.10
+ '@babel/preset-env': 7.12.11_@babel+core@7.12.10
+ '@babel/preset-react': 7.12.10_@babel+core@7.12.10
'@proscom/gulp-svgr': 0.1.5
- '@storybook/addon-a11y': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/addon-actions': 6.0.28_react-dom@16.14.0
- '@storybook/addon-controls': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/addon-docs': 6.0.28_906d2630cd406e3c0a61bb9152b26dc1
- '@storybook/addon-links': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/addon-storysource': 6.0.28_react-dom@16.14.0
- '@storybook/addon-viewport': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/addons': 6.0.28_react-dom@16.14.0+react@16.14.0
- '@storybook/cli': 6.0.28
- '@storybook/codemod': 6.0.28
- '@storybook/preset-scss': 1.0.3_676d7bba63aef161cee7df81d55967e5
- '@storybook/react': 6.0.28_e022e2c0e03c001c1fe6c7d1c978ba75
- '@storybook/source-loader': 6.0.28_react-dom@16.14.0+react@16.14.0
+ '@storybook/addon-a11y': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/addon-actions': 6.0.21_react-dom@16.14.0
+ '@storybook/addon-controls': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/addon-docs': 6.0.21_68787581c8a175dc46973c49b400b292
+ '@storybook/addon-links': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/addon-storysource': 6.0.21_react-dom@16.14.0
+ '@storybook/addon-viewport': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/addons': 6.0.21_react-dom@16.14.0+react@16.14.0
+ '@storybook/cli': 6.0.21
+ '@storybook/codemod': 6.0.21
+ '@storybook/preset-scss': 1.0.2_676d7bba63aef161cee7df81d55967e5
+ '@storybook/react': 6.0.21_ad73ffc78ffa321d3138a4dec023a174
+ '@storybook/source-loader': 6.0.21_react-dom@16.14.0+react@16.14.0
'@svgr/cli': 5.5.0
'@svgr/plugin-jsx': 5.5.0
'@svgr/webpack': 5.5.0
airbnb-prop-types: 2.16.0_react@16.14.0
autosuggest-highlight: 3.1.1
b-jsonp: 1.2.0
- babel-eslint: 10.1.0_eslint@7.13.0
- babel-loader: 8.2.1_427212bc1158d185e577033f19ca0757
+ babel-eslint: 10.1.0_eslint@7.15.0
+ babel-loader: 8.2.2_cb0b35cdd86d43ae111e54bfa48070d7
babel-plugin-add-module-exports: 1.0.4
babel-plugin-dynamic-import-node: 2.3.3
- babel-plugin-module-resolver: 4.0.0
+ babel-plugin-module-resolver: 4.1.0
babel-plugin-transform-import-paths: 1.0.3
babel-plugin-transform-imports: 2.0.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
- babel-preset-proposals: 0.3.0_@babel+core@7.12.3
+ babel-preset-proposals: 0.3.0_@babel+core@7.12.10
classnames: 2.2.6
cross-env: 5.2.1
css-loader: 3.6.0_webpack@4.44.2
del: 6.0.0
dom-helpers: 3.4.0
env-cmd: 10.1.0
- eslint: 7.13.0
- eslint-config-airbnb: 18.2.1_1ba96e5057f09441420006a53a4a64be
+ eslint: 7.15.0
+ eslint-config-airbnb: 18.2.1_82dacb0a2a81988b908259ac316079e5
eslint-import-resolver-alias: 1.1.2_eslint-plugin-import@2.22.1
- eslint-import-resolver-babel-module: 5.2.0_c29e6beeb245c629047b173ad0d8d907
+ eslint-import-resolver-babel-module: 5.2.0_5332d3de48a0e1d3b6a06f3b329b80fc
eslint-import-resolver-custom-alias: 1.2.0_eslint-plugin-import@2.22.1
- eslint-loader: 4.0.2_eslint@7.13.0+webpack@4.44.2
- eslint-plugin-import: 2.22.1_eslint@7.13.0
- eslint-plugin-jsx-a11y: 6.4.1_eslint@7.13.0
- eslint-plugin-react: 7.21.5_eslint@7.13.0
- eslint-plugin-react-hooks: 2.5.1_eslint@7.13.0
+ eslint-loader: 4.0.2_eslint@7.15.0+webpack@4.44.2
+ eslint-plugin-import: 2.22.1_eslint@7.15.0
+ eslint-plugin-jsx-a11y: 6.4.1_eslint@7.15.0
+ eslint-plugin-react: 7.21.5_eslint@7.15.0
+ eslint-plugin-react-hooks: 2.5.1_eslint@7.15.0
fuse.js: 3.6.1
gulp: 4.0.2
- gulp-babel: 8.0.0_@babel+core@7.12.3
+ gulp-babel: 8.0.0_@babel+core@7.12.10
gulp-rename: 2.0.0
gulp-run-command: 0.0.10
is: 3.3.0
- jscodeshift: 0.10.0_@babel+preset-env@7.12.1
+ jscodeshift: 0.10.0_@babel+preset-env@7.12.11
markdown-it: 10.0.0
mini-css-extract-plugin: 1.1.2_webpack@4.44.2
moment: 2.29.1
normalize-scss: 7.0.1
npm-run-all: 4.1.5
numbro: 2.3.2
- object.entries: 1.1.2
+ object.entries: 1.1.3
pikaday: 1.8.2
pre-push: 0.1.1
- prettier: 2.1.2
+ prettier: 2.2.1
prop-types: 15.7.2
react: 16.14.0
react-autosuggest: 9.4.3_react@16.14.0
@@ -23723,45 +26683,48 @@ packages:
react-table: 6.11.5_0106054ed56650b7cf08997e12b36ef5
react-transition-group: 2.9.0_react-dom@16.14.0+react@16.14.0
react-virtualized: 9.22.2_react-dom@16.14.0+react@16.14.0
- sass: 1.29.0
- sass-loader: 8.0.2_sass@1.29.0+webpack@4.44.2
+ sass: 1.30.0
+ sass-loader: 8.0.2_sass@1.30.0+webpack@4.44.2
shortid: 2.2.16
style-loader: 1.3.0_webpack@4.44.2
url-loader: 4.1.1_webpack@4.44.2
webpack: 4.44.2
dev: false
+ id: 'file:projects/mayflower-react.tgz'
name: '@rush-temp/mayflower-react'
+ peerDependencies:
+ react-is: '*'
resolution:
- integrity: sha512-0QoI2D1RjTI05LdScUALav7c4gJh31lcx6wqQ/IHHyUg6sKOsAcfX2kR2JSbQp1b8dQbtriLvqfcqptFHZZf3w==
+ integrity: sha512-K6aYyjAmI10pJYSYmpI5jhULxo8tJ2dk1OpPPa69lkBpBRuwft4N5FZPMeLxSc6yPIksONmMmm1XonhNxTA/Xg==
tarball: 'file:projects/mayflower-react.tgz'
version: 0.0.0
'file:projects/mayflower-site.tgz_13fe6053c740dc31e0c47613a4f26462':
dependencies:
- babel-eslint: 10.1.0_eslint@7.13.0
+ babel-eslint: 10.1.0_eslint@7.15.0
bootstrap: 4.5.3_jquery@3.5.1
classname: 0.0.0
- core-js: 3.7.0
- cross-env: 7.0.2
+ core-js: 3.8.1
+ cross-env: 7.0.3
dotenv: 8.2.0
- eslint: 7.13.0
- eslint-config-airbnb: 18.2.1_1ba96e5057f09441420006a53a4a64be
- eslint-loader: 4.0.2_eslint@7.13.0+webpack@4.44.2
- eslint-plugin-import: 2.22.1_eslint@7.13.0
+ eslint: 7.15.0
+ eslint-config-airbnb: 18.2.1_82dacb0a2a81988b908259ac316079e5
+ eslint-loader: 4.0.2_eslint@7.15.0+webpack@4.44.2
+ eslint-plugin-import: 2.22.1_eslint@7.15.0
eslint-plugin-json: 1.4.0
- eslint-plugin-jsx-a11y: 6.4.1_eslint@7.13.0
- eslint-plugin-react: 7.21.5_eslint@7.13.0
+ eslint-plugin-jsx-a11y: 6.4.1_eslint@7.15.0
+ eslint-plugin-react: 7.21.5_eslint@7.15.0
esm: 3.2.25
gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0
- gatsby-image: 2.5.0
- gatsby-plugin-manifest: 2.6.1_gatsby@2.25.4
- gatsby-plugin-offline: 3.4.0_gatsby@2.25.4
+ gatsby-image: 2.8.0
+ gatsby-plugin-manifest: 2.9.0_gatsby@2.25.4
+ gatsby-plugin-offline: 3.7.0_gatsby@2.25.4
gatsby-plugin-pnpm: 1.2.5_gatsby@2.25.4
- gatsby-plugin-react-helmet: 3.4.0_gatsby@2.25.4+react-helmet@5.2.1
- gatsby-plugin-sass: 2.5.1_gatsby@2.25.4+webpack@4.44.2
- gatsby-plugin-sharp: 2.8.0_gatsby@2.25.4
- gatsby-source-filesystem: 2.5.0_gatsby@2.25.4
- gatsby-transformer-json: 2.5.0_gatsby@2.25.4
- gatsby-transformer-sharp: 2.6.0_10b77ea86b4a1cd7f6aa12445c9bbb71
+ gatsby-plugin-react-helmet: 3.7.0_gatsby@2.25.4+react-helmet@5.2.1
+ gatsby-plugin-sass: 2.8.0_gatsby@2.25.4+webpack@4.44.2
+ gatsby-plugin-sharp: 2.11.1_gatsby@2.25.4
+ gatsby-source-filesystem: 2.8.0_gatsby@2.25.4
+ gatsby-transformer-json: 2.8.0_gatsby@2.25.4
+ gatsby-transformer-sharp: 2.9.0_45bf498f67fe6e8dcb4a621c3106a185
prettier: 1.19.1
prop-types: 15.7.2
react: 16.14.0
@@ -23769,7 +26732,7 @@ packages:
react-helmet: 5.2.1_react@16.14.0
react-html-parser: 2.0.2_react@16.14.0
resolve-url-loader: 3.1.2
- sass: 1.29.0
+ sass: 1.30.0
dev: false
id: 'file:projects/mayflower-site.tgz'
name: '@rush-temp/mayflower-site'
@@ -23778,7 +26741,7 @@ packages:
jquery: '*'
webpack: '*'
resolution:
- integrity: sha512-wW0DmhjUfBAO7VNz2WJgg++oVyNRIjjYV2eizGDcyckiy0uD2qxa1mlga/ogVI4ZkQ5TKx8q88+YG7i3OSTpUQ==
+ integrity: sha512-E5KOb03MkXEz89Ob70IO5tE3Gham0u2HXWH5hODjTXSz2csIbuOQf/a6CwZ8/2GBQIMOT1dvTNHolN0svXYCTw==
tarball: 'file:projects/mayflower-site.tgz'
version: 0.0.0
'file:projects/mayflower.tgz':
@@ -23789,12 +26752,12 @@ packages:
browser-sync: 2.26.13
browserify: 16.5.2
child-process-promise: 2.2.1
- core-js: 2.6.11
+ core-js: 2.6.12
del: 6.0.0
disc: 1.3.3
dotenv: 8.2.0
- eslint: 7.13.0
- eslint-plugin-react: 7.21.5_eslint@7.13.0
+ eslint: 7.15.0
+ eslint-plugin-react: 7.21.5_eslint@7.15.0
fitvids: 2.1.1
gulp: 4.0.2
gulp-autoprefixer: 5.0.0
@@ -23818,12 +26781,12 @@ packages:
normalize-scss: 7.0.1
picturefill: 3.0.3
pikaday: 1.8.2
- sass: 1.29.0
+ sass: 1.30.0
smoothscroll-polyfill: 0.4.4
svg4everybody: 2.1.9
terser: 4.8.0
through2: 3.0.2
- twig: 1.15.3
+ twig: 1.15.4
undertaker-registry: 1.0.1
untildify: 4.0.0
url-search-params-polyfill: 5.1.0
@@ -23831,13 +26794,12 @@ packages:
dev: false
name: '@rush-temp/mayflower'
resolution:
- integrity: sha512-da26GVGIkrYUgIQIFAfakQA3caAOBq8l9gPPjHiPeXerJ3j0YmKsHpetC/dVydmsalxK/fap2gojTf0qDfZ6FQ==
+ integrity: sha512-FEwFJMovCJbz36YZHWgSj1Ubtok/M22HJPHfxttUb6HEX6ElQ99KqAJW5USSWaWcKLiy0hkbSeAPiPQUIThW5w==
tarball: 'file:projects/mayflower.tgz'
version: 0.0.0
registry: ''
specifiers:
'@babel/cli': ^7.10.1
- '@babel/core': ~7.12.3
'@babel/parser': ^7.10.2
'@babel/plugin-proposal-class-properties': ^7.10.1
'@babel/plugin-proposal-export-default-from': ^7.8.3
@@ -23849,21 +26811,17 @@ specifiers:
'@proscom/gulp-svgr': ^0.1.3
'@rush-temp/mayflower': 'file:./projects/mayflower.tgz'
'@rush-temp/mayflower-assets': 'file:./projects/mayflower-assets.tgz'
+ '@rush-temp/mayflower-core': 'file:./projects/mayflower-core.tgz'
'@rush-temp/mayflower-react': 'file:./projects/mayflower-react.tgz'
'@rush-temp/mayflower-site': 'file:./projects/mayflower-site.tgz'
- '@storybook/addon-a11y': ^6.0.21
- '@storybook/addon-actions': ^6.0.21
- '@storybook/addon-controls': ^6.0.21
- '@storybook/addon-docs': ^6.0.21
- '@storybook/addon-links': ^6.0.21
- '@storybook/addon-storysource': ^6.0.21
- '@storybook/addon-viewport': ^6.0.21
- '@storybook/addons': ^6.0.21
- '@storybook/cli': ^6.0.21
- '@storybook/codemod': ^6.0.21
- '@storybook/preset-scss': ^1.0.2
- '@storybook/react': ^6.0.21
- '@storybook/source-loader': ^6.0.21
+ '@storybook/addon-a11y': 6.0.21
+ '@storybook/addon-controls': 6.0.21
+ '@storybook/addon-storysource': 6.0.21
+ '@storybook/addon-viewport': 6.0.21
+ '@storybook/addons': 6.0.21
+ '@storybook/codemod': 6.0.21
+ '@storybook/node-logger': ^6.0.26
+ '@storybook/source-loader': 6.0.21
'@svgr/cli': ^5.4.0
'@svgr/plugin-jsx': ^5.4.0
'@svgr/webpack': ^5.4.0
@@ -23888,6 +26846,7 @@ specifiers:
browser-sync: ^2.26.7
browserify: ^16.2.3
child-process-promise: ^2.2.1
+ chromatic: ~5.3.0
classname: ^0.0.0
classnames: ^2.2.6
css-loader: ^3.5.3
@@ -23921,6 +26880,7 @@ specifiers:
gatsby-source-filesystem: ^2.1.46
gatsby-transformer-json: ^2.2.27
gatsby-transformer-sharp: ^2.3.13
+ gulp: ~4.0.2
gulp-autoprefixer: ^5.0.0
gulp-babel: ~8.0.0
gulp-debug: ^4.0.0
@@ -23946,22 +26906,20 @@ specifiers:
object.entries: ^1.0.4
picturefill: ^3.0.3
pre-push: ^0.1.1
- prop-types: ^15.7.2
- react: ^16.13.1
react-autosuggest: ^9.4.3
react-autowhatever: ^10.2.0
react-character-counter: ^1.0.1
react-compound-slider: ^0.19.2
- react-dom: ^16.13.1
react-helmet: ^5.2.1
react-html-parser: ^2.0.2
+ react-is: ^16.13.1
react-portal: ^4.2.0
react-select: ^1.2.1
react-table: ^6.8.6
react-transition-group: ^2.4.0
react-virtualized: ~9.22.2
resolve-url-loader: ^3.1.1
- sass-loader: ^8.0.2
+ sass: ~1.30.0
shortid: ^2.2.8
smoothscroll-polyfill: ^0.4.4
style-loader: ^1.2.1
diff --git a/packages/assets/build/buttons.scss b/packages/assets/build/buttons.scss
new file mode 100644
index 0000000000..0941504914
--- /dev/null
+++ b/packages/assets/build/buttons.scss
@@ -0,0 +1 @@
+@use '01-atoms/buttons';
diff --git a/packages/assets/build/callout-link.scss b/packages/assets/build/callout-link.scss
new file mode 100644
index 0000000000..52ce373e1e
--- /dev/null
+++ b/packages/assets/build/callout-link.scss
@@ -0,0 +1 @@
+@use '02-molecules/callout-link';
diff --git a/packages/assets/build/decorative-link.scss b/packages/assets/build/decorative-link.scss
new file mode 100644
index 0000000000..6a108402ee
--- /dev/null
+++ b/packages/assets/build/decorative-link.scss
@@ -0,0 +1 @@
+@use '01-atoms/decorative-link';
diff --git a/packages/assets/build/scss/header-mixed.scss b/packages/assets/build/scss/header-mixed.scss
deleted file mode 100644
index c807515391..0000000000
--- a/packages/assets/build/scss/header-mixed.scss
+++ /dev/null
@@ -1,41 +0,0 @@
-@use 'header-search';
-
-@use 'main-nav';
-
-@use '01-atoms/decorative-link';
-
-@use '01-atoms/button-with-icon';
-
-@use '01-atoms/button-search';
-
-@use '01-atoms/input-typeahead';
-
-@use '01-atoms/site-logo';
-
-@use '01-atoms/image';
-
-@use '01-atoms/buttons';
-
-@use '01-atoms/svg-icons';
-
-@use '01-atoms/svg-loc-icons';
-
-@use '01-atoms/forms';
-
-
-@use '03-organisms/utility-nav';
-
-@use '03-organisms/utility-panel';
-
-// For now, header has to come before main-nav-hamburger.
-
-@use '03-organisms/header';
-
-
-// For now, Utility Nav has to come before header-hamburger.
-
-@use '03-organisms/header-hamburger';
-
-@use '02-molecules/main-nav-hamburger';
-
-@use '03-organisms/header-mixed';
\ No newline at end of file
diff --git a/packages/assets/build/scss/header.scss b/packages/assets/build/scss/header.scss
index 971b257867..c807515391 100644
--- a/packages/assets/build/scss/header.scss
+++ b/packages/assets/build/scss/header.scss
@@ -22,8 +22,20 @@
@use '01-atoms/forms';
-@use '03-organisms/header';
@use '03-organisms/utility-nav';
@use '03-organisms/utility-panel';
+
+// For now, header has to come before main-nav-hamburger.
+
+@use '03-organisms/header';
+
+
+// For now, Utility Nav has to come before header-hamburger.
+
+@use '03-organisms/header-hamburger';
+
+@use '02-molecules/main-nav-hamburger';
+
+@use '03-organisms/header-mixed';
\ No newline at end of file
diff --git a/packages/assets/gulpfile.js b/packages/assets/gulpfile.js
index 18bd10cddc..2204cc4f2b 100644
--- a/packages/assets/gulpfile.js
+++ b/packages/assets/gulpfile.js
@@ -108,44 +108,6 @@ function compileMainNav() {
.pipe(dest('./js'))
}
-function compileMixedHeader() {
- return src([
- require.resolve('jquery/dist/jquery.min.js'),
- './build/js/header-hamburger-vendor.js',
- './js/mainNav.js',
- '../patternlab/styleguide/source/assets/js/modules/mainNavMixed.js',
- '../patternlab/styleguide/source/assets/js/modules/mainNavHamburger.js',
- '../patternlab/styleguide/source/assets/js/modules/mobileNav.js',
- ])
- .pipe(concat('header-mixed.js'))
- .pipe(babel({
- presets: [
- '@babel/preset-env',
- ]
- }))
- .pipe(dest('./js'));
-}
-
-function compileMiniMixedHeader() {
- return src([
- require.resolve('jquery/dist/jquery.min.js'),
- './build/js/header-hamburger-vendor.js',
- './js/mainNav.js',
- '../patternlab/styleguide/source/assets/js/modules/mainNavMixed.js',
- '../patternlab/styleguide/source/assets/js/modules/mainNavHamburger.js',
- '../patternlab/styleguide/source/assets/js/modules/mobileNav.js',
- ])
- .pipe(concat('header-mixed.min.js'))
- .pipe(babel({
- presets: [
- '@babel/preset-env',
- ]
- }))
- .pipe(terser())
- .pipe(dest('./js'));
-}
-
-
function compileHeader() {
return src([
require.resolve('jquery/dist/jquery.min.js'),
@@ -191,13 +153,10 @@ exports.compileScss = compileScss;
exports.clean = clean;
const transpileHeader = series(compileMainNav, parallel(compileHeader, compileMiniHeader), deleteMainNav);
-const transpileMixedHeader = series(compileMainNav, parallel(compileMixedHeader, compileMiniMixedHeader), deleteMainNav);
const transpileHamburgerHeader = parallel(compileHamburgerHeader, compileMiniHamburgerHeader);
-const compileHeaderJS = series(transpileMixedHeader, transpileHamburgerHeader, transpileHeader);
+const compileHeaderJS = series(transpileHamburgerHeader, transpileHeader);
const build = series(parallel(clean, cleanJS), parallel(compileMiniScss, compileScss), compileHeaderJS);
-exports.transpileMixedHeader = transpileMixedHeader;
-
exports.transpileHamburgerHeader = transpileHamburgerHeader;
exports.compileHeaderJS = compileHeaderJS;
diff --git a/packages/assets/package.json b/packages/assets/package.json
index a8c55cc70c..1defaa4ab2 100644
--- a/packages/assets/package.json
+++ b/packages/assets/package.json
@@ -1,6 +1,6 @@
{
"name": "@massds/mayflower-assets",
- "version": "0.2.2",
+ "version": "10.4.0",
"description": "Mayflower Assets",
"main": "index.js",
"files": [
@@ -30,7 +30,7 @@
"author": "Massachusetts Digital Services (MDS)",
"license": "MIT",
"peerDependencies": {
- "sass": "^1.26.3"
+ "sass": "~1.30.0"
},
"devDependencies": {
"stylelint": "^13.3.3",
@@ -40,7 +40,7 @@
"normalize-scss": "~7.0.1",
"gulp": "~4.0.2",
"gulp-rename": "~2.0.0",
- "sass": "~1.27.0",
+ "sass": "~1.30.0",
"gulp-sass": "~4.1.0",
"del": "~6.0.0",
"@babel/core": "~7.12.3",
diff --git a/packages/assets/scss/00-base/_fonts.scss b/packages/assets/scss/00-base/_fonts.scss
index cd33131cd5..4332b3812a 100644
--- a/packages/assets/scss/00-base/_fonts.scss
+++ b/packages/assets/scss/00-base/_fonts.scss
@@ -18,26 +18,23 @@
// Import fonts
/* The fallback non-variable Noto Sans font */
-@supports not ( font-variation-settings: normal ) {
-
- @font-face {
- font-family: 'Noto Sans';
- src: url('#{$assets-path}/fonts/noto/Latin/NotoSans-Regular.eot?#iefix') format('embedded-opentype'),
- url('#{$assets-path}/fonts/noto/Latin/NotoSans-Regular.woff2') format('woff2'),
- url('#{$assets-path}/fonts/noto/Latin/NotoSans-Regular.woff') format('woff');
- font-style: normal;
- font-display: $fonts-display-global;
- }
- /* The fallback non-variable Noto Sans Italic font */
-
- @font-face {
- font-family: 'Noto Sans';
- src: url('#{$assets-path}/fonts/noto/Latin/NotoSans-Italic.eot?#iefix') format('embedded-opentype'),
- url('#{$assets-path}/fonts/noto/Latin/NotoSans-Italic.woff2') format('woff2'),
- url('#{$assets-path}/fonts/noto/Latin/NotoSans-Italic.woff') format('woff');
- font-style: italic;
- font-display: $fonts-display-global;
- }
+@font-face {
+ font-family: 'Noto Sans';
+ src: url('#{$assets-path}/fonts/noto/Latin/NotoSans-Regular.eot?#iefix') format('embedded-opentype'),
+ url('#{$assets-path}/fonts/noto/Latin/NotoSans-Regular.woff2') format('woff2'),
+ url('#{$assets-path}/fonts/noto/Latin/NotoSans-Regular.woff') format('woff');
+ font-style: normal;
+ font-display: $fonts-display-global;
+}
+/* The fallback non-variable Noto Sans Italic font */
+
+@font-face {
+ font-family: 'Noto Sans';
+ src: url('#{$assets-path}/fonts/noto/Latin/NotoSans-Italic.eot?#iefix') format('embedded-opentype'),
+ url('#{$assets-path}/fonts/noto/Latin/NotoSans-Italic.woff2') format('woff2'),
+ url('#{$assets-path}/fonts/noto/Latin/NotoSans-Italic.woff') format('woff');
+ font-style: italic;
+ font-display: $fonts-display-global;
}
@supports ( font-variation-settings: normal ) {
diff --git a/packages/react/src/components/atoms/buttons/ButtonCopy/_index.scss b/packages/assets/scss/01-atoms/_button-copy.scss
similarity index 99%
rename from packages/react/src/components/atoms/buttons/ButtonCopy/_index.scss
rename to packages/assets/scss/01-atoms/_button-copy.scss
index 1d686fc85b..ca230f1f42 100644
--- a/packages/react/src/components/atoms/buttons/ButtonCopy/_index.scss
+++ b/packages/assets/scss/01-atoms/_button-copy.scss
@@ -2,5 +2,6 @@
.ma__button-copy {
margin-left: 0.5em;
+
@include ma_button_reset;
}
diff --git a/packages/assets/scss/01-atoms/_place-holder.scss b/packages/assets/scss/01-atoms/_place-holder.scss
new file mode 100644
index 0000000000..ec84fd360c
--- /dev/null
+++ b/packages/assets/scss/01-atoms/_place-holder.scss
@@ -0,0 +1,8 @@
+.ma__placeholder {
+ color:#bbb;
+ min-height:200px;
+ border:4px dashed #ddd;
+ font-size:2rem;
+ line-height:200px;
+ text-align:center;
+}
diff --git a/packages/assets/scss/02-molecules/_footer-links.scss b/packages/assets/scss/02-molecules/_footer-links.scss
index 10ddd73237..ae98797c92 100644
--- a/packages/assets/scss/02-molecules/_footer-links.scss
+++ b/packages/assets/scss/02-molecules/_footer-links.scss
@@ -1,12 +1,11 @@
@use "00-base/configure" as *;
+
.ma__footer-links {
@include clearfix;
- &__items {
-
- @include ma-reset-list;
+ &__nav {
margin-left: auto;
margin-right: auto;
max-width: 480px;
@@ -29,6 +28,24 @@
@include shift(1 of 9);
}
+
+ &--heading {
+ border-bottom: none;
+
+ .ma__sidebar-heading {
+ color: $c-gray;
+ font-size: $fonts-xsmall;
+ }
+ }
+
+ @media ($bp-small-max) {
+ border-bottom-color: $c-bd-divider;
+ }
+ }
+
+ &__items {
+
+ @include ma-reset-list;
}
&__item {
@@ -43,21 +60,7 @@
@include ma-link-underline;
padding-bottom: 3px;
- }
-}
-
-//theme
-
-.ma__footer-links {
-
- &__items {
- @media ($bp-small-max) {
- border-bottom-color: $c-bd-divider;
- }
- }
-
- &__link {
color: $c-font-base;
font-weight: $fonts-normal;
diff --git a/packages/assets/scss/03-organisms/_header-hamburger.scss b/packages/assets/scss/03-organisms/_header-hamburger.scss
index d10804aaa5..05766e3138 100644
--- a/packages/assets/scss/03-organisms/_header-hamburger.scss
+++ b/packages/assets/scss/03-organisms/_header-hamburger.scss
@@ -38,7 +38,7 @@ body.show-menu {
opacity: 0;
transition: visibility 0s 0.6s, opacity 0.6s linear;
background-color: rgba($c-black, 0.4);
- top: 44px;
+ top: 0px;
z-index: $z-overlay-shade;
&.overlay-open {
@@ -90,6 +90,7 @@ body.show-menu {
position: absolute;
top: 0px;
width: 100%;
+ z-index: $z-overlay;
}
&-wrapper {
diff --git a/packages/assets/static/images/logo/stateseal-color.png b/packages/assets/static/images/logo/stateseal-color.png
index b68886e7d1..fc95f00e61 100644
Binary files a/packages/assets/static/images/logo/stateseal-color.png and b/packages/assets/static/images/logo/stateseal-color.png differ
diff --git a/packages/assets/static/images/logo/stateseal-color.svg b/packages/assets/static/images/logo/stateseal-color.svg
index 716e19f5d9..ecc2936cae 100644
--- a/packages/assets/static/images/logo/stateseal-color.svg
+++ b/packages/assets/static/images/logo/stateseal-color.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/packages/core/.env b/packages/core/.env
new file mode 100644
index 0000000000..6a8a022065
--- /dev/null
+++ b/packages/core/.env
@@ -0,0 +1,5 @@
+VERSION=11.0.0
+PKG=@massds/mayflower-assets
+STORYBOOK_CDN=https://unpkg.com/
+STORYBOOK_PKG=$PKG@$VERSION
+STORYBOOK_CDN_PATH=$STORYBOOK_CDN$STORYBOOK_PKG
diff --git a/packages/core/.eslintignore b/packages/core/.eslintignore
new file mode 100644
index 0000000000..17ed394c70
--- /dev/null
+++ b/packages/core/.eslintignore
@@ -0,0 +1,3 @@
+node_modules/
+storybook-static/
+
diff --git a/packages/core/.eslintrc.json b/packages/core/.eslintrc.json
new file mode 100644
index 0000000000..b20bb687c2
--- /dev/null
+++ b/packages/core/.eslintrc.json
@@ -0,0 +1,41 @@
+{
+ "env": {
+ "browser": true
+ },
+ "extends": "airbnb",
+ "parser": "babel-eslint",
+ "rules": {
+ "arrow-parens": ["warn", "always"],
+ "comma-dangle": ["error", "never"],
+ "keyword-spacing": ["error", { "overrides": {
+ "return": { "after": false }
+ } }],
+ "max-len": ["off", { "code": 100 }],
+ "no-shadow": ["warn"],
+ "no-eval": ["warn"],
+ "no-param-reassign": ["warn"],
+ "no-unused-vars": ["warn"],
+ "prefer-destructuring": ["off"],
+ "import/no-extraneous-dependencies": ["off"],
+ "jsx-a11y/label-has-for": [ "warn", {
+ "required": {
+ "some": [ "nesting", "id" ]
+ }
+ }],
+ "react/forbid-prop-types": ["warn"],
+ "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
+ "react/no-unused-prop-types": ["off"],
+ "react/no-array-index-key": ["warn"],
+ "react/prefer-stateless-function": ["warn"],
+ "react/prop-types": ["warn"],
+ "react/require-default-props": ["off"],
+ "no-underscore-dangle": ["off"],
+ "no-use-before-define": ["off"],
+ "jsx-a11y/anchor-is-valid": ["warn"],
+ "react/jsx-props-no-spreading": ["off"],
+ "react/destructuring-assignment": ["off"],
+ "react/static-property-placement": ["off"],
+ "react/state-in-constructor": ["off"],
+ "react/jsx-fragments": ["off"]
+ }
+}
diff --git a/packages/core/.gitignore b/packages/core/.gitignore
new file mode 100644
index 0000000000..f33ca8e3a7
--- /dev/null
+++ b/packages/core/.gitignore
@@ -0,0 +1,3 @@
+!.env
+
+storybook-static
\ No newline at end of file
diff --git a/packages/core/.storybook/main.js b/packages/core/.storybook/main.js
new file mode 100644
index 0000000000..de855d04a0
--- /dev/null
+++ b/packages/core/.storybook/main.js
@@ -0,0 +1,41 @@
+const path = require('path');
+const assets = require('@massds/mayflower-assets');
+const nodeModules = path.resolve(path.join(process.cwd(), 'node_modules'));
+const pnpmNodeModules = path.join(nodeModules, '.pnpm', 'node_modules');
+
+module.exports = {
+ "stories": [
+ "../stories/**/*.stories.mdx",
+ "../stories/**/*.stories.@(js|jsx|ts|tsx)"
+ ],
+ "addons": [
+ "@storybook/addon-links",
+ {
+ name: '@storybook/addon-docs',
+ options: {
+ transcludeMarkdown: true
+ }
+ },
+ {
+ name: '@storybook/preset-scss',
+ options: {
+ cssLoaderOptions: {
+ sourceMap: true
+ },
+ sassLoaderOptions: {
+ sourceMap: true,
+ implementation: require('sass'),
+ sassOptions: {
+ includePaths: [
+ nodeModules,
+ pnpmNodeModules,
+ path.resolve(__dirname, '../stories'),
+ path.resolve(nodeModules, '@massds/mayflower-react/dist'),
+ path.resolve(nodeModules, '@massds/mayflower-assets/scss')
+ ].concat(assets.includePaths)
+ }
+ }
+ }
+ }
+ ]
+}
diff --git a/packages/core/.storybook/manager.js b/packages/core/.storybook/manager.js
new file mode 100644
index 0000000000..d9d57461ce
--- /dev/null
+++ b/packages/core/.storybook/manager.js
@@ -0,0 +1,8 @@
+import { addons } from '@storybook/addons';
+import mayflowerTheme from './mayflowerTheme';
+
+addons.setConfig({
+ theme: mayflowerTheme,
+ showNav: true,
+ showPanel: true // show the code panel by default,
+});
diff --git a/packages/core/.storybook/mayflower-logo.png b/packages/core/.storybook/mayflower-logo.png
new file mode 100644
index 0000000000..86e6f4e016
Binary files /dev/null and b/packages/core/.storybook/mayflower-logo.png differ
diff --git a/packages/core/.storybook/mayflowerTheme.js b/packages/core/.storybook/mayflowerTheme.js
new file mode 100644
index 0000000000..70726d0e06
--- /dev/null
+++ b/packages/core/.storybook/mayflowerTheme.js
@@ -0,0 +1,39 @@
+import { create } from '@storybook/theming/create';
+import logo from './mayflower-logo.png';
+
+const { VERSION } = process.env;
+
+export default create({
+ base: 'light',
+
+ colorPrimary: '#388557',
+ colorSecondary: '#14558F',
+
+ // UI
+ appBg: '#F2F2F2',
+ appContentBg: '#FFFFFF',
+ appBorderColor: '#DCDCDC',
+ appBorderRadius: 0,
+
+ // Typography
+ fontBase: '"Noto Sans VF", "Noto Sans", "Helvetica", "Arial", sans-serif',
+
+ // Text colors
+ textColor: 'black',
+ textInverseColor: 'rgba(255,255,255,0.9)',
+
+ // Toolbar default and active colors
+ barTextColor: '#707070',
+ barSelectedColor: '#14558F',
+ barBg: '#F2F2F2',
+
+ // Form colors
+ inputBg: 'white',
+ inputBorder: '#DCDCDC',
+ inputTextColor: '#141414',
+ inputBorderRadius: 4,
+
+ brandTitle: `Mayflower Design System ${VERSION}`,
+ brandUrl: '/',
+ brandImage: logo,
+});
diff --git a/packages/core/.storybook/preview.js b/packages/core/.storybook/preview.js
new file mode 100644
index 0000000000..8eea9ce4f9
--- /dev/null
+++ b/packages/core/.storybook/preview.js
@@ -0,0 +1,40 @@
+import mayflowerTheme from './mayflowerTheme';
+
+export const parameters = {
+ options: {
+ storySort: {
+ order: [
+ 'Overview', [
+ 'Introduction',
+ 'Get Started',
+ 'Examples'
+ ],
+ 'Principles', [
+ 'Brand Pillars',
+ 'Accessibility',
+ 'Resources'
+ ],
+ 'Foundation', [
+ 'Logo',
+ 'Color',
+ 'Typography',
+ 'Iconography'
+ ],
+ 'Elements',
+ 'Components', [
+ 'Header',
+ 'Footer',
+ 'Template'
+ ]
+ ]
+ },
+ },
+ actions: { argTypesRegex: "^on[A-Z].*" },
+ previewTabs: {
+ canvas: { hidden: true }
+ },
+ viewMode: 'docs',
+ docs: {
+ theme: mayflowerTheme,
+ }
+}
diff --git a/packages/core/package.json b/packages/core/package.json
new file mode 100644
index 0000000000..18f9088e54
--- /dev/null
+++ b/packages/core/package.json
@@ -0,0 +1,54 @@
+{
+ "name": "mayflower-core",
+ "version": "1.0.0",
+ "description": "",
+ "main": "index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1",
+ "storybook": "start-storybook -p 6006 --docs --no-manager-cache",
+ "build": "build-storybook --docs -s ./node_modules/@massds/mayflower-assets/static",
+ "start": "rushx storybook",
+ "chromatic": "pnpx chromatic --project-token engf6vhuiv",
+ "lint": "eslint . -c .eslintrc.json",
+ "lint-fix": "eslint --fix . && exit 0"
+ },
+ "keywords": [],
+ "author": "",
+ "license": "ISC",
+ "devDependencies": {
+ "@babel/core": "^7.11.6",
+ "@storybook/addon-actions": "^6.0.26",
+ "@storybook/addon-docs": "^6.0.26",
+ "@storybook/addon-links": "^6.0.26",
+ "@storybook/node-logger": "^6.0.26",
+ "@storybook/react": "^6.0.26",
+ "@storybook/cli": "^6.0.26",
+ "babel-loader": "^8.1.0",
+ "babel-eslint": "^10.1.0",
+ "react-is": "^16.13.1",
+ "sass-loader": "~10.0.3",
+ "sass": "~1.30.0",
+ "chromatic": "~5.3.0",
+ "prettier": "^2.1.0",
+ "eslint": "^7.2.0",
+ "eslint-config-airbnb": "^18.1.0",
+ "eslint-import-resolver-alias": "^1.1.2",
+ "eslint-import-resolver-babel-module": "^5.1.2",
+ "eslint-import-resolver-custom-alias": "^1.2.0",
+ "eslint-loader": "^4.0.2",
+ "eslint-plugin-import": "^2.21.1",
+ "eslint-plugin-jsx-a11y": "^6.2.3",
+ "eslint-plugin-react": "^7.20.0",
+ "eslint-plugin-react-hooks": "^2.5.0",
+ "react": "~17.0.1",
+ "prop-types": "~15.7.2",
+ "react-dom": "~17.0.1"
+ },
+ "dependencies": {
+ "@massds/mayflower-assets": "^10.4.0",
+ "@massds/mayflower-react": "^10.4.0",
+ "@storybook/preset-scss": "~1.0.2",
+ "url-loader": "~4.1.1",
+ "prettier": "~2.1.2"
+ }
+}
diff --git a/packages/core/stories/about/Examples.stories.mdx b/packages/core/stories/about/Examples.stories.mdx
new file mode 100644
index 0000000000..8d8caddccb
--- /dev/null
+++ b/packages/core/stories/about/Examples.stories.mdx
@@ -0,0 +1,30 @@
+import { Meta } from '@storybook/addon-docs/blocks';
+
+import generateTitle from '../util/generateTitle';
+
+
+
+
+# Examples
+
+This is a curated list of Mayflower projects for your inspiration.
+
+## Digital Services team:
+Projects that are developed or maintained by the Digital Services team
+- [(Experimental) Mayflower React](https://mayflower.digital.mass.gov/react): A React Component Library
+- [(Experimental) Mayflower Patternlab](https://mayflower.digital.mass.gov/patternlab): A Twig Component Library
+- [Mass.gov](https://www.mass.gov/): The official government website for the Commonwealth of Massachusetts
+
+
+
+## Mayflower Community:
+Learn how other state organizations are implementing Mayflower
+
+| Name | Distribution | Author/Maintainer |
+| :--- | :--- | :--- |
+| [**DTC Form Release Search**](https://services.oca.state.ma.us/dtc/frmReleasedCalendar.aspx) | ASP.NET | DTC | Mayflower inspired |
+| [**Civil Services Eligibility Lists (Entry level)**](https://www.mass.gov/service-details/civil-service-eligible-lists) | ASP.NET | ANF | Mayflower as markup |
+| [**Public Water Doc Search**](https://massgov.github.io/MassDEP/brp/dwp/pws-documents-search/build/%20) | React + Github Pages | MassDEP | Mayflower artifacts |
+| [**RMV ATLAS**](https://atlas-myrmv.massdot.state.ma.us/myrmv/_/) | FAST proprietary | MassDOT | Mayflower inspired |
+| [**MassDOT Open Data Portal**](https://geo-massdot.opendata.arcgis.com) | ArcGIS | MassDOT | Mayflower inspired |
+| [**EEC Licensed Child Care Search**](https://eeclead.force.com/EEC_ChildCareSearch) | Salesforce proprietary | EEC | Mayflower inspired |
diff --git a/packages/core/stories/about/Introduction.stories.mdx b/packages/core/stories/about/Introduction.stories.mdx
new file mode 100644
index 0000000000..5ad95ea72f
--- /dev/null
+++ b/packages/core/stories/about/Introduction.stories.mdx
@@ -0,0 +1,67 @@
+import { Meta } from '@storybook/addon-docs/blocks';
+import {
+ SectionLinks, DecorativeLink, CalloutLink, IconArrow
+} from '@massds/mayflower-react';
+import LinkTo from '@storybook/addon-links/react';
+import '../styles/index.scss';
+
+import generateTitle, { StoryLink } from '../util/generateTitle';
+import meta from '../meta.json';
+
+
+
+
+# Welcome to Mayflower
+
+Mayflower is the design system for the government of the state of Massachusetts. It's a tool state agencies can use to develop and maintain digital experiences that provide a consistent and trustworthy look and feel across our digital ecosystem.
+
+
+ Read more below for in-depth information about the stystem or go to
+ {' '}
+
{`${STORYBOOK_CDN_PATH}/css/global.css`}
+
+- To include basic page layout styles from Mayflower, link to the compiled `css/layout.css` (or the minified version, `css/layout.min.css`) from the @massds/mayflower-assets package or the assets CDN.
+ > {`${STORYBOOK_CDN_PATH}/css/layout.css`}
+
+- To use a Mayflower branding component on your site, go to the documentation of the component, copy and paste the HTML code snippet, and link to the CDN version of CSS and JS files in the appropriate sections of your HTML.
+
+> For a production site, you should always link to the Mayflower CDN at a specific version. That way, you never have to worry about your website getting impacted by any Mayflower breaking updates, and you can upgrade to a new Mayflower version whenever your team is ready. Alternatively, you can host the CSS and JS downloaded from mayflower assets package.
+
+> To view a specific version of this documentation, go to https://mayflower.digital.mass.gov/core/v/:version
+
+Asset | +CDN | +
---|---|
State Seal | +
+
|
+
Fonts | +
+
|
+
Global CSS | +
+
|
+
Header CSS | +
+
|
+
Header JS | +
+
|
+
+ ` +} /> + + +## Usage +To kick-start a page in HTML: +1. Copy the code above or jump to an example below and click on "Show code" to copy the HTML snippet from the example +4. Add the links to CSS and JS at the appropriate places + - **CSS**: Link to CSS inside the `
` + - **JS**: Link to JS before the closing body tag `` +5. Replace the `.ma__placeholder` divs with real content + + + +## Examples + +### Header and Footer (Slim) +A demo page with the Slim Header, Slim Footer, and a layout of a full-width block, and two-column block with a right-rail. + + + +### Header and Footer (With Full Navigation) +A demo page with the Full Nav Header, Full Nav Footer, and a layout of a full-width block, and two-column block with a left-rail. + + diff --git a/packages/core/stories/elements/Button/Button.stories.js b/packages/core/stories/elements/Button/Button.stories.js new file mode 100644 index 0000000000..36acd1bceb --- /dev/null +++ b/packages/core/stories/elements/Button/Button.stories.js @@ -0,0 +1,21 @@ +import { attachCSS } from '../../util/renderCode'; + +const { STORYBOOK_CDN_PATH } = process.env; + +const cssButton = `// Link to CSS: `; + +// exported story names must be unique +export const buttonCSS = () => null; +attachCSS(buttonCSS, cssButton); + +export const buttonCSS2 = () => null; +attachCSS(buttonCSS2, cssButton); + +export const buttonCSS3 = () => null; +attachCSS(buttonCSS3, cssButton); + +export const buttonCSS4 = () => null; +attachCSS(buttonCSS4, cssButton); + +export const buttonCSSDisabled = () => null; +attachCSS(buttonCSSDisabled, cssButton); diff --git a/packages/core/stories/elements/Button/Button.stories.mdx b/packages/core/stories/elements/Button/Button.stories.mdx new file mode 100644 index 0000000000..8c2d97a502 --- /dev/null +++ b/packages/core/stories/elements/Button/Button.stories.mdx @@ -0,0 +1,164 @@ +import { Meta, Story, Canvas } from '@storybook/addon-docs/blocks'; +import Button from '@massds/mayflower-react/dist/Button'; +import generateTitle from '../../util/generateTitle'; +import { renderReactMarkup } from '../../util/renderCode'; +import * as stories from './Button.stories.js'; + + + +# Buttons + +Buttons are used in forms and interactive applications to trigger actions. + + + +Following web best practices buttons have a target area of 45 pixels. To provide more visual affordance that they are clickable—not just text in a box—they have a shadow to appear slightly raised. Small buttons can be used for secondary tasks on forms—for example image upload—and filters on listing pages. Large buttons should be used for form submits or primary calls to action. There should usually be only one primary button in any UI. Font sizes reduce slightly on mobile. + +--- + +### Primary Buttons + +- **Usage:** For the main action in a form, or for a call-to-action link on a page. +- **Style:** Default buttons are solid color with contrasting uppercase text. The hover state lightens the primary button background color. + + + +--- + +### Secondary Buttons + +- **Usage:** For secondary actions. +- **Style:** The outline button has less visual prominence than the primary button so it can be used alongside it as a secondary action, for example "Cancel". The hover state of the secondary button inverts the background and foreground colors. + + + +--- + +### Tertiary Buttons + +- **Usage:** For third-level actions. +- **Style:** The gray color is even less prominent than outline button to de-emphasize third-level tasks. The hover state lightens the tertiary button background color. + + + +--- + +### Quaternary Buttons + +- **Usage:** For fourth-level actions or actions. +- **Style:** Appears as a link, with a small amount of letterspacing and underline (Actually a `border-bottom` not a text underline). The hover state darkens the underline and increases it's weight. + + + +--- + +### Disabled Buttons + +- **Usage:** Disabled buttons should not be clickable. The disabled attribute (as opposed to hidden) can be applied for actions where the user should see the action and it's state but may not be able to perform it because they either don't have permission or some other condition in the form has not been met. +- **Style:** Disabled buttons have no box shadow (since the box shadow is what suggests clickability). Their opacity is `0.5.`, no hover or focus states are provided and the cursor is set to `not-allowed`. + + + + +--- + +### Accessibility & Best Practices + +- **Always** use `