From cdada1450ae804e1d2c653b9b23383da8689c8ca Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Tue, 8 Dec 2020 16:30:14 -0500 Subject: [PATCH 01/27] fix urls in examples --- packages/core/stories/about/Examples.stories.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core/stories/about/Examples.stories.mdx b/packages/core/stories/about/Examples.stories.mdx index badc5c389c..8d8caddccb 100644 --- a/packages/core/stories/about/Examples.stories.mdx +++ b/packages/core/stories/about/Examples.stories.mdx @@ -11,9 +11,9 @@ 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](mayflower.digital.mass.gov/react): A React Component Library -- [(Experimental) Mayflower Patternlab](mayflower.digital.mass.gov/react): A Twig Component Library -- [Mass.gov](mass.gov): The official government website for the Commonwealth of Massachusetts +- [(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
From 9043231dd0e53c6b98cead58e5e9eac5cbceaa0c Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Tue, 8 Dec 2020 17:49:38 -0500 Subject: [PATCH 02/27] clean up and add version in theme title --- packages/core/.storybook/main.js | 1 - packages/core/.storybook/mayflowerTheme.js | 7 +++++-- packages/core/.storybook/preview.js | 5 +---- packages/core/package.json | 2 +- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/packages/core/.storybook/main.js b/packages/core/.storybook/main.js index c3966404b3..de855d04a0 100644 --- a/packages/core/.storybook/main.js +++ b/packages/core/.storybook/main.js @@ -2,7 +2,6 @@ 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'); -console.log(path.resolve(nodeModules, '@massds/mayflower-react/dist/styles')) module.exports = { "stories": [ diff --git a/packages/core/.storybook/mayflowerTheme.js b/packages/core/.storybook/mayflowerTheme.js index dc8751dcbe..70726d0e06 100644 --- a/packages/core/.storybook/mayflowerTheme.js +++ b/packages/core/.storybook/mayflowerTheme.js @@ -1,5 +1,8 @@ import { create } from '@storybook/theming/create'; import logo from './mayflower-logo.png'; + +const { VERSION } = process.env; + export default create({ base: 'light', @@ -30,7 +33,7 @@ export default create({ inputTextColor: '#141414', inputBorderRadius: 4, - brandTitle: 'Mayflower React', - brandUrl: 'https://github.com/massgov/mayflower', + brandTitle: `Mayflower Design System ${VERSION}`, + brandUrl: '/', brandImage: logo, }); diff --git a/packages/core/.storybook/preview.js b/packages/core/.storybook/preview.js index 7b16e9eff6..50c3b784e8 100644 --- a/packages/core/.storybook/preview.js +++ b/packages/core/.storybook/preview.js @@ -32,8 +32,5 @@ export const parameters = { previewTabs: { canvas: { hidden: true } }, - viewMode: 'docs', - docs: { - theme: mayflowerTheme, - } + viewMode: 'docs' } diff --git a/packages/core/package.json b/packages/core/package.json index 6a4d24358c..9497c032c9 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -5,7 +5,7 @@ "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "storybook": "start-storybook -p 6006 --docs", + "storybook": "start-storybook -p 6006 --docs --no-manager-cache", "build-storybook": "build-storybook --docs", "start": "rushx storybook", "chromatic": "npx chromatic --project-token engf6vhuiv" From 6ec367a0fc595867ad99db0b59fc816efb6a4d86 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Tue, 8 Dec 2020 17:55:48 -0500 Subject: [PATCH 03/27] add build core rush command --- common/config/rush/command-line.json | 8 ++++++++ packages/core/.gitignore | 2 ++ packages/core/package.json | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/common/config/rush/command-line.json b/common/config/rush/command-line.json index f098ff505a..60a9cfc0f3 100644 --- a/common/config/rush/command-line.json +++ b/common/config/rush/command-line.json @@ -59,6 +59,14 @@ "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/packages/core/.gitignore b/packages/core/.gitignore index 8e0776e8d2..f33ca8e3a7 100644 --- a/packages/core/.gitignore +++ b/packages/core/.gitignore @@ -1 +1,3 @@ !.env + +storybook-static \ No newline at end of file diff --git a/packages/core/package.json b/packages/core/package.json index 9497c032c9..858a2eb989 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -6,7 +6,7 @@ "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "storybook": "start-storybook -p 6006 --docs --no-manager-cache", - "build-storybook": "build-storybook --docs", + "build": "build-storybook --docs", "start": "rushx storybook", "chromatic": "npx chromatic --project-token engf6vhuiv" }, From 9c8586291b4400cdc88f82594850935b156ab68e Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Wed, 9 Dec 2020 11:26:22 -0500 Subject: [PATCH 04/27] add auto deploy scripts --- .circleci/config.yml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index d24fe090cd..e006d23770 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -42,6 +42,7 @@ jobs: - packages/react/node_modules - packages/patternlab/styleguide/node_modules - packages/site/node_modules + - packages/core/node_modules patternlab_build: <<: *patternlab_defaults @@ -242,6 +243,43 @@ jobs: aws cloudfront create-invalidation --distribution-id $AWS_DISTRIBUTION_ID --paths '/react*' fi + + core_build_storybook: + <<: *react_defaults + steps: + - checkout + - restore_cache: + keys: + - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-20 + - run: + name: Mayflower Core Storybook Build + command: cd packages/react && node ../../common/scripts/install-run-rushx.js build + - persist_to_workspace: + root: ~/code + paths: ["*"] + + core_deploy_tag: + <<: *react_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 + fi + - run: | + # Only sync to S3 for stable tags. + if [[ "$CIRCLE_TAG" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then + cd packages/core + aws s3 sync storybook-static "s3://mayflower.digital.mass.gov/core/v/$CIRCLE_TAG" + if [[ "$CIRCLE_TAG" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then + # 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" + fi + aws configure set preview.cloudfront true + aws cloudfront create-invalidation --distribution-id $AWS_DISTRIBUTION_ID --paths '/core*' + auto_changelog: <<: *react_defaults steps: From 35bf9c4afaf0fecef6d585ead1c92c316e8760a3 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Wed, 9 Dec 2020 11:35:18 -0500 Subject: [PATCH 05/27] trigger tasks --- .circleci/config.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e006d23770..a7e5f42f84 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -419,7 +419,7 @@ workflows: - react_build_storybook: requires: [build] filters: - branches: { ignore: /(docs|patternlab\/|site\/|core\/).*/ } + branches: { ignore: /(docs|patternlab\/|site\/).*/ } - react_test: requires: [react_build_storybook] filters: @@ -429,6 +429,13 @@ workflows: requires: [react_build_storybook] filters: branches: { ignore: /(docs|patternlab\/|react\/|core\/).*/ } + # core + - core_build_storybook: + requires: [react_build_storybook] + filters: + branches: { ignore: /(docs|patternlab\/|site\/).*/ } + - core_deploy_tag: + requires: [core_build_storybook] # 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) From 05decde4c488a96979470cb5acf665e24c06035b Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Wed, 9 Dec 2020 12:09:25 -0500 Subject: [PATCH 06/27] fix --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a7e5f42f84..3e74e3ef7a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -253,7 +253,7 @@ jobs: - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-20 - run: name: Mayflower Core Storybook Build - command: cd packages/react && node ../../common/scripts/install-run-rushx.js build + command: cd packages/core && node ../../common/scripts/install-run-rushx.js build - persist_to_workspace: root: ~/code paths: ["*"] From 0a7b68e376d73b1172c791102f500302caa1872c Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Wed, 9 Dec 2020 13:25:03 -0500 Subject: [PATCH 07/27] add storybook cli --- packages/core/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/package.json b/packages/core/package.json index 858a2eb989..d50939f57b 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -20,6 +20,7 @@ "@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", "react-is": "^16.13.1", "sass-loader": "~10.0.3", From 0e17e05ac95acf8fadb6ed8422277b7a8f0f5fb5 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Wed, 9 Dec 2020 13:47:10 -0500 Subject: [PATCH 08/27] force update --- .circleci/config.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3e74e3ef7a..2a4e5e0114 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,11 +31,11 @@ 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" }}-21 - 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" }}-21 paths: - common - packages/assets/node_modules @@ -51,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" }}-21 - run: { name: 'Build', command: 'cd packages/patternlab/styleguide && node ../../../common/scripts/install-run-rushx.js build'} - persist_to_workspace: root: ~/code @@ -172,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" }}-21 - run: name: Mayflower React Build command: cd packages/react && node ../../common/scripts/install-run-rushx.js build @@ -250,7 +250,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" }}-21 - run: name: Mayflower Core Storybook Build command: cd packages/core && node ../../common/scripts/install-run-rushx.js build @@ -300,7 +300,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" }}-21 - 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" @@ -314,7 +314,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" }}-21 - 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" @@ -328,7 +328,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" }}-21 - run: { name: 'Build', command: 'cd packages/assets && node ../../common/scripts/install-run-rushx.js build'} - run: name: Mayflower Style Linter @@ -341,7 +341,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" }}-21 - run: name: 'Publish mayflower-assets NPM package' command: | @@ -359,7 +359,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" }}-21 - run: cd packages/react && node ../../common/scripts/install-run-rushx.js build - run: name: Validate Package Build From ad358b5adad661c3da55d5186f5bb1adf8db3f33 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Wed, 9 Dec 2020 15:52:32 -0500 Subject: [PATCH 09/27] fix storybook command --- packages/core/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/package.json b/packages/core/package.json index d50939f57b..6ae65b84e3 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -6,7 +6,7 @@ "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "storybook": "start-storybook -p 6006 --docs --no-manager-cache", - "build": "build-storybook --docs", + "build": "rushx build-storybook --docs", "start": "rushx storybook", "chromatic": "npx chromatic --project-token engf6vhuiv" }, From ac705095fd45a08b6324e45f17d295166cc74fe3 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Wed, 9 Dec 2020 16:02:54 -0500 Subject: [PATCH 10/27] force update --- .circleci/config.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2a4e5e0114..1711c0fea5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,11 +31,11 @@ jobs: - restore_cache: name: Restore pnpm-lock.yaml keys: - - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-21 + - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-22 - 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" }}-21 + key: root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-22 paths: - common - packages/assets/node_modules @@ -51,7 +51,7 @@ jobs: - restore_cache: name: Restore NPM Cache keys: - - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-21 + - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-22 - run: { name: 'Build', command: 'cd packages/patternlab/styleguide && node ../../../common/scripts/install-run-rushx.js build'} - persist_to_workspace: root: ~/code @@ -172,7 +172,7 @@ jobs: - checkout - restore_cache: keys: - - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-21 + - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-22 - run: name: Mayflower React Build command: cd packages/react && node ../../common/scripts/install-run-rushx.js build @@ -250,7 +250,7 @@ jobs: - checkout - restore_cache: keys: - - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-21 + - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-22 - run: name: Mayflower Core Storybook Build command: cd packages/core && node ../../common/scripts/install-run-rushx.js build @@ -300,7 +300,7 @@ jobs: - *no_host_check - restore_cache: keys: - - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-21 + - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-22 - 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" @@ -314,7 +314,7 @@ jobs: - *no_host_check - restore_cache: keys: - - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-21 + - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-22 - 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" @@ -328,7 +328,7 @@ jobs: - checkout - restore_cache: keys: - - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-21 + - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-22 - run: { name: 'Build', command: 'cd packages/assets && node ../../common/scripts/install-run-rushx.js build'} - run: name: Mayflower Style Linter @@ -341,7 +341,7 @@ jobs: - *configure_npm - restore_cache: keys: - - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-21 + - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-22 - run: name: 'Publish mayflower-assets NPM package' command: | @@ -359,7 +359,7 @@ jobs: - checkout - restore_cache: keys: - - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-21 + - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-22 - run: cd packages/react && node ../../common/scripts/install-run-rushx.js build - run: name: Validate Package Build From 00ac21657fc398e9118384958785aaf742fad203 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Wed, 9 Dec 2020 17:16:25 -0500 Subject: [PATCH 11/27] remove rushx --- packages/core/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/package.json b/packages/core/package.json index 6ae65b84e3..928b0787e6 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -6,7 +6,7 @@ "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "storybook": "start-storybook -p 6006 --docs --no-manager-cache", - "build": "rushx build-storybook --docs", + "build": "build-storybook --docs -s ./node_modules/@massds/mayflower-assets/static", "start": "rushx storybook", "chromatic": "npx chromatic --project-token engf6vhuiv" }, From 29bd35e49b2c1b79f7c968f65dbce26d3b9b7d35 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Wed, 9 Dec 2020 17:25:24 -0500 Subject: [PATCH 12/27] recreate pnpm-lock.yaml --- common/config/rush/pnpm-lock.yaml | 3724 ++++++++++++++--------------- 1 file changed, 1770 insertions(+), 1954 deletions(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 894e92ee95..0c36cab712 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -1,28 +1,27 @@ dependencies: - '@babel/cli': 7.12.1 - '@babel/parser': 7.12.5 + '@babel/cli': 7.12.8 + '@babel/parser': 7.12.7 '@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.1 + '@babel/plugin-proposal-optional-chaining': 7.12.7 '@babel/plugin-syntax-dynamic-import': 7.8.3 '@babel/plugin-transform-runtime': 7.12.1 - '@babel/preset-react': 7.12.5 + '@babel/preset-react': 7.12.7 '@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-core': 'file:projects/mayflower-core.tgz_4980cc2cdbaa6814d714342ca9c7c98b' + '@rush-temp/mayflower-core': 'file:projects/mayflower-core.tgz_0bde79fb2ed5a9cd348dddfe19d78d77' '@rush-temp/mayflower-react': 'file:projects/mayflower-react.tgz' '@rush-temp/mayflower-site': 'file:projects/mayflower-site.tgz_13fe6053c740dc31e0c47613a4f26462' - '@storybook/addon-a11y': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/addon-controls': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/addon-storysource': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/addon-viewport': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/addons': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/cli': 6.1.0 - '@storybook/codemod': 6.1.0 - '@storybook/node-logger': 6.1.0 - '@storybook/source-loader': 6.1.0_react-dom@16.14.0+react@16.14.0 + '@storybook/addon-a11y': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/addon-controls': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/addon-storysource': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/addon-viewport': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/addons': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/codemod': 6.1.10 + '@storybook/node-logger': 6.1.10 + '@storybook/source-loader': 6.1.10_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 @@ -30,8 +29,8 @@ dependencies: 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_webpack@4.44.2 + 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 @@ -43,42 +42,44 @@ dependencies: babel-preset-env: 1.7.0 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 del: 6.0.0 disc: 1.3.3 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_147bab5d4e67340feacd5804901c7793 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-image: 2.7.0 + gatsby-plugin-manifest: 2.8.0_gatsby@2.25.4 + gatsby-plugin-offline: 3.6.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.6.0_gatsby@2.25.4+react-helmet@5.2.1 + gatsby-plugin-sass: 2.7.0_gatsby@2.25.4+webpack@4.44.2 + gatsby-plugin-sharp: 2.10.1_gatsby@2.25.4 + gatsby-source-filesystem: 2.7.0_gatsby@2.25.4 + gatsby-transformer-json: 2.7.0_gatsby@2.25.4 + gatsby-transformer-sharp: 2.8.0_2b5ecb247c97aa47411905fb2307f9e3 gulp: 4.0.2 gulp-autoprefixer: 5.0.0 gulp-babel: 8.0.0 @@ -102,7 +103,7 @@ 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 @@ -123,6 +124,7 @@ dependencies: resolve-url-loader: 3.1.2 shortid: 2.2.16 smoothscroll-polyfill: 0.4.4 + style-loader: 1.3.0_webpack@4.44.2 stylelint: 13.8.0 stylelint-config-recommended: 3.0.0_stylelint@13.8.0 stylelint-config-recommended-scss: 4.2.0_ecb35a9753d1cb8d84508f1c383a41ff @@ -130,7 +132,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 @@ -146,9 +148,9 @@ packages: /@actions/github/4.0.0: dependencies: '@actions/http-client': 1.0.9 - '@octokit/core': 3.2.1 - '@octokit/plugin-paginate-rest': 2.6.0_@octokit+core@3.2.1 - '@octokit/plugin-rest-endpoint-methods': 4.2.1 + '@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== @@ -166,7 +168,7 @@ packages: node: '>=8' resolution: integrity: sha512-vyrkEHG1jrukmzTPtyWB4NLPauUw5bQeg4uhn8f+1SSynmrOcyvlb1GKQjjgoBzElLdfXCRYX8UnBlhklOHYRQ== - /@babel/cli/7.12.1: + /@babel/cli/7.12.8: dependencies: commander: 4.1.1 convert-source-map: 1.7.0 @@ -179,15 +181,15 @@ 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/cli/7.12.1_@babel+core@7.12.3: + integrity: sha512-/6nQj11oaGhLmZiuRUfxsujiPDc9BBReemiXgIbxc+M5W+MIiFKYwvNDJvBfnGKNsJTKbUfEheKc9cwoPHAVQA== + /@babel/cli/7.12.8_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 commander: 4.1.1 convert-source-map: 1.7.0 fs-readdir-recursive: 1.1.0 @@ -199,12 +201,12 @@ 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== + integrity: sha512-/6nQj11oaGhLmZiuRUfxsujiPDc9BBReemiXgIbxc+M5W+MIiFKYwvNDJvBfnGKNsJTKbUfEheKc9cwoPHAVQA== /@babel/code-frame/7.10.4: dependencies: '@babel/highlight': 7.10.4 @@ -217,20 +219,20 @@ packages: 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/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.7 + '@babel/template': 7.12.7 + '@babel/traverse': 7.12.9 + '@babel/types': 7.12.7 convert-source-map: 1.7.0 debug: 4.3.1 gensync: 1.0.0-beta.2 @@ -244,16 +246,16 @@ packages: node: '>=6.9.0' resolution: integrity: sha512-O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w== - /@babel/core/7.11.6: + /@babel/core/7.12.9: dependencies: '@babel/code-frame': 7.10.4 '@babel/generator': 7.12.5 '@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.7 + '@babel/template': 7.12.7 + '@babel/traverse': 7.12.9 + '@babel/types': 7.12.7 convert-source-map: 1.7.0 debug: 4.3.1 gensync: 1.0.0-beta.2 @@ -266,33 +268,10 @@ packages: engines: node: '>=6.9.0' resolution: - integrity: sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg== - /@babel/core/7.12.3: - dependencies: - '@babel/code-frame': 7.10.4 - '@babel/generator': 7.12.5 - '@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 - convert-source-map: 1.7.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-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g== + integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ== /@babel/generator/7.12.5: dependencies: - '@babel/types': 7.12.6 + '@babel/types': 7.12.7 jsesc: 2.5.2 source-map: 0.5.7 dev: false @@ -300,14 +279,14 @@ packages: integrity: sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A== /@babel/helper-annotate-as-pure/7.10.4: dependencies: - '@babel/types': 7.12.6 + '@babel/types': 7.12.7 dev: false resolution: integrity: sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== /@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.7 dev: false resolution: integrity: sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== @@ -315,23 +294,23 @@ packages: dependencies: '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-module-imports': 7.12.5 - '@babel/types': 7.12.6 + '@babel/types': 7.12.7 dev: false resolution: integrity: sha512-AjEa0jrQqNk7eDQOo0pTfUOwQBMF+xVqrausQwT9/rTKy0g04ggFNaJpaE09IQMn9yExluigWMJcj0WC7bq+Og== /@babel/helper-builder-react-jsx/7.10.4: dependencies: '@babel/helper-annotate-as-pure': 7.10.4 - '@babel/types': 7.12.6 + '@babel/types': 7.12.7 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.9: dependencies: - '@babel/compat-data': 7.12.5 - '@babel/core': 7.12.3 + '@babel/compat-data': 7.12.7 + '@babel/core': 7.12.9 '@babel/helper-validator-option': 7.12.1 - browserslist: 4.14.7 + browserslist: 4.15.0 semver: 5.7.1 dev: false peerDependencies: @@ -341,8 +320,8 @@ packages: /@babel/helper-create-class-features-plugin/7.12.1: dependencies: '@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-member-expression-to-functions': 7.12.7 + '@babel/helper-optimise-call-expression': 7.12.7 '@babel/helper-replace-supers': 7.12.5 '@babel/helper-split-export-declaration': 7.11.0 dev: false @@ -350,12 +329,12 @@ packages: '@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.3: + /@babel/helper-create-class-features-plugin/7.12.1_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@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-member-expression-to-functions': 7.12.7 + '@babel/helper-optimise-call-expression': 7.12.7 '@babel/helper-replace-supers': 7.12.5 '@babel/helper-split-export-declaration': 7.11.0 dev: false @@ -363,60 +342,59 @@ packages: '@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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-annotate-as-pure': 7.10.4 - '@babel/helper-regex': 7.10.5 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/types': 7.12.7 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.7 dev: false resolution: integrity: sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA== /@babel/helper-function-name/7.10.4: dependencies: '@babel/helper-get-function-arity': 7.10.4 - '@babel/template': 7.10.4 - '@babel/types': 7.12.6 + '@babel/template': 7.12.7 + '@babel/types': 7.12.7 dev: false resolution: integrity: sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== /@babel/helper-get-function-arity/7.10.4: dependencies: - '@babel/types': 7.12.6 + '@babel/types': 7.12.7 dev: false resolution: integrity: sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== /@babel/helper-hoist-variables/7.10.4: dependencies: - '@babel/types': 7.12.6 + '@babel/types': 7.12.7 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.7 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.7 dev: false resolution: integrity: sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA== @@ -427,61 +405,55 @@ packages: '@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/template': 7.12.7 + '@babel/traverse': 7.12.9 + '@babel/types': 7.12.7 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.7: dependencies: - '@babel/types': 7.12.6 + '@babel/types': 7.12.7 dev: false resolution: - integrity: sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg== + integrity: sha512-I5xc9oSJ2h59OwyUqjv95HRyzxj53DAubUERgQMrpcCEYQyToeHA+NEcUEsVWB4j53RDeskeBJ0SgRAYHDBckw== /@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-wrap-function': 7.12.3 - '@babel/types': 7.12.6 + '@babel/types': 7.12.7 dev: false resolution: integrity: sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A== /@babel/helper-replace-supers/7.12.5: 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.7 + '@babel/traverse': 7.12.9 + '@babel/types': 7.12.7 dev: false resolution: integrity: sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA== /@babel/helper-simple-access/7.12.1: dependencies: - '@babel/types': 7.12.6 + '@babel/types': 7.12.7 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.7 dev: false resolution: integrity: sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA== /@babel/helper-split-export-declaration/7.11.0: dependencies: - '@babel/types': 7.12.6 + '@babel/types': 7.12.7 dev: false resolution: integrity: sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== @@ -496,17 +468,17 @@ packages: /@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/template': 7.12.7 + '@babel/traverse': 7.12.9 + '@babel/types': 7.12.7 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.9 + '@babel/types': 7.12.7 dev: false resolution: integrity: sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA== @@ -518,19 +490,19 @@ packages: dev: false resolution: integrity: sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== - /@babel/parser/7.12.5: + /@babel/parser/7.12.7: 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-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg== + /@babel/plugin-proposal-async-generator-functions/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/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.9 dev: false peerDependencies: '@babel/core': ^7.0.0-0 @@ -545,10 +517,10 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w== - /@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.12.3: + /@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 - '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3 + '@babel/core': 7.12.9 + '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.9 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: @@ -565,12 +537,12 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ== - /@babel/plugin-proposal-decorators/7.12.1_@babel+core@7.12.3: + /@babel/plugin-proposal-decorators/7.12.1_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 - '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3 + '@babel/core': 7.12.9 + '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.9 '@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.9 dev: false peerDependencies: '@babel/core': ^7.0.0-0 @@ -585,21 +557,21 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-bpJ6Bfrzvdzb0vG6zBSNh3HLgFKh+S2CBpNmaLRjg2u7cNkzRPIqBjVURCmpG6pvPfKyxkizwbrXwpYtW3a9cw== - /@babel/plugin-proposal-do-expressions/7.12.1_@babel+core@7.12.3: + /@babel/plugin-proposal-do-expressions/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-do-expressions': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-do-expressions': 7.12.1_@babel+core@7.12.9 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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@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.9 dev: false peerDependencies: '@babel/core': ^7.0.0-0 @@ -614,11 +586,11 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-z5Q4Ke7j0AexQRfgUvnD+BdCSgpTEKnqQ3kskk2jWtOBulxICzd1X9BGt7kmWftxZ2W3++OZdt5gtmC8KLxdRQ== - /@babel/plugin-proposal-export-default-from/7.12.1_@babel+core@7.12.3: + /@babel/plugin-proposal-export-default-from/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-export-default-from': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-export-default-from': 7.12.1_@babel+core@7.12.9 dev: false peerDependencies: '@babel/core': ^7.0.0-0 @@ -633,11 +605,11 @@ packages: '@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.3: + /@babel/plugin-proposal-export-namespace-from/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-export-namespace-from': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.9 dev: false peerDependencies: '@babel/core': ^7.0.0-0 @@ -652,11 +624,11 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Nic0blOXoeyuDJZJNh7kEZMqQUHakiUyxfyFMUV0Sy7DQ+Du9R7cZCUgTLnqq7Bc0Yx0iKRSe5wTmRWLKwxxpA== - /@babel/plugin-proposal-function-bind/7.12.1_@babel+core@7.12.3: + /@babel/plugin-proposal-function-bind/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-function-bind': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-function-bind': 7.12.1_@babel+core@7.12.9 dev: false peerDependencies: '@babel/core': ^7.0.0-0 @@ -672,22 +644,22 @@ packages: '@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.3: + /@babel/plugin-proposal-function-sent/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/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.9 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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@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.9 dev: false peerDependencies: '@babel/core': ^7.0.0-0 @@ -702,11 +674,11 @@ packages: '@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.3: + /@babel/plugin-proposal-logical-assignment-operators/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-logical-assignment-operators': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.9 dev: false peerDependencies: '@babel/core': ^7.0.0-0 @@ -721,17 +693,17 @@ packages: '@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.3: + /@babel/plugin-proposal-nullish-coalescing-operator/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-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.9 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/plugin-proposal-numeric-separator/7.12.7: dependencies: '@babel/helper-plugin-utils': 7.10.4 '@babel/plugin-syntax-numeric-separator': 7.10.4 @@ -739,17 +711,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g== - /@babel/plugin-proposal-numeric-separator/7.12.5_@babel+core@7.12.3: + integrity: sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ== + /@babel/plugin-proposal-numeric-separator/7.12.7_@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-numeric-separator': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.9 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 @@ -761,39 +733,28 @@ 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: - dependencies: - '@babel/core': 7.11.6 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.11.6 - dev: false - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA== - /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.3: + /@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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@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.9 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g== - /@babel/plugin-proposal-optional-chaining/7.12.1: + /@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 @@ -802,18 +763,18 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw== - /@babel/plugin-proposal-optional-chaining/7.12.1_@babel+core@7.12.3: + integrity: sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA== + /@babel/plugin-proposal-optional-chaining/7.12.7_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@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.9 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw== + integrity: sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA== /@babel/plugin-proposal-pipeline-operator/7.12.1: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -823,20 +784,20 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-iloNp4xu8YV8e/mZgGjePg9be1VkJSxQWIplRwgQtQPtF26ar3cHXL4sV8Fujlm2mm/Tu/WiA+FU+Fp7QVP7/g== - /@babel/plugin-proposal-pipeline-operator/7.12.1_@babel+core@7.12.3: + /@babel/plugin-proposal-pipeline-operator/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-pipeline-operator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-pipeline-operator': 7.12.1_@babel+core@7.12.9 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.9: dependencies: - '@babel/core': 7.12.3 - '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3 + '@babel/core': 7.12.9 + '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.9 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: @@ -852,20 +813,20 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-kiWkKtm05K86C+T/nUazv+/Vxu93Aulrvof/ZrxVyGoUBVsVEWDrw9iChbe8tV+aPVQcjg4FQxKW3wUF7cRcpg== - /@babel/plugin-proposal-throw-expressions/7.12.1_@babel+core@7.12.3: + /@babel/plugin-proposal-throw-expressions/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-throw-expressions': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-throw-expressions': 7.12.1_@babel+core@7.12.9 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-unicode-property-regex/7.12.1_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 - '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3 + '@babel/core': 7.12.9 + '@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.9 '@babel/helper-plugin-utils': 7.10.4 dev: false engines: @@ -874,18 +835,18 @@ 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.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-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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: @@ -900,9 +861,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-ir9YW5daRrTYiy9UJ2TzdNIJEZu8KclVzDcfSt4iEmOtwQ4llPtWInNKJyKnVXp1vE4bbVd5S31M/im3mYMO1w== - /@babel/plugin-syntax-decorators/7.12.1_@babel+core@7.12.3: + /@babel/plugin-syntax-decorators/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: @@ -917,9 +878,9 @@ packages: '@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.3: + /@babel/plugin-syntax-do-expressions/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: @@ -934,9 +895,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.3: + /@babel/plugin-syntax-dynamic-import/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: @@ -951,9 +912,9 @@ packages: '@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.3: + /@babel/plugin-syntax-export-default-from/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: @@ -968,18 +929,18 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.3: + /@babel/plugin-syntax-export-namespace-from/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-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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: @@ -994,9 +955,9 @@ packages: '@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.3: + /@babel/plugin-syntax-function-bind/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: @@ -1011,9 +972,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-mtBQvNHcIzLnmQZhgzigzrgFzIe95WvBXJuTN0m4CvhDK0gRNQ2MC2AVSzB6w7VnVh/z5+0iHFcbfqKMlFwTkQ== - /@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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: @@ -1028,18 +989,18 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.3: + /@babel/plugin-syntax-import-meta/7.10.4_@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-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - /@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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: @@ -1055,15 +1016,6 @@ 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: - 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: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -1072,9 +1024,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== - /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.3: + /@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: @@ -1089,9 +1041,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - /@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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: @@ -1106,9 +1058,9 @@ packages: '@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.3: + /@babel/plugin-syntax-nullish-coalescing-operator/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: @@ -1123,9 +1075,9 @@ packages: '@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.3: + /@babel/plugin-syntax-numeric-separator/7.10.4_@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: @@ -1141,27 +1093,18 @@ 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: - 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-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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: @@ -1176,9 +1119,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - /@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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: @@ -1193,9 +1136,9 @@ packages: '@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.3: + /@babel/plugin-syntax-pipeline-operator/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: @@ -1210,45 +1153,45 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-+8FLGK1PYYB7D8tU9U5zX23fnzkpxw4a7lAyyZbgk6b6bN0k2dft/xwcxIE+86i54wLJ83BaAboh2Ow6wf6jHw== - /@babel/plugin-syntax-throw-expressions/7.12.1_@babel+core@7.12.3: + /@babel/plugin-syntax-throw-expressions/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-+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.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-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.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-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.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-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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-module-imports': 7.12.5 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-remap-async-to-generator': 7.12.1 @@ -1257,31 +1200,31 @@ 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.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-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA== - /@babel/plugin-transform-block-scoping/7.12.1_@babel+core@7.12.3: + /@babel/plugin-transform-block-scoping/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-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w== - /@babel/plugin-transform-classes/7.12.1_@babel+core@7.12.3: + /@babel/plugin-transform-classes/7.12.1_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-define-map': 7.10.5 '@babel/helper-function-name': 7.10.4 - '@babel/helper-optimise-call-expression': 7.10.4 + '@babel/helper-optimise-call-expression': 7.12.7 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-replace-supers': 7.12.5 '@babel/helper-split-export-declaration': 7.11.0 @@ -1291,46 +1234,46 @@ packages: '@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.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-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.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-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.9: dependencies: - '@babel/core': 7.12.3 - '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3 + '@babel/core': 7.12.9 + '@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.9 '@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.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-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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-builder-binary-assignment-operator-visitor': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: false @@ -1338,28 +1281,28 @@ 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.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-flow': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-flow': 7.12.1_@babel+core@7.12.9 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: + /@babel/plugin-transform-for-of/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-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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-function-name': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: false @@ -1367,27 +1310,27 @@ packages: '@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.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-+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.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-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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 babel-plugin-dynamic-import-node: 2.3.3 @@ -1396,9 +1339,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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-simple-access': 7.12.1 @@ -1408,9 +1351,9 @@ 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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-hoist-variables': 7.10.4 '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 @@ -1421,9 +1364,9 @@ packages: '@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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 dev: false @@ -1431,27 +1374,27 @@ 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.9: dependencies: - '@babel/core': 7.12.3 - '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3 + '@babel/core': 7.12.9 + '@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.9 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.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-+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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-replace-supers': 7.12.5 dev: false @@ -1468,36 +1411,27 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg== - /@babel/plugin-transform-parameters/7.12.1_@babel+core@7.11.6: - 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-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.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-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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: @@ -1512,16 +1446,16 @@ packages: '@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.3: + /@babel/plugin-transform-react-display-name/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-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w== - /@babel/plugin-transform-react-jsx-development/7.12.5: + /@babel/plugin-transform-react-jsx-development/7.12.7: dependencies: '@babel/helper-builder-react-jsx-experimental': 7.12.4 '@babel/helper-plugin-utils': 7.10.4 @@ -1530,18 +1464,18 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-1JJusg3iPgsZDthyWiCr3KQiGs31ikU/mSf2N2dSYEAO0GEImmVUbWf0VoSDGDFTAn5Dj4DUiR6SdIXHY7tELA== - /@babel/plugin-transform-react-jsx-development/7.12.5_@babel+core@7.12.3: + integrity: sha512-Rs3ETtMtR3VLXFeYRChle5SsP/P9Jp/6dsewBQfokDSzKJThlsuFcnzLTDRALiUmTC48ej19YD9uN1mupEeEDg== + /@babel/plugin-transform-react-jsx-development/7.12.7_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-builder-react-jsx-experimental': 7.12.4 '@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_@babel+core@7.12.9 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-1JJusg3iPgsZDthyWiCr3KQiGs31ikU/mSf2N2dSYEAO0GEImmVUbWf0VoSDGDFTAn5Dj4DUiR6SdIXHY7tELA== + integrity: sha512-Rs3ETtMtR3VLXFeYRChle5SsP/P9Jp/6dsewBQfokDSzKJThlsuFcnzLTDRALiUmTC48ej19YD9uN1mupEeEDg== /@babel/plugin-transform-react-jsx-self/7.12.1: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -1550,9 +1484,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA== - /@babel/plugin-transform-react-jsx-self/7.12.1_@babel+core@7.12.3: + /@babel/plugin-transform-react-jsx-self/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: @@ -1567,16 +1501,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ== - /@babel/plugin-transform-react-jsx-source/7.12.1_@babel+core@7.12.3: + /@babel/plugin-transform-react-jsx-source/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-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ== - /@babel/plugin-transform-react-jsx/7.12.5: + /@babel/plugin-transform-react-jsx/7.12.7: dependencies: '@babel/helper-builder-react-jsx': 7.10.4 '@babel/helper-builder-react-jsx-experimental': 7.12.4 @@ -1586,19 +1520,19 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-2xkcPqqrYiOQgSlM/iwto1paPijjsDbUynN13tI6bosDz/jOW3CRzYguIE8wKX32h+msbBM22Dv5fwrFkUOZjQ== - /@babel/plugin-transform-react-jsx/7.12.5_@babel+core@7.12.3: + integrity: sha512-YFlTi6MEsclFAPIDNZYiCRbneg1MFGao9pPG9uD5htwE0vDbPaMUMeYd6itWjw7K4kro4UbdQf3ljmFl9y48dQ== + /@babel/plugin-transform-react-jsx/7.12.7_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-builder-react-jsx': 7.10.4 '@babel/helper-builder-react-jsx-experimental': 7.12.4 '@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_@babel+core@7.12.9 dev: false peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-2xkcPqqrYiOQgSlM/iwto1paPijjsDbUynN13tI6bosDz/jOW3CRzYguIE8wKX32h+msbBM22Dv5fwrFkUOZjQ== + integrity: sha512-YFlTi6MEsclFAPIDNZYiCRbneg1MFGao9pPG9uD5htwE0vDbPaMUMeYd6itWjw7K4kro4UbdQf3ljmFl9y48dQ== /@babel/plugin-transform-react-pure-annotations/7.12.1: dependencies: '@babel/helper-annotate-as-pure': 7.10.4 @@ -1608,9 +1542,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg== - /@babel/plugin-transform-react-pure-annotations/7.12.1_@babel+core@7.12.3: + /@babel/plugin-transform-react-pure-annotations/7.12.1_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: false @@ -1618,18 +1552,18 @@ packages: '@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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 dev: false peerDependencies: @@ -1647,9 +1581,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg== - /@babel/plugin-transform-runtime/7.12.1_@babel+core@7.12.3: + /@babel/plugin-transform-runtime/7.12.1_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/helper-module-imports': 7.12.5 '@babel/helper-plugin-utils': 7.10.4 resolve: 1.19.0 @@ -1659,18 +1593,18 @@ packages: '@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: + /@babel/plugin-transform-shorthand-properties/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-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw== - /@babel/plugin-transform-spread/7.12.1_@babel+core@7.12.3: + /@babel/plugin-transform-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/helper-skip-transparent-expression-wrappers': 7.12.1 dev: false @@ -1678,167 +1612,166 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng== - /@babel/plugin-transform-sticky-regex/7.12.1_@babel+core@7.12.3: + /@babel/plugin-transform-sticky-regex/7.12.7_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@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.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-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw== - /@babel/plugin-transform-typeof-symbol/7.12.1_@babel+core@7.12.3: + /@babel/plugin-transform-typeof-symbol/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-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q== - /@babel/plugin-transform-typescript/7.12.1_@babel+core@7.12.3: + /@babel/plugin-transform-typescript/7.12.1_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 - '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3 + '@babel/core': 7.12.9 + '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.9 '@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.9 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.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-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.9: dependencies: - '@babel/core': 7.12.3 - '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3 + '@babel/core': 7.12.9 + '@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.9 '@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.7_@babel+core@7.12.9: 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.9 + '@babel/helper-compilation-targets': 7.12.5_@babel+core@7.12.9 '@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/plugin-proposal-async-generator-functions': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-dynamic-import': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-export-namespace-from': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-json-strings': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-logical-assignment-operators': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-numeric-separator': 7.12.7_@babel+core@7.12.9 + '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-optional-catch-binding': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.9 + '@babel/plugin-proposal-private-methods': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-unicode-property-regex': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.9 + '@babel/plugin-syntax-class-properties': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.9 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.9 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-top-level-await': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-arrow-functions': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-async-to-generator': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-block-scoped-functions': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-block-scoping': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-classes': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-computed-properties': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-destructuring': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-duplicate-keys': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-exponentiation-operator': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-for-of': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-function-name': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-literals': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-member-expression-literals': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-modules-amd': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-modules-systemjs': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-modules-umd': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-named-capturing-groups-regex': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-new-target': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-object-super': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-property-literals': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-regenerator': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-reserved-words': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-shorthand-properties': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-spread': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-sticky-regex': 7.12.7_@babel+core@7.12.9 + '@babel/plugin-transform-template-literals': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-typeof-symbol': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-unicode-escapes': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-unicode-regex': 7.12.1_@babel+core@7.12.9 + '@babel/preset-modules': 0.1.4_@babel+core@7.12.9 + '@babel/types': 7.12.7 + 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-OnNdfAr1FUQg7ksb7bmbKoby4qFOHw6DKWWUNB9KqnnCldxhxJlP+21dpyaWFmf2h0rTbOkXJtAGevY3XW1eew== + /@babel/preset-flow/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-transform-flow-strip-types': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-flow-strip-types': 7.12.1_@babel+core@7.12.9 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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@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.9 + '@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.12.9 + '@babel/types': 7.12.7 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/preset-react/7.12.7: dependencies: '@babel/helper-plugin-utils': 7.10.4 '@babel/plugin-transform-react-display-name': 7.12.1 - '@babel/plugin-transform-react-jsx': 7.12.5 - '@babel/plugin-transform-react-jsx-development': 7.12.5 + '@babel/plugin-transform-react-jsx': 7.12.7 + '@babel/plugin-transform-react-jsx-development': 7.12.7 '@babel/plugin-transform-react-jsx-self': 7.12.1 '@babel/plugin-transform-react-jsx-source': 7.12.1 '@babel/plugin-transform-react-pure-annotations': 7.12.1 @@ -1846,35 +1779,36 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-jcs++VPrgyFehkMezHtezS2BpnUlR7tQFAyesJn1vGTO9aTFZrgIQrA5YydlTwxbcjMwkFY6i04flCigRRr3GA== - /@babel/preset-react/7.12.5_@babel+core@7.12.3: + integrity: sha512-wKeTdnGUP5AEYCYQIMeXMMwU7j+2opxrG0WzuZfxuuW9nhKvvALBjl67653CWamZJVefuJGI219G591RSldrqQ== + /@babel/preset-react/7.12.7_@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-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+core@7.12.9 + '@babel/plugin-transform-react-jsx': 7.12.7_@babel+core@7.12.9 + '@babel/plugin-transform-react-jsx-development': 7.12.7_@babel+core@7.12.9 + '@babel/plugin-transform-react-jsx-self': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-react-jsx-source': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-react-pure-annotations': 7.12.1_@babel+core@7.12.9 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-wKeTdnGUP5AEYCYQIMeXMMwU7j+2opxrG0WzuZfxuuW9nhKvvALBjl67653CWamZJVefuJGI219G591RSldrqQ== + /@babel/preset-typescript/7.12.7_@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-transform-typescript': 7.12.1_@babel+core@7.12.3 + '@babel/helper-validator-option': 7.12.1 + '@babel/plugin-transform-typescript': 7.12.1_@babel+core@7.12.9 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-nOoIqIqBmHBSEgBXWR4Dv/XBehtIFcw9PqZw6rFYuKrzsZmOQm3PR5siLBnKZFEsDb03IegG8nSjU/iXXXYRmw== + /@babel/register/7.12.1_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 find-cache-dir: 2.1.0 lodash: 4.17.20 make-dir: 2.1.0 @@ -1887,7 +1821,7 @@ packages: integrity: sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q== /@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: @@ -1898,40 +1832,40 @@ packages: dev: false resolution: integrity: sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg== - /@babel/standalone/7.12.6: + /@babel/standalone/7.12.9: dev: false resolution: - integrity: sha512-yA/OV3jN1nhr0JsAdYWAqbeZ7cAOw/6Fh52rxVMzujr0HF4Z3cau0JBzJfQppFfR9IArrUtcqhBu/+Q/IevoyQ== - /@babel/template/7.10.4: + integrity: sha512-7SFBBNPjEZnN3dlnOcTa08XLkGUUmZX6Aab2rdeVBfI/bBaZXRRMx5XIMU8piZMVJI+jxu4j7gu0E/yRWmtS4w== + /@babel/template/7.12.7: dependencies: '@babel/code-frame': 7.10.4 - '@babel/parser': 7.12.5 - '@babel/types': 7.12.6 + '@babel/parser': 7.12.7 + '@babel/types': 7.12.7 dev: false resolution: - integrity: sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== - /@babel/traverse/7.12.5: + integrity: sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow== + /@babel/traverse/7.12.9: 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 + '@babel/parser': 7.12.7 + '@babel/types': 7.12.7 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-iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw== + /@babel/types/7.12.7: dependencies: '@babel/helper-validator-identifier': 7.10.4 lodash: 4.17.20 to-fast-properties: 2.0.0 dev: false resolution: - integrity: sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA== + integrity: sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ== /@base2/pretty-print-object/1.0.0: dev: false resolution: @@ -2062,7 +1996,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: @@ -2071,15 +2005,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.3.1 - espree: 7.3.0 + 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 @@ -2087,10 +2021,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.4_graphql@14.7.0 dataloader: 2.0.0 graphql: 14.7.0 is-promise: 4.0.0 @@ -2100,12 +2034,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.7_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.4_graphql@14.7.0 dataloader: 2.0.0 graphql: 14.7.0 is-promise: 4.0.0 @@ -2114,22 +2048,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-2sze+CJxu37b4jcQ4fyj6ap9TMnx8+NBtApSs1nWIVENzPE2510aNTsBHgSdTwSeV/tVIFkAtZZAlMEGYGXzQA== + /@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.4_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 @@ -2137,22 +2069,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.4_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.4_graphql@14.7.0 globby: 11.0.1 graphql: 14.7.0 import-from: 3.0.0 @@ -2166,45 +2097,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.4_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.4_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.6.0_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.7_graphql@14.7.0 + '@graphql-tools/utils': 7.1.4_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: 2.0.1_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-iZp6bCKU0AmGKRrsDOYqehg5mVImQS1/JMBvh73VPRp9ry2I1oxsE124Q54t3lHhD2b1wrQ9AJlXxgNsuxmJtQ== /@graphql-tools/utils/6.2.4_graphql@14.7.0: dependencies: '@ardatan/aggregate-error': 0.0.6 @@ -2216,22 +2154,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.4_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-4lxmstMpgHSM1ULD+1X5AcPFaizkdBubB7H9Rqr7Wh6L9bxUHBHFB3bhaFXT7FI0xE01Pt0IMsZadOIlhVTXrg== + /@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.7_graphql@14.7.0 + '@graphql-tools/schema': 7.1.2_graphql@14.7.0 + '@graphql-tools/utils': 7.1.4_graphql@14.7.0 graphql: 14.7.0 is-promise: 4.0.0 tslib: 2.0.3 @@ -2239,7 +2177,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 @@ -2320,7 +2258,7 @@ packages: 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: @@ -2335,7 +2273,7 @@ packages: integrity: sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw== /@jest/transform/26.6.2: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.0.0 chalk: 4.1.0 @@ -2359,7 +2297,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.3 '@types/istanbul-reports': 1.1.2 - '@types/yargs': 15.0.10 + '@types/yargs': 15.0.11 chalk: 3.0.0 dev: false engines: @@ -2370,8 +2308,8 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.3 '@types/istanbul-reports': 3.0.0 - '@types/node': 14.14.8 - '@types/yargs': 15.0.10 + '@types/node': 14.14.11 + '@types/yargs': 15.0.11 chalk: 4.1.0 dev: false engines: @@ -2753,31 +2691,31 @@ 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.21 - '@mdx-js/react': 1.6.21_react@16.14.0 + '@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-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 @@ -2786,19 +2724,19 @@ 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/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: @@ -2816,13 +2754,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 @@ -2861,68 +2809,75 @@ packages: node: '>=10' resolution: integrity: sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw== - /@octokit/auth-token/2.4.3: + /@octokit/auth-token/2.4.4: dependencies: - '@octokit/types': 5.5.0 + '@octokit/types': 6.1.1 dev: false resolution: - integrity: sha512-fdGoOQ3kQJh+hrilc0Plg50xSfaCKOeYN9t6dpJKXN9BxhhfquL0OzoQXg3spLYymL5rm29uPeI3KEXRaZQ9zg== - /@octokit/core/3.2.1: + integrity: sha512-LNfGu3Ro9uFAYh10MUZVaT7X2CnNm2C8IDQmabx+3DygYIQjs9FwzFAHN/0t6mu5HEPhxcb1XOuxdpY82vCg2Q== + /@octokit/core/3.2.4: dependencies: - '@octokit/auth-token': 2.4.3 - '@octokit/graphql': 4.5.7 - '@octokit/request': 5.4.10 - '@octokit/types': 5.5.0 + '@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-XfFSDDwv6tclUenS0EmB6iA7u+4aOHBT1Lz4PtQNQQg3hBbNaR/+Uv5URU+egeIuuGAiMRiDyY92G4GBOWOqDA== - /@octokit/endpoint/6.0.9: + integrity: sha512-d9dTsqdePBqOn7aGkyRFe7pQpCXdibSJ5SFnrTr0axevObZrpz3qkWm7t/NjYv5a66z6vhfteriaq4FRz3e0Qg== + /@octokit/endpoint/6.0.10: dependencies: - '@octokit/types': 5.5.0 + '@octokit/types': 6.1.1 is-plain-object: 5.0.0 universal-user-agent: 6.0.0 dev: false resolution: - integrity: sha512-3VPLbcCuqji4IFTclNUtGdp9v7g+nspWdiCUbK3+iPMjJCZ6LEhn1ts626bWLOn0GiDb6j+uqGvPpqLnY7pBgw== - /@octokit/graphql/4.5.7: + integrity: sha512-9+Xef8nT7OKZglfkOMm7IL6VwxXUQyR7DUSU0LH/F7VNqs8vyd7es5pTfz9E7DwUIx7R3pGscxu1EBhYljyu7Q== + /@octokit/graphql/4.5.8: dependencies: - '@octokit/request': 5.4.10 - '@octokit/types': 5.5.0 + '@octokit/request': 5.4.12 + '@octokit/types': 6.1.1 universal-user-agent: 6.0.0 dev: false resolution: - integrity: sha512-Gk0AR+DcwIK/lK/GX+OQ99UqtenQhcbrhHHfOYlrCQe17ADnX3EKAOKRsAZ9qZvpi5MuwWm/Nm+9aO2kTDSdyA== - /@octokit/plugin-paginate-rest/2.6.0_@octokit+core@3.2.1: + 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.1 - '@octokit/types': 5.5.0 + '@octokit/core': 3.2.4 + '@octokit/types': 6.1.1 dev: false peerDependencies: '@octokit/core': '>=2' resolution: - integrity: sha512-o+O8c1PqsC5++BHXfMZabRRsBIVb34tXPWyQLyp2IXq5MmkxdipS7TXM4Y9ldL1PzY9CTrCsn/lzFFJGM3oRRA== - /@octokit/plugin-rest-endpoint-methods/4.2.1: + integrity: sha512-3Dy7/YZAwdOaRpGQoNHPeT0VU1fYLpIUdPyvR37IyFLgd6XSij4j9V/xN/+eSjF2KKvmfIulEh9LF1tRPjIiDA== + /@octokit/plugin-rest-endpoint-methods/4.4.1_@octokit+core@3.2.4: dependencies: - '@octokit/types': 5.5.0 + '@octokit/core': 3.2.4 + '@octokit/types': 6.1.1 deprecation: 2.3.1 dev: false + peerDependencies: + '@octokit/core': '>=3' resolution: - integrity: sha512-QyFr4Bv807Pt1DXZOC5a7L5aFdrwz71UHTYoHVajYV5hsqffWm8FUl9+O7nxRu5PDMtB/IKrhFqTmdBTK5cx+A== - /@octokit/request-error/2.0.3: + integrity: sha512-+v5PcvrUcDeFXf8hv1gnNvNLdm4C0+2EiuWt9EatjjUmfriM1pTMM+r4j1lLHxeBQ9bVDmbywb11e3KjuavieA== + /@octokit/request-error/2.0.4: dependencies: - '@octokit/types': 5.5.0 + '@octokit/types': 6.1.1 deprecation: 2.3.1 once: 1.4.0 dev: false resolution: - integrity: sha512-GgD5z8Btm301i2zfvJLk/mkhvGCdjQ7wT8xF9ov5noQY8WbKZDH9cOBqXzoeKd1mLr1xH2FwbtGso135zGBgTA== - /@octokit/request/5.4.10: + integrity: sha512-LjkSiTbsxIErBiRh5wSZvpZqT4t0/c9+4dOe0PII+6jXR+oj/h66s7E4a/MghV7iT8W9ffoQ5Skoxzs96+gBPA== + /@octokit/request/5.4.12: dependencies: - '@octokit/endpoint': 6.0.9 - '@octokit/request-error': 2.0.3 - '@octokit/types': 5.5.0 + '@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 @@ -2930,13 +2885,14 @@ packages: universal-user-agent: 6.0.0 dev: false resolution: - integrity: sha512-egA49HkqEORVGDZGav1mh+VD+7uLgOxtn5oODj6guJk0HCy+YBSYapFkSLFgeYj3Fr18ZULKGURkjyhkAChylw== - /@octokit/types/5.5.0: + integrity: sha512-MvWYdxengUWTGFpfpefBBpVmmEYfkwMoxonIB3sUGp5rhdgwjXL1ejo6JbgzG/QD9B/NYt/9cJX1pxXeSIUCkg== + /@octokit/types/6.1.1: dependencies: - '@types/node': 14.14.8 + '@octokit/openapi-types': 2.0.0 + '@types/node': 14.14.11 dev: false resolution: - integrity: sha512-UZ1pErDue6bZNjYOotCNveTXArOMZQFG6hKJfOnGnulVCMcVVi7YIIuuR4WfBhjo7zgpmzn/BkPDnUXtNx+PcQ== + integrity: sha512-btm3D6S7VkRrgyYF31etUtVY/eQ1KzrNRqhFt25KSe2mKlXuLXJilglRC6eDA2P6ou94BUnk/Kz5MPEolXgoiw== /@pieh/friendly-errors-webpack-plugin/1.7.0-chalk-2_webpack@4.44.2: dependencies: chalk: 2.4.2 @@ -3036,7 +2992,7 @@ 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 @@ -3087,20 +3043,6 @@ packages: dev: false resolution: integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== - /@sindresorhus/df/1.0.1: - dev: false - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-xptm9S9vzdKHyAffIQMF2694UA0= - /@sindresorhus/df/2.1.0: - dependencies: - execa: 0.2.2 - dev: false - engines: - node: '>=4' - resolution: - integrity: sha1-0gjPJ+BvC7R20U197M19cm6ao4k= /@sindresorhus/is/0.14.0: dev: false engines: @@ -3137,18 +3079,18 @@ packages: node: '>=10' resolution: integrity: sha512-QSdIQ5keUFAZ3KLbfbsntW39ox0Ym8183RqTwBq/ZEFoN3NQAtGV+qWaNdzKpIDHgj9J2CQ2iNDRVU11Zyr7MQ== - /@storybook/addon-a11y/6.1.0_react-dom@16.14.0+react@16.14.0: - dependencies: - '@storybook/addons': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/api': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/channels': 6.1.0 - '@storybook/client-api': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/client-logger': 6.1.0 - '@storybook/components': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/core-events': 6.1.0 - '@storybook/theming': 6.1.0_react-dom@16.14.0+react@16.14.0 - axe-core: 4.1.0 - core-js: 3.7.0 + /@storybook/addon-a11y/6.1.10_react-dom@16.14.0+react@16.14.0: + dependencies: + '@storybook/addons': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/api': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/channels': 6.1.10 + '@storybook/client-api': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/client-logger': 6.1.10 + '@storybook/components': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/core-events': 6.1.10 + '@storybook/theming': 6.1.10_react-dom@16.14.0+react@16.14.0 + axe-core: 4.1.1 + core-js: 3.8.1 global: 4.4.0 lodash: 4.17.20 react: 16.14.0 @@ -3167,16 +3109,16 @@ packages: react-dom: optional: true resolution: - integrity: sha512-4s8YdyWBR17bmKbv7PsGKxJoNrcJGkzeZmALU8dPjzDRHleVZKeNrIph1th0vQd/jYmqanssFHkhM/snGpEvEw== - /@storybook/addon-actions/6.1.0_react-dom@16.14.0+react@16.14.0: + integrity: sha512-neWDxetpZrAAErnHi+HXT7dIPwV3FuCc7qiCFRusrhUgkNWuLhpnxJpMYuE7HtjlXaTvHBXZtekXw0ztEd0WpQ== + /@storybook/addon-actions/6.1.10_react-dom@16.14.0+react@16.14.0: dependencies: - '@storybook/addons': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/api': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/client-api': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/components': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/core-events': 6.1.0 - '@storybook/theming': 6.1.0_react-dom@16.14.0+react@16.14.0 - core-js: 3.7.0 + '@storybook/addons': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/api': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/client-api': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/components': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/core-events': 6.1.10 + '@storybook/theming': 6.1.10_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 @@ -3188,7 +3130,7 @@ packages: regenerator-runtime: 0.13.7 ts-dedent: 2.0.0 util-deprecate: 1.0.2 - uuid: 8.3.1 + uuid: 8.3.2 dev: false peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -3199,16 +3141,16 @@ packages: react-dom: optional: true resolution: - integrity: sha512-pS7VIjWOYO9kh+tH1d7RU6Ak7TyPaWlwo1hnvvx8rI+nmtvtV0VSpG5Blxq5cuf+uwFUHSn66Pcx53BEcP9e8g== - /@storybook/addon-controls/6.1.0_react-dom@16.14.0+react@16.14.0: + integrity: sha512-fbt1v9Ms8g/gQC8cQ7p5qZdR5vrc3qv6el/x7M6xUhq4lBjw4NOHIhBBDhaPgS3tFY/sP/wEXR2q0iirfO9OEg== + /@storybook/addon-controls/6.1.10_react-dom@16.14.0+react@16.14.0: dependencies: - '@storybook/addons': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/api': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/client-api': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/components': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/node-logger': 6.1.0 - '@storybook/theming': 6.1.0_react-dom@16.14.0+react@16.14.0 - core-js: 3.7.0 + '@storybook/addons': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/api': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/client-api': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/components': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/node-logger': 6.1.10 + '@storybook/theming': 6.1.10_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: 2.0.0 @@ -3222,35 +3164,35 @@ packages: react-dom: optional: true resolution: - integrity: sha512-1EiAo7asjxibph4dSWBNv4FhK9dkLXU27LRrJUyIZ0Ekzy1XOfWv/um7DdgMWj469ZLGppIHgt4eAPx5vTPMKw== - /@storybook/addon-docs/6.1.0_7e68966041f840a2d335849f2d5f6835: + integrity: sha512-m/EThT3xc1XNzZVS24Ic7+lBfWxD83M89R8BzGnqJzvxtdhRV/snSDMQlauX8Rwwdlh7A1MfZUCvERllH19M+g== + /@storybook/addon-docs/6.1.10_e4d75a294d1d8783998856b0f2483020: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@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 + '@babel/parser': 7.12.7 + '@babel/plugin-transform-react-jsx': 7.12.7_@babel+core@7.12.9 + '@babel/preset-env': 7.12.7_@babel+core@7.12.9 '@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.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/api': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/client-api': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/client-logger': 6.1.0 - '@storybook/components': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/core': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/core-events': 6.1.0 + '@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.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/api': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/client-api': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/client-logger': 6.1.10 + '@storybook/components': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/core': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/core-events': 6.1.10 '@storybook/csf': 0.0.1 - '@storybook/node-logger': 6.1.0 - '@storybook/postinstall': 6.1.0 - '@storybook/source-loader': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/theming': 6.1.0_react-dom@16.14.0+react@16.14.0 + '@storybook/node-logger': 6.1.10 + '@storybook/postinstall': 6.1.10 + '@storybook/source-loader': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/theming': 6.1.10_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_fa474cc1763d2be32ce57156dae52dec + core-js: 3.8.1 doctrine: 3.0.0 escodegen: 1.14.3 fast-deep-equal: 3.1.3 @@ -3271,7 +3213,7 @@ packages: webpack: 4.44.2 dev: false peerDependencies: - '@storybook/vue': 6.1.0 + '@storybook/vue': 6.1.10 babel-loader: ^8.0.0 react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -3292,16 +3234,16 @@ packages: webpack: optional: true resolution: - integrity: sha512-XpACz/REFzmN7WI/yZjULBlKDw31NaaUZND8GFAOnllYT/Q/aZgjR+zwbf12ev5zg6kohkulZM6tl4Iz2FIJYA== - /@storybook/addon-links/6.1.0_react-dom@16.14.0+react@16.14.0: + integrity: sha512-AN8F/ZYiHHfylCy7Ztlgist3Na4x6ojcijd83h0INgLDB1T3nZQOALd8801KmKgtPIF2843lYIr4fB11llLFPw== + /@storybook/addon-links/6.1.10_react-dom@16.14.0+react@16.14.0: dependencies: - '@storybook/addons': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/client-logger': 6.1.0 - '@storybook/core-events': 6.1.0 + '@storybook/addons': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/client-logger': 6.1.10 + '@storybook/core-events': 6.1.10 '@storybook/csf': 0.0.1 - '@storybook/router': 6.1.0_react-dom@16.14.0+react@16.14.0 + '@storybook/router': 6.1.10_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 @@ -3319,17 +3261,17 @@ packages: react-dom: optional: true resolution: - integrity: sha512-rLSl39lDWezI4U1kPCqJxpaRec/rpO36Z4ADXd0c2LY89Ddoq6Rgo1wxngFK8SWiCgIEYVlG1cdPAsePNVorOw== - /@storybook/addon-storysource/6.1.0_react-dom@16.14.0+react@16.14.0: - dependencies: - '@storybook/addons': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/api': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/client-logger': 6.1.0 - '@storybook/components': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/router': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/source-loader': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/theming': 6.1.0_react-dom@16.14.0+react@16.14.0 - core-js: 3.7.0 + integrity: sha512-Pg+mgMBacvNbeqyhcPhmRKwsJ5qg3pW66HQbUCl6viqZD6eER9a4KV663MopH5hQoPhs4tFKO85oOhJJw/VVqQ== + /@storybook/addon-storysource/6.1.10_react-dom@16.14.0+react@16.14.0: + dependencies: + '@storybook/addons': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/api': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/client-logger': 6.1.10 + '@storybook/components': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/router': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/source-loader': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/theming': 6.1.10_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 @@ -3348,16 +3290,16 @@ packages: react-dom: optional: true resolution: - integrity: sha512-K15yHaA+YSsw+5NHjgsQ6ntKX5gtXZ/m3dDHNxFrLOGmUV4SAeU5JlncbZ+pe2OM3D1eBlARS2sdyBBpVQChJw== - /@storybook/addon-viewport/6.1.0_react-dom@16.14.0+react@16.14.0: + integrity: sha512-aNiUYUhhmg4EFaVl2PrmLH8PmqpSM6VdXbA9GrJjMr2wahLJyF1pGymF33Obb3NGCUTWYygW06GBYCq2SK5CrQ== + /@storybook/addon-viewport/6.1.10_react-dom@16.14.0+react@16.14.0: dependencies: - '@storybook/addons': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/api': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/client-logger': 6.1.0 - '@storybook/components': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/core-events': 6.1.0 - '@storybook/theming': 6.1.0_react-dom@16.14.0+react@16.14.0 - core-js: 3.7.0 + '@storybook/addons': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/api': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/client-logger': 6.1.10 + '@storybook/components': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/core-events': 6.1.10 + '@storybook/theming': 6.1.10_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 @@ -3374,16 +3316,16 @@ packages: react-dom: optional: true resolution: - integrity: sha512-M62QJAA66baVm+Hm6bFgu96xJMNJDeXEo5StG+5uGbNqRCQ6Y7iH177KQvA58YizW9zCDQnumUAEgct6tb9XEw== - /@storybook/addons/6.1.0_react-dom@16.14.0+react@16.14.0: + integrity: sha512-KIVq4sOBP9gTGvbvbCJn3JW1O5V6NGLTGD+NaZhEbArSoa5rxNFzmqGSRbhOKmf/SC49/t4GUv57xv+bYZQxZg== + /@storybook/addons/6.1.10_react-dom@16.14.0+react@16.14.0: dependencies: - '@storybook/api': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/channels': 6.1.0 - '@storybook/client-logger': 6.1.0 - '@storybook/core-events': 6.1.0 - '@storybook/router': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/theming': 6.1.0_react-dom@16.14.0+react@16.14.0 - core-js: 3.7.0 + '@storybook/api': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/channels': 6.1.10 + '@storybook/client-logger': 6.1.10 + '@storybook/core-events': 6.1.10 + '@storybook/router': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/theming': 6.1.10_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 @@ -3393,19 +3335,19 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-f4E1V8YVFNUJUJ92106QKR3up4rdUczi3PY/XYxeuWTe9o1yWn0PvzbU0RbbIV+6WGGaczL0+Ze2p0xj12XOHw== - /@storybook/api/6.1.0_react-dom@16.14.0+react@16.14.0: + integrity: sha512-hTyqBDujXnOsk63EiHDPtHqXl9ZJKHf2AGjnvYVe8hjHyYPFlHM5mb0LGoZ2QEe3hd99voe3oEk33phZ+XSbZA== + /@storybook/api/6.1.10_react-dom@16.14.0+react@16.14.0: dependencies: '@reach/router': 1.3.4_react-dom@16.14.0+react@16.14.0 - '@storybook/channels': 6.1.0 - '@storybook/client-logger': 6.1.0 - '@storybook/core-events': 6.1.0 + '@storybook/channels': 6.1.10 + '@storybook/client-logger': 6.1.10 + '@storybook/core-events': 6.1.10 '@storybook/csf': 0.0.1 - '@storybook/router': 6.1.0_react-dom@16.14.0+react@16.14.0 + '@storybook/router': 6.1.10_react-dom@16.14.0+react@16.14.0 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.1.0_react-dom@16.14.0+react@16.14.0 + '@storybook/theming': 6.1.10_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 @@ -3422,37 +3364,37 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-5HeohpgUKlgXJmAYPSwqmFWh2P0hJu9Q8CuW1Q1AHTqlXhklnH2LDIpjn0pdCf9kBPD0njtmO6iKVAMCYno3pQ== - /@storybook/channel-postmessage/6.1.0: + integrity: sha512-SjAhQ261KagU29jraNZo0hCn8XxuEl8i6WWwJiQyPzk1Grw3Rag/fl2FpQnNHj+3O87PfRrJLSVnGQZcfiW5zw== + /@storybook/channel-postmessage/6.1.10: dependencies: - '@storybook/channels': 6.1.0 - '@storybook/client-logger': 6.1.0 - '@storybook/core-events': 6.1.0 - core-js: 3.7.0 + '@storybook/channels': 6.1.10 + '@storybook/client-logger': 6.1.10 + '@storybook/core-events': 6.1.10 + core-js: 3.8.1 global: 4.4.0 qs: 6.9.4 telejson: 5.1.0 dev: false resolution: - integrity: sha512-ib9C0J2ix9Rfz4AQrr5L8RRJBshyCMb9NFpUveEfin/M4VsFEAg9VPdHw519kaZl7QNiDfTTMJXS6GD4LqDpXg== - /@storybook/channels/6.1.0: + integrity: sha512-33Xs0gDxUNGxz03YlBjSyD9wFGRSIl+E/x1EqfErsm9CRb7PyHaeEuJ9wcYrPtMJnzAvndyQEEGfnzgXk5qbQg== + /@storybook/channels/6.1.10: dependencies: - core-js: 3.7.0 + core-js: 3.8.1 ts-dedent: 2.0.0 util-deprecate: 1.0.2 dev: false resolution: - integrity: sha512-saFn7LbzOixA0dHgAhaq2HsJ8DvywEQGEHtWEihwJ/CLEMWrX7rY2SdhEUTJVjLA11h6Ty3suG6MY6WouhHogA== - /@storybook/cli/6.1.0: + integrity: sha512-6WyK0OmIy0Gr58JvsmfupquTNsISkGSQX5zgUN2vMMB/rLl7HbddU7/yE/tv/F9fVJag3pXSo3pqlgtdfxXoyw== + /@storybook/cli/6.1.10: dependencies: - '@babel/core': 7.12.3 - '@babel/preset-env': 7.12.1_@babel+core@7.12.3 - '@storybook/codemod': 6.1.0 - '@storybook/node-logger': 6.1.0 + '@babel/core': 7.12.9 + '@babel/preset-env': 7.12.7_@babel+core@7.12.9 + '@storybook/codemod': 6.1.10 + '@storybook/node-logger': 6.1.10 '@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 @@ -3473,18 +3415,18 @@ packages: peerDependencies: jest: '*' resolution: - integrity: sha512-5Ja3C3ltqRw3VKlc6nk3qePC4Jaxh5oIVs/QIaubOKNW/ytraoNC52JO8NqC0NNylqd2fLNUDUrSoiC+v92bAA== - /@storybook/client-api/6.1.0_react-dom@16.14.0+react@16.14.0: + integrity: sha512-qFeoj1wV759cZw+jlKFw++PzbIDaZsjLhxJC83KL4jLa+BrbNWBuMsoRc2KMqCX4js09O1w5UBeSblRdAKRZrA== + /@storybook/client-api/6.1.10_react-dom@16.14.0+react@16.14.0: dependencies: - '@storybook/addons': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/channel-postmessage': 6.1.0 - '@storybook/channels': 6.1.0 - '@storybook/client-logger': 6.1.0 - '@storybook/core-events': 6.1.0 + '@storybook/addons': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/channel-postmessage': 6.1.10 + '@storybook/channels': 6.1.10 + '@storybook/client-logger': 6.1.10 + '@storybook/core-events': 6.1.10 '@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 @@ -3501,20 +3443,20 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-5Y/gfLRGdCeMBgIGSVZrchw+4s/Z706VD2A/qwXJAHtrm/bU9ukrV5i5DdRKEQUOc3dl+TEvGNYrbHI3//bY2g== - /@storybook/client-logger/6.1.0: + integrity: sha512-qnKTL0EDEoFri7XwcmuZtcRB+AY8N72F4QFgAiLRBYVOQeEhbdZOpRJBmEA4PKjoDAU+EuIueb90hW91ZgtoBw== + /@storybook/client-logger/6.1.10: dependencies: - core-js: 3.7.0 + core-js: 3.8.1 global: 4.4.0 dev: false resolution: - integrity: sha512-8MKPRkfArvUF7lDutgKfOij/WVvANFqO2Kko3BjtCWNYsb7xHyl2mhsXZRouDWKL+JyypLmMn8j/hICW913dDw== - /@storybook/codemod/6.1.0: + integrity: sha512-06EnESLaNCeHSzsZEEMiy9QtyucTy2BvQ2Z0yPnZLuXTXZNgI6aOtftpehwKSYXdudaIvLkb6xfNvix0BBgHhw== + /@storybook/codemod/6.1.10: dependencies: - '@mdx-js/mdx': 1.6.21 + '@mdx-js/mdx': 1.6.22 '@storybook/csf': 0.0.1 - '@storybook/node-logger': 6.1.0 - core-js: 3.7.0 + '@storybook/node-logger': 6.1.10 + core-js: 3.8.1 cross-spawn: 7.0.3 globby: 11.0.1 jscodeshift: 0.7.1 @@ -3524,17 +3466,17 @@ packages: regenerator-runtime: 0.13.7 dev: false resolution: - integrity: sha512-7bm+4JKSBUL12ZEkiYrkpZgsrTyUx1p/BDbGRQQFnQkD0W3+LOnwJIeQZl/tVTkDNG1yBG+yqampUmsHy7Cmqw== - /@storybook/components/6.1.0_react-dom@16.14.0+react@16.14.0: + integrity: sha512-VdlIb7kCQUYQn6qEwcXW79SAohAbZ/Tc40cG+s+9cQ3yOmwXwVGdzCBkczOtnb196tn+jXqQR8nDBzOSI9v7hw== + /@storybook/components/6.1.10_react-dom@16.14.0+react@16.14.0: dependencies: '@popperjs/core': 2.5.4 - '@storybook/client-logger': 6.1.0 + '@storybook/client-logger': 6.1.10 '@storybook/csf': 0.0.1 - '@storybook/theming': 6.1.0_react-dom@16.14.0+react@16.14.0 + '@storybook/theming': 6.1.10_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 + core-js: 3.8.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.20 @@ -3554,58 +3496,58 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-d2XtccunS/i8avmgovpnK+HfDzJq9DhHyLFi+Ctut8hDhzCXajlV6CLcJS0JhBhk7ujfFbRxvkW2SugkehwGWA== - /@storybook/core-events/6.1.0: - dependencies: - core-js: 3.7.0 - dev: false - resolution: - integrity: sha512-k2w/+OZcaDBtkIbtrH+IwUQFWV9CsIro6GIBf0xuLYNERUuoJ4n1GctFztaWLbumcpvAmQpLfSsD/WtEhOjgWg== - /@storybook/core/6.1.0_react-dom@16.14.0+react@16.14.0: - 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.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/api': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/channel-postmessage': 6.1.0 - '@storybook/channels': 6.1.0 - '@storybook/client-api': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/client-logger': 6.1.0 - '@storybook/components': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/core-events': 6.1.0 + integrity: sha512-n3+tlSFt+hapNxkASpAIEhyXDR7xmE/x+LW4xxuYfRRxvOy0zAgcrgY8BkDmxWzGH3M/Ev5uVVVdxaRIw7i2SA== + /@storybook/core-events/6.1.10: + dependencies: + core-js: 3.8.1 + dev: false + resolution: + integrity: sha512-Xv56iXXSf53xiBDW0XEKypfw+1HZw7BN38AISQdbEX5+0y+VLHdWe6vdXIeoXz6ja0lP0Dnrjn4g8usenJzgmA== + /@storybook/core/6.1.10_react-dom@16.14.0+react@16.14.0: + dependencies: + '@babel/core': 7.12.9 + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-decorators': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-export-default-from': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.9 + '@babel/plugin-proposal-private-methods': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-transform-arrow-functions': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-block-scoping': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-classes': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-destructuring': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-for-of': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-shorthand-properties': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-spread': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-template-literals': 7.12.1_@babel+core@7.12.9 + '@babel/preset-env': 7.12.7_@babel+core@7.12.9 + '@babel/preset-react': 7.12.7_@babel+core@7.12.9 + '@babel/preset-typescript': 7.12.7_@babel+core@7.12.9 + '@babel/register': 7.12.1_@babel+core@7.12.9 + '@storybook/addons': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/api': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/channel-postmessage': 6.1.10 + '@storybook/channels': 6.1.10 + '@storybook/client-api': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/client-logger': 6.1.10 + '@storybook/components': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/core-events': 6.1.10 '@storybook/csf': 0.0.1 - '@storybook/node-logger': 6.1.0 - '@storybook/router': 6.1.0_react-dom@16.14.0+react@16.14.0 + '@storybook/node-logger': 6.1.10 + '@storybook/router': 6.1.10_react-dom@16.14.0+react@16.14.0 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/ui': 6.1.0_react-dom@16.14.0+react@16.14.0 + '@storybook/theming': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/ui': 6.1.10_react-dom@16.14.0+react@16.14.0 '@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_fa474cc1763d2be32ce57156dae52dec babel-plugin-emotion: 10.0.33 babel-plugin-macros: 2.8.0 babel-preset-minify: 0.5.1 @@ -3615,7 +3557,7 @@ 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 @@ -3657,7 +3599,6 @@ packages: style-loader: 1.3.0_webpack@4.44.2 telejson: 5.1.0 terser-webpack-plugin: 3.1.0_webpack@4.44.2 - trash: 6.1.1 ts-dedent: 2.0.0 unfetch: 4.2.0 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.44.2 @@ -3672,34 +3613,34 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-g3GQy3UlpvrX5/lj45brOIf1u3H8icw3sPkqct+gkbMrtazVsHHpWnrkr9Hdx1KW7KePBgwKbQ5lFSTiyCugUQ== + integrity: sha512-AIsb35tmy9Y5LKsn9dJpHoVHn3pCbR+fOVNq75Sdm3hc5NfRAeNIM/qrCnp8BRRzAFIYDPU59kTFX3LHxIlIvg== /@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.1.0: + /@storybook/node-logger/6.1.10: 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-gliUQ+adsH3FGYGqFiICIt6voWO9/2HnM8ZOTBajH3jEPekejCh77gddXplClaba04mKf0xt4jOVTA3ajxuQTQ== - /@storybook/postinstall/6.1.0: + integrity: sha512-ABmkDbqsEgP+Szzs0TSaAeaudCtA25Pbd9n5bhaMQBqka86VV0Engtm5FHtYBE58XzWjD8L3AoBkPOt0mtRDVg== + /@storybook/postinstall/6.1.10: dependencies: - core-js: 3.7.0 + core-js: 3.8.1 dev: false resolution: - integrity: sha512-+1XybgyR3+/HOoJcGcATBdq0hJdx/0qi7TdYSksKSCbPJtKticvEyKLHRxxfIINkzrsQLitisrGm0hG7Oviw1g== - /@storybook/preset-scss/1.0.3_219574bc463df1490f10235906ad944f: + integrity: sha512-EhlDF5rc2aA2szkjaFrd3pvwa1zJkJLF1sYwJMlzaw6/5RoaNSu4ecccMJfTHJJdhaMjcchFK/8NImF0XjrP5w== + /@storybook/preset-scss/1.0.3_676d7bba63aef161cee7df81d55967e5: dependencies: - css-loader: 5.0.1_webpack@4.44.2 - sass-loader: 10.0.5_sass@1.27.2+webpack@4.44.2 - style-loader: 2.0.0_webpack@4.44.2 + 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: '*' @@ -3707,10 +3648,10 @@ packages: style-loader: '*' resolution: integrity: sha512-o9Iz6wxPeNENrQa2mKlsDKynBfqU2uWaRP80HeWp4TkGgf7/x3DVF2O7yi9N0x/PI1qzzTTpxlQ90D62XmpiTw== - /@storybook/preset-scss/1.0.3_676d7bba63aef161cee7df81d55967e5: + /@storybook/preset-scss/1.0.3_86e6589ad1641e1eae393e6536006f06: dependencies: css-loader: 3.6.0_webpack@4.44.2 - sass-loader: 8.0.2_sass@1.29.0+webpack@4.44.2 + sass-loader: 10.0.5_sass@1.27.2+webpack@4.44.2 style-loader: 1.3.0_webpack@4.44.2 dev: false peerDependencies: @@ -3719,28 +3660,27 @@ packages: style-loader: '*' resolution: integrity: sha512-o9Iz6wxPeNENrQa2mKlsDKynBfqU2uWaRP80HeWp4TkGgf7/x3DVF2O7yi9N0x/PI1qzzTTpxlQ90D62XmpiTw== - /@storybook/react/6.1.0_e022e2c0e03c001c1fe6c7d1c978ba75: + /@storybook/react/6.1.10_8ba94b1ec462bdc3324c33bb935b9454: 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 + '@babel/core': 7.12.9 + '@babel/preset-flow': 7.12.1_@babel+core@7.12.9 + '@babel/preset-react': 7.12.7_@babel+core@7.12.9 '@pmmmwh/react-refresh-webpack-plugin': 0.4.3_637fe0af5eea2230ffdb56306b9d64e4 - '@storybook/addons': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/core': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/node-logger': 6.1.0 + '@storybook/addons': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/core': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/node-logger': 6.1.10 '@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.9 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 react: 16.14.0 react-dev-utils: 10.2.1 - react-docgen-typescript-plugin: 0.6.2_webpack@4.44.2 + react-docgen-typescript-plugin: 0.6.3 react-dom: 16.14.0_react@16.14.0 react-refresh: 0.8.3 regenerator-runtime: 0.13.7 @@ -3755,12 +3695,12 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-XIe4kuADv69T+G8zr+in9mfwRbPqoKYBY+4Yl8zhCGOQ+pESLXpde7sHvTjcRJe1fm2+JZJXye53BM59tJrSKA== - /@storybook/router/6.1.0_react-dom@16.14.0+react@16.14.0: + integrity: sha512-m6A2JkybvSZEh/DQe7az7qRxvbM+yBh3z5ziJ1CLX6CkLtjUkQ+D5666b+/CUXqp297e/xDVFMNt3rSuqNHdpA== + /@storybook/router/6.1.10_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 @@ -3771,10 +3711,10 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-1FarcGypRqmFtNbhTeSNDjZcttBHqBppMdUcJUTHhmeTC8uVo3/IERE6GRu5OJKnj4wcwSbQl2QxAfeCAvGYpw== + integrity: sha512-q9rQzkwz0Sz6lIfiEP4uydmZ3+ERSFhv/M8BZvZTiTKH3IXgYVbjoCFPRjtR3qyvIw6gHXh3ipy0JssUig/yYg== /@storybook/semver/7.3.2: dependencies: - core-js: 3.7.0 + core-js: 3.8.1 find-up: 4.1.0 dev: false engines: @@ -3782,12 +3722,12 @@ packages: hasBin: true resolution: integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg== - /@storybook/source-loader/6.1.0_react-dom@16.14.0+react@16.14.0: + /@storybook/source-loader/6.1.10_react-dom@16.14.0+react@16.14.0: dependencies: - '@storybook/addons': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/client-logger': 6.1.0 + '@storybook/addons': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/client-logger': 6.1.10 '@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 @@ -3802,14 +3742,14 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-bSYrbO4l3LV583UiH3th8+zQeN+N7yxOV7S2xDfzCWM0vA4sLi+viBvTh7IvlIgNBh0U6ilJ7wFlOSLzA5R7xQ== - /@storybook/theming/6.1.0_react-dom@16.14.0+react@16.14.0: + integrity: sha512-ovQa5hoM/AdIblSlPXa5RokEy3DIq/H+JZAOA8zIN6gn4ZrdROEhbztK0MB1jcMsVARrORRVSEg8us/AiMTfwQ== + /@storybook/theming/6.1.10_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.1.0 - core-js: 3.7.0 + '@storybook/client-logger': 6.1.10 + core-js: 3.8.1 deep-object-diff: 1.1.0 emotion-theming: 10.0.27_5f216699bc8c1f24088b3bf77b7cbbdf global: 4.4.0 @@ -3824,23 +3764,23 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-ZEocn9rVL+Kyt110gDjzJXrPwDsLGfAowI4RYngAo0m33OD3sVQGVMjxoB5IsT6M51XDavuZlrcRORj9Pebm1Q== - /@storybook/ui/6.1.0_react-dom@16.14.0+react@16.14.0: + integrity: sha512-6XDfDBQUxS2WzacPWa4qDc6z1HlbkIveFxhsXPn1O59CclnTJHqPI6bltcC3EKRSAYhgLBJmGbft4CedK6Ypzg== + /@storybook/ui/6.1.10_react-dom@16.14.0+react@16.14.0: dependencies: '@emotion/core': 10.1.1_react@16.14.0 - '@storybook/addons': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/api': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/channels': 6.1.0 - '@storybook/client-logger': 6.1.0 - '@storybook/components': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/core-events': 6.1.0 - '@storybook/router': 6.1.0_react-dom@16.14.0+react@16.14.0 + '@storybook/addons': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/api': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/channels': 6.1.10 + '@storybook/client-logger': 6.1.10 + '@storybook/components': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/core-events': 6.1.10 + '@storybook/router': 6.1.10_react-dom@16.14.0+react@16.14.0 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.1.0_react-dom@16.14.0+react@16.14.0 + '@storybook/theming': 6.1.10_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 downshift: 6.0.6_react@16.14.0 emotion-theming: 10.0.27_5f216699bc8c1f24088b3bf77b7cbbdf fuse.js: 3.6.1 @@ -3864,16 +3804,10 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 resolution: - integrity: sha512-xlqQeGzNtg8Fi0Q/cU9Sbo+pVIDcyL/JMX1P53IAOYYHhI2SdxsjoRfNvWmO5DsskYsZeao+zjHBvmyp6CQh6A== - /@stroncium/procfs/1.2.1: - dev: false - engines: - node: '>=8' - resolution: - integrity: sha512-X1Iui3FUNZP18EUvysTHxt+Avu2nlVzyf90YM8OYgP6SGzTzzX/0JgObfO1AQQDzuZtNNz29bVh8h5R97JrjxA== + integrity: sha512-py3wkG3OxOrYsPG4Kq1c3JP88fZ28/k7dxpx85bH+9N0wzMbxAlEvbA9E01Phv64aR18yPiHjAgJNIw5DQw+gg== /@stylelint/postcss-css-in-js/0.37.2_4fe96148bf77e6cee792ae366c9083f9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 postcss: 7.0.35 postcss-syntax: 0.36.2_postcss@7.0.35 dev: false @@ -3986,7 +3920,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.7 dev: false engines: node: '>=10' @@ -3994,7 +3928,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.9 '@svgr/babel-preset': 5.5.0 '@svgr/hast-util-to-babel-ast': 5.5.0 svg-parser: 2.0.4 @@ -4006,7 +3940,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' @@ -4024,10 +3958,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.9 + '@babel/plugin-transform-react-constant-elements': 7.12.1_@babel+core@7.12.9 + '@babel/preset-env': 7.12.7_@babel+core@7.12.9 + '@babel/preset-react': 7.12.7_@babel+core@7.12.9 '@svgr/core': 5.5.0 '@svgr/plugin-jsx': 5.5.0 '@svgr/plugin-svgo': 5.5.0 @@ -4053,6 +3987,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 @@ -4078,7 +4016,7 @@ packages: dependencies: '@types/http-cache-semantics': 4.0.0 '@types/keyv': 3.1.1 - '@types/node': 14.14.8 + '@types/node': 14.14.11 '@types/responselike': 1.0.0 dev: false resolution: @@ -4095,6 +4033,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: @@ -4122,13 +4064,13 @@ packages: /@types/glob/7.1.3: dependencies: '@types/minimatch': 3.0.3 - '@types/node': 14.14.8 + '@types/node': 14.14.11 dev: false resolution: integrity: sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w== /@types/graceful-fs/4.1.4: dependencies: - '@types/node': 14.14.8 + '@types/node': 14.14.11 dev: false resolution: integrity: sha512-mWA/4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg== @@ -4152,7 +4094,7 @@ packages: integrity: sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A== /@types/http-proxy/1.17.4: dependencies: - '@types/node': 14.14.8 + '@types/node': 14.14.11 dev: false resolution: integrity: sha512-IrSHl2u6AWXduUaDLqYpt45tLVCtYv7o4Z0s1KghBCDgIIS9oW5K1H8mZG/A2CfeLdEa7rTd1ACOiHBc1EMT2Q== @@ -4193,7 +4135,7 @@ packages: integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4= /@types/keyv/3.1.1: dependencies: - '@types/node': 14.14.8 + '@types/node': 14.14.11 dev: false resolution: integrity: sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw== @@ -4203,7 +4145,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== @@ -4239,15 +4181,15 @@ packages: integrity: sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg== /@types/node-fetch/2.5.7: dependencies: - '@types/node': 14.14.8 + '@types/node': 14.14.11 form-data: 3.0.0 dev: false resolution: integrity: sha512-o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw== - /@types/node/14.14.8: + /@types/node/14.14.11: dev: false resolution: - integrity: sha512-z/5Yd59dCKI5kbxauAJgw6dLPzW+TNOItNE00PkpzNwUIEwdj/Lsqwq94H5DdYBX7C13aRA0CY32BK76+neEUA== + integrity: sha512-BJ97wAUuU3NUiUCp44xzUFquQEvnk1wu7q4CMEUYKJWjdkr0YWYDsm4RFtAvxYsNjLsKcrFt6RvK8r+mnzMbEQ== /@types/node/8.10.66: dev: false resolution: @@ -4287,45 +4229,52 @@ 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.11 + safe-buffer: 5.2.1 + dev: false + resolution: + integrity: sha512-sqsgQqFT7HmQz/V5jH1O0fvQQnXAJO46Gg9LRO/JPfjmVmGUlcx831TZZO3Y3HtWhIkzf3kTsNT0Z0kzIhIvZw== /@types/responselike/1.0.0: dependencies: - '@types/node': 14.14.8 + '@types/node': 14.14.11 dev: false resolution: integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA== @@ -4358,32 +4307,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.8 + '@types/node': 14.14.11 '@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.8 + '@types/node': 14.14.11 '@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.8 + '@types/node': 14.14.11 dev: false resolution: integrity: sha512-f5WLMpezwVxCLm1xQe/kdPpQIOmL0TXYx2O15VYfYzc7hTIdxiOoOvez+McSIw3b7z/1zGovew9YSL7+h4h7/Q== @@ -4391,12 +4340,12 @@ packages: dev: false resolution: integrity: sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw== - /@types/yargs/15.0.10: + /@types/yargs/15.0.11: dependencies: '@types/yargs-parser': 15.0.0 dev: false resolution: - integrity: sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ== + integrity: sha512-jfcNBxHFYJ4nPIacsi3woz1+kvUO6s1CyeEhtnDHBjHUMNj5UlW2GynmnSgiJJEdNg9yW5C8lfoNRZrHGv5EqA== /@types/yoga-layout/1.9.2: dev: false resolution: @@ -4460,7 +4409,7 @@ packages: 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: @@ -4599,22 +4548,6 @@ packages: dev: false resolution: integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA== - /@webpack-contrib/schema-utils/1.0.0-beta.0_webpack@4.44.2: - dependencies: - ajv: 6.12.6 - ajv-keywords: 3.5.2_ajv@6.12.6 - chalk: 2.4.2 - strip-ansi: 4.0.0 - text-table: 0.2.0 - webpack: 4.44.2 - webpack-log: 1.2.0 - dev: false - engines: - node: '>= 6.9.0 || >= 8.9.0' - peerDependencies: - webpack: ^3.0.0 || ^4.0.0 - resolution: - integrity: sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg== /@xtuc/ieee754/1.2.0: dev: false resolution: @@ -4729,34 +4662,34 @@ packages: integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== /airbnb-js-shims/2.2.1: dependencies: - array-includes: 3.1.1 + 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_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 @@ -5102,16 +5035,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 @@ -5213,17 +5152,18 @@ packages: node: '>= 0.4' resolution: integrity: sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q== - /array.prototype.map/1.0.2: + /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: @@ -5405,7 +5345,7 @@ packages: /autoprefixer/8.6.5: dependencies: browserslist: 3.2.8 - caniuse-lite: 1.0.30001159 + caniuse-lite: 1.0.30001165 normalize-range: 0.1.2 num2fraction: 1.2.2 postcss: 6.0.23 @@ -5416,8 +5356,8 @@ packages: integrity: sha512-PLWJN3Xo/rycNkx+mp8iBDMTm3FeWe4VmYaZDSqL5QQB9sLsQkG5k8n+LNDFnhh9kdq2K+egL/icpctOmDHwig== /autoprefixer/9.8.6: dependencies: - browserslist: 4.14.7 - caniuse-lite: 1.0.30001159 + browserslist: 4.15.0 + caniuse-lite: 1.0.30001165 colorette: 1.2.1 normalize-range: 0.1.2 num2fraction: 1.2.2 @@ -5441,12 +5381,12 @@ packages: dev: false resolution: integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== - /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 @@ -5506,9 +5446,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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 dev: false peerDependencies: '@babel/core': ^7.0.0-0 @@ -5517,9 +5457,9 @@ packages: /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/parser': 7.12.7 + '@babel/traverse': 7.12.9 + '@babel/types': 7.12.7 eslint: 6.8.0 eslint-visitor-keys: 1.3.0 resolve: 1.19.0 @@ -5530,13 +5470,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/parser': 7.12.7 + '@babel/traverse': 7.12.9 + '@babel/types': 7.12.7 + eslint: 7.15.0 eslint-visitor-keys: 1.3.0 resolve: 1.19.0 dev: false @@ -5696,13 +5636,12 @@ packages: dev: false resolution: integrity: sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI= - /babel-loader/8.2.1_427212bc1158d185e577033f19ca0757: + /babel-loader/8.2.2_fa474cc1763d2be32ce57156dae52dec: dependencies: - '@babel/core': 7.12.3 - find-cache-dir: 2.1.0 + '@babel/core': 7.12.9 + 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 @@ -5712,13 +5651,12 @@ packages: '@babel/core': ^7.0.0 webpack: '>=2' resolution: - integrity: sha512-dMF8sb2KQ8kJl21GUjkW1HWmcsL39GOV5vnzjqrCzEPNY0S0UfMLnumidiwIajDSBmKhYf5iRW+HXaM4cvCKBw== - /babel-loader/8.2.1_webpack@4.44.2: + integrity: sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g== + /babel-loader/8.2.2_webpack@4.44.2: dependencies: - find-cache-dir: 2.1.0 + 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 @@ -5728,7 +5666,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 @@ -5749,16 +5687,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 @@ -5786,12 +5724,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 @@ -5807,7 +5745,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.7 glob: 7.1.6 lodash: 4.17.20 require-package-name: 2.0.1 @@ -5899,9 +5837,9 @@ packages: node: '>= 8.0.0' resolution: integrity: sha512-3pdEq3PXALilSJ6dnC4wMWr0AZixHRM4utpdpBR9g5QG7B7JwWyukQv7a9hVxkbGFl+nQbrHDqqQOIBtTXTP/Q== - /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.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 dev: false peerDependencies: '@babel/core': ^7.1.0 @@ -5915,7 +5853,7 @@ 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.12.0_gatsby@2.25.4: dependencies: gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0 dev: false @@ -5924,7 +5862,7 @@ packages: peerDependencies: gatsby: ^2.0.0 resolution: - integrity: sha512-uKgTE+KGNuNVVAofCHYKAqe6pLzAQ0Qh+3L43SAN1LrN9Mc9HBWSzQTEzj3VM0HR2DgBO281S1SDk+B14t9XGg== + integrity: sha512-oF1XC0+FfeBBE8FbcLD0Rf4EZUIrUEI2comT+DaX27U34tKByuCPQSkLKgcirCd/h5kfJd9LLIr1Sjv3dU4NGw== /babel-plugin-remove-import-export/1.1.1: dev: false resolution: @@ -5935,7 +5873,7 @@ packages: 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== @@ -6151,7 +6089,7 @@ packages: integrity: sha512-scDmJ3c0VvP4eREOVqv03XoeiN6NnEc57zbM2WycyjMVG07YrJ2qWWYjP8hALoFFJaYW9AZ1T/nUnYq5SgeZOA== /babel-plugin-transform-imports/2.0.0: dependencies: - '@babel/types': 7.12.6 + '@babel/types': 7.12.7 is-valid-path: 0.1.1 dev: false resolution: @@ -6269,23 +6207,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_@babel+core@7.12.9+core-js@3.8.1: + dependencies: + '@babel/core': 7.12.9 + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-transform-runtime': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-transform-spread': 7.12.1_@babel+core@7.12.9 + '@babel/preset-env': 7.12.7_@babel+core@7.12.9 + '@babel/preset-react': 7.12.7_@babel+core@7.12.9 '@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.6.0 gatsby-legacy-polyfills: 0.0.6 dev: false engines: @@ -6333,7 +6271,7 @@ packages: '@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.5 + '@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 @@ -6343,21 +6281,21 @@ packages: node: '>=8' resolution: integrity: sha512-AKSaoGwQuj5klG50uG8dbNkXT2MD3oqQr+ceGhve6ju5TjyoGUHSjw+p4V8DH340NfFp8LIqv4EKv/uDFLIsTQ== - /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_@babel+core@7.12.9: + dependencies: + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-decorators': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-do-expressions': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-export-default-from': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-export-namespace-from': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-function-bind': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-function-sent': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-logical-assignment-operators': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-numeric-separator': 7.12.7_@babel+core@7.12.9 + '@babel/plugin-proposal-pipeline-operator': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-throw-expressions': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.12.9 dev: false engines: node: '>=8' @@ -6369,7 +6307,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 @@ -6379,7 +6317,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: @@ -6969,8 +6907,8 @@ packages: integrity: sha512-TkOR1cQGdmXU9zW4YukWzWVSJwrxmNdADFbqbE3HFgQWe5wqZmOawqZ7J/8MPCwk/W8yY7Y0h+7mOtcZxLP23g== /browserslist/1.7.7: dependencies: - caniuse-db: 1.0.30001159 - electron-to-chromium: 1.3.601 + caniuse-db: 1.0.30001165 + electron-to-chromium: 1.3.621 deprecated: Browserslist 2 could fail on reading Browserslist >3.0 config used in other tools. dev: false hasBin: true @@ -6978,27 +6916,27 @@ packages: integrity: sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk= /browserslist/3.2.8: dependencies: - caniuse-lite: 1.0.30001159 - electron-to-chromium: 1.3.601 + caniuse-lite: 1.0.30001165 + electron-to-chromium: 1.3.621 dev: false hasBin: true resolution: integrity: sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ== /browserslist/4.10.0: dependencies: - caniuse-lite: 1.0.30001159 - electron-to-chromium: 1.3.601 + caniuse-lite: 1.0.30001165 + electron-to-chromium: 1.3.621 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.15.0: dependencies: - caniuse-lite: 1.0.30001159 + caniuse-lite: 1.0.30001165 colorette: 1.2.1 - electron-to-chromium: 1.3.601 + electron-to-chromium: 1.3.621 escalade: 3.1.1 node-releases: 1.1.67 dev: false @@ -7006,7 +6944,7 @@ packages: node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 hasBin: true resolution: - integrity: sha512-BSVRLCeG3Xt/j/1cCGj1019Wbty0H+Yvu2AOuZSuoaUWn3RatbL33Cxk+Q4jRMRAbOm0p7SLravLjpnT6s0vzQ== + integrity: sha512-IJ1iysdMkGmjjYeRlDU8PQejVwxvVO5QOfXH7ylW31GO6LwNRSmm/SgRXtNsEXqMLl2e+2H5eEJ7sfynF8TCaQ== /bs-recipes/1.3.4: dev: false resolution: @@ -7086,13 +7024,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: @@ -7107,6 +7038,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: @@ -7135,7 +7074,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== @@ -7318,11 +7257,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: @@ -7374,21 +7320,21 @@ packages: integrity: sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== /caniuse-api/3.0.0: dependencies: - browserslist: 4.14.7 - caniuse-lite: 1.0.30001159 + browserslist: 4.15.0 + caniuse-lite: 1.0.30001165 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.30001159: + /caniuse-db/1.0.30001165: dev: false resolution: - integrity: sha512-fh0J2qYeW36hS5RUT7FnHcvgUxATY5LtzSXURWPuLNAolWaXR+qSu+asX5xcFvC4fwQKzfHWtWuPGJc0VJYrfw== - /caniuse-lite/1.0.30001159: + integrity: sha512-0Z8BRu+sxK2qh/+yXM+sUwbpX+qJpIg7BgAJZe3zw7WL6arffICUfNmUCPDRCP4WGyo4tC1d//1xAHz3mzA2uw== + /caniuse-lite/1.0.30001165: dev: false resolution: - integrity: sha512-w9Ph56jOsS8RL20K9cLND3u/+5WASWdhC/PPrf+V3/HsM3uHOavWOR1Xzakbv4Puo/srmPHudkmCRWM7Aq+/UA== + integrity: sha512-8cEsSMwXfx7lWSUMA2s08z9dIgsnR5NAqjXP23stdsU3AUWkCr/rr4s4OFtHXn5XXr6+7kam3QFVoYyXNPdJPA== /capture-exit/2.0.0: dependencies: rsvp: 4.8.5 @@ -7556,7 +7502,7 @@ packages: dependencies: '@actions/core': 1.2.6 '@actions/github': 4.0.0 - '@babel/preset-react': 7.12.5 + '@babel/preset-react': 7.12.7 '@babel/runtime': 7.12.5 '@chromaui/localtunnel': 2.0.1 async-retry: 1.3.1 @@ -7583,7 +7529,7 @@ packages: pluralize: 8.0.0 progress: 2.0.3 progress-stream: 2.0.0 - semver: 7.3.2 + semver: 7.3.4 slash: 3.0.0 strip-ansi: 6.0.0 tmp: 0.1.0 @@ -7597,11 +7543,11 @@ packages: hasBin: true resolution: integrity: sha512-AaItd0h4W3uYMI4otbsE8Pv/lz2nMEUrz24oHK6TYRH/+IeTjfgpEgaojKK3NNr6c9seJ+/ihp4DQ60sjKhvAA== - /chromatic/5.3.0_@babel+core@7.12.3: + /chromatic/5.3.0_@babel+core@7.12.9: dependencies: '@actions/core': 1.2.6 '@actions/github': 4.0.0 - '@babel/preset-react': 7.12.5_@babel+core@7.12.3 + '@babel/preset-react': 7.12.7_@babel+core@7.12.9 '@babel/runtime': 7.12.5 '@chromaui/localtunnel': 2.0.1 async-retry: 1.3.1 @@ -7628,7 +7574,7 @@ packages: pluralize: 8.0.0 progress: 2.0.3 progress-stream: 2.0.0 - semver: 7.3.2 + semver: 7.3.4 slash: 3.0.0 strip-ansi: 6.0.0 tmp: 0.1.0 @@ -7802,6 +7748,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: @@ -8088,7 +8042,7 @@ packages: integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg== /config-chain/1.1.12: dependencies: - ini: 1.3.5 + ini: 1.3.6 proto-list: 1.2.4 dev: false resolution: @@ -8166,7 +8120,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 @@ -8174,15 +8128,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: @@ -8249,7 +8203,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 @@ -8257,34 +8211,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.15.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: @@ -8308,7 +8262,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: @@ -8339,18 +8293,6 @@ packages: node: '>=10' resolution: integrity: sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== - /cp-file/6.2.0: - dependencies: - graceful-fs: 4.2.4 - make-dir: 2.1.0 - nested-error-stacks: 2.1.0 - pify: 4.0.1 - safe-buffer: 5.2.1 - dev: false - engines: - node: '>=6' - resolution: - integrity: sha512-fmvV4caBnofhPe8kOcitBwSn2f39QLjnAnGq3gO9dfd75mUytzKNZB1hde6QHunW2Rt+OwuBOMc3i1tNElbszA== /cp-file/7.0.0: dependencies: graceful-fs: 4.2.4 @@ -8385,6 +8327,11 @@ packages: dev: false resolution: integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== + /create-gatsby/0.1.0: + dev: false + hasBin: true + resolution: + integrity: sha512-kgsvPCWOVxiUXFUV66hC6q8QaBOqQeneaQi5u6YbVk1eELxjglAi8PgoUOswZsrHkVOjypjKbuVtHkaanJ3F2A== /create-hash/1.2.0: dependencies: cipher-base: 1.0.4 @@ -8418,6 +8365,10 @@ packages: 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 @@ -8427,7 +8378,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 @@ -8437,21 +8388,13 @@ 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 dev: false resolution: integrity: sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ== - /cross-spawn-async/2.2.5: - dependencies: - lru-cache: 4.1.5 - which: 1.3.1 - deprecated: 'cross-spawn no longer requires a build toolchain, use it instead' - dev: false - resolution: - integrity: sha1-hF/wwINKPe2dFg2sptOQkGuyiMw= /cross-spawn/3.0.1: dependencies: lru-cache: 4.1.5 @@ -8593,28 +8536,6 @@ packages: webpack: ^4.0.0 || ^5.0.0 resolution: integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ== - /css-loader/5.0.1_webpack@4.44.2: - dependencies: - camelcase: 6.2.0 - cssesc: 3.0.0 - icss-utils: 5.0.0_postcss@8.1.7 - loader-utils: 2.0.0 - postcss: 8.1.7 - postcss-modules-extract-imports: 3.0.0_postcss@8.1.7 - postcss-modules-local-by-default: 4.0.0_postcss@8.1.7 - postcss-modules-scope: 3.0.0_postcss@8.1.7 - postcss-modules-values: 4.0.0_postcss@8.1.7 - postcss-value-parser: 4.1.0 - schema-utils: 3.0.0 - semver: 7.3.2 - webpack: 4.44.2 - dev: false - engines: - node: '>= 10.13.0' - peerDependencies: - webpack: ^4.27.0 || ^5.0.0 - resolution: - integrity: sha512-cXc2ti9V234cq7rJzFKhirb2L2iPy8ZjALeVJAozXYz9te3r4eqLSixNAbMDJSgJEQywqXzs8gonxaboeKqwiw== /css-select-base-adapter/0.1.1: dev: false resolution: @@ -8653,7 +8574,7 @@ packages: node: '>=8.0.0' resolution: integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== - /css-tree/1.1.1: + /css-tree/1.1.2: dependencies: mdn-data: 2.0.14 source-map: 0.6.1 @@ -8661,7 +8582,7 @@ packages: engines: node: '>=8.0.0' resolution: - integrity: sha512-NVN42M2fjszcUNpDbdkvutgQSlFYsr1z7kqeuCagHnNLBfYor6uP1WL1KrkmdYZ5Y1vTBCIOI/C/+8T98fJ71w== + integrity: sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ== /css-what/2.1.3: dev: false resolution: @@ -8766,14 +8687,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.1.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: @@ -8875,13 +8796,14 @@ packages: integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== /debug/3.2.7: dependencies: - ms: 2.1.2 + ms: 2.1.3 dev: false resolution: 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== @@ -9029,10 +8951,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 @@ -9218,12 +9140,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: @@ -9350,6 +9272,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: @@ -9489,7 +9419,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: @@ -9509,10 +9439,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 @@ -9533,13 +9463,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 @@ -9700,10 +9630,10 @@ packages: hasBin: true resolution: integrity: sha512-dldq3ZfFtgVTJMLjOe+/3sROTzALlL9E34V4/sDtUd/KlBSS0s6U1/+WPE1B4sj9CXHJpL1M6rhNJnc9Wbal9w== - /electron-to-chromium/1.3.601: + /electron-to-chromium/1.3.621: dev: false resolution: - integrity: sha512-ctRyXD9y0mZu8pgeNwBUhLP3Guyr5YuqkfLKYmpTwYx7o9JtCEJme9JVX4xBXPr5ZNvr/iBXUvHLFEVJQThATg== + integrity: sha512-FeIuBzArONbAmKmZIsZIFGu/Gc9AVGlVeVbhCq+G2YIl6QkT0TDn2HKN/FMf1btXEB9kEmIuQf3/lBTVAbmFOg== /elegant-spinner/1.0.1: dev: false engines: @@ -9859,7 +9789,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' @@ -9952,11 +9882,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' @@ -9969,13 +9899,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' @@ -9990,7 +9920,7 @@ packages: call-bind: 1.0.0 get-intrinsic: 1.0.1 has-symbols: 1.0.1 - is-arguments: 1.0.4 + is-arguments: 1.1.0 is-map: 2.0.1 is-set: 2.0.1 is-string: 1.0.5 @@ -10102,13 +10032,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' @@ -10117,16 +10047,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' @@ -10165,7 +10095,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' @@ -10186,9 +10116,9 @@ packages: 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_c29e6beeb245c629047b173ad0d8d907: + /eslint-import-resolver-babel-module/5.2.0_7af7e4e2208405c090cefc4a248555f1: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 babel-plugin-module-resolver: 4.0.0 pkg-up: 2.0.0 resolve: 1.19.0 @@ -10202,7 +10132,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 @@ -10233,9 +10163,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 @@ -10287,7 +10217,7 @@ packages: integrity: sha512-d5tQm24YkVvCEk29ZR5ScsgXqAGCjKlMS8lx3mS7FS/EKsWbkvXQImpvic03EpMIvNTBW5e+2xnHzXB/VHNZJw== /eslint-plugin-import/2.22.1_eslint@6.8.0: dependencies: - array-includes: 3.1.1 + array-includes: 3.1.2 array.prototype.flat: 1.2.4 contains-path: 0.1.0 debug: 2.6.9 @@ -10297,7 +10227,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 @@ -10308,19 +10238,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-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 @@ -10333,7 +10263,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' @@ -10343,9 +10273,9 @@ 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 @@ -10360,17 +10290,17 @@ 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 language-tags: 1.0.5 @@ -10391,9 +10321,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' @@ -10403,18 +10333,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-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 + 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' @@ -10422,20 +10352,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-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 + 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' @@ -10512,7 +10442,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 @@ -10534,10 +10464,10 @@ 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 + '@eslint/eslintrc': 0.2.2 ajv: 6.12.6 chalk: 4.1.0 cross-spawn: 7.0.3 @@ -10547,10 +10477,10 @@ packages: 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 @@ -10558,7 +10488,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 @@ -10567,7 +10497,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 @@ -10578,7 +10508,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: @@ -10595,7 +10525,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 @@ -10604,7 +10534,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: @@ -10659,14 +10589,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: @@ -10710,18 +10636,6 @@ packages: dev: false resolution: integrity: sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A== - /execa/0.2.2: - dependencies: - cross-spawn-async: 2.2.5 - npm-run-path: 1.0.0 - object-assign: 4.1.1 - path-key: 1.0.0 - strip-eof: 1.0.0 - dev: false - engines: - node: '>=0.12' - resolution: - integrity: sha1-4urUcsLDGq1vc/GslW7vReEjIMs= /execa/0.7.0: dependencies: cross-spawn: 5.1.0 @@ -10969,6 +10883,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 @@ -11002,6 +10922,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: @@ -11195,6 +11119,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: @@ -11483,12 +11418,12 @@ packages: dev: false resolution: integrity: sha1-VURAdm2goNYDmZ9DNFP2wvxqdcE= - /flow-parser/0.138.0: + /flow-parser/0.139.0: dev: false engines: node: '>=0.4.0' resolution: - integrity: sha512-LFnTyjrv39UvCWl8NOcpByr/amj8a5k5z7isO2wv4T43nNrUnHQwX3rarTz9zcpHXkDAQv6X4MfQ4ZzJUptpbw== + integrity: sha512-yEh5wJIi/BG7JZvWAWxTdfZ1uoh/W3oefJOuvUDosKFIE5H7ad8Eu6k9ba1yr83Lxn5vY6kZMG1IaiiiA/5scg== /flush-write-stream/1.1.1: dependencies: inherits: 2.0.4 @@ -11577,6 +11512,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 @@ -11620,6 +11565,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: @@ -11756,16 +11707,17 @@ 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 + es-abstract: 1.18.0-next.1 functions-have-names: 1.2.1 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: @@ -11780,7 +11732,7 @@ packages: node: '>=6' resolution: integrity: sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw== - /gatsby-cli/2.13.1: + /gatsby-cli/2.15.0: dependencies: '@babel/code-frame': 7.10.4 '@hapi/joi': 15.1.1 @@ -11791,13 +11743,14 @@ packages: common-tags: 1.8.0 configstore: 5.0.1 convert-hrtime: 3.0.0 + create-gatsby: 0.1.0 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.6.0 + gatsby-recipes: 0.5.0 + gatsby-telemetry: 1.6.0 hosted-git-info: 3.0.7 is-valid-path: 0.1.1 lodash: 4.17.20 @@ -11809,12 +11762,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 @@ -11825,8 +11778,8 @@ packages: hasBin: true requiresBuild: true resolution: - integrity: sha512-k27GTZXQHIgIZHjyYTSzI7OhaxUOLuIIvgTcrKOx/t+9ztH941g0EhoBr0XbsvI1lknumuUPC7/66/RPYTsmTg== - /gatsby-core-utils/1.4.0: + integrity: sha512-ho6Bji5iOzHEXe1owvhgXip4Xpw71iQML8Kw4VdwGFzMqRxtv0m55Vj5yRKtMefM2hmLrNQ3zamtP6xdwwDk0A== + /gatsby-core-utils/1.6.0: dependencies: ci-info: 2.0.0 configstore: 5.0.1 @@ -11839,7 +11792,7 @@ packages: engines: node: '>=10.13.0' resolution: - integrity: sha512-wU6huyGZ8aJ/8Izfc7D39ujxaCz/jFtznufmMSXLnEBwLF5MWGsmECx4i2nfTb2kkkTFc+n0i/rx///UnPUURg== + integrity: sha512-jGaXDPbXOkP5Ct7pcOTsx0C0WTvIjSBVlHp0oBIv6rTw7DP498G9RAytqOT8z3uAf1PzWjAcUEMGNdicVucrxg== /gatsby-graphiql-explorer/0.4.15: dependencies: '@babel/runtime': 7.12.5 @@ -11848,7 +11801,7 @@ packages: node: '>=10.13.0' resolution: integrity: sha512-Mo6wo6EX3pIL7ErKI0yJIfJw9iYDZyPyEsCQJDhcxymhqf1x0d8DRGDjyJDndDBiSuSUfgdBrHz/MKh3ZOZnAg== - /gatsby-image/2.5.0: + /gatsby-image/2.7.0: dependencies: '@babel/runtime': 7.12.5 object-fit-images: 3.2.4 @@ -11857,14 +11810,14 @@ packages: engines: node: '>=10.13.0' resolution: - integrity: sha512-XS57PyRHSKileshs6kBqRs3KXsRVSR1xDYiSoCipDa3C4GDgUUPUPYFz+YjWAa2lk5vCkOEYk8vWdm4d2I77zA== + integrity: sha512-Ae5teH/iPF9n7NKQP62r5kDz6Rhv4YXpEsUdptRsRH6ioeykGtO1NcYjcsHWo24KrM3fd06LKU9LiGJ5pLrQgg== /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.7.0_832005e77e970d80ad4bd3eb87f2200a: dependencies: '@babel/runtime': 7.12.5 '@reach/router': 1.3.4_react-dom@16.14.0+react@16.14.0 @@ -11880,14 +11833,14 @@ 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-ilr8X/cTRBZ3OpENP4K3h62aMtXFfLwA0TtAA/4Lg3Qf+jPsSVRKp4+rV8zjLvYmEEV8gNLv4NWr+CI4w0jsZQ== + /gatsby-page-utils/0.5.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.6.0 glob: 7.1.6 lodash: 4.17.20 micromatch: 4.0.2 @@ -11895,28 +11848,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-htixEbQh03tdL4VEfTmErxLNDeaJRLHKY8ndOp7bd/UOp24y/U5spjjght2cNTkqkP8dUPmMAhgoYj25QiBMaw== + /gatsby-plugin-manifest/2.8.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-core-utils: 1.6.0 + gatsby-plugin-utils: 0.5.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-NNHMfVA28BdMI2aGmdl6ra7sDe9lUOUsVrgK5mpWfIA+VA4hYSzvbGaQ3kj50gD9WscaTmgpZEjewSlOPnGSFw== + /gatsby-plugin-offline/3.6.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-core-utils: 1.6.0 glob: 7.1.6 idb-keyval: 3.2.0 lodash: 4.17.20 @@ -11927,17 +11880,16 @@ 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-/hadTgTkhi9V7m4bc1DX43Ny6V3FRKoFZgXSWYlcdELornxJYsAr9DdghRx8Twk10FPfVlLdmIjltQT0iuvQNA== + /gatsby-plugin-page-creator/2.6.0_gatsby@2.25.4: dependencies: - '@babel/traverse': 7.12.5 + '@babel/traverse': 7.12.9 '@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-page-utils: 0.5.0 globby: 11.0.1 - graphql: 14.7.0 lodash: 4.17.20 dev: false engines: @@ -11945,7 +11897,7 @@ packages: peerDependencies: gatsby: ^2.0.0 resolution: - integrity: sha512-lE6H++qSz2ZFbc+9TMfpz1i6jLdGVBxUYE7KY2ohNJb4POJF9wm4XfTwKLQsFNlQzH7GCKMIi3QqWhuNOgH2WQ== + integrity: sha512-1pzJGgXNgCo+zJpkIqH2FuSSflApkHqF1ffsLGHkRFCcibn/MLACfhOgwnwYcYO6FoxWSTs9oZNH+EKKfIKO4A== /gatsby-plugin-pnpm/1.2.5_gatsby@2.25.4: dependencies: gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0 @@ -11955,7 +11907,7 @@ packages: 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.6.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 @@ -11967,8 +11919,8 @@ 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-nuI9UyLuxaRRGiTbAkYW5EXEKqrRJiaAnTrmXhLf5btQZSG0EGVrRFtQeN9KTuCi43czenZ2IDcbBg5yf0p1Gg== + /gatsby-plugin-sass/2.7.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 @@ -11981,15 +11933,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-PPO5NgSoUySSLq41P6FDwx9oHrrB/Kb1zgn2lYugW5U81GuFl2fxvgq3nF1pyB2Nye0RMDla+EnrM6sf4nD60A== + /gatsby-plugin-sharp/2.10.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-core-utils: 1.6.0 + gatsby-telemetry: 1.6.0 got: 10.7.0 imagemin: 7.0.1 imagemin-mozjpeg: 9.0.0 @@ -11999,8 +11952,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 @@ -12009,23 +11962,23 @@ 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-w1a4waIlAUb7SpfvMstVI8S2V/R5EECqSEQ3IUFtARqbp/9eGFMlgwBBmn4AEA8bsIp3Bwvl1T2lIqZoh+jgHA== + /gatsby-plugin-typescript/2.8.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.9 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-numeric-separator': 7.12.7_@babel+core@7.12.9 + '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.9 + '@babel/preset-typescript': 7.12.7_@babel+core@7.12.9 '@babel/runtime': 7.12.5 - babel-plugin-remove-graphql-queries: 2.10.0_gatsby@2.25.4 + babel-plugin-remove-graphql-queries: 2.12.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-Xe39rI83fPHu0rjyexQglEuasKYelM0Sklau9pj7gAFOzYYtuALChqNYADcM/D9Ot18T0bFlhuN/nxREpLE+eQ== /gatsby-plugin-utils/0.2.40_gatsby@2.25.4: dependencies: gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0 @@ -12037,7 +11990,7 @@ packages: gatsby: ^2.24.79 resolution: integrity: sha512-RKjmpPhmi8TDR9hAKxmD4ZJMje3BLs6nt6mxMWT0F8gf5giCYEywplJikyCvaPfuyaFlq1hMmFaVvzmeZNussg== - /gatsby-plugin-utils/0.3.0_gatsby@2.25.4: + /gatsby-plugin-utils/0.5.0_gatsby@2.25.4: dependencies: gatsby: 2.25.4_react-dom@16.14.0+react@16.14.0 joi: 17.3.0 @@ -12047,8 +12000,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-Wvzt970TWr+cDdFdXjFmJ5rQEk9CbbbHzGo5GHOwfphXOTwp7/oKbTZoiGBm9M9Tf9Rdz6ph18j2ixdC0fy2Jw== + /gatsby-react-router-scroll/3.3.0_832005e77e970d80ad4bd3eb87f2200a: dependencies: '@babel/runtime': 7.12.5 '@reach/router': 1.3.4_react-dom@16.14.0+react@16.14.0 @@ -12062,19 +12015,19 @@ 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-bFAXOgxPgIhae2DQzcBY8XOH7RK0TSBco8k5vgxfAt+FYYco+4CRyzmXGQ6EMHefj7jF/425Z6l1D87GuVTbuA== + /gatsby-recipes/0.5.0: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/generator': 7.12.5 '@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.9 + '@babel/plugin-transform-react-jsx': 7.12.7_@babel+core@7.12.9 + '@babel/standalone': 7.12.9 + '@babel/template': 7.12.7 + '@babel/types': 7.12.7 + '@graphql-tools/schema': 7.1.2_graphql@14.7.0 + '@graphql-tools/utils': 7.1.4_graphql@14.7.0 '@hapi/hoek': 8.5.1 '@hapi/joi': 15.1.1 better-queue: 3.8.10 @@ -12088,8 +12041,8 @@ packages: 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.6.0 + gatsby-telemetry: 1.6.0 glob: 7.1.6 graphql: 14.7.0 graphql-compose: 6.3.8_graphql@14.7.0 @@ -12105,14 +12058,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 @@ -12120,37 +12073,36 @@ 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-C0JHy4vDbGYGT3GSACpjGygqJ/kyl+GM+Li19G7LHeBTJ62o1+mF5zkYsBjMl43S4+3yrLeB4ijukPZEQdlIAA== + /gatsby-source-filesystem/2.7.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-core-utils: 1.6.0 got: 9.6.0 md5-file: 5.0.0 mime: 2.4.6 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-SpIwHe89LLwgwNUEcHaRCe3J5+7ODgdJLh/PhJdSpmEzeHQRtLAfInNuoTMs8pJ53W+1HI/ph3/HXSAPddi/VA== + /gatsby-telemetry/1.6.0: dependencies: '@babel/code-frame': 7.10.4 '@babel/runtime': 7.12.5 @@ -12159,9 +12111,8 @@ packages: 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.6.0 git-up: 4.0.2 is-docker: 2.1.1 lodash: 4.17.20 @@ -12172,8 +12123,8 @@ 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-9bT40EqFU+oKJD0QUK6+MEwel7r8t9uI/9wlM5xU7P4qx2Ji66KJ1L0aCNgeZAHsdBF84K+J8tHnghr5A/7s7g== + /gatsby-transformer-json/2.7.0_gatsby@2.25.4: dependencies: '@babel/runtime': 7.12.5 bluebird: 3.7.2 @@ -12184,18 +12135,18 @@ packages: peerDependencies: gatsby: ^2.0.15 resolution: - integrity: sha512-nnXS5/rRuuFDdFfkqS0bTqhf5EMD7WVEO0wy+Y485OfvqOHptCAuqfTyOU9paqq08rN5zLlvy7T/WZL4orRTsA== - /gatsby-transformer-sharp/2.6.0_10b77ea86b4a1cd7f6aa12445c9bbb71: + integrity: sha512-Sve0E2Emhk+7JECNjOME4O1bz+T4xflZeyqEoGYthx73Ni2gan1A+x4WrMrJC11dOEH5hoDXs+rKDKMfU9zbeQ== + /gatsby-transformer-sharp/2.8.0_2b5ecb247c97aa47411905fb2307f9e3: 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-plugin-sharp: 2.10.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' @@ -12203,15 +12154,15 @@ packages: gatsby: ^2.12.1 gatsby-plugin-sharp: ^2.0.0-beta.3 resolution: - integrity: sha512-60kPbVe8/o9xOiYAU1kgNpJPm39zpyO+hZRTsNjylTzqCKjXBMdo6am7paGJqkk9E7CUuYPFBQSSC7ICRewKNw== + integrity: sha512-pxNKLKoUf6jP6NidZzuyp92wFHIJCddgmO9gmHUjfdOiNybJddY8fEx415YJov9JCk+wbaZQ/fQTq+aZ28vtkQ== /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/core': 7.12.9 + '@babel/parser': 7.12.7 '@babel/runtime': 7.12.5 - '@babel/traverse': 7.12.5 - '@babel/types': 7.12.6 + '@babel/traverse': 7.12.9 + '@babel/types': 7.12.7 '@hapi/joi': 15.1.1 '@mikaelkristiansson/domready': 1.0.10 '@nodelib/fs.walk': 1.2.4 @@ -12224,19 +12175,19 @@ packages: address: 1.1.2 autoprefixer: 9.8.6 axios: 0.20.0 - babel-core: 7.0.0-bridge.0_@babel+core@7.12.3 + babel-core: 7.0.0-bridge.0_@babel+core@7.12.9 babel-eslint: 10.1.0_eslint@6.8.0 - babel-loader: 8.2.1_427212bc1158d185e577033f19ca0757 + babel-loader: 8.2.2_fa474cc1763d2be32ce57156dae52dec 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.12.0_gatsby@2.25.4 + babel-preset-gatsby: 0.5.16_@babel+core@7.12.9+core-js@3.8.1 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.15.0 cache-manager: 2.11.1 cache-manager-fs-hash: 0.0.9 chalk: 4.1.0 @@ -12244,8 +12195,8 @@ 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 @@ -12263,7 +12214,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 @@ -12272,16 +12223,16 @@ 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.15.0 + gatsby-core-utils: 1.6.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.7.0_832005e77e970d80ad4bd3eb87f2200a + gatsby-plugin-page-creator: 2.6.0_gatsby@2.25.4 + gatsby-plugin-typescript: 2.8.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.3.0_832005e77e970d80ad4bd3eb87f2200a + gatsby-telemetry: 1.6.0 glob: 7.1.6 got: 8.3.2 graphql: 14.7.0 @@ -12329,7 +12280,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 @@ -12354,7 +12305,7 @@ packages: 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: @@ -12613,7 +12564,7 @@ packages: integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== /global-dirs/2.0.1: dependencies: - ini: 1.3.5 + ini: 1.3.6 dev: false engines: node: '>=8' @@ -12641,7 +12592,7 @@ packages: dependencies: expand-tilde: 2.0.2 homedir-polyfill: 1.0.3 - ini: 1.3.5 + ini: 1.3.6 is-windows: 1.0.2 which: 1.3.1 dev: false @@ -12651,7 +12602,7 @@ packages: integrity: sha1-2/dDxsFJklk8ZVVoy2btMsASLr4= /global-prefix/3.0.0: dependencies: - ini: 1.3.5 + ini: 1.3.6 kind-of: 6.0.3 which: 1.3.1 dev: false @@ -12659,13 +12610,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 @@ -12741,19 +12685,6 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-9abXDoOV4hyFj7BInWTfAkJNUGw= - /globby/7.1.1: - dependencies: - array-union: 1.0.2 - dir-glob: 2.2.2 - glob: 7.1.6 - ignore: 3.3.10 - pify: 3.0.0 - slash: 1.0.0 - dev: false - engines: - node: '>=4' - resolution: - integrity: sha1-+yzP+UAfhgCUXfral0QMypcrhoA= /globby/8.0.2: dependencies: array-union: 1.0.2 @@ -12925,11 +12856,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.6.0_graphql@14.7.0 '@graphql-tools/utils': 6.2.4_graphql@14.7.0 cosmiconfig: 6.0.0 cosmiconfig-toml-loader: 1.0.0 @@ -12984,16 +12915,41 @@ packages: graphql: '>=0.8.0' resolution: integrity: sha512-J+vjof74oMlCWXSvt0DOf2APEdZOCdubEvGDUAlqH//VBYcOYsGgRW7Xzorr44LvkjiuvecWc8fChxuZZbChtg== - /graphql/14.7.0: + /graphql-upload/11.0.0_graphql@14.7.0: dependencies: - iterall: 1.3.0 + 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: '>= 6.x' + node: ^10.13.0 || ^12.0.0 || >= 13.7.0 + peerDependencies: + graphql: 0.13.1 - 15 resolution: - integrity: sha512-l0xWZpoPKpppFzMfvVyFmp9vLN7w/ZZJPefUicMCepfJeQ8sMcztloGYY9DfjVPo6tIUDzU5Hw3MUbIjj9AVVA== - /gud/1.0.0: - dev: false + integrity: sha512-zsrDtu5gCbQFDWsNa5bMB4nf1LpKX9KDgh+f8oL1288ijV4RxeckhVozAjqjXAfRpxOHD1xOESsh6zq8SjdgjA== + /graphql-ws/2.0.1_graphql@14.7.0: + dependencies: + graphql: 14.7.0 + dev: false + engines: + node: '>=10' + peerDependencies: + graphql: '>=0.11 <=15' + resolution: + integrity: sha512-K8eaR00TZHFMVw2viZfjDxLWdF1hUIR8xY9Zow6tLI2CLT3E4homJ4XZNRrxEoQjAXEQoUHPcmGkDDynWivNrQ== + /graphql/14.7.0: + dependencies: + iterall: 1.3.0 + dev: false + engines: + node: '>= 6.x' + resolution: + integrity: sha512-l0xWZpoPKpppFzMfvVyFmp9vLN7w/ZZJPefUicMCepfJeQ8sMcztloGYY9DfjVPo6tIUDzU5Hw3MUbIjj9AVVA== + /gud/1.0.0: + dev: false resolution: integrity: sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw== /gulp-autoprefixer/5.0.0: @@ -13022,9 +12978,9 @@ packages: '@babel/core': ^7.0.0 resolution: integrity: sha512-oomaIqDXxFkg7lbpBou/gnUkX51/Y/M2ZfSjL2hdqXTAlSWZcgZtd2o0cOH0r/eE8LWD0+Q/PsLsr2DKOoqToQ== - /gulp-babel/8.0.0_@babel+core@7.12.3: + /gulp-babel/8.0.0_@babel+core@7.12.9: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 plugin-error: 1.0.1 replace-ext: 1.0.1 through2: 2.0.5 @@ -13277,7 +13233,7 @@ packages: node: '>=0.4.7' hasBin: true optionalDependencies: - uglify-js: 3.11.6 + uglify-js: 3.12.1 resolution: integrity: sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA== /har-schema/2.0.0: @@ -13456,7 +13412,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: @@ -13466,7 +13422,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 @@ -13484,7 +13440,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 @@ -13528,11 +13484,12 @@ packages: hasBin: true resolution: integrity: sha1-pwTLP1fkn719OMLt16ujj/CzUmM= - /highlight.js/10.4.0: + /highlight.js/10.4.1: dev: false resolution: - integrity: sha512-EfrUGcQ63oLJbj0J0RI9ebX6TAITbsDBLbsjr881L/X5fMO9+oadKzEF21C7R3ULKG6Gv3uoab2HiqVJa/4+oA== + 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= @@ -13606,11 +13563,11 @@ packages: integrity: sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA== /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 @@ -13805,16 +13762,6 @@ packages: node: '>= 6' resolution: integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== - /icss-utils/5.0.0_postcss@8.1.7: - dependencies: - postcss: 8.1.7 - dev: false - engines: - node: ^10 || ^12 || >= 14 - peerDependencies: - postcss: ^8.1.0 - resolution: - integrity: sha512-aF2Cf/CkEZrI/vsu5WI/I+akFgdbwQHVE9YRZxATrhH4PVIe6a3BIjwjEcW+z+jP/hNh+YvM3lAAn1wJQ6opSg== /idb-keyval/3.2.0: dev: false resolution: @@ -14027,10 +13974,10 @@ packages: dev: false resolution: integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - /ini/1.3.5: + /ini/1.3.6: dev: false resolution: - integrity: sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== + integrity: sha512-IZUoxEjNjubzrmvzZU4lKP7OnYmX72XRl3sqkfJhBKweKi5rnGi5+IUdlj/H1M+Ip5JQ1WzaDMOBRY90Ajc5jg== /inline-source-map/0.6.2: dependencies: source-map: 0.5.7 @@ -14244,12 +14191,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: @@ -14316,12 +14265,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 @@ -14383,7 +14332,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: @@ -14509,18 +14458,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 @@ -14559,10 +14514,10 @@ packages: node: '>=8' resolution: integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== - /is-object/1.0.1: + /is-object/1.0.2: dev: false resolution: - integrity: sha1-iVJojF7C/9awPsyF52ngKQMINHA= + integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA== /is-observable/1.1.0: dependencies: symbol-observable: 1.2.0 @@ -14861,6 +14816,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: @@ -14873,7 +14842,7 @@ packages: integrity: sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== /istanbul-lib-instrument/4.0.3: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@istanbuljs/schema': 0.1.2 istanbul-lib-coverage: 3.0.0 semver: 6.3.0 @@ -14885,7 +14854,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' @@ -14943,7 +14912,7 @@ packages: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.4 - '@types/node': 14.14.8 + '@types/node': 14.14.11 anymatch: 3.1.1 fb-watchman: 2.0.1 graceful-fs: 4.2.4 @@ -14969,7 +14938,7 @@ packages: integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A== /jest-serializer/26.6.2: dependencies: - '@types/node': 14.14.8 + '@types/node': 14.14.11 graceful-fs: 4.2.4 dev: false engines: @@ -14979,7 +14948,7 @@ packages: /jest-util/26.6.2: dependencies: '@jest/types': 26.6.2 - '@types/node': 14.14.8 + '@types/node': 14.14.11 chalk: 4.1.0 graceful-fs: 4.2.4 is-ci: 2.0.0 @@ -15009,7 +14978,7 @@ packages: integrity: sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw== /jest-worker/26.6.2: dependencies: - '@types/node': 14.14.8 + '@types/node': 14.14.11 merge-stream: 2.0.0 supports-color: 7.2.0 dev: false @@ -15063,32 +15032,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.9 + '@babel/parser': 7.12.7 + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.9 + '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.9 + '@babel/preset-flow': 7.12.1_@babel+core@7.12.9 + '@babel/preset-typescript': 7.12.7_@babel+core@7.12.9 + '@babel/register': 7.12.1_@babel+core@7.12.9 + babel-core: 7.0.0-bridge.0_@babel+core@7.12.9 colors: 1.4.0 - flow-parser: 0.138.0 + flow-parser: 0.139.0 graceful-fs: 4.2.4 micromatch: 3.1.10 neo-async: 2.6.2 @@ -15102,21 +15071,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.7: + dependencies: + '@babel/core': 7.12.9 + '@babel/parser': 7.12.7 + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.9 + '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.9 + '@babel/preset-env': 7.12.7_@babel+core@7.12.9 + '@babel/preset-flow': 7.12.1_@babel+core@7.12.9 + '@babel/preset-typescript': 7.12.7_@babel+core@7.12.9 + '@babel/register': 7.12.1_@babel+core@7.12.9 + babel-core: 7.0.0-bridge.0_@babel+core@7.12.9 colors: 1.4.0 - flow-parser: 0.138.0 + flow-parser: 0.139.0 graceful-fs: 4.2.4 micromatch: 3.1.10 neo-async: 2.6.2 @@ -15132,17 +15101,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.9 + '@babel/parser': 7.12.7 + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.9 + '@babel/preset-env': 7.12.7_@babel+core@7.12.9 + '@babel/preset-flow': 7.12.1_@babel+core@7.12.9 + '@babel/preset-typescript': 7.12.7_@babel+core@7.12.9 + '@babel/register': 7.12.1_@babel+core@7.12.9 + babel-core: 7.0.0-bridge.0_@babel+core@7.12.9 colors: 1.4.0 - flow-parser: 0.138.0 + flow-parser: 0.139.0 graceful-fs: 4.2.4 micromatch: 3.1.10 neo-async: 2.6.2 @@ -15156,17 +15125,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.9 + '@babel/parser': 7.12.7 + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.9 + '@babel/preset-env': 7.12.7_@babel+core@7.12.9 + '@babel/preset-flow': 7.12.1_@babel+core@7.12.9 + '@babel/preset-typescript': 7.12.7_@babel+core@7.12.9 + '@babel/register': 7.12.1_@babel+core@7.12.9 + babel-core: 7.0.0-bridge.0_@babel+core@7.12.9 colors: 1.4.0 - flow-parser: 0.138.0 + flow-parser: 0.139.0 graceful-fs: 4.2.4 micromatch: 3.1.10 neo-async: 2.6.2 @@ -15262,10 +15231,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: @@ -15315,7 +15284,7 @@ packages: integrity: sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= /jsx-ast-utils/3.1.0: dependencies: - array-includes: 3.1.1 + array-includes: 3.1.2 object.assign: 4.1.2 dev: false engines: @@ -15466,7 +15435,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 @@ -15551,13 +15520,6 @@ packages: dev: false resolution: integrity: sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA== - /line-column/1.0.2: - dependencies: - isarray: 1.0.0 - isobject: 2.1.0 - dev: false - resolution: - integrity: sha1-0lryk2tvSEkXKzEuR5LR2Ye8NKI= /lines-and-columns/1.1.6: dev: false resolution: @@ -15627,7 +15589,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: @@ -15937,14 +15899,6 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg= - /log-symbols/2.2.0: - dependencies: - chalk: 2.4.2 - dev: false - engines: - node: '>=4' - resolution: - integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== /log-symbols/4.0.0: dependencies: chalk: 4.1.0 @@ -15972,21 +15926,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== - /loglevelnext/1.0.5: - dependencies: - es6-symbol: 3.1.3 - object.assign: 4.1.2 - dev: false - engines: - node: '>= 6' - resolution: - integrity: sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A== + integrity: sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw== /longest-streak/2.0.4: dev: false resolution: @@ -16022,12 +15967,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: @@ -16049,7 +15994,7 @@ packages: /lowlight/1.17.0: dependencies: fault: 1.0.4 - highlight.js: 10.4.0 + highlight.js: 10.4.1 dev: false resolution: integrity: sha512-vmtBgYKD+QVNy7tIa7ulz5d//Il9R4MooOVh4nkOf9R9Cb/Dk5TXMSTieg/vDulkBkIWj59/BIlyFQxT9X1oAQ== @@ -16228,10 +16173,10 @@ packages: dev: false resolution: integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg== - /math-expression-evaluator/1.3.3: + /math-expression-evaluator/1.3.6: dev: false resolution: - integrity: sha512-geKTlqoxnjqHoWqB71h0kchWIC23a3yfwwbZu4E2amjvGLF+fTjCCwBQOHkE0/oHc6KdnSVmMt3QB82KaPmKEA== + integrity: sha512-gbzsZEUgefao+OqOUOr03GlpjkdOySxVNHQDuiUZXPbLHgDZqiMtOgDSxuzBEtyt9BDXWS503a16bAmlJW/oFA== /mathml-tag-names/2.1.3: dev: false resolution: @@ -16269,26 +16214,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 @@ -16296,22 +16242,26 @@ 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.0: 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-t8gNC/SrCoZWOlmfC95gctPzvJuU7PTosm6kEfUTOOprRedYE6VHHIiy50bcLRhKyFTeEBUjOQHhxByTFEs9pw== /mdast-util-to-string/1.1.0: dev: false resolution: integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A== + /mdast-util-to-string/2.0.0: + dev: false + resolution: + integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w== /mdn-data/2.0.14: dev: false resolution: @@ -16462,13 +16412,13 @@ packages: dev: false resolution: integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g== - /micromark/2.10.1: + /micromark/2.11.2: dependencies: 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 @@ -16776,16 +16726,6 @@ packages: dev: false resolution: integrity: sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== - /mount-point/3.0.0: - dependencies: - '@sindresorhus/df': 1.0.1 - pify: 2.3.0 - pinkie-promise: 2.0.1 - dev: false - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-Zly57evoDREOZY21bDHQrvUaj5c= /move-concurrently/1.0.1: dependencies: aproba: 1.2.0 @@ -16797,16 +16737,6 @@ packages: dev: false resolution: integrity: sha1-viwAX9oy4LKa8fBdfEszIUxwH5I= - /move-file/1.2.0: - dependencies: - cp-file: 6.2.0 - make-dir: 3.1.0 - path-exists: 3.0.0 - dev: false - engines: - node: '>=8' - resolution: - integrity: sha512-USHrRmxzGowUWAGBbJPdFjHzEqtxDU03pLHY0Rfqgtnq+q8FOIs8wvkkf+Udmg77SJKs47y9sI0jJvQeYsmiCA== /mozjpeg/7.0.0: dependencies: bin-build: 3.0.0 @@ -16831,6 +16761,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: @@ -16886,13 +16820,6 @@ packages: dev: false resolution: integrity: sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA== - /nanoid/3.1.16: - dev: false - engines: - node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 - hasBin: true - resolution: - integrity: sha512-+AK8MN0WHji40lj8AEuwLOvLSbWYApQpre/aFJZD71r43wVRLrOYS4FmJOPQYon1TqB462RzrrxlfA74XRES8w== /nanomatch/1.2.13: dependencies: arr-diff: 4.0.0 @@ -16951,13 +16878,13 @@ 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== + integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== /node-abi/2.19.3: dependencies: semver: 5.7.1 @@ -17002,11 +16929,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 @@ -17148,7 +17070,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: @@ -17243,21 +17165,13 @@ 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' hasBin: true resolution: integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== - /npm-run-path/1.0.0: - dependencies: - path-key: 1.0.0 - dev: false - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-9cMr9ZX+ga6Sfa7FLoL4sACsPI8= /npm-run-path/2.0.2: dependencies: path-key: 2.0.1 @@ -17363,19 +17277,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: @@ -17418,36 +17332,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 @@ -17474,17 +17390,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: @@ -17799,6 +17715,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 @@ -17932,13 +17856,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 @@ -18072,7 +17996,7 @@ packages: integrity: sha512-Czj+GIit4cdWtxo3ISZCvLiUjErSo0iI3wJ+q9Oi3QuMYTI6OZu+7cewMWZ+C1YAnKhYTk6/TLuhIgCypLthPA== /parse5/3.0.3: dependencies: - '@types/node': 14.14.8 + '@types/node': 14.14.11 dev: false resolution: integrity: sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA== @@ -18106,13 +18030,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: @@ -18164,12 +18088,6 @@ packages: dev: false resolution: integrity: sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= - /path-key/1.0.0: - dev: false - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-XVPVeAGWRsDWiADbThRua9wqx68= /path-key/2.0.1: dev: false engines: @@ -18254,6 +18172,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: @@ -18511,7 +18435,7 @@ packages: integrity: sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg== /postcss-colormin/4.0.3: dependencies: - browserslist: 4.14.7 + browserslist: 4.15.0 color: 3.1.3 has: 1.0.3 postcss: 7.0.35 @@ -18624,7 +18548,7 @@ packages: integrity: sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== /postcss-merge-rules/4.0.3: dependencies: - browserslist: 4.14.7 + browserslist: 4.15.0 caniuse-api: 3.0.0 cssnano-util-same-parent: 4.0.1 postcss: 7.0.35 @@ -18658,7 +18582,7 @@ packages: /postcss-minify-params/4.0.2: dependencies: alphanum-sort: 1.0.2 - browserslist: 4.14.7 + browserslist: 4.15.0 cssnano-util-get-arguments: 4.0.0 postcss: 7.0.35 postcss-value-parser: 3.3.1 @@ -18693,16 +18617,6 @@ packages: node: '>= 6' resolution: integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ== - /postcss-modules-extract-imports/3.0.0_postcss@8.1.7: - dependencies: - postcss: 8.1.7 - dev: false - engines: - node: ^10 || ^12 || >= 14 - peerDependencies: - postcss: ^8.1.0 - resolution: - integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== /postcss-modules-local-by-default/1.2.0: dependencies: css-selector-tokenizer: 0.7.3 @@ -18721,19 +18635,6 @@ packages: node: '>= 6' resolution: integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw== - /postcss-modules-local-by-default/4.0.0_postcss@8.1.7: - dependencies: - icss-utils: 5.0.0_postcss@8.1.7 - postcss: 8.1.7 - postcss-selector-parser: 6.0.4 - postcss-value-parser: 4.1.0 - dev: false - engines: - node: ^10 || ^12 || >= 14 - peerDependencies: - postcss: ^8.1.0 - resolution: - integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ== /postcss-modules-scope/1.1.0: dependencies: css-selector-tokenizer: 0.7.3 @@ -18750,17 +18651,6 @@ packages: node: '>= 6' resolution: integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ== - /postcss-modules-scope/3.0.0_postcss@8.1.7: - dependencies: - postcss: 8.1.7 - postcss-selector-parser: 6.0.4 - dev: false - engines: - node: ^10 || ^12 || >= 14 - peerDependencies: - postcss: ^8.1.0 - resolution: - integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== /postcss-modules-values/1.3.0: dependencies: icss-replace-symbols: 1.1.0 @@ -18775,17 +18665,6 @@ packages: dev: false resolution: integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg== - /postcss-modules-values/4.0.0_postcss@8.1.7: - dependencies: - icss-utils: 5.0.0_postcss@8.1.7 - postcss: 8.1.7 - dev: false - engines: - node: ^10 || ^12 || >= 14 - peerDependencies: - postcss: ^8.1.0 - resolution: - integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== /postcss-normalize-charset/4.0.1: dependencies: postcss: 7.0.35 @@ -18848,7 +18727,7 @@ packages: integrity: sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== /postcss-normalize-unicode/4.0.1: dependencies: - browserslist: 4.14.7 + browserslist: 4.15.0 postcss: 7.0.35 postcss-value-parser: 3.3.1 dev: false @@ -18888,7 +18767,7 @@ packages: integrity: sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== /postcss-reduce-initial/4.0.3: dependencies: - browserslist: 4.14.7 + browserslist: 4.15.0 caniuse-api: 3.0.0 has: 1.0.3 postcss: 7.0.35 @@ -19034,17 +18913,6 @@ packages: node: '>=6.0.0' resolution: integrity: sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== - /postcss/8.1.7: - dependencies: - colorette: 1.2.1 - line-column: 1.0.2 - nanoid: 3.1.16 - source-map: 0.6.1 - dev: false - engines: - node: ^10 || ^12 || >=14 - resolution: - integrity: sha512-llCQW1Pz4MOPwbZLmOddGM9eIJ8Bh7SZ2Oj5sxZva77uVaotYDsYTch1WBTNu7fUY0fpWp0fdt7uW40D4sRiiQ== /potrace/2.1.8: dependencies: jimp: 0.14.0 @@ -19058,7 +18926,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 @@ -19080,7 +18948,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: @@ -19119,13 +18987,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: @@ -19188,12 +19056,6 @@ packages: node: '>= 0.6.0' resolution: integrity: sha1-czIwDoQBYb2j5podHZGn1LwW8YI= - /process/0.5.2: - dev: false - engines: - node: '>= 0.6.0' - resolution: - integrity: sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8= /progress-stream/2.0.0: dependencies: speedometer: 1.0.0 @@ -19217,7 +19079,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 @@ -19527,7 +19389,7 @@ packages: /rc/1.2.8: dependencies: deep-extend: 0.6.0 - ini: 1.3.5 + ini: 1.3.6 minimist: 1.2.5 strip-json-comments: 2.0.1 dev: false @@ -19643,31 +19505,18 @@ packages: node: '>=6' resolution: integrity: sha512-uvmkwl5uMexCmC0GUv1XGQP0YjfYePJufGg4YYiukhqk2vN1tQxwWJIBERqhOmSi80cppZg8mZnPP/kOMf1sUQ== - /react-docgen-typescript-loader/3.7.2_webpack@4.44.2: - dependencies: - '@webpack-contrib/schema-utils': 1.0.0-beta.0_webpack@4.44.2 - loader-utils: 1.4.0 - react-docgen-typescript: 1.20.5 - dev: false - peerDependencies: - typescript: '*' - webpack: '*' - resolution: - integrity: sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA== - /react-docgen-typescript-plugin/0.6.2_webpack@4.44.2: + /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 - react-docgen-typescript-loader: 3.7.2_webpack@4.44.2 tslib: 2.0.3 dev: false peerDependencies: typescript: '>= 3.x' - webpack: '*' resolution: - integrity: sha512-Orw0WKdJGAg5eMZGbEMw/rKonoxbi8epU6RJWTW3ukWuTarxckFXTltGvm8XADAWlBHak30KD71XThtJruxfTg== + integrity: sha512-av1S/fmWBNFGgNa4qtkidFjjOz23eEi6EdCtwSWo9WNhGzUMyMygbD/DosMWoeFlZpk9R3MXPkRE7PDH6j5GMQ== /react-docgen-typescript/1.20.5: dev: false peerDependencies: @@ -19676,7 +19525,7 @@ packages: integrity: sha512-AbLGMtn76bn7SYBJSSaKJrZ0lgNRRR3qL60PucM5M4v/AXyC8221cKBXW5Pyt9TfDRfe+LDnPNlg7TibxX0ovA== /react-docgen/5.3.1: dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.12.9 '@babel/runtime': 7.12.5 ast-types: 0.14.2 commander: 2.20.3 @@ -19913,7 +19762,7 @@ packages: /react-syntax-highlighter/13.5.3_react@16.14.0: dependencies: '@babel/runtime': 7.12.5 - highlight.js: 10.4.0 + highlight.js: 10.4.1 lowlight: 1.17.0 prismjs: 1.22.0 react: 16.14.0 @@ -20003,15 +19852,6 @@ packages: dev: false resolution: integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A== - /read-chunk/3.2.0: - dependencies: - pify: 4.0.1 - with-open-file: 0.1.7 - dev: false - engines: - node: '>=6' - resolution: - integrity: sha512-CEjy9LCzhmD7nUpJ1oVOE6s/hBkejlcJEgLQHVnQznOSilOPb+kpKktlLfFDK3/WP43+F80xkUTM2VOkYoSYvQ== /read-only-stream/2.0.0: dependencies: readable-stream: 2.3.7 @@ -20135,6 +19975,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 @@ -20231,7 +20080,7 @@ packages: /reduce-css-calc/1.3.0: dependencies: balanced-match: 0.4.2 - math-expression-evaluator: 1.3.3 + math-expression-evaluator: 1.3.6 reduce-function-call: 1.0.3 dev: false resolution: @@ -20412,19 +20261,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 @@ -20488,7 +20337,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== @@ -20525,16 +20374,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.0 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: @@ -20598,12 +20447,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: @@ -20749,7 +20592,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: @@ -20967,7 +20810,7 @@ packages: neo-async: 2.6.2 sass: 1.27.2 schema-utils: 3.0.0 - semver: 7.3.2 + semver: 7.3.4 webpack: 4.44.2 dev: false engines: @@ -21001,12 +20844,12 @@ packages: webpack: ^3.0.0 || ^4.0.0 resolution: integrity: sha512-tuU7+zm0pTCynKYHpdqaPpe+MMTQ76I9TPZ7i4/5dZsigE350shQWe5EZNl5dBidM49TPET75tNqRbcsUZWeNA== - /sass-loader/8.0.2_sass@1.29.0+webpack@4.44.2: + /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.29.0 + sass: 1.30.0 schema-utils: 2.7.1 semver: 6.3.0 webpack: 4.44.2 @@ -21036,7 +20879,7 @@ packages: 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 @@ -21044,7 +20887,7 @@ packages: node: '>=8.9.0' hasBin: true resolution: - integrity: sha512-ZpwAUFgnvAUCdkjwPREny+17BpUj8nh5Yr6zKPGtLNTLrmtoRYIjm7njP24COhjJldjwW1dcv52Lpf4tNZVVRA== + integrity: sha512-26EUhOXRLaUY7+mWuRFqGeGGNmhB1vblpTENO1Z7mAzzIZeVxZr9EZoaY1kyGLFWdSOZxRMAufiN2mkbO6dAlw== /sax/1.2.4: dev: false resolution: @@ -21178,13 +21021,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 @@ -21342,23 +21187,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 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 @@ -21440,7 +21286,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== @@ -21811,7 +21657,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== @@ -21822,14 +21668,14 @@ 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.3.1_supports-color@6.1.0 @@ -21894,6 +21740,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 @@ -22084,6 +21934,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: @@ -22149,49 +22005,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: @@ -22348,6 +22207,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 @@ -22369,18 +22238,6 @@ packages: webpack: ^4.0.0 || ^5.0.0 resolution: integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q== - /style-loader/2.0.0_webpack@4.44.2: - dependencies: - loader-utils: 2.0.0 - schema-utils: 3.0.0 - webpack: 4.44.2 - dev: false - engines: - node: '>= 10.13.0' - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - resolution: - integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ== /style-search/0.1.0: dev: false resolution: @@ -22393,7 +22250,7 @@ packages: integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA== /stylehacks/4.0.3: dependencies: - browserslist: 4.14.7 + browserslist: 4.15.0 postcss: 7.0.35 postcss-selector-parser: 3.1.2 dev: false @@ -22482,7 +22339,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 @@ -22497,19 +22354,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: @@ -22586,10 +22430,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 @@ -22612,15 +22456,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 @@ -22647,7 +22493,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 @@ -22657,7 +22503,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: @@ -22816,7 +22662,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 @@ -23100,6 +22946,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 @@ -23109,22 +22964,6 @@ packages: node: '>=0.8' resolution: integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== - /trash/6.1.1: - dependencies: - '@stroncium/procfs': 1.2.1 - globby: 7.1.1 - is-path-inside: 3.0.2 - make-dir: 3.1.0 - move-file: 1.2.0 - p-map: 3.0.0 - p-try: 2.2.0 - uuid: 3.4.0 - xdg-trashdir: 2.1.1 - dev: false - engines: - node: '>=8' - resolution: - integrity: sha512-4i56lCmz2RG6WZN018hf4L75L5HboaFuKkHx3wDG/ihevI99e0OgFyl8w6G4ioqBm62V4EJqCy5xw3vQSNXU8A== /tree-kill/1.2.2: dev: false hasBin: true @@ -23194,9 +23033,10 @@ packages: 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 @@ -23208,7 +23048,7 @@ packages: peerDependencies: typescript: '>=2.7' resolution: - integrity: sha512-/TqB4SnererCDR/vb4S/QvSZvzQMJN8daAslg7MeaiHvD8rDZsSfXmNeNumyZZzMned72Xoq/isQljYSt8Ynfg== + integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg== /ts-pnp/1.2.0: dev: false engines: @@ -23271,7 +23111,7 @@ packages: 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 @@ -23282,7 +23122,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 @@ -23380,14 +23220,14 @@ packages: dev: false resolution: integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== - /uglify-js/3.11.6: + /uglify-js/3.12.1: dev: false engines: node: '>=0.8.0' hasBin: true optional: true resolution: - integrity: sha512-oASI1FOJ7BBFkSCNDZ446EgkSuHkOZBuqRFrwXIKWCoXw8ZXQETooTQjkAcBS03Acab7ubCKsXnwuV2svy061g== + integrity: sha512-o8lHP20KjIiQe5b/67Rh68xEGRrc2SRsCuuoYclXXoC74AfSRGblU1HKzJWH3HxPZ+Ort85fWHpSX7KwBUC9CQ== /ultron/1.1.1: dev: false resolution: @@ -23488,7 +23328,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== @@ -23499,7 +23339,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== @@ -23555,7 +23395,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== @@ -23567,10 +23407,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: @@ -23589,7 +23429,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== @@ -23608,7 +23448,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== @@ -23621,7 +23461,7 @@ 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: @@ -23707,6 +23547,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 @@ -23846,21 +23707,6 @@ packages: node: '>=0.10.0' resolution: integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== - /user-home/2.0.0: - dependencies: - os-homedir: 1.0.2 - dev: false - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-nHC/2Babwdy/SGBODwS4tJzenp8= - /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 @@ -23874,7 +23720,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== @@ -23883,7 +23729,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== @@ -23925,11 +23771,11 @@ packages: hasBin: true resolution: integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg== - /uuid/8.3.1: + /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: @@ -23998,16 +23844,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 @@ -24085,16 +23930,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: @@ -24194,7 +24039,7 @@ packages: 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 @@ -24244,17 +24089,6 @@ packages: dev: false resolution: integrity: sha512-xs5dPOrGPCzuRXNi8F6rwhawWvQQkeli5Ro48PRuQh8pYPCPmNnltP9itiUPT4xI8oW+y0m59lyyeQk54s5VgA== - /webpack-log/1.2.0: - dependencies: - chalk: 2.4.2 - log-symbols: 2.2.0 - loglevelnext: 1.0.5 - uuid: 3.4.0 - dev: false - engines: - node: '>=6' - resolution: - integrity: sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA== /webpack-log/2.0.0: dependencies: ansi-colors: 3.2.4 @@ -24352,19 +24186,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: @@ -24411,16 +24232,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: @@ -24600,6 +24411,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: @@ -24637,12 +24458,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 @@ -24655,7 +24470,7 @@ packages: dev: false resolution: integrity: sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA== - /ws/7.4.0: + /ws/7.4.1: dev: false engines: node: '>=8.3.0' @@ -24668,42 +24483,22 @@ packages: utf-8-validate: optional: true resolution: - integrity: sha512-kyFwXuV/5ymf+IXhS6f0+eAFvydbaBW3zjpT6hUdAh/hbVjTIB5EHBGi0bPoCLSK2wcuz3BrEkB9LrYv1Nm4NQ== - /xdg-basedir/2.0.0: - dependencies: - os-homedir: 1.0.2 - dev: false - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-7byQPMOF/ARSPZZqM1UEtVBNG9I= + integrity: sha512-pTsP8UAfhy3sk1lSk/O/s4tjD0CRwvMnzvwr4OKGX7ZvqZtUyx4KIJB5JWbkykPoc55tixMGgTNoh3k4FkNGFQ== /xdg-basedir/4.0.0: dev: false engines: node: '>=8' resolution: integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== - /xdg-trashdir/2.1.1: - dependencies: - '@sindresorhus/df': 2.1.0 - mount-point: 3.0.0 - pify: 2.3.0 - user-home: 2.0.0 - xdg-basedir: 2.0.0 - dev: false - engines: - node: '>=4' - resolution: - integrity: sha512-KcVhPaOu2ZurYNHSRTf1+ZHORkTZGCQ+u0JHN17QixRISJq4pXOnjt/lQcehvtHL5QAKhSzKgyjrcNnPdkPBHA== - /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: @@ -24745,10 +24540,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: @@ -24759,16 +24554,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: @@ -24835,7 +24630,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: @@ -24850,7 +24645,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: @@ -24866,13 +24661,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 @@ -24918,6 +24727,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 @@ -24958,13 +24773,13 @@ 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.9 + '@babel/preset-env': 7.12.7_@babel+core@7.12.9 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.9 gulp-concat: 2.6.1 gulp-rename: 2.0.0 gulp-sass: 4.1.0 @@ -24982,112 +24797,111 @@ packages: integrity: sha512-r7nN+yaJoaMczq+3vupgcJ0w1Y5gtc+RNQghZ1Vz7zTcUzHPkHhljJtf3nsKvmX3XpiyMvLzxuJYxXISMNVXFQ== tarball: 'file:projects/mayflower-assets.tgz' version: 0.0.0 - 'file:projects/mayflower-core.tgz_4980cc2cdbaa6814d714342ca9c7c98b': - dependencies: - '@babel/core': 7.12.3 - '@storybook/addon-actions': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/addon-docs': 6.1.0_7e68966041f840a2d335849f2d5f6835 - '@storybook/addon-links': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/node-logger': 6.1.0 - '@storybook/preset-scss': 1.0.3_219574bc463df1490f10235906ad944f - '@storybook/react': 6.1.0_e022e2c0e03c001c1fe6c7d1c978ba75 - babel-loader: 8.2.1_427212bc1158d185e577033f19ca0757 - bootstrap: 4.5.3_jquery@3.5.1 - chromatic: 5.3.0_@babel+core@7.12.3 - css-loader: 5.0.1_webpack@4.44.2 - prettier: 2.1.2 + 'file:projects/mayflower-core.tgz_0bde79fb2ed5a9cd348dddfe19d78d77': + dependencies: + '@babel/core': 7.12.9 + '@storybook/addon-actions': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/addon-docs': 6.1.10_e4d75a294d1d8783998856b0f2483020 + '@storybook/addon-links': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/cli': 6.1.10 + '@storybook/node-logger': 6.1.10 + '@storybook/preset-scss': 1.0.3_86e6589ad1641e1eae393e6536006f06 + '@storybook/react': 6.1.10_8ba94b1ec462bdc3324c33bb935b9454 + babel-loader: 8.2.2_fa474cc1763d2be32ce57156dae52dec + chromatic: 5.3.0_@babel+core@7.12.9 + prettier: 2.2.1 react-is: 16.13.1 sass: 1.27.2 sass-loader: 10.0.5_sass@1.27.2+webpack@4.44.2 - style-loader: 2.0.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: - jquery: '*' + css-loader: '*' react: '*' react-dom: '*' + style-loader: '*' webpack: '*' resolution: - integrity: sha512-WGu5+qMQRf9QSei96Jzw0DEXRuaSetIIhQQBUKc3e0gtCvVLLISv2Uks9tqTdvOOSD/JjJd+wHzU/YsGpIpzXQ== + integrity: sha512-/J5S7adh7uEEsxI6+5QExPrfg5FYEAlmwjDqSSyaaQ1BrdtoC24qozeSu8ljfHQ2MITo3suZmc5J83woYLnqog== tarball: 'file:projects/mayflower-core.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 + '@babel/cli': 7.12.8_@babel+core@7.12.9 + '@babel/core': 7.12.9 + '@babel/parser': 7.12.7 + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-export-default-from': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.9 + '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.9 + '@babel/plugin-transform-runtime': 7.12.1_@babel+core@7.12.9 + '@babel/preset-env': 7.12.7_@babel+core@7.12.9 + '@babel/preset-react': 7.12.7_@babel+core@7.12.9 '@proscom/gulp-svgr': 0.1.5 - '@storybook/addon-a11y': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/addon-actions': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/addon-controls': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/addon-docs': 6.1.0_7e68966041f840a2d335849f2d5f6835 - '@storybook/addon-links': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/addon-storysource': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/addon-viewport': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/addons': 6.1.0_react-dom@16.14.0+react@16.14.0 - '@storybook/cli': 6.1.0 - '@storybook/codemod': 6.1.0 + '@storybook/addon-a11y': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/addon-actions': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/addon-controls': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/addon-docs': 6.1.10_e4d75a294d1d8783998856b0f2483020 + '@storybook/addon-links': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/addon-storysource': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/addon-viewport': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/addons': 6.1.10_react-dom@16.14.0+react@16.14.0 + '@storybook/cli': 6.1.10 + '@storybook/codemod': 6.1.10 '@storybook/preset-scss': 1.0.3_676d7bba63aef161cee7df81d55967e5 - '@storybook/react': 6.1.0_e022e2c0e03c001c1fe6c7d1c978ba75 - '@storybook/source-loader': 6.1.0_react-dom@16.14.0+react@16.14.0 + '@storybook/react': 6.1.10_8ba94b1ec462bdc3324c33bb935b9454 + '@storybook/source-loader': 6.1.10_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_fa474cc1763d2be32ce57156dae52dec 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-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.9 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_7af7e4e2208405c090cefc4a248555f1 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.9 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.7 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 @@ -25101,8 +24915,8 @@ 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 @@ -25115,31 +24929,31 @@ packages: 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.7.0 + gatsby-plugin-manifest: 2.8.0_gatsby@2.25.4 + gatsby-plugin-offline: 3.6.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.6.0_gatsby@2.25.4+react-helmet@5.2.1 + gatsby-plugin-sass: 2.7.0_gatsby@2.25.4+webpack@4.44.2 + gatsby-plugin-sharp: 2.10.1_gatsby@2.25.4 + gatsby-source-filesystem: 2.7.0_gatsby@2.25.4 + gatsby-transformer-json: 2.7.0_gatsby@2.25.4 + gatsby-transformer-sharp: 2.8.0_2b5ecb247c97aa47411905fb2307f9e3 prettier: 1.19.1 prop-types: 15.7.2 react: 16.14.0 @@ -25147,7 +24961,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' @@ -25167,12 +24981,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 @@ -25196,12 +25010,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 @@ -25233,7 +25047,6 @@ specifiers: '@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/node-logger': ^6.0.26 '@storybook/source-loader': ^6.0.21 @@ -25257,12 +25070,14 @@ specifiers: babel-preset-env: ^1.7.0 babel-preset-proposals: ^0.3.0 babelify: ^8.0.0 + bootstrap: ^4.4.1 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 del: ~6.0.0 disc: ^1.3.3 dom-helpers: 3.4.0 @@ -25337,6 +25152,7 @@ specifiers: resolve-url-loader: ^3.1.1 shortid: ^2.2.8 smoothscroll-polyfill: ^0.4.4 + style-loader: ^1.2.1 stylelint: ^13.3.3 stylelint-config-recommended: ^3.0.0 stylelint-config-recommended-scss: ^4.2.0 From 9bbaa99caafd1ad62c42a2baec85935125ebaf1e Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Wed, 9 Dec 2020 18:30:27 -0500 Subject: [PATCH 13/27] switch docker image --- .circleci/config.yml | 4 ++-- packages/react/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1711c0fea5..e514b7d62d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -245,7 +245,7 @@ jobs: core_build_storybook: - <<: *react_defaults + <<: *patternlab_defaults steps: - checkout - restore_cache: @@ -259,7 +259,7 @@ jobs: paths: ["*"] core_deploy_tag: - <<: *react_defaults + <<: *patternlab_defaults steps: - attach_workspace: at: ~/code diff --git a/packages/react/package.json b/packages/react/package.json index 415af53a26..a8de0d9e61 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -18,11 +18,11 @@ "backstop:approve": "docker-compose run backstop approve", "build": "gulp", "build:icons": "gulp cleanIconDir && svgr --out-dir ./src/components/base/Icon ./src/components/base/Icon/assets --config-file=./.svgrrc.js --ext js", + "storybook": "start-storybook -p 6006 -s ./node_modules/@massds/mayflower-assets", "start": "rushx build:icons && rushx storybook", "lint": "eslint . -c .eslintrc.json", "lint-fix": "eslint --fix . && exit 0", "prepublishOnly": "gulp", - "storybook": "start-storybook -p 6006 -s ./node_modules/@massds/mayflower-assets", "storybook:extract": "sb extract", "build-storybook": "rushx build:icons && build-storybook -s ./node_modules/@massds/mayflower-assets/static" }, From d3d783caf0acf49f4c058ac81e7f9bb132a2c60e Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Wed, 9 Dec 2020 19:08:36 -0500 Subject: [PATCH 14/27] add path --- packages/core/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/package.json b/packages/core/package.json index 928b0787e6..8562ef396e 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -6,7 +6,7 @@ "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", + "build": "build-storybook --docs -s ./node_modules ./node_modules/@massds/mayflower-assets/static", "start": "rushx storybook", "chromatic": "npx chromatic --project-token engf6vhuiv" }, From 803c0633733efee6588e161ae42d437de8685204 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Wed, 9 Dec 2020 19:12:50 -0500 Subject: [PATCH 15/27] add mayflower-react build step into core_build_storybook --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e514b7d62d..91e4c495fc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -251,6 +251,7 @@ jobs: - restore_cache: keys: - root-npm-v4-{{ checksum "common/config/rush/pnpm-lock.yaml" }}-22 + - run: cd packages/react && node ../../common/scripts/install-run-rushx.js build - run: name: Mayflower Core Storybook Build command: cd packages/core && node ../../common/scripts/install-run-rushx.js build @@ -431,7 +432,6 @@ workflows: branches: { ignore: /(docs|patternlab\/|react\/|core\/).*/ } # core - core_build_storybook: - requires: [react_build_storybook] filters: branches: { ignore: /(docs|patternlab\/|site\/).*/ } - core_deploy_tag: From da9ab660e906e7a48cb1a372be69f2890eac4191 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Wed, 9 Dec 2020 19:32:04 -0500 Subject: [PATCH 16/27] fix deploy task --- .circleci/config.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 91e4c495fc..accef4ed5f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -271,15 +271,14 @@ jobs: fi - run: | # Only sync to S3 for stable tags. - if [[ "$CIRCLE_TAG" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then - cd packages/core - aws s3 sync storybook-static "s3://mayflower.digital.mass.gov/core/v/$CIRCLE_TAG" - if [[ "$CIRCLE_TAG" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then - # 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" - fi - aws configure set preview.cloudfront true - aws cloudfront create-invalidation --distribution-id $AWS_DISTRIBUTION_ID --paths '/core*' + # if [[ "$CIRCLE_TAG" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then + cd packages/core + aws s3 sync storybook-static "s3://mayflower.digital.mass.gov/core/v/$CIRCLE_TAG" + # 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 From 819759f1d0773c40bd8f1c9b159d9265928ab53b Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Wed, 9 Dec 2020 20:08:33 -0500 Subject: [PATCH 17/27] install aws --- .circleci/config.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index accef4ed5f..dd51ab2623 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -264,14 +264,10 @@ jobs: 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 - fi - 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" # Use cp instead of sync for root copy. sync lists all keys and is too slow. From e57168a7df3f79451027255e77bef9386744b1b2 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Thu, 10 Dec 2020 10:03:35 -0500 Subject: [PATCH 18/27] remove copies of node modules --- packages/core/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/package.json b/packages/core/package.json index 8562ef396e..928b0787e6 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -6,7 +6,7 @@ "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 ./node_modules/@massds/mayflower-assets/static", + "build": "build-storybook --docs -s ./node_modules/@massds/mayflower-assets/static", "start": "rushx storybook", "chromatic": "npx chromatic --project-token engf6vhuiv" }, From 18139a03c6bf0794f12bd7e572122836d6f36c68 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Thu, 10 Dec 2020 10:05:55 -0500 Subject: [PATCH 19/27] use pnpx instead of npx --- packages/core/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/package.json b/packages/core/package.json index 928b0787e6..21e4904ab5 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -8,7 +8,7 @@ "storybook": "start-storybook -p 6006 --docs --no-manager-cache", "build": "build-storybook --docs -s ./node_modules/@massds/mayflower-assets/static", "start": "rushx storybook", - "chromatic": "npx chromatic --project-token engf6vhuiv" + "chromatic": "pnpx chromatic --project-token engf6vhuiv" }, "keywords": [], "author": "", From b4b5b8e6f069d43d84aa6ba90e0157f4ab704773 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Thu, 10 Dec 2020 10:08:13 -0500 Subject: [PATCH 20/27] only sync for stable tags --- .circleci/config.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index dd51ab2623..aac7d6e47c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -266,15 +266,15 @@ jobs: 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" - # 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 + 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" + # 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 From 07a872d19337ca773ef65fe12a363fd1a6b74a1b Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Thu, 10 Dec 2020 10:11:38 -0500 Subject: [PATCH 21/27] reset release trigger time and add deploy core to tag job --- .circleci/config.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index aac7d6e47c..313bb38df4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -429,11 +429,8 @@ workflows: - core_build_storybook: filters: branches: { ignore: /(docs|patternlab\/|site\/).*/ } - - core_deploy_tag: - requires: [core_build_storybook] # 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 @@ -441,7 +438,7 @@ workflows: requires: [build] triggers: - schedule: - cron: "45 19 * * 1" + cron: "00 18 * * 1" filters: branches: only: @@ -508,3 +505,8 @@ workflows: filters: branches: { ignore: /.*/ } tags: { only: /.*/ } + - core_deploy_tag: + requires: [core_build_storybook] + filters: + branches: { ignore: /.*/ } + tags: { only: /.*/ } From 89aea72afbc03b4bc97a112ee7b1af7292ead15d Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Thu, 10 Dec 2020 10:41:55 -0500 Subject: [PATCH 22/27] test cleaning up old files --- .circleci/config.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 313bb38df4..38801bbab0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -266,15 +266,15 @@ jobs: at: ~/code - run: | # Only sync to S3 for stable tags. - if [[ "$CIRCLE_TAG" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then + # 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" + 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 s3 cp --recursive storybook-static "s3://mayflower.digital.mass.gov/core" --delete aws configure set preview.cloudfront true aws cloudfront create-invalidation --distribution-id $AWS_DISTRIBUTION_ID --paths '/core*' - fi + # fi auto_changelog: <<: *react_defaults @@ -429,6 +429,8 @@ workflows: - core_build_storybook: filters: branches: { ignore: /(docs|patternlab\/|site\/).*/ } + - core_deploy_tag: + requires: [core_build_storybook] # Release branch automation every Monday at 2:00 p.m. ET "00 18 * * 1" release: From 025f28eaa39740066415cb3568b36f698a18e14a Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Thu, 10 Dec 2020 10:43:11 -0500 Subject: [PATCH 23/27] fix --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 38801bbab0..ecb5241563 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -507,8 +507,8 @@ workflows: filters: branches: { ignore: /.*/ } tags: { only: /.*/ } - - core_deploy_tag: - requires: [core_build_storybook] - filters: - branches: { ignore: /.*/ } - tags: { only: /.*/ } + # - core_deploy_tag: + # requires: [core_build_storybook] + # filters: + # branches: { ignore: /.*/ } + # tags: { only: /.*/ } From d076c6af736daa7ad8ebe9b8fa846b828918acb2 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Thu, 10 Dec 2020 11:49:48 -0500 Subject: [PATCH 24/27] remove copying assets static --- packages/core/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/package.json b/packages/core/package.json index 21e4904ab5..2d34829412 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -6,7 +6,7 @@ "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", + "build": "build-storybook --docs", "start": "rushx storybook", "chromatic": "pnpx chromatic --project-token engf6vhuiv" }, From a8359941458288759bd1d434e46ed1a3d6b3934a Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Thu, 10 Dec 2020 11:50:00 -0500 Subject: [PATCH 25/27] fix --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ecb5241563..6896f3e883 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -271,7 +271,7 @@ jobs: 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" --delete + 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 From e5cb46f334c2cc7db6daa11dec326983dc353640 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Thu, 10 Dec 2020 14:32:20 -0500 Subject: [PATCH 26/27] remove test code --- .circleci/config.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6896f3e883..aaab1dbc4c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -266,7 +266,7 @@ jobs: at: ~/code - run: | # Only sync to S3 for stable tags. - # if [[ "$CIRCLE_TAG" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then + 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 @@ -274,7 +274,7 @@ jobs: 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 + fi auto_changelog: <<: *react_defaults @@ -429,8 +429,6 @@ workflows: - core_build_storybook: filters: branches: { ignore: /(docs|patternlab\/|site\/).*/ } - - core_deploy_tag: - requires: [core_build_storybook] # Release branch automation every Monday at 2:00 p.m. ET "00 18 * * 1" release: @@ -507,8 +505,8 @@ workflows: filters: branches: { ignore: /.*/ } tags: { only: /.*/ } - # - core_deploy_tag: - # requires: [core_build_storybook] - # filters: - # branches: { ignore: /.*/ } - # tags: { only: /.*/ } + - core_deploy_tag: + requires: [core_build_storybook] + filters: + branches: { ignore: /.*/ } + tags: { only: /.*/ } From d6a0e619be61dc88a8c5f93c452ff9175629a729 Mon Sep 17 00:00:00 2001 From: Minghua Sun Date: Thu, 10 Dec 2020 14:36:16 -0500 Subject: [PATCH 27/27] fix --- .circleci/config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index aaab1dbc4c..4bbd4c967f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -427,6 +427,7 @@ workflows: branches: { ignore: /(docs|patternlab\/|react\/|core\/).*/ } # core - core_build_storybook: + requires: [react_build_storybook] filters: branches: { ignore: /(docs|patternlab\/|site\/).*/ } @@ -505,6 +506,10 @@ workflows: filters: branches: { ignore: /.*/ } tags: { only: /.*/ } + - core_build_storybook: + requires: [react_build_storybook] + filters: + branches: { ignore: /(docs|patternlab\/|site\/).*/ } - core_deploy_tag: requires: [core_build_storybook] filters: